/* Breadcrumb Area */
.rts-breadcrumb-area {
    padding: 120px 0;
    background-image: url('../images/banner/04.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.rts-breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.rts-breadcrumb-area .title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #fff;
    opacity: 0.8;
    transition: .3s;
}

.breadcrumb-list li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.breadcrumb-list li::after {
    content: '/';
    margin-left: 10px;
    color: #fff;
}

.breadcrumb-list li:last-child::after {
    display: none;
}

/* Mission Vision Cards */
.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--color-primary);
}

.mission-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 171, 61, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 25px;
}

.mission-card .title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Why Choose Us List */
.why-choose-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-heading-1);
}

.why-choose-list li i {
    height: 30px;
    width: 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Team Card */
.team-member-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: .3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 300px;
    width: 100%;
    background-color: #f0f0f0;
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.team-member-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-heading-1);
}

.team-content .designation {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Area */
.cta-area-inner {
    background: var(--color-primary);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-area-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg);
    z-index: -1;
}

.cta-content .title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content .desc {
    color: #fff;
    opacity: 0.9;
    font-size: 18px;
    max-width: 600px;
}

.cta-btn-area .rts-btn.btn-white {
    background: #fff;
    color: var(--color-primary);
}

.cta-btn-area .rts-btn.btn-white:hover {
    background: #1F1F25;
    color: #fff;
}