/* About page only CSS */

/* about intro section start */
.about-intro-section .row {
    row-gap: 50px;
}

.about-intro-image-wrap {
    position: relative;
    padding: 12px 0 0 14px;
}

.about-intro-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 14px);
    height: calc(100% - 12px);
    background: #F9B42B;
    border-radius: 15px;
}

.about-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.18);
}

.about-intro-image img {
    width: 100%;
    height: 395px;
    display: block;
    object-fit: cover;
}

.about-intro-content h2 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.about-intro-content p {
    margin: 0 0 15px;
}

.about-intro-content p:last-of-type {
    margin-bottom: 0;
}

.about-intro-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

/* about intro section end */

/* awards section start */

.awards-wrapper {
    overflow: hidden;
    background: #fff4da;
    border: 1px solid #f9b42b;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.awards-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 30px 50px;
    text-align: center;
}

.awards-content h2 {
    margin: 0 0 20px;
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.awards-content h2 span {
    color: #075a91;
}

.awards-content p {
    margin: 0;
}

.awards-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 36px 22px;
    background: #ffffff;
    border-top: 1px solid #f9b42b;
    border-radius: 14px;
}

.awards-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.awards-carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.45s ease;
    will-change: transform;
}

.awards-carousel-item {
    flex: 0 0 20%;
    min-width: 0;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-carousel-item img {
    width: 100%;
    max-width: 185px;
    height: 130px;
    display: block;
    object-fit: contain;
}

.awards-carousel-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #171717;
    border-radius: 50%;
    color: #171717;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.awards-carousel-btn:hover {
    background: #f9b42b;
    border-color: #f9b42b;
    color: #000000;
    transform: scale(1.06);
}

.awards-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

/* awards section end */

/* experience section start */

.experience-content .section-subtitle {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: #004A92;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.experience-content .section-subtitle span {
    width: 21px;
    height: 2px;
    flex-shrink: 0;
    display: block;
    background: #F9B42B;
}

.experience-content h2 {
    margin: 0 0 16px;
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.experience-content p {
    margin: 0 0 15px;
}

.experience-content p:last-of-type {
    margin-bottom: 0;
}

.experience-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.experience-image-wrap {
    position: relative;
    padding: 12px 14px 0 0;
}

.experience-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 14px);
    height: calc(100% - 12px);
    background: #F9B42B;
    border-radius: 15px;
}

.experience-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: -10px 12px 20px rgba(0, 0, 0, 0.16);
}

.experience-image img {
    width: 100%;
    height: 385px;
    display: block;
    object-fit: cover;
}

/* experience section end */

/* about features section start */

.about-feature-card {
    width: 100%;
    min-height: 372px;
    padding: 43px 30px 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #fff4da;
    border: 1px solid #f9b42b;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.11);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(
        135deg,
        #f9b42b 0%,
        #ffc85b 100%
    );
    border-radius: 50%;
    color: #000000;
}

.about-feature-card h3 {
    margin: 0 0 9px;
    color: #004a92;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* about features section end */

/* why choose section start */

.why-choose-image-wrap {
    position: relative;
    padding: 10px 0 0 14px;
}

.why-choose-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 14px);
    height: calc(100% - 10px);
    background: #F9B42B;
    border-radius: 15px;
}

.why-choose-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.16);
}

.why-choose-image img {
    width: 100%;
    height: 385px;
    display: block;
    object-fit: cover;
}

.why-choose-content .section-subtitle {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: #004A92;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.why-choose-content .section-subtitle span {
    width: 21px;
    height: 2px;
    display: block;
    flex-shrink: 0;
    background: #F9B42B;
}

