h1 {
    color: #262626;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* Corner Borders */
.corner-border {
    position: absolute;
    width: 207px;
    height: 207px;
    border: 11px solid #f47920;
}

.top-right {
    top: -9px;
    right: -9px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: -9px;
    left: -9px;
    border-right: none;
    border-top: none;
}

@media(max-width: 992px) {
    .section-2 {
        flex-direction: column-reverse;
    }
}

/* Quote Section */
.quote-container {
    position: relative;
    display: block;
}

.quote {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    margin: 15px 0;
    white-space: normal !important;
    /* Allow text to wrap */
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
    /* Ensure it behaves as a block element */
    text-align: center;
}

.quote span {
    display: inline;
    white-space: normal;
}

.quote-mark {
    font-size: 2.2rem;
    color: #D6D6D6;
    font-weight: bold;
    position: relative;
    display: inline;
}

.quote-left {
    top: -12px;
    left: -5px;
}

.quote-right {
    top: -12px;
    right: -5px;
}

.quote-description {
    width: 80%;
    color: #5B5B5B;
}

/* Our Mission Section */
.mission-box {
    padding: 20px;
}

@media (max-width: 768px) {
    .quote {
        font-size: 28px;
    }

    .mission-box {
        margin-bottom: 20px;
    }

    .quote-description {
        width: 100%;
    }

    .quote-mark {
        font-size: 1.4rem;
    }
}

/* Testimonial Slider */
#Testimonial {
    background: #FD760D;
    overflow: hidden;
    padding: 50px 10px 50px 10px;
}

.testimonial-section {
    position: relative;
    margin: auto;
}

.testimonial-nav {
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.testimonial-nav .custom-arrow {
    color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    pointer-events: all;
}

.testimonial-nav .custom-arrow:hover {
    background: #fff;
    color: #FD760D;
    transition: 0.3s ease;
}

.testimonial-nav .custom-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonialSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonial-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    height: auto;
    width: 100%;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 20px;
}

.client-review {
    flex-grow: 1;
    text-align: center;
}

.testimonial-slide img {
    width: 117px;
    height: 117px;
    object-fit: cover;
    border-radius: 50%;
    background-color: white;
}

.testimonial-slide p {
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    text-align: center;
    padding: 0px 13px;
}

.testimonial-slide .client-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-details .client-name {
    font-size: 16px;
    font-weight: 600;
    color: #545454;
}

.client-details .client-country {
    font-size: 16px;
    font-weight: 400;
    color: #545454;
}

#Testimonial .swiper-pagination-bullet {
    background-color: rgba(58, 50, 50, 0.8);
    margin: 0 6px;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

#Testimonial .swiper-pagination-bullet-active {
    background-color: #fff;
}

.stars{
    display: flex;
    gap: 10px;
}

.stars i {
    color: transparent;
    font-size: 24px;
    transition: color 0.2s ease;
    -webkit-text-stroke: 1px #FD760D;
}

.stars i.full {
    color: #FD760D;
}

.stars i.partial {
    position: relative;
    background: linear-gradient(to right, #FD760D var(--percent), transparent var(--percent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width: 768px) {
    .testimonial-nav .custom-arrow {
        background: white;
        color: #FD760D;
    }
    .testimonial-nav .custom-arrow:hover {
        color: #262626;
    }
}
