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

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --accent-color: #ffffff;
    --highlight-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    --gradient-1: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #333333 50%, #666666 75%, #cccccc 100%);
    --gradient-2: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-3: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(circle at 100% 0%, rgba(139, 69, 19, 0.08) 0%, transparent 30%), radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 40%), linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #1a1a1a 70%, #2a2a2a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.parallax-layer:nth-child(1) {
    animation-delay: 0s;
}

.parallax-layer:nth-child(2) {
    animation-delay: -5s;
}

.parallax-layer:nth-child(3) {
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-30px) rotate(0.5deg); }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: var(--glass-shadow);
    max-width: calc(100vw - 40px);
    width: auto;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* Navigation base styles */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive font scaling */
@media (max-width: 1200px) {
    .nav-links a {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1100px) {
    .nav-content {
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        padding: 5px 8px;
        font-size: 0.85rem;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.hero-title {
    margin-bottom: 30px;
}

.name-highlight {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: none;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.about {
    padding: 100px 0;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    color: white;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.hero-image-container {
    flex-shrink: 0;
}

.hero-profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.hero-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-content {
    text-align: left;
    max-width: 600px;
    padding: 40px;
    color: white;
    flex: 1;
}

/* Company/Organization Logo Styles */
.company-logo {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-right: 20px;
    margin-bottom: 15px;
}

.company-logo .company-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Hidden by default, shown when image loads */
    transition: opacity 0.3s ease;
}

.company-logo .company-icon:not([src=""]):not([src$="/"]) {
    opacity: 1;
}

.company-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.company-logo .logo-placeholder .placeholder-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

/* Project Logo Styles */
.project-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.project-logo {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.project-logo .project-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Hidden by default, shown when image loads */
    transition: opacity 0.3s ease;
}

.project-logo .project-icon:not([src=""]):not([src$="/"]) {
    opacity: 1;
}

.project-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-logo .logo-placeholder .placeholder-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.project-title-status {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.project-title-status h3 {
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

/* Education Logo Styles */
.education-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.education-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
}

.education-logo {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.education-logo .education-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Hidden by default, shown when image loads */
    transition: opacity 0.3s ease;
}

.education-logo .education-icon:not([src=""]):not([src$="/"]) {
    opacity: 1;
}

.education-logo .logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.education-logo .logo-placeholder .placeholder-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.education-details {
    flex: 1;
}

.education-details h3,
.education-details h4 {
    margin: 0 0 8px 0;
}

.skills {
    padding: 100px 0;
    position: relative;
}

.skills-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.skills-category {
    padding: 40px;
    color: white;
}

.skills-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.skills-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 2px;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100px;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 150px;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.skill-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.skill-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.skill-item:hover .skill-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.skill-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.journey {
    padding: 100px 0;
    position: relative;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

.journey-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-item:nth-child(even) .journey-content {
    text-align: right;
}

.journey-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.journey-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
}

.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.journey-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.journey-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.journey-quote {
    text-align: center;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.journey-quote blockquote {
    margin: 0;
    padding: 0;
}

.journey-quote blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.journey-quote cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    display: block;
}

.education {
    padding: 60px 0;
    position: relative;
}

.education-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-primary {
    padding: 25px;
    color: white;
}

.education-primary h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.education-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.education-highlight {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.education-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.education-item {
    padding: 20px;
    color: white;
}

.education-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.education-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.current-focus {
    padding: 100px 0;
    position: relative;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.focus-card {
    padding: 35px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
}

.focus-status {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.research {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.planning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.learning {
    background: rgba(139, 69, 19, 0.2);
    color: #a855f7;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.stage-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stage-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.stage-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.focus-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.focus-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stage-early {
    width: 25%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.stage-intermediate {
    width: 50%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.stage-advanced {
    width: 75%;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.stage-complete {
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}


.experience {
    padding: 100px 0;
    position: relative;
}

.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: calc(50% - 30px);
    padding: 30px;
    color: white;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 30px);
    text-align: left;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 3px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(odd)::after {
    right: -40px;
}

.timeline-item:nth-child(even)::after {
    left: -40px;
}

.timeline-date {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.timeline-content p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.expand-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expand-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.expand-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.expanded-content.show {
    max-height: 1000px;
    padding: 20px 0 0 0;
}

.expanded-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.expanded-content h5:first-child {
    margin-top: 0;
}

.expanded-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.expanded-content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.expanded-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tags .tech-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ffffff;
}

.projects {
    padding: 100px 0;
    position: relative;
}

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

.project-card {
    padding: 40px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

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

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.project-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #22c55e;
}

.status-dot.completed {
    background: #3b82f6;
}

.status-dot.research {
    background: #f59e0b;
}

.status-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.project-card p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.project-stats .stat-item {
    text-align: center;
    flex: 1;
}

.project-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.project-stats .stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.project-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
}

.project-link {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 44px;
}

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

.project-link.demo:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.project-link.github {
    background: rgba(107, 114, 128, 0.2);
    color: #e5e7eb;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.project-link.github:hover {
    background: rgba(107, 114, 128, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.2);
}

.project-link.contact {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 44px;
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
}

.project-link.contact:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    text-decoration: none;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.achievements {
    padding: 100px 0;
    position: relative;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.achievement-category {
    text-align: center;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.achievement-card {
    padding: 30px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.achievement-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.achievement-wide {
    grid-column: 1 / -1;
}

.achievement-half {
    grid-column: span 1;
}

@media (min-width: 769px) {
    .achievement-category:nth-child(3) .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-category:nth-child(3) .achievement-cards .achievement-half:nth-child(1),
    .achievement-category:nth-child(3) .achievement-cards .achievement-half:nth-child(2) {
        grid-column: span 1;
    }
    
    /* Competition & Leadership section - first 3 cards in one row */
    .achievement-category.competition-leadership .achievement-cards {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .achievement-category.competition-leadership .achievement-third {
        grid-column: span 1;
    }
}

.contact {
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    padding: 40px;
    color: white;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.submit-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-icon {
    transform: translateX(4px);
}

.contact-info-card {
    padding: 40px;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0 0;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #cccccc;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.response-time {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.response-time h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.response-time p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.availability {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.availability h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.availability-dot.available {
    background: #22c55e;
}

.availability p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links {
    margin-bottom: 30px;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.social-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.social-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.social-method:hover .social-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-details {
    flex: 1;
}

.social-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
}

.social-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 2px 0 0 0;
}

.footer {
    text-align: center;
    padding: 30px;
    margin: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Bold text styling */
strong, b {
    font-weight: 700;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-side-image {
        width: 140px;
        height: 140px;
    }
    
    .hero-image-left {
        left: 40px;
    }
    
    .hero-image-right {
        right: 40px;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .nav-glass {
        padding: 12px 25px;
        max-width: calc(100vw - 40px);
    }

    .nav-content {
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .hero-layout {
        gap: 40px;
    }
    
    .hero-profile-image {
        width: 240px;
        height: 240px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .name-highlight {
        font-size: 3rem;
    }
}

/* Large Tablet / Small Desktop */
@media (max-width: 900px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        border: 2px solid rgba(255, 255, 255, 0.4); /* Added more visible border for testing */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-profile-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px;
    }

    /* Mobile Navigation */
    .nav-glass {
        top: 15px;
        left: 15px;
        right: 15px;
        transform: none;
        padding: 15px 20px;
        border-radius: 25px;
        max-width: none;
        width: calc(100vw - 30px);
    }

    .nav-content {
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-radius: 15px;
        font-size: 1.1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .name-highlight {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }
    
    .education-secondary {
        grid-template-columns: 1fr;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-item::after {
        left: -40px !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-category {
        margin-bottom: 40px;
    }
    
    .journey-timeline::before {
        left: 40px;
    }
    
    .journey-item {
        flex-direction: row !important;
        gap: 20px;
    }
    
    .journey-item:nth-child(even) .journey-content {
        text-align: left;
    }
    
    .journey-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .journey-content {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .skill-item {
        padding: 15px;
        min-height: 80px;
    }
    
    .skill-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }
    
    .skill-icon img,
    .skill-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .skill-name {
        font-size: 0.8rem;
    }
    
    .social-methods {
        gap: 12px;
    }
    
    .social-method {
        padding: 12px;
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
    
    .social-details p {
        font-size: 0.8rem;
    }
    
    .project-links {
        gap: 8px;
    }
    
    .project-link {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-glass {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 16px;
        border-radius: 20px;
        width: calc(100vw - 20px);
    }

    .nav-links {
        top: 70px;
        left: 10px;
        right: 10px;
        padding: 25px 15px;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .glass-card {
        padding: 30px 20px;
    }
    
    .name-highlight {
        font-size: 2rem;
    }
    
    .project-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .project-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Projects Page Styles */
.projects-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.projects-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-page .section-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-page .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Projects More Button */
.projects-more {
    text-align: center;
    margin-top: 40px;
}

.more-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.more-projects-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.more-projects-btn .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.more-projects-btn:hover .arrow {
    transform: translateX(4px);
}

/* Active navigation link */
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .projects-page .section-header h1 {
        font-size: 2.5rem;
    }
    
    .projects-page .section-header p {
        font-size: 1rem;
    }
    
    .more-projects-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Thanks Page Styles */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
}

.thanks-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.thanks-card {
    padding: 60px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.thanks-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.1; }
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.thanks-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-primary {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.6;
}

.thanks-secondary {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.response-info {
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.response-time-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.response-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.response-details p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.response-note {
    font-style: italic;
    font-size: 0.9rem !important;
    color: #aaaaaa !important;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.back-home-btn,
.explore-projects-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-home-btn::before,
.explore-projects-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.back-home-btn:hover::before,
.explore-projects-btn:hover::before {
    left: 100%;
}

.back-home-btn:hover,
.explore-projects-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thanks-section {
        padding: 100px 15px 40px;
    }
    
    .thanks-card {
        padding: 40px 25px;
    }
    
    .thanks-title {
        font-size: 2.2rem;
    }
    
    .thanks-primary {
        font-size: 1.1rem;
    }
    
    .thanks-secondary {
        font-size: 0.95rem;
    }
    
    .response-info {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .response-details h3 {
        font-size: 1.1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .back-home-btn,
    .explore-projects-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}