/* ============================================
   IMPACT CAREERPOINT - Main Stylesheet
   ============================================ */

:root {
    --primary-blue: #0A4EA1;
    --primary-blue-dark: #083D80;
    --primary-blue-light: #1565C0;
    --gold: #E8890C;
    --gold-dark: #D47A0A;
    --gold-light: #F5A623;
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --medium-grey: #E0E4E8;
    --dark-grey: #4A5568;
    --navy: #1B2838;
    --navy-light: #243447;
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;
    --success: #38A169;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; background: var(--white); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h4, h5, h6 { font-weight: 600; line-height: 1.3; color: var(--text-dark); }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.15rem; }
p { color: var(--text-medium); line-height: 1.7; margin-bottom: 0.75rem; }
.section-subtitle { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 0.5rem; }
.section-title { margin-bottom: 0.75rem; }
.section-description { color: var(--text-medium); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-divider { width: 50px; height: 3px; background: var(--gold); margin: 0.75rem auto; border-radius: 2px; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4.5rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.bg-light { background: var(--light-grey); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.8rem; border-radius: 4px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); gap: 0.5rem; border: 2px solid transparent; letter-spacing: 0.3px; }
.btn-primary { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }
.btn-primary:hover { background: var(--primary-blue-dark); border-color: var(--primary-blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,78,161,0.3); }
.btn-gold { background: var(--gold); color: var(--text-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(242,183,5,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); }
.btn-outline:hover { background: var(--primary-blue); color: var(--white); transform: translateY(-1px); }
.btn-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white:hover { background: var(--white); color: var(--text-dark); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.82rem; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.9); font-size: 0.78rem; padding: 0.4rem 0; position: relative; z-index: 1001; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-left i { color: var(--gold); font-size: 0.7rem; }
.top-bar-right { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-right a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.65rem; transition: var(--transition); }
.top-bar-right a:hover { background: var(--gold); color: var(--navy); }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.nav-main { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-center { display: flex; align-items: center; justify-content: center; flex: 1; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu li { position: relative; }
.nav-link { display: flex; align-items: center; gap: 0.3rem; font-weight: 500; font-size: 0.9rem; color: var(--text-medium); padding: 1.5rem 1rem; white-space: nowrap; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary-blue); }
.nav-link.active::after { content:''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 3px; background: var(--primary-blue); border-radius: 3px 3px 0 0; }
.nav-link i { font-size: 0.6rem; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; font-weight: 500; font-size: 0.9rem; color: var(--text-medium); padding: 1.5rem 1rem; white-space: nowrap; cursor: default; transition: color 0.2s; }
.has-dropdown:hover .dropdown-toggle { color: var(--primary-blue); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-cta .btn-sm { border-radius: 4px; padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.nav-cta .btn-primary { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

/* Dropdown Menus */
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 500;
    list-style: none;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--light-grey); color: var(--primary-blue); }

/* Mega Dropdown */
.has-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-dropdown {
    min-width: 560px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1.5rem 1.5rem 1rem;
    transform: translateX(-50%) translateY(10px);
}
.mega-col { list-style: none; padding: 0 1rem 0.5rem 0; }
.mega-col:last-child { padding-right: 0; padding-left: 1rem; border-left: 1px solid var(--medium-grey); }
.mega-col .mega-heading { font-size: 0.68rem; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--medium-grey); }
.mega-item { margin-bottom: 1rem; }
.mega-item:last-child { margin-bottom: 0; }
.mega-item a { display: block !important; padding: 0 !important; }
.mega-item a:hover { background: transparent !important; }
.mega-item .mega-title { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.15rem; transition: color 0.15s; }
.mega-item .mega-desc { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }
.mega-item a:hover .mega-title { color: var(--primary-blue); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ===== HERO SLIDER ===== */
.hero { padding-top: 0; height: 85vh; position: relative; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.05); transition: opacity 0.8s ease, transform 6s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(10,30,60,0.6) 100%); }
.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; max-width: 750px; width: 90%; z-index: 2; }
.slide-content .hero-subtitle { display: inline-block; color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; margin-bottom: 1rem; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.3s, transform 0.6s 0.3s; }
.slide-content h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--white); line-height: 1.15; font-family: var(--font-heading); opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.5s, transform 0.6s 0.5s; }
.slide-content h1 span { color: var(--gold); }
.slide-content p { font-size: 1.1rem; margin-bottom: 1.75rem; color: rgba(255,255,255,0.9); line-height: 1.7; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.7s, transform 0.6s 0.7s; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.9s, transform 0.6s 0.9s; }
.hero-slide.active .hero-subtitle,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); }
.hero-overlay { display: none; }
.slider-dots { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 3; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.slider-arrow:hover { background: var(--gold); color: var(--text-dark); border-color: var(--gold); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* ===== IMPACT STATS ===== */
.impact-section { background: var(--navy); padding: 2.5rem 0; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.impact-card { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.impact-card:last-child { border-right: none; }
.impact-number { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: 0.25rem; font-family: var(--font-primary); }
.impact-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ===== PROCESS STEPS (Horizontal) ===== */
.process-steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.process-step { text-align: center; padding: 1rem 0.5rem; }
.process-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--primary-blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 0.75rem; transition: var(--transition); }
.process-icon.gold { background: var(--gold); color: var(--text-dark); }
.process-step h5 { font-size: 0.8rem; color: var(--text-medium); font-weight: 500; }
.process-connector { width: 30px; height: 2px; background: var(--medium-grey); flex-shrink: 0; }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(10,78,161,0.08); }
.card-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; color: var(--white); }
.service-card { padding: 2rem; text-align: left; }
.service-card h4 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.learn-more { color: var(--primary-blue); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.learn-more:hover { gap: 0.6rem; color: var(--gold-dark); }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.two-col-text h2 { margin-bottom: 0.75rem; }
.image-placeholder { width: 100%; height: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.checklist { margin-top: 1rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; color: var(--text-medium); font-size: 0.95rem; }
.checklist li::before { content: '✓'; color: var(--success); font-weight: 700; min-width: 18px; }

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-carousel { position: relative; overflow: hidden; max-width: 800px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card-new { background: var(--white); border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--medium-grey); text-align: center; }
.testimonial-quote { color: var(--gold); font-size: 1.5rem; margin-bottom: 1rem; }
.testimonial-card-new p { font-size: 1.05rem; font-style: italic; color: var(--text-medium); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.testimonial-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.testimonial-info h5 { color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.1rem; }
.testimonial-info span { color: var(--text-light); font-size: 0.8rem; }
.testimonial-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.testimonial-nav button { width: 40px; height: 40px; border-radius: 50%; background: var(--light-grey); border: 1px solid var(--medium-grey); color: var(--text-medium); display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer; }
.testimonial-nav button:hover { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

/* ===== JOB CARDS GRID ===== */
.job-card-new { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--medium-grey); transition: var(--transition); display: flex; flex-direction: column; gap: 0.6rem; }
.job-card-new:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.job-card-top { margin-bottom: 0.25rem; }
.job-type-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; background: rgba(10,78,161,0.1); color: var(--primary-blue); text-transform: uppercase; letter-spacing: 0.5px; }
.job-type-badge.internship { background: rgba(242,183,5,0.15); color: var(--gold-dark); }
.job-type-badge.ngo { background: rgba(56,161,105,0.1); color: var(--success); }
.job-type-badge.graduate { background: rgba(10,78,161,0.08); color: var(--primary-blue-light); }
.job-card-new h4 { font-size: 1rem; margin-bottom: 0.1rem; }
.job-company { font-size: 0.85rem; color: var(--primary-blue); font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }
.job-company i { font-size: 0.7rem; }
.job-meta-new { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-light); }
.job-meta-new span { display: flex; align-items: center; gap: 0.25rem; }
.job-card-new .btn { margin-top: auto; align-self: flex-start; }

/* ===== CTA SECTION ===== */
.cta-section-new { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy) 100%); padding: 3.5rem 0; text-align: center; }
.cta-section-new h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.cta-section-new p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER (Reference Style) ===== */
.footer-new { background: var(--navy); }
.footer-main { padding: 3rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid-new { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 2rem; align-items: start; }
.footer-brand-new { }
.footer-logo { height: 50px; width: auto; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.footer-brand-new p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1rem; }
.footer-social-new { display: flex; gap: 0.5rem; }
.footer-social-new a { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); }
.footer-social-new a:hover { background: var(--gold-dark); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; font-family: var(--font-primary); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.footer-contact li i { color: var(--gold); font-size: 0.8rem; }
.footer-bottom-new { padding: 1rem 0; }
.footer-bottom-new .container { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-new p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.3); }

