* RESET*/ *,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* SCROLL ANIMATIONS */

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-stagger {
    opacity: 0;
    transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal-fade {
    transform: translateY(20px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-stagger {
    transform: translateY(60px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay */
.reveal-stagger:nth-child(1) {
    transition-delay: .1s;
}

.reveal-stagger:nth-child(2) {
    transition-delay: .2s;
}

.reveal-stagger:nth-child(3) {
    transition-delay: .3s;
}

.reveal-stagger:nth-child(4) {
    transition-delay: .4s;
}


/* HERO SECTION – STAY HOUSED */

.hero {
    background: linear-gradient(135deg, #f5f9ff 0%, #e6efff 100%);
    padding: 160px 0 110px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* TEXT CONTENT */

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* PRIMARY BUTTON */

.btn-primary {
    background: linear-gradient(45deg, #1e3a8a, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* SECONDARY BUTTON */

.btnn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a !important;
}

.btnn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

/* HERO IMAGE VISUAL */

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

/* CENTER ICON */

.central-logo {
    text-align: center;
    color: white;
    z-index: 2;
}

.central-logo i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.central-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* FLOATING ICONS */

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.icon-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    animation: float 7s ease-in-out infinite;
}

/* Icon positions */
.icon-item:nth-child(1) {
    top: 20%;
    left: 15%;
}

.icon-item:nth-child(2) {
    top: 65%;
    left: 80%;
}

.icon-item:nth-child(3) {
    top: 80%;
    left: 25%;
}

.icon-item:nth-child(4) {
    top: 30%;
    left: 75%;
}

.icon-item:nth-child(5) {
    top: 70%;
    left: 50%;
}

.icon-item:nth-child(6) {
    top: 45%;
    left: 30%;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(180deg);
    }
}

/* MOBILE RESPONSIVENESS */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;


    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-visual {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 130px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* IMPACT / MISSION SECTION */

.impact-section {
    background: white;
    padding: 100px 0;
}

.impact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-content {
    text-align: center;
}

.impact-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #475569;
}

.impact-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Subtle divider line above section */
.impact-section::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #1e3a8a, #2563eb);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* MOBILE */

@media (max-width: 768px) {
    .impact-section {
        padding: 70px 0;
    }

    .impact-text {
        font-size: 1rem;
    }
}

/* MISSION / VISION SECTION */

.mission-vision {
    padding: 110px 0;
    background: #f5f9ff;
}

.mission-vision .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* CARD */

.mission-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e6efff;
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.15);
}

/* ICON */

.mission-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

/* TITLE */

.mission-item h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* TEXT */

.mission-item p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .mission-vision {
        padding: 80px 0;
    }

    .mission-item {
        padding: 2rem 1.5rem;
    }
}

/* HOUSING ALERT SECTION */

.housing-alert {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    padding: 40px 0;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.housing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ICON */
.alert-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* TEXT */
.alert-text {
    flex: 1;
    min-width: 250px;
}

.alert-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.alert-text p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-help {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: helpPulse 2.5s infinite;
}

.btn-help:hover {
    background: #f1f5ff;
    transform: translateY(-2px);
}

/* Gentle Pulse */
@keyframes helpPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

/* MOBILE RESPONSIVENESS */

@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .btn-help {
        width: 80%;
        justify-content: center;
    }
}

/* COMMITMENT SECTION */

.commitment-section {
    background: white;
    padding: 100px 0;
}

.commitment-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.commitment-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
}

.commitment-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Subtle top accent line for visual flow */
.commitment-section::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(45deg, #1e3a8a, #2563eb);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .commitment-section {
        padding: 70px 0;
    }

    .commitment-text {
        font-size: 1rem;
    }
}


/* OUR TEAM SECTION */

.our-team {
    padding: 100px 0;
    background: #f8fafc;
}

.our-team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */

.team-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 70px;
    font-weight: 700;
}

/* TEAM GRID */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* TEAM CARD */

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    transition: transform .3s ease,
        box-shadow .3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* PHOTO */

.member-photo {
    margin-bottom: 20px;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;

    border: 4px solid #e2e8f0;
}

/* MEMBER INFO */

.member-info h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.position {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* TEAM PHOTO */

.team-photo {
    margin-top: 80px;
}

.team-photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-photo-container img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Overlay */

.team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 40px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, 0.75));

    color: white;
    text-align: center;
}

.team-photo-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.team-photo-overlay p {
    font-size: 1rem;
    opacity: .9;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .our-team {
        padding: 70px 0;
    }

    .team-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .team-photo-container img {
        height: 300px;
    }

}