/* Banner Start */
.about-banner{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.about-banner img{
    width: 100%;
    height: auto;
}
.about-banner-layer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    padding: 0 8%;
}
.about-banner-layer .about-text{
    width: 42%;
    background-color: rgba(43, 129, 184, 0.8);
    color: #fff;
    overflow: hidden;
    padding: 1.5rem 2rem 6rem 2rem;
    position: absolute;
    bottom: 0;
}
.about-banner-layer .about-text h1{
    font-weight: 650;
    font-size: calc(1.3rem + 1vw);
    margin-bottom: 1.2rem;
}
.about-banner-layer .about-text p{
    margin: 0;
    margin-top: 0.65rem;
    font-size: calc(0.5rem + 0.5vw);
    text-align: justify;
}

@media screen and (max-width: 1220px){
    .about-banner{
        height: 88vh;
    }
    .about-banner img{
        height: 100%;
    }
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .about-banner-layer .about-text{
        padding: 2rem 2.5rem 7rem 2.5rem;
    }
    .about-banner-layer .about-text p{
        font-size: calc(0.55rem + 0.5vw);
        margin-top: 0.7rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
     .about-banner-layer .about-text{
        padding: 2.5rem 2.8rem 8rem 2.8rem;
    }
    .about-banner-layer .about-text h1{
        font-size: calc(1.45rem + 1vw);
    }
    .about-banner-layer .about-text p{
        font-size: calc(0.6rem + 0.5vw);
        margin-top: 0.72rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .about-banner{
        height: auto;
        overflow: visible;
        z-index: 10;
    }
    .about-banner img{
        height: auto;
    }
    .about-banner-layer{
        padding: 0 0;
    }
    .about-banner-layer .about-text{
        width: 100%;
        background-color: rgb(28, 108, 157);
        padding: 1.2rem 1rem 1.2rem 1rem;
        position: relative;
        top: 100%;
    }
    .about-banner-layer .about-text h1{
        font-size: calc(1.5rem + 0.5vw);
        margin-bottom: 0.5rem;
    }
    .about-banner-layer .about-text p{
        font-size: calc(0.7rem + 0.5vw);
    }
}
/* Banner End */

/* Our Journey Start */
.our-journey{
    background-image: url('../images/our-journey-bg-2.png');
    background-size: cover;
    color: #000;
}
.our-journey-content{
    padding: 4rem 8%;
    position: relative;
}
.our-journey-content h2{
    font-weight: 600;
    font-size: calc(1.3rem + 1vw);
    text-align: center;
}

.timeline-slide-container{
    overflow: hidden;
    margin-top: 3.5rem;
}
.timeline-slide-container .timeline-slide{
    display: flex;
    justify-content: space-between;
}
.timeline-slide .timeline-content{
    width: 53%;
}
.timeline-slide .timeline-image{
    width: 42%;
}
.timeline-slide .timeline-image img{
    width: 100%;
    height: auto;
    border: 3px solid #fff;
}
.timeline-slide .timeline-content span{
    font-weight: 800;
    font-size: calc(2.1rem + 1vw);
}
.timeline-slide .timeline-content .timeline-title{
    font-size: calc(0.9rem + 1vw);
    font-weight: 550;
    margin-top: 0.7rem;
    margin-bottom: 0;
}
.timeline-slide .timeline-content .timeline-desc{
    margin: 0;
    margin-top: 0.8rem;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
}
/* btns */
.timeline-slide-btns{
    width: 42%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 1.5rem 0;
}
.timeline-slide-btns i{
    font-size: calc(0.2rem + 0.5vw);
}
.timeline-slide-btns button{
    font-size: calc(1.5rem + 0.5vw);
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 2px;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}
.timeline-slide-btns button:hover{
    color: #373737;
}
.timeline-slide-btns button i{
    font-size: calc(0.01rem + 0.4vw);
}
.timeline-slide-btns button span{
    margin-top: -7px;
}
/* timeline track */
.timeline-track{
    background: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
    height: 3px;
    width: 38%;
    margin: 0 auto;
    margin-top: 3rem;
}
/* timeline balls */
.pagination-wrapper {
    width: 291px;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 4rem 0 2rem 1rem;
}
.custom-pagination {
    display: flex;
    gap: 100px;
    transition: transform 0.5s ease;
}
.pagination-dot {
    width: 17px;
    height: 17px;
    background-color: #000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}
.pagination-dot.active {
    width: 24px;
    height: 24px;
    background-color: #000;
    font-size: 21px;
    font-weight: bold;
    transform: scale(1.2);
    margin-top: -4px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #d4d4d4, 0 0 0 3.5px #000;
}
.pagination-dot span {
    transition: all 0.3s ease;
    margin-top: -60px;
    user-select: none;
}
.pagination-dot.active span {
    margin-top: -85px;
}
.pagination-dot:first-child span,
.pagination-dot:last-child span {
    display: none;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
   .our-journey-content h2{
        font-size: calc(1.4rem + 1vw);
    }
    .timeline-slide .timeline-image img{
        border: 3.5px solid #fff;
    }
    .timeline-slide .timeline-content span{
        font-size: calc(2.4rem + 1vw);
    }
    .timeline-slide .timeline-content .timeline-title{
        font-size: calc(1.1rem + 1vw);
        margin-top: 1.2rem;
    }
    .timeline-slide .timeline-content .timeline-desc{
        margin-top: 1.4rem;
        font-size: calc(0.6rem + 0.5vw);
    }

    .timeline-slide-btns{
        gap: 0.35rem;
        padding: 1.9rem 0;
    }
    .timeline-slide-btns i{
        font-size: calc(0.3rem + 0.5vw);
    }
    .timeline-slide-btns button{
        font-size: calc(1.65rem + 0.5vw);
        gap: 2.5px;
    }
    .timeline-slide-btns button i{
        font-size: calc(0.02rem + 0.4vw);
    }
    .timeline-slide-btns button span{
        margin-top: -6px;
    }

    .timeline-track{
        width: 35.5%;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .our-journey-content h2{
        font-size: calc(1.5rem + 1vw);
    }
    .timeline-slide .timeline-image img{
        border: 4px solid #fff;
    }
    .timeline-slide .timeline-content span{
        font-size: calc(2.7rem + 1vw);
    }
    .timeline-slide .timeline-content .timeline-title{
        font-size: calc(1.23rem + 1vw);
        margin-top: 1.3rem;
    }
    .timeline-slide .timeline-content .timeline-desc{
        margin-top: 1.5rem;
        font-size: calc(0.65rem + 0.5vw);
    }

    .timeline-slide-btns{
        gap: 0.4rem;
        padding: 2.15rem 0 3.5rem 0;
    }
    .timeline-slide-btns i{
        font-size: calc(0.3rem + 0.5vw);
    }
    .timeline-slide-btns button{
        font-size: calc(1.7rem + 0.5vw);
        gap: 2.7px;
    }
    .timeline-slide-btns button i{
        font-size: calc(0.025rem + 0.4vw);
    }
    .timeline-slide-btns button span{
        margin-top: -7px;
    }

    .timeline-track{
        width: 35%;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .our-journey{
        display: none;
    }
}

/* @media screen and (max-width: 767px) {
    .our-journey{
        display: none;
    }
    .our-journey{
        margin-top: 19rem;
    }
     .our-journey-content{
        padding: 4rem 1rem;
    }
    .our-journey-content h2{
        font-size: calc(1.3rem + 0.5vw);
    }

    .timeline-slide-container{
        margin-top: 0.5rem;
    }
    .timeline-slide-container .timeline-slide{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .timeline-slide .timeline-content{
        width: 100%;
    }
    .timeline-slide .timeline-image{
        width: 100%;
    }
    .timeline-slide .timeline-content span{
        font-size: calc(1.7rem + 0.5vw);
        margin-top: 0.35rem;
        display: block;
    }
    .timeline-slide .timeline-content .timeline-title{
        font-size: calc(0.9rem + 1vw);
        margin-top: 0;
    }
    .timeline-slide .timeline-content .timeline-desc{
        margin-top: 0.5rem;
        font-size: calc(0.68rem + 0.5vw);
    }
    
    .timeline-slide-btns{
        display: none;
    }
    
    .timeline-track{
        width: 100%;
        margin-top: 5rem;
    }
}

@media screen and (min-width: 395px) and (max-width: 415px) {
    .our-journey{
        margin-top: 18rem;
    }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
    .our-journey{
        margin-top: 17rem;
    }
} */
/* Our Journey End */

/* Our Journey Mobile View Start */
.our-journey-mobile-view{
    margin-top: 19rem;
    background-image: url('../images/our-journey-bg-2.png');
    background-size: cover;
    color: #000;
    padding: 4rem 1rem 6rem 1rem;
    position: relative;
    overflow: hidden;
}
.our-journey-mobile-view #our-journey-mobile-view-heading{
    font-weight: 600;
    font-size: calc(1.3rem + 0.5vw);
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}
.our-journey-mobile-view .timeline-image-mobile img{
    border: 3px solid #fff;
    width: 100%;
    height: auto;
}
.our-journey-mobile-view .timeline-content-mobile span{
    font-weight: 800;
    font-size: calc(1.7rem + 0.5vw);
    margin-top: 0.35rem;
    display: block;
}
.our-journey-mobile-view .timeline-title-mobile{
    font-size: calc(0.9rem + 1vw);
    margin-top: 0;
    font-weight: 550;
    margin-bottom: 0;
}
.our-journey-mobile-view .timeline-desc-mobile{
    margin: 0;
    margin-top: 0.5rem;
    font-size: calc(0.68rem + 0.5vw);
    font-weight: 500;
}

.our-journey-mobile-view .swiper-button-prev,
.our-journey-mobile-view .swiper-button-next {
    position: absolute;
    top: 91.5%;
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    background-color: #366d96;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.our-journey-mobile-view .swiper-button-prev {
    left: calc(54% - 60px);
}
.our-journey-mobile-view .swiper-button-next {
    right: calc(54% - 60px);
} 
.our-journey-mobile-view .swiper-button-prev span,
.our-journey-mobile-view .swiper-button-next span{
    margin-top: -3px;
    user-select: none;
}
.our-journey-mobile-view .swiper-button-next::after,
.our-journey-mobile-view .swiper-button-prev::after{
    display: none;
}
.our-journey-mobile-view .swiper-button-prev:hover,
.our-journey-mobile-view .swiper-button-next:hover {
    background-color: #22567e;
}

@media screen and (min-width: 767px) {
    .our-journey-mobile-view{
        display: none;
    }
}
@media screen and (min-width: 395px) and (max-width: 415px) {
    .our-journey-mobile-view{
        margin-top: 18rem;
    }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
    .our-journey-mobile-view{
        margin-top: 17rem;
    }
}
/* Our Journey Mobile View End */

/* Brand Story Start */
.brand-story{
    background-image: url('../images/brand-story-bg.webp');
    background-size: cover;
    position: relative;
}
.brand-story-content{
    height: 100vh;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.brand-story-content h3{
    color: #fff;
    font-weight: 650;
    font-size: calc(1.4rem + 1vw);
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 3rem;
}
.brand-story-content p{
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 0.8rem;
}
.brand-story .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(109, 109, 109, 0.649);
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .brand-story-content h3 {
        font-size: calc(1.5rem + 1vw);
        margin-bottom: 2.4rem; /* doubled from 1.2rem to roughly 2 lines */
        margin-top: 3.5rem;
    }
    .brand-story-content p {
        font-size: calc(0.58rem + 0.5vw);
        margin-top: 1rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
   .brand-story-content h3{
        font-size: calc(1.6rem + 1vw);
        margin-bottom: 2.4rem;
        margin-top: 3.5rem;
    }
    .brand-story-content p{
        font-size: calc(0.63rem + 0.5vw);
        margin-top: 1rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .brand-story{
        background-image: url('../images/brand-story-bg-mobile-view.webp');
        background-position: right;
    }
    .brand-story-content{
        height: auto;
        padding: 0 1rem 1rem 1rem;
    }
    .brand-story-content h3{
        font-size: calc(1.3rem + 0.5vw);
        margin-bottom: 5rem;
        margin-top: 2.2rem;
    }
    .brand-story-content p{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 0;
    }
}
/* Brand Story End */

/* Chairman Start */
.chairman{
    margin-top: 0;
}
.chairman-content .chairman-desc h4{
    font-weight: 600;
    text-transform: uppercase;
    font-size: calc(1.8rem + 0.5vw);
    margin-top: 0.8rem;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .chairman-content .chairman-desc h4{
        font-size: calc(1.9rem + 0.5vw);
        margin-top: 0.85rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
     .chairman-content .chairman-desc h4{
        font-size: calc(2rem + 0.5vw);
        margin-top: 0.9rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .chairman-content .chairman-desc h4{
        font-size: calc(1.3rem + 0.5vw);
        margin-top: 1rem;
    }
}
/* Rest styles are coming from Home Page Chairman Message Section (style.css) */
/* Chairman End */

/* Vision Mission Start */
/* .vision-mission{
    padding: 6.5rem 8% 4rem 8%;
    display: flex;
    justify-content: space-between;
}
.vision-mission-card{
    width: 46%;
    background-color: #194b71;
    padding: 8rem 2.7rem 2rem 2.7rem;
    color: #fff;
    text-align: center;
    position: relative;
}
.vision-mission-card .card-img{
    position: absolute;
    background-color: #d9d9d9;
    padding: 2.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 0.7rem solid #fff;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.vision-mission-card img{
    width: 100%;
    height: auto;
}
.vision-mission-card h5{
    font-weight: 600;
    font-size: calc(1.3rem + 1vw);
}
.vision-mission-card h6{
    font-size: calc(0.8rem + 0.5vw);
    margin: 2rem 0;
}
.vision-mission-card p{
    font-size: calc(0.5rem + 0.5vw);
} */

/* For 110% in 15 inch screens */
/* @media screen and (min-width: 1230px) and (max-width: 1399px){
   .vision-mission{
        padding: 7rem 8% 4.5rem 8%;
    }
    .vision-mission-card{
        padding: 8rem 3.4rem 2rem 3.4rem;
    }
    .vision-mission-card h5{
        font-size: calc(1.4rem + 1vw);
    }
    .vision-mission-card h6{
        font-size: calc(0.9rem + 0.5vw);
        margin: 2.2rem 0;
    }
    .vision-mission-card p{
        font-size: calc(0.55rem + 0.5vw);
    }
} */

/* For 100% in 15 inch screens */
/* @media screen and (min-width: 1400px) {
    .vision-mission{
        padding: 7.8rem 8% 5.5rem 8%;
    }
    .vision-mission-card{
        padding: 8.8rem 3.8rem 2rem 3.8rem;
    }
    .vision-mission-card h5{
        font-size: calc(1.5rem + 1vw);
    }
    .vision-mission-card h6{
        font-size: calc(0.93rem + 0.5vw);
        margin: 2.3rem 0;
    }
    .vision-mission-card p{
        font-size: calc(0.6rem + 0.5vw);
    }
} */

/* For small screens */
/* @media screen and (max-width: 767px) {
    .vision-mission{
        padding: 5rem 1rem 0 1rem;
        flex-wrap: wrap;
    }
    .vision-mission-card{
        width: 100%;
        padding: 5.5rem 1rem 1rem 1rem;
        margin-bottom: 5rem;
    }
    .vision-mission-card:last-child{
        margin-bottom: 3rem;
    }
    .vision-mission-card .card-img{
        padding: 1.7rem;
        width: 115px;
        height: 115px;
        border: 0.6rem solid #fff;
        top: -60px;
    }
    .vision-mission-card h5{
        font-size: calc(1.3rem + 0.5vw);
    }
    .vision-mission-card h6{
        font-size: calc(0.85rem + 0.5vw);
        margin: 1rem 0;
    }
    .vision-mission-card p{
        font-size: calc(0.65rem + 0.5vw);
    }
} */
/* Vision Mission End */


/* Core Philosophy Start */
.core-philosophy{
    padding: 3.5rem 8% 4rem 8%;
    background-image: url('../images/product-details-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.core-philosophy h5{
    font-weight: 650;
    font-size: calc(1.4rem + 1vw);
    text-align: center;
}
.core-philosophy .philosophy-vid-wrapper{
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
}
.core-philosophy .philosophy-vid-wrapper .philosophy-vid{
    aspect-ratio: 16/9;
    width: 75%;
    border-radius: 10px;
    overflow: hidden;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .core-philosophy{
        padding: 4rem 8% 4.5rem 8%;
    }
    .core-philosophy h5{
        font-size: calc(1.5rem + 1vw);
    }
    .core-philosophy .philosophy-vid-wrapper{
        margin-top: 2rem;
    }
    .core-philosophy .philosophy-vid-wrapper .philosophy-vid{
        border-radius: 12px;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .core-philosophy{
        padding: 4rem 8% 4.6rem 8%;
    }
    .core-philosophy h5{
        font-size: calc(1.6rem + 1vw);
    }
    .core-philosophy .philosophy-vid-wrapper{
        margin-top: 2.2rem;
    }
    .core-philosophy .philosophy-vid-wrapper .philosophy-vid{
        border-radius: 14px;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .core-philosophy{
        padding: 1.8rem 1rem 1.5rem 1rem;
    }
    .core-philosophy h5{
        font-size: calc(1.3rem + 1vw);
    }
    .core-philosophy .philosophy-vid-wrapper{
        margin-top: 1.2rem;
    }
    .core-philosophy .philosophy-vid-wrapper .philosophy-vid{
        border-radius: 10px;
        width: 100%;
    }
}
/* Core Philosophy End */


/* Our Purpose Start */
.our-purpose{
    padding: 4rem 8% 0 8%;
    background-image: url('../images/our-purpose-bg.avif');
    background-repeat: no-repeat;
    background-size: cover;
}
.our-purpose .purpose,
.our-purpose .vision{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.our-purpose .purpose .purpose-content,
.our-purpose .vision .vision-content{
    width: 45%;
}
.our-purpose .purpose .purpose-content h5,
.our-purpose .vision .vision-content h5{
    font-weight: 600;
    font-size: calc(1.6rem + 1vw);
    text-transform: uppercase;
}
.our-purpose .purpose .purpose-content p,
.our-purpose .vision .vision-content p{
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    margin-top: 1rem;
}
.our-purpose .purpose .purpose-image,
.our-purpose .vision .vision-image{
    width: 55%;
}
.our-purpose img{
    width: 100%;
}
.our-purpose .purpose .purpose-content{
    color: #396a91;
}
.our-purpose .vision .vision-content{
    text-align: right;
    color: #5d5d5d;
}
.our-purpose .vision{
    align-items: center;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .our-purpose{
        padding: 4.5rem 8% 0 8%;
    }
    .our-purpose .purpose .purpose-content h5,
    .our-purpose .vision .vision-content h5{
        font-size: calc(1.8rem + 1vw);
    }
    .our-purpose .purpose .purpose-content p,
    .our-purpose .vision .vision-content p{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 1.1rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .our-purpose{
        padding: 5rem 8% 0 8%;
    }
    .our-purpose .purpose .purpose-content h5,
    .our-purpose .vision .vision-content h5{
        font-size: calc(1.9rem + 1vw);
    }
    .our-purpose .purpose .purpose-content p,
    .our-purpose .vision .vision-content p{
        font-size: calc(0.75rem + 0.5vw);
        margin-top: 1.3rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .our-purpose{
        padding: 2rem 1rem 1rem 1rem;
        overflow: hidden;
    }
    .our-purpose .purpose .purpose-content,
    .our-purpose .vision .vision-content{
        width: 60%;
    }
    .our-purpose .purpose .purpose-content h5,
    .our-purpose .vision .vision-content h5{
        font-size: calc(1.3rem + 1vw);
    }
    .our-purpose .purpose .purpose-content p,
    .our-purpose .vision .vision-content p{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 0.7rem;
    }
    .our-purpose .purpose .purpose-content p br,
    .our-purpose .vision .vision-content p br{
        display: none;
    }
    .our-purpose .purpose .purpose-image,
    .our-purpose .vision .vision-image{
        width: 40%;
    }
    .our-purpose .purpose .purpose-image img{
        scale: 1.3;
    }
    .our-purpose img{
        height: auto;
    }
}
/* Our Purpose End */


/* Our Value Start */
.our-value{
    padding: 4rem 8% 1rem 8%;
    background-color: #ededed;
}
.our-value-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.our-value-head h6{
    font-weight: 650;
    font-size: calc(1.5rem + 1vw);
    color: #396a91;
}
/* .our-value-head p{
    font-weight: 500;
    font-size: calc(0.5rem + 0.5vw);
    color: #000;
    width: 65%;
    margin-top: 0.5rem;
} */
.value-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2%;
    margin-top: 4rem;
}
.value-row .value-card{
    width: 19%;
    background-color: #fff;
    position: relative;
    padding: 3.5rem 0.5rem 0.7rem 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.353) 0px 3px 8px;
    margin-bottom: 4rem;
}
.value-row .value-card:hover{
    background-color: #fafafa;
}
.value-row .value-card .card-img{
    width: 35%;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.315) 0px 3px 8px;
}
.value-row .value-card .card-img img{
    width: 60%;
    height: auto;
}
.value-row .value-card span{
    display: block;
    text-align: center;
    line-height: 1.15;
    color: #396a91;
    font-weight: 700;
    font-size: calc(0.65rem + 0.5vw);
}
.value-row .value-card p{
    text-align: center;
    color: #000;
    font-weight: 450;
    font-size: calc(0.3rem + 0.5vw);
    margin-bottom: 0;
    margin-top: 0.7rem;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .our-value{
        padding: 4.5rem 8% 1.5rem 8%;
    }
    .our-value-head h6{
        font-size: calc(1.7rem + 1vw);
    }
    /* .our-value-head p{
        font-size: calc(0.6rem + 0.5vw);
        margin-top: 0.6rem;
    } */
    .value-row{
        margin-top: 4.5rem;
    }
    .value-row .value-card{
        padding: 4rem 0.6rem 0.8rem 0.6rem;
        margin-bottom: 4.5rem;
    }
    .value-row .value-card span{
        font-size: calc(0.75rem + 0.5vw);
    }
    .value-row .value-card p{
        font-size: calc(0.35rem + 0.5vw);
        margin-top: 0.8rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .our-value{
        padding: 5rem 8% 1rem 8%;
    }
    .our-value-head h6{
        font-size: calc(1.8rem + 1vw);
    }
    /* .our-value-head p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 0.7rem;
    } */
    .value-row{
        margin-top: 5rem;
    }
    .value-row .value-card{
        padding: 4.3rem 0.6rem 0.9rem 0.6rem;
        margin-bottom: 5rem;
    }
    .value-row .value-card span{
        font-size: calc(0.8rem + 0.5vw);
    }
    .value-row .value-card p{
        font-size: calc(0.4rem + 0.5vw);
        margin-top: 0.8rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .our-value{
        padding: 2rem 1rem 0 1rem;
        overflow: hidden;
    }
    .our-value-head h6{
        font-size: calc(1.3rem + 1vw);
    }
    .value-row{
        margin-top: 3.5rem;
    }
    .value-row .value-card{
        width: 100%;
        padding: 4rem 0.6rem 0.8rem 0.6rem;
        margin-bottom: 3.2rem;
    }
    .value-row .value-card .card-img{
        width: 20%;
    }
    .value-row .value-card .card-img img{
        width: 50%;
    }
    .value-row .value-card span{
        font-size: calc(1.1rem + 0.5vw);
    }
    .value-row .value-card span br{
        display: none;
    }
    .value-row .value-card p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 0.7rem;
    }
}
/* Our Value End */