body {
    background-image: linear-gradient(to bottom, rgba(0, 1, 22, 0.7), rgba(0, 1, 22, 0.7)), url('../images/Gallery/1.jpg');
    /* Change this to your image path */
    background-size: cover;
    /* Cover the entire viewport */
    background-attachment: fixed;
    /* Fix the background image */
    background-position: center;
    /* Center the background image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
}
.swiper-wrapper{
    max-width: 1500px;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}
.text-bold{
    font-weight:600;
}
.gallery {
    max-width: 1500px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    margin: auto;
}

.gallery>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}
.clientLogoShow img{
    padding: 0 15px;
}
.clientLogoShow{
    display: flex;
    justify-content:space-evenly;
    align-items:center;
}
.gallery .tall {
    grid-row: span 2;
}

.modal {
    height: 100vh;
    z-index: 999999999999999999999999999999999999999999999;
}

.modal img {
    max-height: 75vh;
    height: auto;
    text-align: center;
}

.modal-body {
    align-items: center;
    display: flex;
    justify-content: center;
}
#testimonials{
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 50px !important;
}

.testimonials-carousel,
.testimonials-slider {
    overflow: hidden;
}

.testimonial-item .testimonial-content {
    border-left: 3px solid #0563bb;
    padding-left: 30px;
}

.testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin: 0 auto;
}

.testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, #ffffff, transparent 40%);
    margin: 0 0 10px 0;
}

.testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
    color: color-mix(in srgb, #0563bb, transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonial-item p {
    font-style: italic;
}

.swiper-wrapper {
    height: auto;
}

.swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, #ffffff, transparent 85%);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0563bb;
}
.image-slider {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1) rotate(0deg);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    z-index: 1; /* Base z-index */
}

.image1 {
    animation: advanced-fade-zoom-rotate 10s infinite;
    z-index: 2;
    -webkit-animation: advanced-fade-zoom-rotate 10s infinite;
}

.image2 {
    animation: advanced-fade-zoom-rotate 10s infinite 5s;
    z-index: 2;
    -webkit-animation: advanced-fade-zoom-rotate 10s infinite 5s;
}

@keyframes advanced-fade-zoom-rotate {
    0%, 20% {
        opacity: 0; /* Start hidden */
        transform: scale(1) rotate(0deg);
    }
    30%, 45% {
        opacity: 1; /* Smoothly fade in to full visibility */
        transform: scale(1.1) rotate(3deg); /* Slight zoom and rotation */
    }
    50% {
        opacity: 1;
        transform: scale(1.05) rotate(0deg); /* Subtle scale-down and straight rotation */
    }
    55%, 100% {
        opacity: 0; /* Fade out smoothly */
        transform: scale(1) rotate(-3deg); /* Return to normal scale and slight counter-rotation */
    }
}
@media (max-width:800px) {
    .testimonial-item p {
        font-size: 100%;
    }
    
}

.CSRContainer2 {
    margin: 0;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #0c4062, #008dda);

}

.containerr2 {
    margin: auto;
    height: fit-content;
    background-color: #fff;
    position: relative;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    max-width: 1500px;
}
@media(max-width:940px){
    .containerr2 {
        max-width: 100% !important;
    }
    #video-section{
        width:90vw !important;
    }
}