/* ===== PAGE HEADERS ===== */
.page-header { background: linear-gradient(135deg, rgba(20,30,80,0.9) 0%, rgba(30,50,120,0.85) 100%), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&q=80') center/cover no-repeat; padding: 4rem 0 3rem; text-align: left; }
.page-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 0.4rem; font-weight: 700; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 550px; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.4rem; font-weight: 500; color: var(--text-dark); font-size: 0.9rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--medium-grey); border-radius: var(--radius-sm); font-size: 0.95rem; transition: var(--transition); background: var(--white); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(10,78,161,0.08); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ===== MISC ===== */
.partners-strip { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--medium-grey); }
.partners-strip h3 { text-align: center; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 500; font-family: var(--font-primary); }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; opacity: 0.5; }
.partner-logo { width: 100px; height: 40px; background: var(--light-grey); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--text-light); font-weight: 600; }

.event-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: var(--transition); display: flex; }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(10,78,161,0.08); }
.event-date { background: var(--primary-blue); color: var(--white); padding: 1rem; text-align: center; min-width: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-date .day { font-size: 1.6rem; font-weight: 800; display: block; }
.event-date .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.event-info { padding: 1.25rem; }
.event-info h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.event-meta { display: flex; gap: 1rem; color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.5rem; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ===== PRICING ===== */
.pricing-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; text-align: center; border: 1px solid var(--medium-grey); transition: var(--transition); position: relative; }
.pricing-card.featured { border-color: var(--primary-blue); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before { content:'Popular'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--text-dark); padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.pricing-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-lg); }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--primary-blue); margin: 0.75rem 0; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.pricing-features { text-align: left; margin: 1.25rem 0 1.5rem; }
.pricing-features li { padding: 0.4rem 0; display: flex; align-items: center; gap: 0.5rem; color: var(--text-medium); font-size: 0.9rem; }
.pricing-features li::before { content:'✓'; color: var(--success); font-weight: 700; }

