/* /* /* /* /* /* ==========================================
   GLOBAL SHAPERS TASHKENT — MAIN STYLESHEET
   ========================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3 { font-weight: 700; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
p { line-height: 1.8; }
a { text-decoration: none; color: inherit; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(0, 10, 40, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

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

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-menu a:hover { color: white; }

/* Ensure navbar logo is circular and crops correctly */
.nav-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-image: url('images/shaper.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: -2px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 10, 40, 0.82) 0%,
        rgba(0, 40, 120, 0.6) 50%,
        rgba(0, 10, 40, 0.4) 100%
    );
    z-index: 1;
}

.hero-watermark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -10px;
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: left;
}

.hero-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 2px solid #4da3ff;
    padding-left: 12px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #0055CC;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background: #0055CC;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 85, 204, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '↓';
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(170deg, #0a0e2e 0%, #0d1235 50%, #0a1550 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #0a0e2e, transparent);
    z-index: 1;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -150px;
    pointer-events: none;
}

.about-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-container > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 70px;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(77,163,255,0.8), rgba(255,255,255,0.3));
    border-radius: 20px 20px 0 0;
}

.about-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ==========================================
   BOARD MEMBERS
   ========================================== */
.board-section-wrapper {
    background: #0a0e2e;
}

.members-header {
    background: linear-gradient(180deg, #0a1550 0%, #0a0e2e 100%);
    padding: 60px 20px 40px;
    text-align: center;
}

.members-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
    margin: 0;
}

.board-members-grid {
    background: #0a0e2e;
    padding: 60px 60px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 36px 24px 28px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4da3ff, rgba(255,255,255,0.2));
    border-radius: 20px 20px 0 0;
}

.member-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid rgba(77, 163, 255, 0.4);
    box-shadow: 0 0 0 6px rgba(77, 163, 255, 0.1);
    background-color: #1a2a4a;
    background-size: cover;
    background-position: center;
    display: block;
    flex-shrink: 0;
}

.member-info { padding: 0; }

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.member-role {
    color: #4da3ff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.member-hub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}


/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact-section {
    padding: 120px 20px;
    text-align: center;
    background: #0a0e2e;
    position: relative;
    overflow: hidden;
}

/* Animated background circles */
.impact-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,85,204,0.15) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation: float1 8s ease-in-out infinite;
    pointer-events: none;
}

.impact-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,163,255,0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: float2 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
}

.impact-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

/* Underline accent on title */
.impact-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4da3ff, #0055CC);
    border-radius: 2px;
    margin: 16px auto 0;
}

.impact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.impact-item {
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: transform 0.4s, background 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Glow on hover */
.impact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(77,163,255,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

/* Top border accent */
.impact-item::after {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4da3ff, transparent);
    border-radius: 0 0 4px 4px;
    transition: left 0.4s, right 0.4s;
}

.impact-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(77,163,255,0.1);
}

.impact-item:hover::before { opacity: 1; }

.impact-item:hover::after {
    left: 0;
    right: 0;
}

.impact-item h3 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #4da3ff;
    margin-bottom: 12px;
    letter-spacing: -1px;
    /* Counter animation */
    animation: countUp 1s ease-out forwards;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================
   ALUMNI SECTION
   ========================================== */
.alumni-section {
    background: #0d1235;
    padding: 100px 20px;
}

.alumni-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.alumni-container h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.alumni-container > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.alumni-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.alumni-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 4px;
    flex: 1;
}

.alumni-slider::-webkit-scrollbar { display: none; }

.alumni-card {
    min-width: 220px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    position: relative;
}

.alumni-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4da3ff, rgba(255,255,255,0.2));
}

.alumni-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.alumni-image {
    width: 100%;
    height: 200px;
    background-color: #1a2a4a;
    background-size: cover;
    background-position: center;
}

.alumni-info { padding: 18px 16px; }

.alumni-name {
    font-weight: 700;
    font-size: 15px;
    color: white;
    margin-bottom: 4px;
}

.alumni-role {
    color: #4da3ff;
    font-size: 13px;
    margin: 4px 0;
}

.alumni-year {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
    padding: 100px 20px;
    background: #0a0e2e;
    text-align: center;
}

.projects-container {
    max-width: 1100px;
    margin: 0 auto;
}

.projects-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.projects-container > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.projects-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 4px;
    flex: 1;
}

.projects-slider::-webkit-scrollbar { display: none; }

.project-card {
    min-width: 280px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, background 0.3s;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4da3ff, rgba(255,255,255,0.2));
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.project-image {
    width: 100%;
    height: 180px;
    background-color: #1a2a4a;
    background-size: cover;
    background-position: center;
}

.project-info { padding: 18px 16px; }

.project-name {
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}

.project-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    padding: 100px 20px;
    background: #0d1235;
    text-align: center;
    overflow: hidden;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
}

.partners-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.partners-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4da3ff, rgba(255,255,255,0.3));
    border-radius: 2px;
    margin: 16px auto 0;
}

.partners-container > p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    margin-bottom: 60px;
}

/* Auto-scrolling track */
.partners-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Circular partner card */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 110px;
    cursor: pointer;
}

.partner-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.partner-logo:hover {
    border-color: #4da3ff;
    background: rgba(77,163,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(77,163,255,0.2);
}

.partner-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.partner-logo:hover img { opacity: 1; }

/* Fallback initials if no image */
.partner-initials {
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.6);
    letter-spacing: -1px;
}

.partner-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

/* ==========================================
   SHARED SLIDER BUTTON
   ========================================== */
.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}

.slider-btn:hover {
    background: #0055CC;
    border-color: #0055CC;
    transform: scale(1.1);
}

/* ==========================================
   ALUMNI FEATURES (old section cleanup)
   ========================================== */
.alumni-features {
    display: none; /* replaced by slider */
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #0a0e2e 0%, #0a1550 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,163,255,0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
    animation: float1 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,85,204,0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
    animation: float2 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4da3ff, rgba(255,255,255,0.3));
    border-radius: 2px;
    margin: 16px auto 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 4px;
    line-height: 1.8;
}

.btn-cta {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: white;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 20px;
    backdrop-filter: blur(6px);
}

.btn-cta:hover {
    background: #0055CC;
    border-color: #0055CC;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,85,204,0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #060a1e;
    color: white;
    padding: 70px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section ul { list-style: none; }

.footer-section li { margin-bottom: 10px; }

.footer-section a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover { color: white; }

.social-links { display: flex; gap: 12px; }

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #0055CC;
    border-color: #0055CC;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s;
}

.footer-bottom a:hover { color: white; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-menu { display: none; }

    .hero-content h1 { font-size: 2.8rem; }
    .hero-content { padding: 0 30px; }

    .about-grid { grid-template-columns: 1fr; }
    .board-members-grid { grid-template-columns: 1fr; padding: 40px 20px 60px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }

    .members-header h2 { font-size: 2rem; }
    .about-container h2,
    .projects-container h2,
    .partners-container h2,
    .alumni-container h2,
    .impact-section h2,
    .cta-content h2 { font-size: 2rem; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
} 