/* REGISTER MODAL BANNER */
.register-banner {
    background: url('assets/images/hero2.png') center/cover no-repeat;
    padding: 30px 20px;
    /* min-height: 80vh; */
    height: auto;
    width: 100%;
    /* modal ke andar full width */
    max-width: 100%;

}

/* ============ HERO SECTION========== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-banner {
    min-height: 520px;
}

.carousel-item {
    background-color: #e9f6ee;
    /* light green */
}

.hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}


.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #0a4f23;
    font-size: 36px;
    font-weight: bold;
    opacity: 1 !important;

}

/* Prevent Bootstrap hiding arrows */
.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    opacity: 1 !important;
}

.hero-arrow:hover {
    color: #08703a;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 10px;
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .hero-banner {
        min-height: auto;
        text-align: center;
    }

    .hero-img {
        height: 220px;
    }

    .hero-arrow {
        display: none;
    }
}


/* ===== STATS SECTION ===== */
.stats-section {
    background: #0a4f23;
    /* dark green */
    padding: 60px 0;
}

.stats-number {
    color: #c7f1a3;
    /* light green number */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-text {
    color: #d9f5c6;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 576px) {
    .stats-number {
        font-size: 32px;
    }

    .stats-text {
        font-size: 16px;
    }
}

.dibber-section {
    background: #f9f7ec;
}

.feature-box i {
    font-size: 48px;
    color: #1a8f2c;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: #0b5d1e;
    font-weight: 600;
    line-height: 1.4;
}

.feature-box:hover i {
    transform: scale(1.1);
    transition: 0.3s ease;
}


/*  === Learning Approaches Section === */

.learning-approach {
    background: #f9f7ec;
}

.approach-card {
    background: #f3f7f1;
    padding: 24px 28px;
    border-radius: 14px;
}

.approach-card p {
    font-size: 14px;
    color: #1f5e2b;
    margin-bottom: 0;
}

/* RIGHT SHAPES */
.shape-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.shape {
    width: 55px;
    height: 55px;
    background: #cfdccc;
}

/* Shapes */
.circle {
    border-radius: 50%;
}

.square {
    border-radius: 10px;
}

.heart {
    position: relative;
    transform: rotate(-45deg);
    border-radius: 10px;
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    background: #cfdccc;
    border-radius: 50%;
}

.heart::before {
    top: -28px;
    left: 0;
}

.heart::after {
    left: 28px;
    top: 0;
}

.triangle {
    width: 0;
    height: 0;
    background: none;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-top: 55px solid #cfdccc;
}

.flower {
    border-radius: 50%;
    box-shadow:
        25px 0 #cfdccc,
        -25px 0 #cfdccc,
        0 25px #cfdccc,
        0 -25px #cfdccc;
}

.clover {
    border-radius: 50%;
    box-shadow:
        18px 18px #cfdccc,
        -18px 18px #cfdccc,
        18px -18px #cfdccc,
        -18px -18px #cfdccc;
}

/* =====program section==== */

.programs-section {
    background: #ffffff;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-item {
    padding: 14px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: #0a4f23;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-item small {
    color: #4d6f57;
}

.program-item:hover {
    background: #e9f6ee;
}

.program-item.active {
    background: #e9f6ee;
    font-weight: 600;
}

.program-image-wrapper {
    position: relative;
    display: inline-block;
}

.program-image {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}

.program-caption {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a4f23;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 85%;
}

/* Responsive */
@media (max-width: 992px) {
    .program-caption {
        position: static;
        transform: none;
        margin-top: 15px;
    }
}

.card-img-top {
    display: block;
    width: 100%;
}

/* =====location seciton=====  */
.locations-section {
    background: #ffffff;
}

.location-card {
    background: #f7f6ea;
    border-radius: 14px;
}

.location-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #0a4f1e;
}

.location-item i {
    font-size: 22px;
    color: #0a4f1e;
    margin-right: 10px;
}

/* ===map section=== */

.global-presence {
    background: #fbf8ee;
}

.country-pill {
    background: #e7e3c6;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 600;
    color: #0a4f1e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-pill span {
    font-size: 16px;
}

.map-box {
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
}


.footer-section {
    background: #0a4f1e;
    color: #c8f3a6;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c8f3a6;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.social-icons a {
    color: #c8f3a6;
    font-size: 18px;
    margin-left: 15px;
}

.social-icons a:hover {
    color: #ffffff;
}

/* ====== CARD STYLES ====== */

.card {
    border-radius: 14px;
}

.btn-success {
    padding: 12px;
    font-size: 15px;
    border-radius: 30px;
}

.btn-success:hover {
    transform: translateY(-2px);
    transition: 0.2s ease;
}