

.layout-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('new-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.3) brightness(1.1);
    z-index: -1;
    pointer-events: none;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Noto Sans', sans-serif;
    color: white;
    margin: 0 !important;
    padding: 0 !important;
    background: #2563eb !important;
    font-display: swap;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ===== RESPONSIVE HEADER ===== */
.glass-header-responsive {
    position: fixed;
    top: 15px; /* Added 10px space from top */
    left: 0;
    right: 0;
    z-index: 1000;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.nav-container-responsive {
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    margin: 0 40px; /* Added left/right margin instead of centering */
}

.nav-logo-responsive {
    flex-shrink: 0;
}

.nav-title-responsive {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
}

/* Desktop Navigation */
.desktop-nav-responsive {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav-link-responsive {
    color: #FFFFFF;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600 !important;
}

.nav-link-responsive:hover {
    color: #F0F0F0 !important;
    text-shadow: 0 0 8px rgba(240, 240, 240, 0.8), 0 0 16px rgba(240, 240, 240, 0.4);
}

.nav-link-responsive::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FFFF;
    box-shadow: 0 0 4px #00FFFF;
    transition: width 0.3s ease-in-out;
}

.nav-link-responsive:hover::after {
    width: 100%;
}

.resume-button-responsive {
    background-color: #00FFFF !important;
    color: #001122;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 84px;
    max-width: 480px;
    cursor: pointer;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    leading-normal: true;
    tracking: 0.015em;
}

.resume-button-responsive:hover {
    background-color: #00FFFF;
    transform: translateY(-2px);
    color: #001122;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger-menu-responsive {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu-responsive.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu-responsive.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-responsive.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay-responsive {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay-responsive.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content-responsive {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.mobile-nav-link-responsive {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.mobile-nav-link-responsive:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    color: #00FFFF;
}

/* ===== HERO SECTION ===== */
.hero-section-responsive {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    padding: 24px;
    padding-top: 55px;
    gap: 2rem;
    background-image: url('new-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.3) brightness(1.1);
}



.hero-container-responsive {
    width: 100%;
    position: relative;
    z-index: 1;
    /* Remove max-width constraint to match original */
}

.hero-content-responsive {
    max-width: 960px; /* Increased from 48rem to match original layout-content-container */
    margin-left: 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    flex: 1; /* Added to match original flex-1 */
}

.hero-title-responsive {
    font-family: 'Rubik', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.15;
    word-spacing: -2px;
    tracking-tight: true;
}

.hero-subtitle-responsive {
    font-family: 'Inter', sans-serif;
    color: #5DADE2;
    font-weight: 600;
    font-size: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

/* Typewriter Effect - EXACT SAME AS ORIGINAL */
.typewriter-container {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.typewriter-text {
    display: inline-block;
    animation: typing 2s steps(30, end) forwards;
    padding-right: 2px;
    white-space: nowrap;
    overflow: hidden;
}

.typewriter-cursor {
    display: none; /* REMOVED AS REQUESTED */
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.hero-bio-responsive {
    position: relative;
    background: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 20px;
    padding: 0;
    margin-top: 1.5rem;
    max-width: 48rem;
    box-shadow: none;
    animation: slideInUp 0.8s ease-out;
    text-align: left;
    max-width: 100%;
}

.hero-bio-text-responsive {
    color: #E5E5E5 !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
    text-align: left !important;
}

.highlight-text {
    font-weight: 700 !important;
    color: #000000 !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-responsive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9999px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.025em;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    background: #00FFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #001122;
    text-decoration: none;
}

.hero-cta-responsive:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== JOURNEY SECTION ===== */
.journey-section-responsive {
    background: linear-gradient(180deg, #0f1629 0%, #1e2a47 25%, #1e3a8a 60%, #2563eb 100%);
    padding: 120px 0;
    position: relative;
    margin-top: -99px;
}

.journey-container-responsive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-header-responsive {
    text-align: center;
    margin-bottom: 80px;
}

.journey-title-responsive {
    color: #FFFFFF;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.journey-subtitle-responsive {
    color: #cbd5e1;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.journey-blocks-responsive {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

/* Override AOS to ensure visibility */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.story-block-responsive {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-block-responsive:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.4), 
                0 0 50px rgba(0, 255, 255, 0.3),
                0 0 80px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.7);
}

.story-content-responsive {
    flex: 1;
}

.story-phase-responsive {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-title-responsive {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.story-period-responsive {
    color: #94A3B8;
    font-size: 14px;
    margin-bottom: 20px;
}

.story-text-responsive {
    color: #E2E8F0;
    font-size: 16px;
    line-height: 1.7;
}

.impact-highlight-responsive {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.impact-metric-responsive {
    color: #00FFFF;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.impact-detail-responsive {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.impact-description-responsive {
    color: #CBD5E1;
    font-size: 14px;
    text-align: center;
}

/* Skills Progression */
.skills-progression-responsive {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.skills-progression-title-responsive {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.skills-timeline-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.skill-era-responsive {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.era-label-responsive {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.era-skills-responsive {
    color: #E2E8F0;
    font-size: 14px;
}

/* ===== PROJECTS SECTION ===== */
.projects-section-responsive {
    background: linear-gradient(180deg, #2563eb 0%, #1e3a8a 40%, #1e2a47 75%, #0f1629 100%);
    padding: 100px 0;
    min-height: 100vh;
    margin-top: -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.projects-container-responsive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-header-responsive {
    text-align: center;
    margin-bottom: 80px;
}

.projects-title-responsive {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.projects-subtitle-responsive {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid-responsive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 40px;
    perspective: 1000px;
}

.project-card-responsive {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card-responsive:hover {
    transform: translateY(-10px) scale(1.02);
}

.project-card-bg-responsive {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: rgba(13, 25, 41, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
}

/* Project Type Specific Backgrounds */
.ai-ml-responsive .project-card-bg-responsive {
    background: linear-gradient(135deg, 
        rgba(255, 120, 73, 0.15) 0%, 
        rgba(255, 120, 73, 0.08) 50%, 
        rgba(13, 25, 41, 0.9) 100%);
    border: 1px solid rgba(255, 120, 73, 0.2);
}

.medical-ai-responsive .project-card-bg-responsive {
    background: linear-gradient(135deg, 
        rgba(255, 165, 0, 0.15) 0%, 
        rgba(255, 165, 0, 0.08) 50%, 
        rgba(13, 25, 41, 0.9) 100%);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.nlp-responsive .project-card-bg-responsive {
    background: linear-gradient(135deg, 
        rgba(244, 114, 182, 0.15) 0%, 
        rgba(244, 114, 182, 0.08) 50%, 
        rgba(13, 25, 41, 0.9) 100%);
    border: 1px solid rgba(244, 114, 182, 0.2);
}

.data-analysis-responsive .project-card-bg-responsive {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.08) 50%, 
        rgba(13, 25, 41, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.business-intelligence-responsive .project-card-bg-responsive {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.15) 0%, 
        rgba(34, 197, 94, 0.08) 50%, 
        rgba(13, 25, 41, 0.9) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Hover Effects on Background */
.ai-ml-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 30px 60px rgba(255, 120, 73, 0.3);
}
.medical-ai-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 30px 60px rgba(255, 165, 0, 0.3);
}
.nlp-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 30px 60px rgba(244, 114, 182, 0.3);
}
.data-analysis-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
}

.business-intelligence-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.3);
}

.project-card-content-responsive {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-header-responsive {
    margin-bottom: 20px;
}

.project-type-responsive {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.ai-ml-responsive .project-type-responsive { color: #ff7849; }
.medical-ai-responsive .project-type-responsive { 
    color: #FFA500; 
}
.nlp-responsive .project-type-responsive { color: #f472b6; }
.data-analysis-responsive .project-type-responsive { color: #00d4ff; }
.business-intelligence-responsive .project-type-responsive { color: #22c55e; }

.project-title-responsive {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.project-card-responsive:hover .project-title-responsive {
    transform: translateY(-3px);
}

.project-metric-responsive {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.ai-ml-responsive .project-metric-responsive { 
    background: rgba(255, 120, 73, 0.2);
    color: #ff7849;
    border: 1px solid rgba(255, 120, 73, 0.3);
}

.medical-ai-responsive .project-metric-responsive { 
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.nlp-responsive .project-metric-responsive { 
    background: rgba(244, 114, 182, 0.2);
    color: #f472b6;
    border: 1px solid rgba(244, 114, 182, 0.3);
}
.data-analysis-responsive .project-metric-responsive { 
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.business-intelligence-responsive .project-metric-responsive { 
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-tech-stack-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag-responsive {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-tag-responsive:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Project Details Panel */
.project-details-panel-responsive {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-responsive:hover .project-details-panel-responsive {
    opacity: 1;
    visibility: visible;
}

.project-details-panel-responsive.active {
    opacity: 1;
    visibility: visible;
}

.project-panel-content-responsive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-timeline-responsive {
    font-size: 0.9rem;
    font-weight: 600;
}

.ai-ml-responsive .project-timeline-responsive { 
    color: #ff7849; 
}

.medical-ai-responsive .project-timeline-responsive { 
    color: #FFA500; 
}

.nlp-responsive .project-timeline-responsive { 
    color: #f472b6; 
}

.data-analysis-responsive .project-timeline-responsive { 
    color: #00d4ff; 
}

.business-intelligence-responsive .project-timeline-responsive { 
    color: #22c55e; 
}

.project-description-responsive {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.project-stats-responsive {
    display: flex;
    gap: 30px;
}

.stat-item-responsive {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-responsive {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ai-ml-responsive .stat-number-responsive { color: #ff7849; }
.medical-ai-responsive .stat-number-responsive { 
    color: #FFA500; 
}
.nlp-responsive .stat-number-responsive { color: #f472b6; }
.data-analysis-responsive .stat-number-responsive { color: #00d4ff; }
.business-intelligence-responsive .stat-number-responsive { color: #22c55e; }

.stat-label-responsive {
    font-size: 0.8rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.github-link-responsive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ai-ml-responsive .github-link-responsive {
    color: #ff7849;
    border: 1px solid rgba(255, 120, 73, 0.3);
    background: rgba(255, 120, 73, 0.1);
}

.ai-ml-responsive .github-link-responsive:hover {
    background: rgba(255, 120, 73, 0.2);
    border-color: rgba(255, 120, 73, 0.5);
}

.medical-ai-responsive .github-link-responsive {
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
    background: rgba(255, 165, 0, 0.1);
}

.medical-ai-responsive .github-link-responsive:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

.nlp-responsive .github-link-responsive {
    color: #f472b6;
    border: 1px solid rgba(244, 114, 182, 0.3);
    background: rgba(244, 114, 182, 0.1);
}

.nlp-responsive .github-link-responsive:hover {
    background: rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.5);
}

.data-analysis-responsive .github-link-responsive {
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.1);
}

.data-analysis-responsive .github-link-responsive:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.business-intelligence-responsive .github-link-responsive {
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.business-intelligence-responsive .github-link-responsive:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.github-link-responsive svg {
    transition: transform 0.3s ease;
}

.github-link-responsive:hover svg {
    transform: scale(1.1);
}

/* ===== SKILLS SECTION ===== */
.skills-section-responsive {
    background: linear-gradient(180deg, #0f1629 0%, #1e2a47 25%, #1e3a8a 60%, #2563eb 100%) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -10px;
}

.skills-container-responsive {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.skills-header-responsive {
    text-align: center;
    margin-bottom: 80px;
}

.skills-title-responsive {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.skills-subtitle-responsive {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.skills-content-responsive {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.skill-category-responsive {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-title-responsive {
    font-size: 1.5rem;
    font-weight: 700;
    color: #67e8f9;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.skills-row-responsive {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1.8;
}

.skill-tag-interactive-responsive {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    user-select: none;
}

.skill-tag-interactive-responsive:hover {
    background: rgba(103, 232, 249, 0.2);
    border-color: rgba(103, 232, 249, 0.6);
    box-shadow: 0 4px 20px rgba(103, 232, 249, 0.3);
    transform: translateY(-2px);
}

.skill-tag-interactive-responsive.highlighted {
    background: rgba(103, 232, 249, 0.3);
    border-color: #67e8f9;
    box-shadow: 0 6px 25px rgba(103, 232, 249, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.skill-tag-interactive-responsive.related {
    background: rgba(103, 232, 249, 0.15);
    border-color: rgba(103, 232, 249, 0.4);
    box-shadow: 0 2px 15px rgba(103, 232, 249, 0.2);
    transform: scale(1.02);
}

.skill-tag-interactive-responsive.dimmed {
    opacity: 0.4;
    transform: scale(0.98);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section-responsive {
    background: linear-gradient(180deg, #2563eb 0%, #1e3a8a 40%, #1e2a47 75%, #0f1629 100%) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.achievements-container-responsive {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.achievements-header-responsive {
    text-align: center;
    margin-bottom: 80px;
}

.achievements-title-responsive {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.achievements-subtitle-responsive {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.achievements-grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.achievement-card-responsive {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-card-responsive:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.achievement-icon-responsive {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.achievement-card-title-responsive {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.achievements-list-responsive {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item-responsive {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-item-responsive:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.achievement-value-responsive {
    font-size: 1.4rem;
    font-weight: 700;
    color: #67e8f9;
    margin-bottom: 4px;
}

.achievement-label-responsive {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.4;
    font-weight: 500;
}

.achievement-card-responsive.academic-responsive:hover {
    box-shadow: 0 20px 40px rgba(103, 232, 249, 0.2);
    border-color: rgba(103, 232, 249, 0.3);
}

.achievement-card-responsive.professional-responsive:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.achievement-card-responsive.academic-responsive .achievement-value-responsive {
    color: #67e8f9;
}

.achievement-card-responsive.professional-responsive .achievement-value-responsive {
    color: #ffd700;
}

/* ===== CONTACT SECTION ===== */
.contact-section-responsive {
    background: linear-gradient(180deg, #0f1629 0%, #1e2a47 25%, #1e3a8a 60%, #2563eb 100%) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.contact-container-responsive {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.contact-header-responsive {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title-responsive {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.contact-subtitle-responsive {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-content-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: stretch;
}

.contact-form-container-responsive {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-responsive {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.form-group-responsive {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label-responsive {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.form-input-responsive,
.form-textarea-responsive {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #FFFFFF !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.form-input-responsive:focus,
.form-textarea-responsive:focus {
    outline: none;
    border-color: rgba(103, 232, 249, 0.6);
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.15), 0 4px 15px rgba(103, 232, 249, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-input-responsive::placeholder,
.form-textarea-responsive::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-textarea-responsive {
    resize: vertical;
    min-height: 120px;
}

.submit-button-responsive {
    padding: 16px 32px;
    background: rgba(103, 232, 249, 0.9);
    color: #0f1629;
    border: 1px solid rgba(103, 232, 249, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
}

.submit-button-responsive:hover {
    background: rgba(103, 232, 249, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 232, 249, 0.3), 0 4px 15px rgba(103, 232, 249, 0.2);
    border-color: rgba(103, 232, 249, 0.5);
}

.social-links-container-responsive {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-title-responsive {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.social-subtitle-responsive {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.social-links-responsive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link-responsive {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-link-responsive:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon-responsive {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    transition: all 0.3s ease;
}

.social-link-responsive:hover .social-icon-responsive {
    background: rgba(103, 232, 249, 0.2);
    transform: scale(1.1);
}

.social-info-responsive {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-name-responsive {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.social-handle-responsive {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.contact-info-responsive {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label-responsive {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.info-value-responsive {
    font-size: 0.9rem;
    color: #67e8f9;
    font-weight: 600;
}

/* Social Link Specific Colors */
.social-link-responsive.email-responsive:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.social-link-responsive.email-responsive:hover .social-icon-responsive {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.social-link-responsive.linkedin-responsive:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.social-link-responsive.linkedin-responsive:hover .social-icon-responsive {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.social-link-responsive.github-responsive:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.social-link-responsive.github-responsive:hover .social-icon-responsive {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

/* ===== FOOTER ===== */
.footer-section-responsive {
    background: #2563eb !important;
    padding: 60px 0 40px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-top: none; 
    margin-bottom: 0 !important;
    padding-bottom: 30px !important;
}

.footer-container-responsive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-nav-responsive {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link-responsive {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link-responsive:hover {
    color: #F0F0F0 !important;
    text-shadow: 0 0 8px rgba(240, 240, 240, 0.8), 0 0 16px rgba(240, 240, 240, 0.4);
}

.footer-nav-link-responsive::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FFFF;
    box-shadow: 0 0 4px #00FFFF;
    transition: width 0.3s ease-in-out;
}

.footer-nav-link-responsive:hover::after {
    width: 100%;
}

.footer-copyright-responsive {
    text-align: center;
}

.footer-copyright-responsive p {
    color: #FFFFFF !important;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.footer-copyright-responsive p:first-child {
    margin-bottom: 4px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .nav-container-responsive {
        padding: 0 16px;
        min-height: 60px;
        border: none;
    }
    
    .nav-title-responsive {
        font-size: 1.1rem;
    }
    
    .mobile-nav-content-responsive {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .mobile-nav-link-responsive {
        font-size: 1.2rem;
        padding: 16px;
        min-width: 180px;
    }
    
    .hero-section-responsive {
        padding-top: 0px;
        margin-top: -70px;
        padding-left: 16px;
        padding-right: 16px;
        background-position: left center;
        background-color: #020d1f !important;
        background-image: none !important;
    }
    
    .hero-content-responsive {
        margin-left: 0;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-title-responsive {
        font-size: 2.5rem;
    }

    .hero-subtitle-responsive {
        font-size: 1.2rem;
    }
    
    .hero-bio-text-responsive {
        font-size: 1rem !important;
        padding-left: 0.9rem;
    }

    .hero-bio-text-responsive br {
        display: none;
    }
    
    .hero-cta-responsive {
        padding: 0 28px;
        height: 50px;
        font-size: 0.9rem;
        margin-top: 4rem;
        margin-bottom: 1rem;
    }
    
    
    .journey-container-responsive,
    .projects-container-responsive,
    .skills-container-responsive,
    .achievements-container-responsive,
    .contact-container-responsive {
        padding: 0 16px;
    }
    
    .journey-title-responsive,
    .projects-title-responsive,
    .skills-title-responsive,
    .achievements-title-responsive,
    .contact-title-responsive {
        font-size: 2rem;
    }
    
    .story-block-responsive {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .story-title-responsive {
        font-size: 20px;
    }
    
    .impact-metric-responsive {
        font-size: 24px;
    }
    
    .skills-timeline-responsive {
        grid-template-columns: 1fr;
    }

    .skills-progression-responsive {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .projects-grid-responsive {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .project-card-responsive {
        height: 380px;
    }
    
    .project-card-content-responsive {
        padding: 35px;
    }
    
    .project-details-panel-responsive {
        padding: 20px;
    }
    
    .project-stats-responsive {
        gap: 15px;
    }
    
    .skill-category-responsive {
        margin-left: 15px;
        margin-right: 15px;
        padding-bottom: 20px;
    }

    .skills-content-responsive {
        gap: 30px;
        margin-bottom: 0; 
        padding-bottom: 25px; 
    }
    
    .category-title-responsive {
        font-size: 1.1rem;
    }
    
    .skill-tag-interactive-responsive {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .achievements-grid-responsive {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }
    
    .achievement-card-responsive {
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .achievement-icon-responsive {
        font-size: 2.5rem;
    }
    
    .achievement-card-title-responsive {
        font-size: 1.2rem;
    }
    .contact-section-responsive {
        padding-bottom: 40px !important; /* Much smaller bottom padding */
        margin-bottom: 0 !important;
    }
    .contact-content-responsive {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-form-container-responsive {
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .form-input-responsive,
    .form-textarea-responsive {
        padding: 10px 14px;
    }
    
    .social-handle-responsive {
        font-size: 0.8rem;
    }

    .social-links-container-responsive {
        text-align: center;
    }
    
    .social-title-responsive {
        text-align: center;
        margin-bottom: -5px;
    }
    
    .social-subtitle-responsive {
        text-align: center;
        margin-top: 0;
    }
    
    .footer-nav-responsive {
        gap: 15px;
    }
    
    .footer-nav-link-responsive {
        font-size: 0.85rem;
    }

    .footer-section-responsive {
        margin-top: -10px !important; /* Negative margin to pull footer up */
        padding-top: 20px !important; /* Small top padding */
    }
}

/* Tablet (481px - 768px) */
/* Tablet (481px - 768px) */
/* Tablet (481px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
    /* Navigation - Keep hamburger menu for tablets */
    .nav-container-responsive {
        padding: 0 20px;
    }
    
    .desktop-nav-responsive {
        display: none; /* Hide desktop nav on tablets */
    }
    
    .hamburger-menu-responsive {
        display: flex; /* Show hamburger menu on tablets */
    }
    
    .mobile-nav-content-responsive {
        padding: 50px 30px;
        gap: 25px;
    }

    .layout-container::before {
        display: none !important;
    }
    
    /* Hero Section - Tablet optimized */
    .hero-section-responsive {
        background-image: url('tablet-bg.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh;
        padding: 80px 20px 40px 20px;
    }
    
    .hero-content-responsive {
        margin-top:-50px;
        margin-left: 4rem;
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title-responsive {
        font-size: 3.7rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle-responsive {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-bio-responsive {
        width: 100% !important;
        max-width: none !important;
    }
    
    .hero-bio-text-responsive {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        max-width: 90%;
        white-space: nowrap !important; /* Prevents automatic wrapping */
        width: max-content !important;
    }
    
    .hero-cta-responsive {
        margin-top: 5rem;
        padding: 0 36px;
        height: 54px;
        font-size: 1.1rem;
    }
    
    /* Section Titles */
    .journey-title-responsive,
    .projects-title-responsive,
    .skills-title-responsive,
    .achievements-title-responsive,
    .contact-title-responsive {
        font-size: 2.2rem;
    }

    .story-block-responsive {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 25px;
        margin-left: 15px;
        margin-right: 15px;

    }


    .projects-grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .project-card-responsive {
        height: 350px; /* Slightly smaller for tablet */
    }

    .project-card-responsive:last-child:nth-child(odd) {
        grid-column: 1 / -1; /* Span full width */
        justify-self: center; /* Center within that span */
        max-width: none; /* Limit its width so it doesn't stretch */
    }   
    .project-card-content-responsive {
        padding: 30px; /* Reduced padding for tablet */
    }

    .project-details-panel-responsive {
        padding: 25px; /* Increased padding for better readability */
    }

    .project-stats-responsive {
        gap: 15px; /* Reduced gap for tablet layout */
    }
    .projects-section-responsive {
        padding: 60px 0 !important; /* Reduced from 100px 0 */
        min-height: 70vh !important; /* Reduced from 100vh */
    }

    .skill-category-responsive {
        margin-left: 15px;
        margin-right: 15px;
    }

    .achievement-card-responsive {
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .achievements-grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .achievements-section-responsive {
        padding: 60px 0 !important; /* Reduced from 100px 0 */
        min-height: 80vh !important; /* Reduced from 100vh */
    }

    .contact-content-responsive {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-section-responsive {
        padding: 60px 0 !important; /* Reduced from 100px 0 */
        min-height: 70vh !important; /* Reduced from 100vh */
    }


    .skills-timeline-responsive {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Laptop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .desktop-nav-responsive {
        display: flex;
        gap: 20px;
    }
    
    .hamburger-menu-responsive {
        display: none;
    }
    
    .hero-title-responsive {
        font-size: 3.2rem;
    }
    
    .journey-title-responsive,
    .projects-title-responsive,
    .skills-title-responsive,
    .achievements-title-responsive,
    .contact-title-responsive {
        font-size: 2.8rem;
    }
    
    .story-block-responsive {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .impact-highlight-responsive {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .projects-grid-responsive {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .project-card-responsive:last-child:nth-child(odd) {
        grid-column: 1 / -1; /* Span full width */
        justify-self: center; /* Center within that span */
        max-width: none; /* Limit its width so it doesn't stretch */
    }   
    
    .achievements-grid-responsive {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-content-responsive {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .skills-timeline-responsive {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Restore hover effects for desktop */
    .skill-tag-interactive-responsive:hover {
        background: rgba(103, 232, 249, 0.2);
        border-color: rgba(103, 232, 249, 0.6);
        box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
        transform: translateY(-2px);
    }
    
    .project-card-responsive:hover {
        transform: translateY(-8px);
    }
    
    .project-details-panel-responsive {
        transform: translateY(0);
        opacity: 0;
        visibility: hidden;
    }
    
    .project-card-responsive:hover .project-details-panel-responsive {
        opacity: 1;
        visibility: visible;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .desktop-nav-responsive {
        display: flex;
        gap: 30px;
    }
    
    .hamburger-menu-responsive {
        display: none;
    }
    
    .hero-title-responsive {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-responsive {
        font-size: 1.5rem;
    }
    
    .journey-title-responsive,
    .projects-title-responsive,
    .skills-title-responsive,
    .achievements-title-responsive,
    .contact-title-responsive {
        font-size: 3.5rem;
    }
    
    .story-block-responsive {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .impact-highlight-responsive {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 30px;
    }
    
    .impact-metric-responsive {
        font-size: 36px;
    }
    
    .projects-grid-responsive {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .project-card-responsive:last-child:nth-child(odd) {
        grid-column: 1 / -1; /* Span full width */
        justify-self: center; /* Center within that span */
        max-width: none; /* Limit its width so it doesn't stretch */
    }   

    .achievements-grid-responsive {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .contact-content-responsive {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .skills-timeline-responsive {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .skills-content-responsive {
        gap: 60px;
    }
    
    /* Full desktop hover effects */
    .skill-tag-interactive-responsive:hover {
        background: rgba(103, 232, 249, 0.2);
        border-color: rgba(103, 232, 249, 0.6);
        box-shadow: 0 4px 20px rgba(103, 232, 249, 0.3);
        transform: translateY(-2px);
    }
    
    .project-card-responsive {
        height: 320px;
    }
    
    .project-card-responsive:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .project-details-panel-responsive {
        transform: translateY(0);
        opacity: 0;
        visibility: hidden;
    }
    
.project-card-responsive:hover .project-details-panel-responsive {
       opacity: 1;
       visibility: visible;
   }
   
   .project-card-responsive:hover .project-card-bg-responsive {
       box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
   }
   
   .ai-ml-responsive:hover .project-card-bg-responsive {
       box-shadow: 0 25px 50px rgba(255, 120, 73, 0.3);
   }

   .medical-ai-responsive:hover .project-card-bg-responsive {
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
    }
   
   .nlp-responsive:hover .project-card-bg-responsive {
       box-shadow: 0 25px 50px rgba(244, 114, 182, 0.3);
   }
   
   .data-analysis-responsive:hover .project-card-bg-responsive {
       box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
   }
   
   .business-intelligence-responsive:hover .project-card-bg-responsive {
       box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
   }
}

/* ===== RESPONSIVE ADJUSTMENTS FOR ORIGINAL STYLES ===== */
@media (max-width: 768px) {
   .hero-bio-responsive {
       padding: 0;
       margin-left: 1rem;
       margin-right: 1rem;
   }
   
   .hero-bio-text-responsive {
       font-size: 1rem !important;
   }
}

/* ===== SCROLL INDICATORS ===== */
.scroll-indicator-right {
   position: fixed;
   right: 3rem;
   bottom: 3rem;  
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.5rem;
   z-index: 10;
}

.scroll-arrow {
   color: #FFFFFF;
   cursor: pointer;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(103, 232, 249, 0.3) 100%);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   padding: 12px;
   backdrop-filter: blur(10px);
   box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
   transition: all 0.3s ease;
}

.scroll-arrow:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% {
       transform: translateY(0);
   }
   40% {
       transform: translateY(-10px);
   }
   60% {
       transform: translateY(-5px);
   }
}

.back-to-top {
   position: fixed;
   bottom: 120px;
   right: 3rem;
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(103, 232, 249, 0.3) 100%);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   color: #FFFFFF;
   cursor: pointer;
   backdrop-filter: blur(10px);
   box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
   transition: all 0.3s ease;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: center;
}

.back-to-top:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
   width: 24px;
   height: 24px;
}

/* ===== ADDITIONAL ORIGINAL STYLES ===== */
p {
   color: #D5D5D5 !important;
   font-weight: 600;
   font-size: 1.125rem;
   line-height: 1.7;
}

h1 {
   font-family: 'Rubik', sans-serif;
   color: #FFFFFF;
   font-weight: 600;
   letter-spacing: 0.5px;
   text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

h2 {
   font-family: 'Inter', sans-serif;
   color: #5DADE2;
   font-weight: 500;
   font-size: 1.5rem;
}

@keyframes gradient-shift {
   0%   { background-position: 0% 50%; }
   100% { background-position: 100% 50%; }
}

.hero-content {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1200px;
   margin: 0 auto;
   flex-wrap: wrap;
   gap: 2rem;
   z-index: 1;
}

.hero-text {
   flex: 1;
   min-width: 300px;
   color: #3d2a41;
}

.hero-text p {
   font-size: 1.1rem;
   line-height: 1.7;
   max-width: 600px;
}

/* Additional animation keyframes */
@keyframes fadeIn {
   from {
       opacity: 0;
       transform: translateY(20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Smooth scroll behavior */
html {
   scroll-behavior: smooth;
}

/* Selection styles */
::selection {
   background: rgba(103, 232, 249, 0.3);
   color: #FFFFFF;
}

/* Focus styles for accessibility */

/* Ensure proper stacking contexts */
.layout-container {
   position: relative;
   z-index: 1;
}

/* Print styles */
@media print {
   .glass-header-responsive,
   .hamburger-menu-responsive,
   .mobile-nav-overlay-responsive {
       display: none !important;
   }
   
   body {
       background: white !important;
       color: black !important;
   }
   
   .hero-section-responsive,
   .journey-section-responsive,
   .projects-section-responsive,
   .skills-section-responsive,
   .achievements-section-responsive,
   .contact-section-responsive,
   .footer-section-responsive {
       background: white !important;
       color: black !important;
   }
}

/* Text visibility - Default (Mobile and Desktop) */
.desktop-text { 
    display: inline; 
}
.tablet-text { 
    display: none; 
}

/* Tablet mode - Show tablet text, hide desktop text */
@media (min-width: 481px) and (max-width: 1024px) {
    .desktop-text { 
        display: none !important; 
    }
    .tablet-text { 
        display: inline !important; 
    }
}

/* Desktop mode - Show desktop text, hide tablet text */
@media (min-width: 1025px) {
    .desktop-text { 
        display: inline !important; 
    }
    .tablet-text { 
        display: none !important; 
    }
}