/* ================= HERO ================= */
.about-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 27, 51, 0.6) 0%,
        rgba(15, 40, 80, 0.5) 100%
    );
    z-index: 1;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-label {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}
/* ================= HERO BUTTON ================= */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: #ffffff;
    color: #0a1a33;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e4ecff;
}
/* ================= CENTERED PREMIUM EDITORIAL ================= */

.about-intro {
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

/* block center */
.center-block {
    max-width: 850px;
    margin: 0 auto 100px auto;
    text-align: center;
}

.center-block:last-child {
    margin-bottom: 0;
}

/* small tag above title */
.section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #2d5edb;
    margin-bottom: 20px;
}

/* BIG modern heading */
.center-block h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 28px;
    color: #0f2850;

    /* dimensional depth */
    text-shadow:
        0 10px 30px rgba(15,40,80,0.08),
        0 2px 4px rgba(15,40,80,0.05);
}

/* decorative underline center */
.center-block h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    margin: 25px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #1e3c72, #2d5edb);
}

/* paragraph */
.center-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #44546a;
    margin-bottom: 20px;
    font-weight: 500;
}

/* strong highlight */
.center-block strong {
    color: #1e3c72;
    font-weight: 700;
}

/* responsive */
@media (max-width: 992px) {
    .center-block h2 {
        font-size: 38px;
    }

    .center-block p {
        font-size: 18px;
    }
}
/* ================= MODERN VISION & MISSION ================= */

.about-vision-mission {
    padding: 70px 60px;
    background: linear-gradient(180deg, #f6f9ff 0%, #edf3fb 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* BASE CARD */
.info-card {
    padding: 40px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

/* ================= VISI STYLE ================= */
.visi-card {
    background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
    box-shadow: 0 25px 60px rgba(30, 60, 114, 0.08);
}

/* ================= MISI STYLE ================= */
.misi-card {
    background: linear-gradient(135deg, #f9fbff 0%, #dfeaff 100%);
    box-shadow: 0 25px 60px rgba(45, 94, 219, 0.08);
}

/* GLOW EFFECT LAYER */
.info-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45,94,219,0.18) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    transition: 0.6s ease;
    opacity: 0.6;
}

/* HOVER ANIMATION */
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(30,60,114,0.15);
}

.info-card:hover::before {
    transform: scale(1.3) rotate(20deg);
    opacity: 1;
}

/* HEADING */
.info-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1b2b4b;
}

/* TEXT */
.info-card p,
.info-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #5c6b80;
}

/* LIST */
.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

/* BULLET ANIMATED */
.info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72, #2d5edb);
    transition: 0.3s ease;
}

.info-card:hover li::before {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(45,94,219,0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}
/* CONTACT SECTION */
/* ========================= */

.contact-section {
    padding: 60px 40px;
    background: linear-gradient(
        to bottom,
        #eef2f7 0%,
        #e3ebf8 100%
    );
    text-align: center;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0f2850;
}

.contact-subtitle {
    margin-bottom: 60px;
    color: #555;
}

/* GRID LAYOUT 2-2-1 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

/* CARD */
.contact-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    text-align: center;
    text-decoration: none;
    color: #1f2f3f;

    transition: all 0.35s ease;
    cursor: pointer;
}

/* ICON */
.contact-card i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0f2850;
}

/* TITLE */
.contact-card h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */
.contact-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 40, 80, 0.15);
}

/* ACTIVE CLICK EFFECT */
.contact-card:active {
    background: #0f2850;
    color: #ffffff;
}

.contact-card:active i,
.contact-card:active p {
    color: #ffffff;
}


@media (max-width: 992px) {

    .about-hero,
    .about-intro,
    .about-vision-mission {
        padding: 80px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

}
/* ========================= */
/* LOCATION SECTION */
/* ========================= */

.location-section {
    padding: 80px 60px;
    background: #ffffff;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.location-header p {
    color: #555;
}

.location-container {
    display: block;
    max-width: 1200px;
    margin: auto;
}



.location-map iframe {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}