@charset "utf-8";

/* Global Layout */
html, body {
    height: 100%;
}

body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Pure White Modern Navbar */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f1f1;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.navbar-nav .nav-link {
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15%;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

/* Slider Section - Restored working proportions */
.carousel-item img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    text-shadow: 0px 4px 20px rgba(0,0,0,0.8), 2px 2px 10px rgba(0,0,0,1);
    margin: 0 !important;
}

.carousel-caption h5 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.carousel-caption p {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.carousel-caption .btn-primary {
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    border-radius: 0;
    animation: fadeInUp 1.4s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Mission List Styling - Welcome Page */
.mission-list li {
    padding: 8px 0;
    font-size: 1.05rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

/* Who We Are Banner Centering Fix */
.banner-crop {
    height: 400px;
    object-fit: cover;
    object-position: center; 
    width: 100%;
}

/* Who We Are Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.italic {
    font-style: italic;
}

/* Footer Styling */
.footer-link-text {
    color: #cccccc !important;
    transition: all 0.3s ease;
}

.footer-link-text:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 100vh !important;
    }
    .banner-crop {
        height: 250px;
    }
}


/* How We Help Cards */
.card-body h5 {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.card-body p {
    line-height: 1.6;
}

/* Badge Styling */
.badge.bg-primary {
    background-color: #007bff !important;
    border-radius: 0;
    letter-spacing: 1px;
}

/* Italic Quote */
.italic {
    font-style: italic;
}

/* Ensure the dark section doesn't feel too heavy */
.bg-dark {
    background-color: #1a1a1a !important;
}

.text-muted {
    color: #888 !important;
}