.why-choose-content h2 {
    max-width: 500px;
    margin: 0 0 22px;
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-item h3 {
    margin: 0 0 3px;
    color: #004A92;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.why-choose-item p {
    margin: 0;
}

/* why choose section end */

@media (max-width: 1199px) {

    .about-intro-section {
        padding: 90px 0;
    }

    .about-intro-image img {
        height: 370px;
    }

    .about-intro-content h2 {
        font-size: 33px;
    }
	
	.awards-carousel-item {
        flex-basis: 25%;
    }

    .experience-content h2 {
        font-size: 33px;
    }

    .experience-image img {
        height: 365px;
    }
	
	.about-feature-card {
        padding: 40px 24px 32px;
    }

    .about-feature-card h3 {
        font-size: 20px;
    }

    .why-choose-content h2 {
        font-size: 33px;
    }

    .why-choose-image img {
        height: 365px;
    }

}

@media (max-width: 991px) {

    .about-intro-section {
        padding: 75px 0;
    }

    .about-intro-section .col-6 {
        width: 100%;
    }

    .about-intro-image img {
        height: 430px;
    }

    .awards-content {
        padding: 42px 30px;
    }

    .awards-content h2 {
        font-size: 32px;
    }

    .awards-carousel-item {
        flex-basis: 33.333%;
    }

    .experience-section .col-6 {
        width: 100%;
    }

    .experience-image img {
        height: 430px;
    }

    .about-feature-card {
        min-height: 350px;
    }

    .why-choose-section .col-6 {
        width: 100%;
    }

    .why-choose-image img {
        height: 430px;
    }

}

@media (max-width: 767px) {

    .about-intro-section {
        padding: 55px 0;
    }

    .about-intro-image-wrap {
        padding: 9px 0 0 9px;
    }

    .about-intro-image-bg {
        width: calc(100% - 9px);
        height: calc(100% - 9px);
        border-radius: 12px;
    }

    .about-intro-image {
        border-radius: 12px;
        box-shadow: 7px 9px 16px rgba(0, 0, 0, 0.16);
    }

    .about-intro-image img {
        height: 310px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .about-intro-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .about-intro-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 24px;
    }

    .awards-content {
        padding: 35px 22px;
    }

    .awards-content h2 {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .awards-carousel {
        gap: 10px;
        padding: 28px 12px;
    }

    .awards-carousel-item {
        flex-basis: 50%;
        padding: 0 12px;
    }

    .awards-carousel-item img {
        height: 115px;
    }

    .awards-carousel-btn {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .experience-content .section-subtitle {
        font-size: 14px;
    }

    .experience-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .experience-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 24px;
    }

    .experience-image-wrap {
        padding: 9px 9px 0 0;
    }

    .experience-image-bg {
        width: calc(100% - 9px);
        height: calc(100% - 9px);
        border-radius: 12px;
    }

    .experience-image {
        border-radius: 12px;
        box-shadow: -7px 9px 16px rgba(0, 0, 0, 0.15);
    }

    .experience-image img {
        height: 310px;
    }

    .about-feature-card {
        min-height: auto;
        padding: 35px 24px;
    }

    .about-feature-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 18px;
    }

    .about-feature-card h3 {
        font-size: 21px;
    }

    .why-choose-image-wrap {
        padding: 9px 0 0 9px;
    }

    .why-choose-image-bg {
        width: calc(100% - 9px);
        height: calc(100% - 9px);
        border-radius: 12px;
    }

    .why-choose-image {
        border-radius: 12px;
        box-shadow: 7px 9px 16px rgba(0, 0, 0, 0.15);
    }

    .why-choose-image img {
        height: 310px;
    }

    .why-choose-content .section-subtitle {
        font-size: 14px;
    }

    .why-choose-content h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.2;
    }

    .why-choose-list {
        gap: 16px;
    }

    .why-choose-item h3 {
        font-size: 18px;
    }
	
	section.about-features-section .container .row {
    	row-gap: 16px;
	}
	
	.experience-content {
    padding-bottom: 50px;
}

.why-choose-content.cpl {
    padding-top: 50px;
}

}

@media (max-width: 575px) {

    .awards-content {
        padding: 32px 18px;
    }

    .awards-content h2 {
        font-size: 24px;
		line-height: 32px;
    }

    .awards-carousel-item {
        flex-basis: 100%;
    }

    .awards-carousel-item img {
        max-width: 190px;
        height: 130px;
    }

}