/* Filter Tabs */
.filter-tabs { display: flex; gap: 0.4rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-tab { padding: 0.5rem 1.25rem; border-radius: 25px; font-weight: 500; font-size: 0.85rem; background: var(--white); color: var(--text-medium); cursor: pointer; transition: var(--transition); border: 1px solid var(--medium-grey); }
.filter-tab.active, .filter-tab:hover { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

/* Steps (for inner pages that still use them) */
.steps-container { max-width: 800px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.step-number { width: 42px; height: 42px; min-width: 42px; background: var(--primary-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; z-index: 2; }
.step-number.gold { background: var(--gold); color: var(--text-dark); }
.step-content h4 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.step-content p { color: var(--text-medium); font-size: 0.9rem; }
.step-line { position: absolute; left: 21px; top: 42px; width: 2px; height: calc(100% + 0.5rem); background: var(--medium-grey); }

/* Resource Cards */
.resource-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--medium-grey); transition: var(--transition); }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(10,78,161,0.08); }
.resource-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.resource-body { padding: 1.25rem; }
.resource-body .category { color: var(--primary-blue); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.resource-body h4 { margin: 0.4rem 0; font-size: 1rem; }
.resource-body p { font-size: 0.85rem; color: var(--text-light); }

/* Badge */
.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.badge-blue { background: rgba(10,78,161,0.1); color: var(--primary-blue); }
.badge-gold { background: rgba(242,183,5,0.2); color: var(--gold-dark); }
.badge-green { background: rgba(56,161,105,0.1); color: var(--success); }

/* Testimonial (for inner pages) */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--medium-grey); }
.testimonial-text { font-style: italic; color: var(--text-medium); margin-bottom: 1.25rem; font-size: 0.95rem; line-height: 1.7; }

/* Job card (inner pages) */
.job-card { background: var(--white); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; border: 1px solid var(--medium-grey); display: flex; align-items: center; justify-content: space-between; transition: var(--transition); gap: 1rem; }
.job-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-sm); }
.job-info h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.job-company { color: var(--primary-blue); font-weight: 500; font-size: 0.85rem; }
.job-meta { display: flex; gap: 1rem; margin-top: 0.3rem; color: var(--text-light); font-size: 0.8rem; }
.job-type { padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; background: rgba(10,78,161,0.1); color: var(--primary-blue); }
.job-type.internship { background: rgba(242,183,5,0.15); color: var(--gold-dark); }
.job-type.ngo { background: rgba(56,161,105,0.1); color: var(--success); }

/* Old CTA section (inner pages) */
.cta-section { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy) 100%); padding: 3.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.5rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* Old footer (inner pages - will migrate later) */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; display: block; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.8rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold-dark); transform: translateY(-2px); }
.footer-column h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; text-transform: uppercase; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-column ul li a:hover { color: var(--gold); }
.footer-newsletter p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0.75rem; }
.newsletter-form { display: flex; gap: 0.4rem; }
.newsletter-form input { flex: 1; padding: 0.6rem 0.75rem; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: var(--white); font-size: 0.85rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { padding: 0.6rem 1rem; background: var(--gold); color: var(--text-dark); border-radius: 6px; font-weight: 600; font-size: 0.85rem; }
.footer-bottom { padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== MOBILE NAV DRAWER ===== */
.mob-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.mob-nav-overlay.active { display: block; }

.mob-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mob-nav-drawer.active { transform: translateX(0); }

.mob-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    height: 64px;
    border-bottom: 1px solid #F1F5F9;
    flex-shrink: 0;
}
.mob-nav-header img { height: 36px; width: auto; }
.mob-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8FAFC;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #4A5568;
    transition: all 0.2s;
}
.mob-nav-close:hover { background: #E2E8F0; }

.mob-nav-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
}

