:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* hero section */
.about-hero-section {
    padding: 122px 80px;
    background: var(--secondary);

}

.about-img-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;

}

/* our story */
.our-section {
    padding: 122px 80px;
}

.our-story-wrapper img {
    width: 100%;
    border-radius: 20px;
    height: 550px;
    object-fit: cover;
}

.story-content {
    padding: 20px 24px;
}

/* goal-section */

.goal-section {
    padding: 120px 0;
}

.goal-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #003566;
}

.stand-card {
    background: #fff;
    border: 1px solid #d9e3ec;
    border-radius: 14px;
    padding: 40px;
    height: 100%;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stand-card.animate-on-scroll.show:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.stand-card:hover .icon-box i {
    color: white;
}

.stand-card:hover .icon-box {
    background: var(--primary-navy);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #edf7ff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.icon-box i {
    font-size: 24px;
    color: #003566;
}

.stand-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #002f63;
}

.stand-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #7894bd;
    margin-bottom: 0;
}

/* Animation */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.about-img-wrapper,
.our-story-wrapper {
    transition-delay: 0.2s;
}

.stand-card {
    transition: all 0.4s ease;
}

.stand-card:nth-child(1) {
    transition-delay: 0.1s;
}

.stand-card:nth-child(2) {
    transition-delay: 0.25s;
}

.stand-card:nth-child(3) {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1199px) {

    .about-hero-section,
    .our-section {
        padding: 90px 40px;
    }

    .goal-section {
        padding: 90px 40px;
    }
}

@media (max-width: 991px) {

    .about-hero-section,
    .our-section {
        padding: 70px 24px;
        text-align: center;
    }

    .about-img-wrapper img,
    .our-story-wrapper img {
        height: 420px;
    }

    .story-content {
        padding: 20px 0;
    }

    .goal-section {
        padding: 70px 24px;
    }

    .goal-title {
        font-size: 36px;
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {

    .about-hero-section,
    .our-section {
        padding: 55px 16px;
    }

    .about-hero-section h1,
    .story-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .description {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-img-wrapper img,
    .our-story-wrapper img {
        height: 320px;
        border-radius: 14px;
    }

    .goal-section {
        padding: 55px 16px;
    }

    .goal-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .stand-card {
        padding: 30px;
    }

    .stand-card h3 {
        font-size: 24px;
    }

    .stand-card p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .about-hero-section,
    .our-section,
    .goal-section {
        padding: 45px 12px;
    }

    .about-hero-section h1,
    .story-content h1 {
        font-size: 28px;
    }

    .about-img-wrapper img,
    .our-story-wrapper img {
        height: 260px;
    }

    .goal-title {
        font-size: 28px;
    }

    .stand-card {
        padding: 24px;
    }

    .icon-box {
        width: 52px;
        height: 52px;
    }
}