/* CARD BASE */
.mission-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.mission-image {
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mission-card:hover .mission-image img {
    transform: scale(1.08);
}

/* CONTENT AREA */
.mission-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

/* TITLE */
.mission-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mission-title a {
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.mission-title a:hover {
    color: #009fdb;
}

/* EXCERPT */
.mission-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 18px;
}

/* BUTTON */
.mission-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #009fdb;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.mission-btn:hover {
    background: #007bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,159,219,0.3);
}

/* Wrapper needed for positioning */
.mission-carousel {
    position: relative;
}

/* NAV CONTAINER */
.mission-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* allows clicks only on buttons */
}

/* BUTTONS */
.mission-carousel .owl-nav button {
    pointer-events: all;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #009fdb !important;
    color: #fff !important;
    font-size: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* LEFT POSITION */
.mission-carousel .owl-nav .owl-prev {
    margin-left: -25px; /* pushes outside */
}

/* RIGHT POSITION */
.mission-carousel .owl-nav .owl-next {
    margin-right: -25px; /* pushes outside */
}

/* HOVER EFFECT */
.mission-carousel .owl-nav button:hover {
    background: #007bb5 !important;
    transform: scale(1.1);
}

/* OPTIONAL: add shadow for depth */
.mission-carousel .owl-nav button {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}