/* ===========================
   AICT Foundation - Shared Styles
   =========================== */

:root {
    --primary: #5e17ec;
    --primary-dark: #4a11bd;
    --primary-light: #7b3ff5;
    --yellow: #ffd700;
    --yellow-light: #ffeb3b;
    --white: #ffffff;
    --light-bg: #f8f6ff;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

a { text-decoration: none; }

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.top-bar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.top-bar-btn:hover::before { left: 100%; }

.btn-volunteer {
    background: var(--yellow);
    color: var(--primary-dark);
}

.btn-volunteer:hover {
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-donate {
    background: var(--white);
    color: var(--primary);
}

.btn-donate:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-learn {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-learn:hover {
    background: var(--yellow);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-join {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-join:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icons a:hover {
    background: var(--yellow);
    color: var(--primary-dark);
    transform: scale(1.15) rotate(360deg);
}

/* ===========================
   Main Navigation
   =========================== */
.main-nav {
    background: var(--white);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(94, 23, 236, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    text-decoration: none;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(94, 23, 236, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }

.nav-menu > li > a i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a i.fa-chevron-down { transform: rotate(180deg); }

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(94, 23, 236, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    list-style: none;
    border-top: 3px solid var(--primary);
}

.nav-menu > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown li a::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown li a:hover::before { opacity: 1; }

.dropdown li a:hover {
    background: linear-gradient(90deg, rgba(94, 23, 236, 0.08) 0%, transparent 100%);
    color: var(--primary);
    padding-left: 35px;
}

/* Nested Dropdown */
.dropdown li { position: relative; }

.dropdown .nested-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(94, 23, 236, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    list-style: none;
    border-top: 3px solid var(--yellow);
}

.dropdown li:hover > .nested-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===========================
   Page Banner (Inner Pages)
   =========================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1a0a3e 100%);
    padding: 100px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.08)"/></svg>') repeat;
    background-size: 50px 50px;
}

.page-banner h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.page-banner h1 span { color: var(--yellow); }

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.page-banner .breadcrumb a:hover { color: var(--yellow); }

.page-banner .breadcrumb span { color: var(--yellow); font-size: 15px; }

/* ===========================
   Common Section Styles
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title span { color: var(--primary); }

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--yellow);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    background: var(--yellow-light);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* ===========================
   Content Sections
   =========================== */
.content-section {
    padding: 100px 5%;
}

.content-section.bg-light { background: var(--light-bg); }
.content-section.bg-white { background: var(--white); }
.content-section.bg-purple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.content-section.bg-purple .section-title { color: var(--white); }
.content-section.bg-purple .section-title span { color: var(--yellow); }
.content-section.bg-purple .section-subtitle { background: var(--yellow); color: var(--primary-dark); }
.content-section.bg-purple .section-desc { color: rgba(255,255,255,0.8); }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styles */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(94, 23, 236, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--yellow) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before { transform: scaleX(1); }

.card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img i {
    font-size: 50px;
    color: var(--yellow);
}

.card-body {
    padding: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-top: -55px;
    position: relative;
    box-shadow: 0 10px 25px rgba(94, 23, 236, 0.3);
    margin-bottom: 20px;
}

.card:hover .card-icon {
    background: var(--yellow);
    color: var(--primary-dark);
}

.card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover { color: var(--yellow); gap: 15px; }

/* Info Cards (no image, icon top) */
.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(94, 23, 236, 0.15);
}

.info-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transition: all 0.3s ease;
}

.info-card:hover .icon {
    background: var(--yellow);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(94, 23, 236, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    border: 4px solid var(--yellow);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(94, 23, 236, 0.3);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-card span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.team-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Partners Logos */
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    width: 180px;
    height: 100px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(94, 23, 236, 0.08);
    transition: all 0.3s ease;
    padding: 20px;
}

.partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(94, 23, 236, 0.15);
}

.partner-logo i {
    font-size: 40px;
    color: var(--primary);
}

.partner-logo span {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===========================
   Trust Objectives
   =========================== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.objectives-category {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(94,23,236,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objectives-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(94,23,236,0.12);
}

.objectives-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(94,23,236,0.1);
}

.objectives-category-header .cat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.objectives-category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.objectives-category-header h3 span {
    color: var(--primary);
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.objectives-list li:last-child {
    border-bottom: none;
}

.objectives-list li .obj-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

/* Page-level objectives (smaller, inline) */
.page-objectives {
    max-width: 1200px;
    margin: 0 auto;
}

.page-objectives h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.page-objectives h3 span {
    color: var(--primary);
}

.page-objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 15px;
}

.page-objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    transition: transform 0.3s ease;
}

.page-objectives-list li:hover {
    transform: translateX(5px);
}

.page-objectives-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: var(--white);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-text { position: relative; z-index: 1; }

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text h2 span { color: var(--yellow); }

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #1a0a3e;
    color: var(--white);
    padding: 80px 5% 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand { max-width: 350px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.footer-logo-text { font-size: 24px; font-weight: 700; color: var(--white); }

.footer-brand p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 25px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-size: 18px; font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 40px; height: 3px;
    background: var(--yellow);
    border-radius: 3px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--yellow); padding-left: 10px; }

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i { color: var(--yellow); font-size: 18px; margin-top: 3px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px; padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 14px; }

.footer-bottom-links { display: flex; gap: 30px; }

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--yellow); }

