.breadcrumb_wrapper {
    background-color: var(--blue-color);
    padding: 70px 0;
    text-align: center;
    color: var(--white-color);
}

.breadcrumb_wrapper__content h2 {
    text-transform: capitalize;
    font-size: 47px;
    font-weight: 600;
}

.breadcrumb_wrapper__content p {
    color: whitesmoke;
}

.heightlight h6 {
    font-weight: 600;
    margin-top: 1rem;
    font-size: 20px;
    color: var(--yellow-color);
}
.heightlight p{
    margin-top: 10px;
}

.heightlight ul {
    margin-top: 1rem;
    padding-left: 1.5rem !important;
}

.heightlight ul li {
    margin-top: 1rem;
    font-size: 18px;
    list-style: disc !important;
}

.mission-vision-box {
    background-color: whitesmoke;
    padding: 2rem;
    border: 1px solid #ccc;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    transition: .3s ease all;
}
.mission-vision-box:hover{
    background-color: var(--blue-color);
}
.mission-vision-box:hover p{
    color: #fff;
}

.mission-vision-box:hover,
.what-box:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .4);
    transform: translateY(-5px);
    transition: .3s ease all;
}

.mission-vision-box img {
    width: 100px;
}

.mission-vision-box h3 {
    text-transform: capitalize;
    font-size: 25px;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--yellow-color);
}

.mission-vision-box p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 1rem;
}

.journey_wrapper__content ul {
    padding-left: 2rem !important;
    margin-top: 1rem;
}

.journey_wrapper__content ul li {
    margin-bottom: 1rem;
    font-size: 16px;
    color: #333;
    list-style: disc !important;
}

.table_row {
    background-color: var(--main-color);
    color: var(--white-color);
}

th,
th,
td {

    border: 0.0625rem solid #ccc !important;

}

td a {
    color: var(--main-color);
    font-weight: 500;
}

.table_responsive {
  width: 100%;
  overflow-x: auto; /* Will only show horizontal scroll if needed */
}

.table {
  width: 100%;
  min-width: 600px; /* Prevents cramping on small screens */
  border-collapse: collapse;
}

.table th, .table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

/* Optional: Make Apply link look good */
.table a {
  color: var(--main-color);
  text-decoration: none;
}

.table a:hover {
  text-decoration: underline;
}

/* what-box */
.what-box {
    color: var(--white-color);
    background-color: var(--blue-color);
    text-align: center;
    height: 100%;
    border-radius: 10px;
    transition: .3s ease all;
}

.what-box img {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.what-box h6 {
    font-size: 16px;
    margin-top: 1rem;
    line-height: 26px;
    padding: 0 10px 10px 10px;
}

/* cta_wrapper */
.cta_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-attachment: fixed;
    background-position: center;
}

.cta_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 12px;
}

.cta_wrapper__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--white-color);
}

.cta_wrapper__content h2 {
    font-size: 44px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .4);
    font-weight: 600;
}

.cta_wrapper__content p {
    font-size: 22px;
    font-weight: 500;
    color: whitesmoke;
}

@media(max-width:992px) {
    .mission-vision-box {
        margin-bottom: 1rem;
        height: auto;
    }

    .what-box {
        height: 94%;
    }
}

@media(max-width:768px) {
    .breadcrumb_wrapper {
        padding: 45px 0;
    }

    .cta_wrapper {
        padding: 50px 0;
        background-attachment: inherit;
    }

    .cta_wrapper__content h2 {
        font-size: 28px;
    }

    .cta_wrapper__content p {
        font-size: 16px;
    }

    .breadcrumb_wrapper__content h2 {
        font-size: 34px;
    }

    .mission-vision-box {
        padding: 1.5rem 1rem;
    }

    .details_content h3 {
        font-size: 18px;
    }

    .details_content p {
        margin-top: 10px;
    }

    .what-box h6,
    .details_content p {
        font-size: 14px;
        line-height: 24px;
    }


    .mission-vision-box img {
        width: 62px;
    }

    .mission-vision-box h3 {
        font-size: 18px;
        margin-top: 1.5rem;
    }

    .mission-vision-box p {
        font-size: 14px;
        line-height: 25px;
        margin-top: 10px;
    }

    .heightlight ul li {
        font-size: 14px;
        margin-top: 10px;
    }
}

@media(max-width:576px) {
    .what-box {
        height: auto;
        margin-bottom: 12px;

    }

    .breadcrumb_wrapper__content h2 {
        font-size: 24px;
    }
}