/* ==========================
   OBJECTIVE SECTION
========================== */

.objective-section {
    margin: 50px 0;
    background: #fff;
}

.objective-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Tag */

.objective-tag {
    display: inline-block;
    background: #e8f6ea;
    color: #3c7a45;
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 20px;
}

/* Title */

.objective-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

/* Content */

.objective-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

/* Image */

.objective-image {
    text-align: center;
}

.image-frame {
    position: relative;
    display: inline-block;
}

.image-frame img {
    width: 100%;
    max-width: 320px;
    height: 340px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Yellow Border */

/* .image-frame::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: 30px;
    bottom: 30px;
    border: 6px solid #f4b51f;
    z-index: 1;
} */

/* Accent Block */

.frame-accent {
    position: absolute;
    width: 45px;
    height: 130px;
    background: #f4b51f;
    right: -25px;
    top: 45px;
    z-index: 1;
}

/* Date */

.objective-date {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.objective-date span {
    font-size: 14px;
    color: #222;
}

.objective-date strong {
    background: #f4b51f;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}
/* ==========================
   MISSION & VISION
========================== */

.mission-vision-section {
    margin: 50px 0;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: #f8f6ef;
    padding: 20px 18px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    /* min-height: 320px; */
}

/* Left Border Accent */

.mission-card {
    border-left: 6px solid #ff6b6b;
}

.vision-card {
    border-left: 6px solid #0d4f8b;
}

/* Icon */

.mv-icon {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1;
}

/* Heading */

.mission-card h3 {
    color: #ff5a5a;
}

.vision-card h3 {
    color: #0d4f8b;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */

.mv-card p {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
}


/* ==========================
   1200px
========================== */

@media (max-width: 1200px) {

    .objective-title {
        font-size: 36px;
    }

    .objective-wrapper {
        gap: 40px;
    }
      .mv-card h3 {
        font-size: 30px;
    }
}

/* ==========================
   991px
========================== */

@media (max-width: 991px) {

    .objective-wrapper {
        grid-template-columns: 1fr;
    }

    .objective-image {
        margin-top: 30px;
    }

    .objective-title {
        font-size: 32px;
    }
     .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        min-height: auto;
    }
}

/* ==========================
   767px
========================== */

@media (max-width: 767px) {

    .objective-section {
        margin: 40px 0;
    }

    .objective-title {
        font-size: 28px;
    }

    .objective-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .image-frame img {
        max-width: 280px;
        height: 340px;
    }
     .mission-vision-section {
        margin: 40px 0;
     }

    .mv-card {
        padding: 30px 24px;
    }

    .mv-card h3 {
        font-size: 26px;
    }

    .mv-card p {
        font-size: 14px;
        line-height: 1.9;
    }
}

/* ==========================
   545px
========================== */

@media (max-width: 545px) {

    .objective-title {
        font-size: 24px;
    }

    .image-frame img {
        max-width: 240px;
        height: 300px;
    }

    .objective-date {
        flex-direction: column;
        gap: 8px;
    }

    .objective-date span {
        font-size: 22px;
    }

    .objective-date strong {
        font-size: 15px;
    }
    .mv-card {
        padding: 25px 20px;
    }

    .mv-card h3 {
        font-size: 22px;
    }

    .mv-icon {
        font-size: 30px;
    }
}

/* ==========================
   320px
========================== */

@media (max-width: 320px) {

    .objective-title {
        font-size: 20px;
    }

    .objective-content p {
        font-size: 12px;
    }

    .image-frame img {
        max-width: 200px;
        height: 260px;
    }

    .frame-accent {
        width: 30px;
        height: 100px;
    }
    .mv-card h3 {
        font-size: 20px;
    }

    .mv-card p {
        font-size: 13px;
    }

    .mv-icon {
        font-size: 26px;
    }
}