.mob-nav-item { border-bottom: 1px solid #F1F5F9; }
.mob-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 500;
    color: #1A202C;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s;
}
.mob-nav-link:hover { background: #F8FAFC; }
.mob-nav-link.is-active { color: #0A4EA1; }

.mob-nav-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
    color: #718096;
    font-size: 0.7rem;
}
.mob-nav-item.open .mob-nav-arrow {
    transform: rotate(180deg);
    background: rgba(10,78,161,0.1);
    color: #0A4EA1;
}

.mob-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #F8FAFC;
}
.mob-nav-item.open .mob-nav-sub { max-height: 800px; }

.mob-nav-group-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #A0AEC0;
    padding: 0.75rem 1.25rem 0.25rem;
}
.mob-nav-sub-link {
    display: flex;
    align-items: center;
    padding: 0 1.25rem 0 2rem;
    min-height: 46px;
    font-size: 0.9rem;
    color: #4A5568;
    text-decoration: none;
    border-bottom: 1px solid #EDF2F7;
    transition: color 0.15s, background 0.15s;
}
.mob-nav-sub-link:last-child { border-bottom: none; }
.mob-nav-sub-link:hover { color: #0A4EA1; background: rgba(10,78,161,0.04); }

.mob-nav-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #F1F5F9;
    flex-shrink: 0;
    background: #fff;
}
.mob-nav-footer .btn-mob {
    display: block;
    text-align: center;
    padding: 0.85rem;
    background: #0A4EA1;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}
.mob-nav-footer .btn-mob:hover { background: #083D80; }
.mob-nav-footer .btn-mob.secondary {
    background: transparent;
    color: #0A4EA1;
    border: 1.5px solid #0A4EA1;
    margin-bottom: 0;
}

/* Hide chatbot when mobile nav is open */
body.mob-nav-open .chatbot-widget,
body.mob-nav-open #chatbotWidget { display: none !important; }

@media (min-width: 769px) {
    .mob-nav-overlay, .mob-nav-drawer { display: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer-grid-new { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: repeat(3,1fr); }
    .impact-grid { grid-template-columns: repeat(2,1fr); }
    .process-connector { width: 15px; }
    .process-step { padding: 0.5rem 0.25rem; }
    .process-icon { width: 50px; height: 50px; font-size: 1rem; }
    .nav-link { padding: 1.4rem 0.6rem; font-size: 0.82rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .section { padding: 3rem 0; }
    .container { padding: 0 1.25rem; }
    .top-bar { display: none; }
    .navbar { top: 0; position: fixed; width: 100%; }
    .hero { padding-top: 68px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1rem; }
    .hero-buttons { flex-wrap: wrap; }
    .page-header { padding: 7rem 0 2.5rem; }
    .page-header h1 { font-size: 1.8rem; }
    .nav-center { display: none; }
    .mobile-toggle { display: flex; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .impact-grid { grid-template-columns: repeat(2,1fr); }
    .impact-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.75rem; }
    .process-steps { flex-wrap: wrap; justify-content: center; }
    .process-connector { display: none; }
    .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-new { grid-column: 1 / -1; text-align: center; margin-bottom: 1rem; }
    .footer-brand-new .footer-social-new { justify-content: center; }
    .footer-col h4 { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .footer-col ul li { margin-bottom: 0.3rem; }
    .footer-col ul li a { font-size: 0.82rem; }
    .footer-bottom-new .container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .slider-arrow { display: none; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid-new { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand-new { text-align: center; }
    .footer-col { text-align: left; }
}

/* ===== JOB IMAGE ADVERT CARD ===== */
.job-advert-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--medium-grey, #E2E8F0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}
.job-advert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.job-advert-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
}
.job-advert-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
}
.job-advert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-top: 1px solid var(--medium-grey, #E2E8F0);
}
.job-advert-info h4 {
    font-size: 0.95rem;
    color: #1A202C;
    margin: 0 0 0.2rem;
}
@media (max-width: 600px) {
    .job-advert-footer { flex-direction: column; align-items: flex-start; }
    .job-advert-footer .btn { width: 100%; text-align: center; }
}
