.feature-list ul {
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 1.5rem;
    list-style: none;
}

.feature-list li i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Team Modal Start */
.team-clickable {
    cursor: pointer;
}

#teamModal .modal-body {
    min-height: 250px;
}

.team-description {
    line-height: 1.8;
}

/* Team Modal End */

.service-item h4 a {
    color: var(--primary)
}

/* Mission               ---- START */
.mission {
    padding: 8rem 0;

}

.mission .testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission .testimonial-logo {
    height: 26px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.mission .testimonial-card h6 {
    margin-bottom: 2px;
}

.mission .testimonial-card small {
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .mission .testimonial-card {
        padding: 24px;
    }
}

/* Mission & Vision END */

/* About Section - 1 Start ======================================= */
.about-feature {
    position: relative;
}

.about-feature img {
    min-height: 420px;
    object-fit: cover;
}

.about-feature-card {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: #fff;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
}


@media (max-width: 991.98px) {

    .about-feature-card {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 20px;
        padding: 30px;
    }

    .about-feature img {
        min-height: auto;
    }
}

/* About Section - 1 End ======================================= */

.feature-right {
    padding-left: 6rem;
    padding-right: 6rem;

}

.rounded-circle-icon {
    width: 55px;
    height: 55px;
}

@media (max-width: 991.98px) {
    .feature-right {
        padding-inline: 0;

    }

}

/* About Section - 3 ======================================= */
.specialty-card {
    transition: .3s;
}

.specialty-card:hover {
    border-color: var(--primary) !important;
    transform: translateY(-3px);
}

.specialty-card h5 {
    margin-bottom: 12px;
}

.bss-icon-list {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bss-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    margin-right: .75rem;
    flex-shrink: 0;
}


.appointment {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Diamond --------------------------------- */
/* Diamond Section */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .wrapper {
        width: 98%;
        margin: 0 auto;
    }

}

.diamond {
    /* overflow: hidden; */
}

.diamond .row {
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.diamond__image {
    padding: 0;
    min-height: 500px;
}

.diamond__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.diamond__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.diamond__content h3 {
    margin-bottom: 24px;
}

.diamond__content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.diamond__content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .diamond__image {
        display: none;
    }

    .diamond__content {
        padding: 40px 20px;
    }
}


/* tanzanite  ======================================*/
.part {
    padding-block: 10rem;
}

.bss-block-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(211, 211, 211);
    padding-inline: 2rem;
    padding-block: 4rem;
    border-radius: 9px;
    gap: 2rem;
    text-align: center;
    transition: .3s;

}

.bss-block-card i {
    font-size: 3rem;
}

.bss-block-card:hover {
    border-color: var(--primary);
}