/* ===========================
   Contact Form
   =========================== */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(94, 23, 236, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e8e4f5;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(94, 23, 236, 0.1);
}

.form-group textarea { resize: vertical; min-height: 150px; }

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(94, 23, 236, 0.15);
}

.contact-info-card .icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(94, 23, 236, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img i { font-size: 50px; color: var(--yellow); }

.blog-card-body { padding: 25px; }

.blog-card-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blog-card-body p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(94, 23, 236, 0.1);
}

.timeline-content h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-dark);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Awards */
.award-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 40px rgba(94, 23, 236, 0.1);
    transition: all 0.4s ease;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(94, 23, 236, 0.15);
}

.award-card .award-icon {
    width: 100px; height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffab00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.award-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.award-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.award-card .year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(94, 23, 236, 0.1);
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container i {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
}

/* ===========================
   Overlay for mobile menu
   =========================== */
.nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-overlay.active { opacity: 1; visibility: visible; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1200px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-menu > li > a {
        padding: 20px 15px;
        font-size: 14px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .mobile-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(94, 23, 236, 0.2);
        z-index: 1001;
    }

    .nav-menu.active { right: 0; }

    .nav-menu > li > a {
        padding: 18px 30px;
    }

    .nav-menu > li > a::after { display: none; }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: var(--light-bg);
        display: none;
        border-top: none;
    }

    .nav-menu > li.dropdown-active > .dropdown { display: block; }

    .nested-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #e8e4f5 !important;
        display: none;
        border-top: none !important;
    }

    .dropdown li.dropdown-active > .nested-dropdown { display: block; }

    .section-title { font-size: 32px; }
    .page-banner h1 { font-size: 36px; }

    .timeline::before { left: 20px; }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-content { width: 100%; }

    .timeline-year {
        left: 20px;
        transform: translateX(-50%);
        width: 60px; height: 60px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .card-grid,
    .card-grid-2,
    .card-grid-4 { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .objectives-grid { grid-template-columns: 1fr; }
    .page-objectives-list { grid-template-columns: 1fr; }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-social { justify-content: center; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .top-bar-buttons { justify-content: center; width: 100%; }
    .top-bar-btn { padding: 8px 18px; font-size: 12px; }
    .social-icons { justify-content: center; width: 100%; }
    .logo-text { font-size: 20px; }
    .btn-primary, .btn-secondary, .btn-white { padding: 14px 30px; font-size: 14px; }
    .contact-form { padding: 30px 20px; }
    .page-banner { padding: 80px 5% 60px; }
    .page-banner h1 { font-size: 28px; }
}
