﻿/* ================= BASE ================= */
.inner-hero {
    position: relative;
    width: 100%;
    height: 190px;
    background-image: url('/images/banner/affiliation.png'); /* 👈 change if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    /* DARK OVERLAY */
    .inner-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(11, 31, 75, 0.75), rgba(11, 31, 75, 0.45) );
        z-index: 1;
    }

    .inner-hero .container {
        position: relative;
        z-index: 2;
        color: #fff;
    }

    .inner-hero h1 {
        font-size: 46px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .inner-hero p {
        font-size: 18px;
        opacity: 0.95;
    }
/* ================= CONTENT SECTION ================= */
.inner-content {
    padding: 70px 0;
    background: #f8fafc;
}

.content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    position: relative;
    animation: fadeUp 0.9s ease forwards;
}

/* ICON */
.icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f4b400, #ffd666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(244,180,0,0.35);
}

/* HEADINGS */
.content-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b1f4b;
    margin-bottom: 25px;
}

/* PARAGRAPH */
.content-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .gd-header {
        position: absolute;
        top: 0;
        z-index: 9999;
        background: #fff;
    }
    .inner-hero {
        padding: 70px 15px 55px;
    }

        .inner-hero h1 {
            font-size: 30px;
        }

        .inner-hero p {
            font-size: 16px;
        }

    .content-card {
        padding: 35px 22px;
    }

        .content-card h2 {
            font-size: 24px;
        }

        .content-card p {
            font-size: 15.5px;
        }

    .icon-circle {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}
