.about-hero {
    border-top: 3px solid #3BA7DC;
}

.about-page {
    background-color: #f7f8fc;
    color: #222222;
}

.about-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6268;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #0069B4;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* about old */

/* .about-hero {
    padding: 90px 80px;
    background:
        linear-gradient(90deg,
            rgba(226, 237, 246, 0.97),
            rgba(247, 248, 252, 0.9));
}

.about-hero-content {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    max-width: 900px;
    margin: 0 auto 25px;
    color: #222222;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.15;
    text-transform: capitalize;
}

.about-hero h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 24px auto 0;
    border-radius: 10px;
    background-color: #0069B4;
}

.about-hero p {
    max-width: 900px;
    margin: 0 auto 16px;
}
 */

/* about new */
.about-hero {
    position: relative;

    min-height: 680px;

    padding: 90px 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("img/about-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Optional light overlay so text stays readable */
.about-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.12);

    pointer-events: none;
}


.about-hero-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    text-align: center;
}


/* Small blue heading */

.about-label {
    display: block;

    margin-bottom: 12px;

    color: #0069B4;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* Main heading */

.about-hero h1 {
    max-width: 900px;

    margin: 0 auto 25px;

    color: #222222;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.15;

    text-transform: capitalize;
}


/* Blue divider */

.about-hero h1::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin: 28px auto 0;

    border-radius: 10px;

    background-color: #0069B4;
}


/* Paragraphs */

.about-hero p {
    max-width: 900px;

    margin: 0 auto 18px;

    color: #626262;

    font-size: 17px;

    line-height: 1.65;
}


/* Mobile */

@media (max-width: 768px) {

    .about-hero {
        min-height: auto;

        padding: 70px 25px;

        background-position: center;
    }

    .about-label {
        font-size: 13px;

        letter-spacing: 1.5px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 15px;

        line-height: 1.6;
    }
}

/* services */

/* .about-services {
    padding: 80px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2,
.inspiration-content h2,
.about-cta h2 {
    margin-bottom: 16px;
    color: #222222;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
}

.services-grid {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    padding: 32px;
    overflow: hidden;

    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #0069B4;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 105, 180, 0.35);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(0, 105, 180, 0.1);
    border-radius: 50%;

    color: #0069B4;
    font-size: 23px;
}

.service-card h3 {
    margin-bottom: 14px;
    color: #222222;
    font-size: 20px;
    line-height: 1.4;
}

.service-card p {
    margin: 0;
    font-size: 15px;
}

.service-card:last-child {
    grid-column: span 2;
} */


#featureabout {
    display: grid;

    /* Desktop: 3 columns */
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    padding: 40px 20px;
}


/* Individual boxes */
#featureabout .fe-box {
    width: 100%;

    border: 2px solid #3BA7DC;
    border-radius: 8px;

    overflow: hidden;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Images */
#featureabout .fe-box img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    #featureabout {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;

        padding: 30px 20px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

    #featureabout {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 25px 15px;
    }

}

/* inspiration */

.inspiration-section {
    padding: 50px;
    background-color: #ffffff;
}

.inspiration-card {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;

    overflow: hidden;

    background-color: #EAF4FB;
    border-radius: 28px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.inspiration-image {
    width: 100%;
    min-height: 430px;
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;

    display: block;

    object-fit: cover;
    object-position: center;
}

.inspiration-content {
    position: relative;
    padding: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inspiration-content::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;

    width: 230px;
    height: 230px;

    border-radius: 50%;
    background-color: rgba(0, 105, 180, 0.08);
}

.inspiration-content>* {
    position: relative;
    z-index: 1;
}

.inspiration-content h2 {
    margin-bottom: 18px;
}

.inspiration-content h2::after {
    content: "";
    display: block;

    width: 48px;
    height: 3px;
    margin-top: 16px;

    border-radius: 10px;
    background-color: #0069B4;
}

.inspiration-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #5f6268;
}


/* call to action */

.about-cta {
    padding: 60px;
    background: #f7f8fc;
}

.cta-banner {
    display: block;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.cta-banner:hover {
    transform: translateY(-6px);

    box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
}

.cta-banner img {
    display: block;

    width: 100%;
    height: auto;
}

/* tablet */

@media (max-width: 999px) {

    .about-hero,
    .about-services,
    .inspiration-section {
        padding: 60px 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .inspiration-card {
        grid-template-columns: 1fr;
    }

    .inspiration-image {
        min-height: auto;
    }

    .inspiration-image img {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: 500px;
        object-fit: cover;
    }

    .about-cta {
        padding: 60px 40px;
    }
}


/* regular mobile */

@media (max-width: 768px) {
    .about-hero {
        padding: 55px 20px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-services,
    .inspiration-section {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 26px 22px;
    }

    .inspiration-card {
        border-radius: 12px;
    }

    .inspiration-content {
        padding: 35px 25px;
    }

    .inspiration-image img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .about-cta {
        padding: 40px 20px;
    }

    .cta-banner {
        border-radius: 12px;
    }
}


/* small mobile */

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .section-heading h2,
    .inspiration-content h2,
    .about-cta h2 {
        font-size: 29px;
    }

    .about-page p {
        font-size: 15px;
    }

    .about-hero,
    .about-services,
    .inspiration-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .inspiration-content {
        padding: 30px 20px;
    }

    .about-cta {
        padding: 30px 15px;
    }
}