.about-container {
    max-width: 1200px;
    line-height: 1.6;
    margin: 0 auto;
    padding: 10px;
}

/* Header */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    color: white;
    margin: -20px -20px 20px -20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.15"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="80" r="2.5" fill="white" opacity="0.05"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Section Styles */
.section {
    margin-bottom: 20px;
    background: white;
    border-radius: 24px;
    padding: 50px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, hsl(210, 79%, 46%), hsl(210, 79%, 50%), hsl(210, 79%, 55%));
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, hsl(210, 79%, 46%), hsl(210, 79%, 50%), hsl(210, 79%, 55%));
    border-radius: 2px;
}

      
#about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: hsl(0, 0%, 90%);
}

.section-content {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.vision-section {
    background: linear-gradient(135deg, #dbeafe 0%, #3b82f6 5%, white 5%);
}

.team-section {
    background: linear-gradient(135deg, #d1fae5 0%, #10b981 5%, white 5%);
}

/* Stats/Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.highlight-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, hsl(210, 79%, 55%), hsl(210, 79%, 60%));
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.highlight-desc {
    color: #64748b;
    font-size: 0.95rem;
}

/* Team section special styling */
.team-highlight {
    background: linear-gradient(135deg, hsl(210, 79%, 60%), hsl(210, 79%, 65%));
    ;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.team-count {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.team-lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-top: 20px;
}

.team-lead-photo {
    margin-top: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 15px 20px;
    border-radius: 16px;
    
}

.lead-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* makes it round */
    object-fit: cover;
    /* keeps proportions */
    border: 1px solid hsl(0, 0%, 90%);
    /* optional accent border */
    margin-bottom: 10px;
    box-shadow: 0 4px 8px hsla(0, 0%, 0%, 0.1);
}

.lead-label {
    color: white;
    text-align: center;
    line-height: 1.4;
}

.lead-label span {
    font-weight: 400;
    font-size: 0.9rem;
    color: hsl(0, 0%, 83%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 15px;
    }

    .hero {
        padding: 40px 0 60px;
        margin: -15px -15px 40px -15px;
    }

    .section {
        padding: 30px 20px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 25px 20px;
    }

    .section-title {
        margin-bottom: 20px;
    }
}

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

/* Accessibility improvements */
.section:focus-within {
    outline: 2px solid #6366f1;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}