:root {
    /* Enhanced Dark Theme Colors */
    --color-primary: #0A0A0B;
    --color-secondary: #13151A;
    --color-background: #090909;
    --color-surface: #161820;
    --color-surface-hover: #1E2028;
    --color-border: #2A2D3A;
    
    /* Refined Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #E2E8F0;
    --color-text-tertiary: #A0AEC0;
    --color-text-muted: #718096;
    
    /* Enhanced Accent Colors */
    --color-accent: #FBD100;
    --color-accent-muted: #FFE14D;
    --color-accent-dark: #D4B000;
    --color-accent-glow: rgba(251, 209, 0, 0.15);
    
    /* Status Colors */
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;
    --color-info: #3B82F6;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #0A0A0B 0%, #161820 100%);
    --gradient-accent: linear-gradient(135deg, #FBD100 0%, #FFE14D 100%);
    --gradient-card: linear-gradient(180deg, #161820 0%, #13151A 100%);
    --gradient-hero: linear-gradient(to bottom, #0A0A0B, #13151A);
    
    /* Refined Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3), 
                0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3), 
                0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3), 
                0 4px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(251, 209, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3), 
                0 10px 10px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(251, 209, 0, 0.07);
    
    /* Glass Effect */
    --glass-background: rgba(22, 24, 32, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
    
    /* Spacing & Layout */
    --max-width: 1400px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Global Styles */
body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Add spacing between sections */
.achievements, .gallery, .initiatives {
    padding: 8rem 0;
    margin: 4rem 0;
}

/* Add spacing between cards */
.achievements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem;
}

/* Rounded corners for all images */
.gallery__item img,
.initiative__card img,
.about__image img,
.hero__img {
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}

/* LinkedIn Icon Styling */
.social__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-text-primary);
    width: fit-content;
}

.social__link img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.social__link:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    background: var(--color-surface-hover);
}

/* Achievement Cards Enhancement */
.achievement__card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.achievement__card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.achievement__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.achievement__list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.achievement__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.achievement__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Gallery Items Enhancement */
.gallery__item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(10, 10, 11, 0.95),
        rgba(10, 10, 11, 0)
    );
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

/* Section Title Enhancement */
.section__title {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Container width adjustment */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievements, .gallery, .initiatives {
        padding: 4rem 0;
        margin: 2rem 0;
    }

    .achievements__grid,
    .gallery__grid {
        gap: 2rem;
        padding: 1rem;
    }

    .section__title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Enhanced Header */
.header {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}

/* Navigation */
.nav__link {
    color: var(--color-text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav__link:hover {
    color: var(--color-text-primary);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

/* Enhanced Cards */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-glow);
}

/* Timeline Enhancement */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        var(--color-accent),
        transparent
    );
}

.timeline__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.timeline__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-glow);
}

/* Enhanced Form Elements */
.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.form__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
    outline: none;
}

/* Enhanced Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--color-primary);
    border: none;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-accent-glow);
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn--secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Enhanced Gallery */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.8)
    );
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery__item:hover::before {
    opacity: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.stat__card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

/* Enhanced Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Enhanced Modal */
.modal {
    background: rgba(9, 9, 9, 0.95);
    backdrop-filter: var(--glass-blur);
}

.modal__content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}