/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    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);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-profile {
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-education {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
}

.hero-education i {
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    font-size: 1.1rem;
    padding: 14px 28px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    font-size: 1.1rem;
    color: white;
    /* border: 2px solid white; */
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);


}

.hero-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* About Section */
.about {
    background: #f9fafb;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item i {
    font-size: 2rem;
    color: #2563eb;
}

.highlight-item span {
    font-weight: 600;
    color: #374151;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.skill-tag {
    background: #e5e7eb;
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-tag:hover {
    background: #2563eb;
    color: white;
}

.skill-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.skill-icon-fa {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Non-Profit Section */
.nonprofit {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 80px 0;
    margin: 2rem 0;
    border-radius: 24px;
    position: relative;
}

.nonprofit-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.nonprofit-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.nonprofit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nonprofit-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nonprofit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.nonprofit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.nonprofit-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 4px;
}

.nonprofit-placeholder-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nonprofit-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.nonprofit-role {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.nonprofit-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.nonprofit-content {
    padding: 1.5rem;
}

.nonprofit-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nonprofit-image {
    margin-bottom: 1.5rem;
}

.nonprofit-photo {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-btn.prev {
    left: 10px;
}

.slide-btn.next {
    right: 10px;
}

.slide-indicators {
    text-align: center;
    padding: 15px 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}

.indicator {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: white;
}

.nonprofit-achievements {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.nonprofit-achievements li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.nonprofit-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.nonprofit-links {
    display: flex;
    gap: 1rem;
}

.nonprofit-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nonprofit-link:hover {
    color: #1d4ed8;
}

.placeholder-card {
    opacity: 0.7;
}

.placeholder-text {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* Projects Section */
.projects {
    background: #f9fafb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem auto 0;
    justify-items: center;
    max-width: 1200px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

/* Old logo container styles removed - now using round logos in header */

.company-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #3b82f6;
}

.company-logo-placeholder i {
    font-size: 3rem;
}

.company-logo-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.project-role {
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
    background: #f0f9ff;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}

.project-achievements {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.project-achievements li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.project-achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.project-logo-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
    background: white;
    padding: 8px;
}

.project-company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

.project-company-info .project-title {
    margin-bottom: 0.25rem;
    border-bottom: none;
    padding-bottom: 0;
    min-height: auto;
    font-size: 1.2rem;
}

.project-company-info .project-role {
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-left: none;
    border-radius: 0;
    min-height: auto;
    color: #6b7280;
    font-style: normal;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e40af;
    border-bottom: 2px solid #dbeafe;
    padding-bottom: 0.5rem;
    min-height: 2rem;
    display: flex;
    align-items: center;
}

.project-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #1d4ed8;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: white;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    color: #2563eb;
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
}

.resume-download {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 0.75rem;
        margin: 0;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-education {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .education-line {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        line-height: 1.3;
    }
    
    .education-line i {
        font-size: 1.1rem;
        color: #fbbf24;
        flex-shrink: 0;
    }
    
    .education-line .bullet {
        font-size: 1rem;
        color: #fbbf24;
        font-weight: bold;
    }
    
    .university, .year {
        color: #fbbf24;
        font-weight: 500;
    }
    
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding-top: 2rem;
        display: flex !important;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.5rem 0;
        text-align: center;
        color: #333 !important;
        text-decoration: none !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #e5e7eb;
        display: block !important;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #f8fafc;
        color: #2563eb !important;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Projects Mobile */
    .projects {
        padding: 3rem 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto;
        padding: 0;
        max-width: 100%;
        justify-items: center;
    }
    
    .project-card {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        gap: 1rem;
        width: 100%;
    }
    
    .project-logo-round {
        width: 80px;
        height: 80px;
    }
    
    .project-company-info {
        text-align: center;
        width: 100%;
    }
    
    .project-company-info .project-title {
        text-align: center;
        width: 100%;
    }
    
    .project-company-info .project-role {
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    
    .project-tech {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Non-Profit Mobile */
    .nonprofit {
        padding: 3rem 0;
    }
    
    .nonprofit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .nonprofit-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .slideshow-container {
        height: 200px;
    }
    
    .nonprofit-card {
        padding: 1rem;
    }
    
    .nonprofit-achievements {
        font-size: 0.85rem;
        line-height: 1.4;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .nonprofit-achievements li {
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        white-space: normal;
        font-size: 0.8rem;
    }
    
    .nonprofit-achievements li strong {
        display: inline;
        word-break: break-word;
    }
    
    .counter {
        font-size: 1rem;
        font-weight: 700;
        display: inline-block;
        max-width: 100%;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .stat-item {
        max-width: 100%;
        overflow: visible;
        text-align: center;
        min-width: 80px;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
        font-weight: 700;
        white-space: nowrap;
        overflow: visible;
        text-overflow: none;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-top: 0.2rem;
    }
    
    .nonprofit-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1rem 0;
        justify-items: center;
    }
    
    .nonprofit-logo {
        width: 60px;
        height: 60px;
    }
    
    .nonprofit-photo {
        height: 150px;
    }
    
    /* Skills Mobile */
    .skills {
        padding: 3rem 0;
    }
    
    .skill-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .skill-category {
        width: 100%;
        max-width: 100%;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* About Mobile */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    /* Contact Mobile */
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .project-link {
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .project-content {
        padding: 0.75rem;
    }
    
    .project-logo-round {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nonprofit-card {
        padding: 0.75rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .project-achievements li {
        font-size: 0.85rem;
    }
    
    .nonprofit-card {
        padding: 0.75rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .nonprofit-achievements {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .nonprofit-achievements li {
        font-size: 0.75rem;
        max-width: 100%;
        overflow: visible;
        white-space: normal;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 0.4rem;
    }
    
    .counter {
        font-size: 0.85rem !important;
        display: inline-block;
        max-width: none;
        overflow: visible;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .stat-item {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
        min-width: 70px;
        text-align: center;
        overflow: visible;
    }
    
    .stat-number {
        font-size: 1rem !important;
        font-weight: 700;
        white-space: nowrap;
        overflow: visible;
        display: block;
        width: 100%;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
        margin-top: 0.2rem;
        word-wrap: break-word;
    }
    
    .nonprofit-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0.75rem 0;
        justify-items: center;
        text-align: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }

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

    .contact-info {
        align-items: flex-start;
    }

    .contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .project-card {
        margin: 0 10px;
    }
}

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

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.skills-grid,
.projects-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}
