﻿
.accreditation-section {
    background: linear-gradient(90deg, #6FC3B4, #D8D268, #F8C640, #E79129);
    padding: 80px 20px;
    color: #fff;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h5 {
        letter-spacing: 2px;
        font-size: 14px;
        color: #bbb;
    }

    .section-header h2 {
        font-size: 42px;
        font-weight: 800;
        margin: 10px 0;
    }

    .section-header p {
        color: #000;
    }

/* GRID */
.accreditation-grid {
    display: flex;
    justify-content: center;
    gap: 60px; /* ← increased spacing */
}

/* CARD */
.acc-card {
    background: #fff;
    color: #000;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 6px solid #f0b429;
    box-shadow: 0 8px 25px rgba(0,0,0,.4);
    width: 420px;
    /* Animation */
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

    .acc-card:nth-child(2) {
        animation-delay: 0.2s;
    }

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* HOVER EFFECT */
.acc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(240,180,41,.25);
    transition: 0.3s;
}

.acc-card img {
    width: 70px;
}

.acc-card h4 {
    margin-bottom: 6px;
}

.acc-card p {
    color: #3b3838;
    font-size: 15px;
}

/* MOBILE — keep side-by-side */
@media (max-width:768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .accreditation-grid {
        flex-direction: row;
        gap: 20px;
    }

    .acc-card {
        width: 48%;
        padding: 18px;
    }

        .acc-card img {
            width: 50px;
        }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* small label badge */
.section-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* main heading */
.section-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

/* description */
.section-header p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .section-header h1 {
        font-size: 34px;
    }

    .accreditation-grid {
        gap: 30px;
    }

    .acc-card {
        width: 360px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .accreditation-section {
        padding: 50px 15px;
    }

    .section-header h1 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .accreditation-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .acc-card {
        width: 100%;
        max-width: 420px;
        padding: 20px;
    }

        .acc-card img {
            width: 55px;
        }
}




/* ===== CONTACT PAGE CORE ===== */
.contact-content h1 {
    font-size: 38px;
    font-weight: 900;
    color: black;
    margin-bottom: 14px;
}

.contact-content h1 span {
    background: linear-gradient(90deg,#FFAE00,#ffd36b);
    -webkit-background-clip: text;
    color: transparent;
}

.info-row {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.info-box {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    box-shadow: 0 14px 35px rgba(0,0,0,.06);
}

    .info-box i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        background: #fff;
        border-radius: 14px;
        color: #4B1D69;
    }

    .info-box h6 {
        margin: 0 0 4px;
        font-weight: 800;
    }

    .info-box a {
        color: #000000;
        font-weight: 500;
        text-decoration: none;
    }

.map-block {
    margin-top: 26px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.map-title {
    padding: 14px 18px;
    font-weight: 800;
    background: #f6f2fb;
}

.map-block iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

@media(max-width:768px) {
    .contact-card {
        padding: 26px
    }

    .contact-content h1 {
        font-size: 32px
    }
}




