* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #334155;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.1);
    --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9ImN1cnNvckdyYWQiIGN4PSI1MCUiIGN5PSI1MCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjAwZmYiIHN0b3Atb3BhY2l0eT0iMSIgLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzhjNWNmNiIgc3RvcC1vcGFjaXR5PSIxIiAvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNiODJmNiIgc3RvcC1vcGFjaXR5PSIxIiAvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxjaXJjbGUgY3g9IjE2IiBjeT0iMTYiIHI9IjE0IiBmaWxsPSJ1cmwoI2N1cnNvckdyYWQpIiBvcGFjaXR5PSIwLjkiIC8+PGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzhjNWNmNiIgc3Ryb2tlLXdpZHRoPSIyIiBvcGFjaXR5PSIwLjYiIC8+PC9zdmc+') 16 16, auto;
}

/* Custom cursor for interactive elements */
a, button, input, textarea, select, .nav-link, .project-link, .read-more-btn, .submit-btn, .btn-edit, .btn-delete, label {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9ImN1cnNvckdyYWRIb3ZlciIgY3g9IjUwJSIgY3k9IjUwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMDBmZiIgc3RvcC1vcGFjaXR5PSIxIiAvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjOGM1Y2Y2IiBzdG9wLW9wYWNpdHk9IjEiIC8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjM2I4MmY2IiBzdG9wLW9wYWNpdHk9IjEiIC8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTUiIGZpbGw9InVybCgjY3Vyc29yR3JhZEhvdmVyKSIgb3BhY2l0eT0iMSIgLz48Y2lyY2xlIGN4PSIxNiIgY3k9IjE2IiByPSIxMyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC44IiAvPjwvc3ZnPg==') 16 16, pointer;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Navigation Bar - Executive Professional */
.navbar {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
    opacity: 0.9;
}

.profile-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.profile-img:hover {
    border-color: rgba(255,255,255,0.3);
}

.nav-name h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.nav-name p {
    font-size: 13px;
    opacity: 0.75;
    margin: 2px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.nav-center {
    display: flex;
    gap: 45px;
}

/* Hide nav-center on mobile by default - will be shown via JavaScript when active */
@media (max-width: 768px) {
    .nav-center:not(.active) {
        display: none !important;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.mobile-menu-toggle:active {
    opacity: 0.7;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.social-icon:hover {
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 88px);
    padding: 0;
    background: transparent;
}

/* Projects, Articles, and Contact Pages - Executive Professional Design */
/* Projects Page - Sophisticated Dark Gradient */
.projects-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    position: relative;
}

.projects-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Articles Page - Professional Dark Gradient */
.articles-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    position: relative;
}

.articles-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Contact Page - Executive Dark Gradient */
.contact-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.projects-section,
.articles-section,
.contact-section-main {
    background: transparent !important;
    padding-top: 60px;
    padding-bottom: 100px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.projects-section .section-inner,
.articles-section .section-inner,
.contact-section-main .section-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(20px, calc((100vw - 1400px) / 2));
    padding-right: max(20px, calc((100vw - 1400px) / 2));
}

.projects-section .section-title,
.articles-section .section-title,
.contact-section-main .section-title {
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-size: 48px !important;
}

.projects-section .section-title::after,
.articles-section .section-title::after,
.contact-section-main .section-title::after {
    background: rgba(255, 255, 255, 0.2) !important;
    height: 2px !important;
    width: 80px !important;
}

/* Executive Professional Cards */
.projects-page .project-card,
.articles-page .article-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-page .project-card:hover,
.articles-page .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-page .contact-form {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Ensure text is readable */
.projects-page .no-projects,
.articles-page .no-projects {
    color: white;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.content-wrapper > .section {
    padding: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.section-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(20px, calc((100vw - 1400px) / 2));
    padding-right: max(20px, calc((100vw - 1400px) / 2));
}

.content-wrapper > .section:first-of-type {
    margin-top: 0;
    padding-top: 80px;
}

/* Hero Section - Dark Tech Theme */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    z-index: -2;
}

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 100px 100px, 150px 150px, 200px 200px, 200px 200px;
    background-position: 0 0, 50px 50px, 0 0, 0 0;
    animation: patternMove 20s linear infinite;
    z-index: -1;
}

@keyframes patternMove {
    0% { background-position: 0 0, 50px 50px, 0 0, 0 0; }
    100% { background-position: 100px 100px, 150px 150px, 200px 200px, -200px 200px; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-profile {
    margin-bottom: 40px;
    position: relative;
}

.profile-circle {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.profile-main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.profile-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s ease-in-out infinite;
    border: 3px solid white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-text {
    color: white;
}

.hero-name {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 35px;
}

.hero-location svg {
    color: #ef4444;
}

.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b82f6;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    font-size: 16px;
    letter-spacing: 0.3px;
}

.resume-btn:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

.scroll-indicator p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Intro Section - Keep for backward compatibility */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 0;
    padding: 20px 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-text {
    padding: 40px 0;
}

.greeting {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.15;
}

.name {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.role {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.intro-list {
    list-style: none;
    margin-bottom: 40px;
}

.intro-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.intro-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 15px;
    letter-spacing: 0.1px;
}

.resume-btn:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-main {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
    transition: var(--transition-smooth);
    animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

/* Circular profile for hero section */
.profile-main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-main:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px) scale(1.02);
}

/* Section Styles */
.section {
    margin-bottom: 0;
    padding: 0;
}

.hero-section + .section {
    margin-top: 0;
    padding-top: 80px;
}

/* Default white sections */
.section:not(.about-section):not(.hero-section):not(.education-cert-section) {
    background: var(--bg-white);
}

.section:not(.about-section):not(.hero-section):not(.education-cert-section) > .section-inner {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-title {
    font-size: 58px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    position: relative;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* Tech Stacks Section - Bold Content */
.tech-stacks .section-title {
    font-weight: 700;
}

.tech-stacks .tech-box h3 {
    font-weight: 700;
}

.tech-stacks .tech-box ul li {
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-medium);
    text-align: justify;
    padding: 60px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    font-weight: 400;
}

/* About Me Section - Dark Theme Matching Header/Footer */
.about-section {
    background: #0f172a;
    margin-bottom: 0;
}

.about-section > .section-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-title {
    color: white !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    font-size: 64px !important;
    padding: 0 !important;
}

.about-title::after {
    left: 0 !important;
    transform: none !important;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%) !important;
    border-radius: 2px;
}

.about-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-profile-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
}

.about-profile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-name {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-role {
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.my-story-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.my-story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.my-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
}

/* Education & Certificates Section - Dark Theme Grid */
.education-cert-section {
    background: #0a0e27 !important;
    margin-bottom: 0;
}

.education-cert-section > .section-inner {
    padding-top: 60px;
    padding-bottom: 100px;
}

.education-cert-section .section-title {
    color: white !important;
    text-align: center !important;
    margin-bottom: 60px !important;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.edu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.edu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.edu-card-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.edu-card-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-weight: 400;
}

.edu-card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 16px 0 20px 0;
}

.edu-card-content {
    margin-top: 20px;
}

.edu-subheading {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.edu-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.4;
}

/* Legacy Education Styles - Keep for backward compatibility */
.education-list {
    max-width: 1000px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.education-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.education-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.education-status,
.education-stream {
    color: var(--text-medium);
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.education-institution {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 400;
}

/* Tech Stacks Section */
.tech-stacks {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-timeline {
    position: relative;
    padding-left: 120px;
}

.tech-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.tech-item {
    position: relative;
    margin-bottom: 45px;
    display: flex;
    align-items: flex-start;
}

.tech-node {
    position: absolute;
    left: -90px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--border-color);
    z-index: 2;
}

.tech-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    flex: 1;
    margin-left: 35px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.tech-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.tech-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.tech-box hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tech-box ul {
    list-style: none;
}

.tech-box ul li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

/* Projects Section */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.project-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.project-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-content {
    padding: 32px;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.project-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tech-tag {
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--border-color);
    letter-spacing: 0.1px;
}

.project-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.project-link svg {
    flex-shrink: 0;
}

.no-projects {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    padding: 80px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Articles Section */
.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.featured-article {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.article-image {
    height: 100%;
    min-height: 320px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.featured-article .article-image {
    min-height: 420px;
}

.article-image-small {
    height: 240px;
    background: #e2e8f0;
    position: relative;
}

.article-content {
    padding: 40px;
}

.featured-article .article-content {
    padding: 60px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.article-date {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.article-category {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.featured-article .article-title {
    font-size: 36px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 28px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.1px;
}

.read-more-btn:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    letter-spacing: 0.1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .content-wrapper {
        padding: 0;
    }

    .content-wrapper > .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .intro-section {
        gap: 60px;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .articles-container {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
        flex-wrap: nowrap;
        align-items: center;
    }

    .nav-left {
        gap: 12px;
        flex: 0 0 auto;
    }a

    .profile-img {
        width: 48px;
        height: 48px;
    }

    .nav-name h2 {
        font-size: 18px;
    }

    .nav-name p {
        font-size: 12px;
    }

    .nav-center {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 76px) !important;
        background: var(--primary-color) !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
        gap: 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease-in-out !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-center.active {
        display: flex !important;
        transform: translateX(0) !important;
    }

    .nav-center .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .nav-center .nav-link:last-child {
        border-bottom: none;
    }

    .nav-center .nav-link::after {
        display: none;
    }

    .nav-right {
        gap: 15px;
        flex: 0 0 auto;
    }

    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .social-icon {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    .content-wrapper {
        padding: 0;
    }

    .section-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-section {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .profile-circle {
        width: 220px;
        height: 220px;
    }

    .hero-name {
        font-size: 42px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-tagline {
        font-size: 16px;
        padding: 0 20px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 0;
        padding: 20px 0;
    }

    .intro-text {
        padding: 20px 0;
        order: 2;
    }

    .intro-image {
        order: 1;
    }

    .greeting {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .name {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .role {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .intro-list li {
        font-size: 15px;
        padding: 10px 0 10px 28px;
    }

    .resume-btn {
        padding: 14px 26px;
        font-size: 14px;
    }

    .profile-main {
        max-width: 100%;
    }

    .section {
        margin-bottom: 80px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -15px;
    }

    .about-text {
        padding: 35px 25px;
        font-size: 16px;
        line-height: 1.75;
        margin: 0 15px;
    }

    .about-section {
        padding: 60px 20px;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .about-title {
        font-size: 48px !important;
    }

    .about-title::after {
        width: 150px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-profile-image {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .about-name {
        font-size: 36px;
        text-align: center;
        width: 100%;
    }

    .about-role,
    .about-subtitle {
        text-align: center;
        width: 100%;
    }

    .my-story-title {
        font-size: 28px;
        text-align: center;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .edu-card {
        padding: 24px 20px;
    }

    .edu-card-title {
        font-size: 20px;
    }

    .edu-card-meta {
        font-size: 13px;
    }

    .edu-list li {
        font-size: 13px;
    }

    /* Legacy Education Styles */
    .education-list {
        padding: 0 15px;
    }

    .education-item {
        padding: 25px 20px;
        gap: 20px;
        margin-bottom: 20px;
    }

    .education-content h3 {
        font-size: 20px;
    }

    .education-status,
    .education-stream {
        font-size: 15px;
    }

    .tech-stacks {
        padding: 0 15px;
    }

    .tech-timeline {
        padding-left: 60px;
    }

    .tech-line {
        left: 30px;
    }

    .tech-node {
        left: -50px;
        width: 14px;
        height: 14px;
    }

    .tech-box {
        padding: 24px 20px;
        margin-left: 20px;
    }

    .tech-box h3 {
        font-size: 18px;
    }

    .projects-container,
    .articles-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        margin-top: 40px;
    }

    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .project-content {
        padding: 24px 20px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .project-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: #f1f5f9;
        border-radius: 6px;
        width: auto;
    }

    .article-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .article-content {
        padding: 30px 25px;
    }

    .featured-article .article-content {
        padding: 35px 25px;
    }

    .article-title {
        font-size: 22px;
    }

    .featured-article .article-title {
        font-size: 26px;
    }

    .article-excerpt {
        font-size: 15px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-center {
        top: 66px !important;
        padding: 15px !important;
    }

    .nav-center .nav-link {
        font-size: 15px;
        padding: 12px 0;
    }

    .nav-name h2 {
        font-size: 16px;
    }

    .nav-name p {
        font-size: 11px;
    }

    .profile-img {
        width: 42px;
        height: 42px;
    }

    .main-content {
        padding: 0;
    }

    .section-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .intro-section {
        gap: 40px;
        padding: 15px 0;
    }

    .greeting {
        font-size: 36px;
        line-height: 1.2;
    }

    .name {
        font-size: 28px;
    }

    .role {
        font-size: 16px;
    }

    .intro-list li {
        font-size: 14px;
        padding: 8px 0 8px 24px;
    }

    .resume-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .section {
        margin-bottom: 0;
    }

    .section:not(.about-section):not(.hero-section):not(.education-cert-section) > .section-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .education-cert-section > .section-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-section > .section-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .about-text {
        padding: 25px 20px;
        font-size: 15px;
        margin: 0 10px;
    }

    .about-section {
        padding: 40px 15px;
    }

    .about-title {
        font-size: 36px !important;
    }

    .about-title::after {
        width: 120px;
    }

    .about-tagline {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .about-content {
        gap: 40px;
    }

    .about-name {
        font-size: 28px;
    }

    .about-role {
        font-size: 18px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .my-story-title {
        font-size: 24px;
    }

    .my-story-content p {
        font-size: 15px;
    }

    .education-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .edu-card {
        padding: 20px 15px;
    }

    .edu-card-title {
        font-size: 18px;
    }

    .edu-card-meta {
        font-size: 12px;
    }

    .edu-list li {
        font-size: 12px;
    }

    /* Legacy Education Styles */
    .education-item {
        padding: 20px 15px;
        gap: 15px;
        flex-direction: column;
    }

    .education-content h3 {
        font-size: 18px;
    }

    .tech-timeline {
        padding-left: 40px;
    }

    .tech-line {
        left: 20px;
    }

    .tech-node {
        left: -30px;
        width: 12px;
        height: 12px;
    }

    .tech-box {
        padding: 20px 15px;
        margin-left: 15px;
    }

    .tech-box h3 {
        font-size: 17px;
    }

    .tech-box ul li {
        font-size: 14px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px 15px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-description {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .project-tech {
        gap: 6px;
        margin-bottom: 18px;
    }

    .tech-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .project-links {
        width: 100%;
    }

    .project-link {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .article-image-small {
        height: 200px;
    }

    .featured-article .article-image {
        min-height: 250px;
    }

    .article-content {
        padding: 25px 20px;
    }

    .featured-article .article-content {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 20px;
    }

    .featured-article .article-title {
        font-size: 24px;
    }

    .article-excerpt {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 13px;
    }
}

/* Footer Styles - Updated */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Left Column - Branding */
.footer-brand {
    gap: 20px;
}

.footer-name {
    font-size: 28px;
    font-weight: 600;
    color: #60a5fa;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Middle Column - Quick Links */
.footer-links {
    gap: 20px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: white !important;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li {
    margin: 0;
}

.footer-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Right Column - Contact */
.footer-contact {
    gap: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    font-size: 15px;
    font-weight: 400;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: white !important;
}

.footer-contact-item span {
    line-height: 1.5;
}

/* Bottom Footer Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: white !important;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-bottom-link {
    color: white !important;
    text-decoration: underline !important;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-name {
        font-size: 24px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-link,
    .footer-contact-item {
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-bottom-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 35px;
        padding-bottom: 25px;
    }

    .footer-name {
        font-size: 22px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-separator {
        display: none;
    }
}