/* ========================================
   RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Container for consistent spacing */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section padding */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 40px 0;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.btn-primary {
    background-color: #1E3A8A;
    color: white;
    border: 2px solid #1E3A8A;
}

.btn-primary:hover {
    background-color: transparent;
    color: #1E3A8A;
}

.btn-secondary {
    background-color: #F97316;
    color: white;
    border: 2px solid #F97316;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #F97316;
}

.btn-link {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: #1E3A8A;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: #F97316;
    margin: 0 auto 20px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   NAVIGATION / HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F97316;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(249,115,22,0.1);
    color: #F97316;
    padding-left: 25px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #333;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero {
    height: 100vh;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,58,138,0.85) 0%, rgba(249,115,22,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: #F97316;
    border-color: #F97316;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #F97316;
    transform: scale(1.2);
    border-color: white;
}

.dot:hover {
    background: white;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .slider-arrow {
        display: none;
    }
}

/* ========================================
   OUR STORY SECTION - COMPLETELY NORMAL
   ======================================== */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* NO FIRST LETTER STYLING - EVERYTHING NORMAL */
.story-text p {
    margin-bottom: 20px;
    color: #666;
}

/* Story Stats - Normal styling with NO BULLETS */
.story-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    list-style: none;
}

.story-stats .stat-item,
.story-stats li,
.story-stats ul {
    list-style: none;
    list-style-type: none;
}

.story-stats .stat-item {
    text-align: center;
}

.story-stats .stat-item h4 {
    font-size: 2rem;
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-stats .stat-item p {
    color: #666;
    font-size: 1rem;
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #1E3A8A;
}

/* ========================================
   IMPACT SECTION
   ======================================== */
.impact {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: white;
}

.impact .section-header h2 {
    color: white;
}

.impact .section-header p {
    color: rgba(255,255,255,0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.impact-icon {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.impact-card p {
    color: rgba(255,255,255,0.9);
}

/* ========================================
   PROJECTS / WHAT WE DO SECTION
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #F97316;
    transition: width 0.3s ease;
}

.project-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30,58,138,0.2);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    background: #F97316;
}

.project-icon i {
    font-size: 2rem;
    color: #F97316;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon i {
    color: white;
}

.project-card h3 {
    margin-bottom: 15px;
    color: #1E3A8A;
}

.project-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news {
    background: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30,58,138,0.1);
}

.news-date {
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 1rem;
    color: #F97316;
    text-transform: uppercase;
}

.news-content h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ========================================
   GET INVOLVED SECTION
   ======================================== */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.involvement-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.15);
    border-color: #F97316;
}

.involvement-card.highlight {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: white;
}

.involvement-card.highlight h3,
.involvement-card.highlight p {
    color: white;
}

.involvement-icon {
    width: 80px;
    height: 80px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.involvement-card:hover .involvement-icon {
    background: #F97316;
}

.involvement-card:hover .involvement-icon i {
    color: white;
}

.involvement-icon i {
    font-size: 2.5rem;
    color: #F97316;
    transition: all 0.3s ease;
}

.involvement-card.highlight .involvement-icon {
    background: rgba(255,255,255,0.2);
}

.involvement-card.highlight .involvement-icon i {
    color: white;
}

.involvement-card h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
}

.involvement-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   PUBLICATIONS PREVIEW
   ======================================== */
.publications-preview {
    background: white;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.publication-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px dashed transparent;
}

.publication-card:hover {
    border-color: #F97316;
    background: white;
    transform: scale(1.02);
}

.publication-card i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
}

.publication-card h4 {
    color: #1E3A8A;
    margin-bottom: 10px;
}

.publication-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */
.cta {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

.cta .btn-primary:hover {
    background: transparent;
    color: #1E3A8A;
    border-color: #1E3A8A;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #0F172A;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info h3 {
    margin-bottom: 20px;
    color: #F97316;
}

.footer-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    width: 20px;
    color: #F97316;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: #F97316;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F97316;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #F97316;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter {
    margin-top: 30px;
}

.newsletter h4 {
    color: #F97316;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #F97316;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #F97316;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1E3A8A;
}

.newsletter-success {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.newsletter-error {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(249,115,22,0.3);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .impact-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    
    .news-grid,
    .involvement-grid,
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: #f9f9f9;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Story */
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .story-stats .stat-item {
        min-width: 120px;
    }
    
    /* Impact */
    .impact-grid,
    .projects-grid,
    .news-grid,
    .involvement-grid,
    .publications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA */
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .impact-card h3 {
        font-size: 2rem;
    }
    
    .news-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .news-date {
        margin-bottom: 10px;
    }
    
    .story-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .story-stats .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .project-card {
        padding: 25px;
    }
    
    .involvement-card {
        padding: 30px 20px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .slider-arrow,
    .dot,
    .newsletter-form button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Print styles */
@media print {
    .header,
    .hero,
    .cta,
    .footer,
    .slider-arrow,
    .slider-dots {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}