/* client_testimonial */

.client_testimonial{
   height: 660px !important;
}

/* scroller */
/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0b7fc4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #093e5c;
}

::-webkit-scrollbar-track {
    background: none;
    /* border-radius: 10px; */
}

/* .auto-container1 {
        overflow-y: scroll;
    } */

/* .auto-container1::-webkit-scrollbar {
        width: 12px;
    } */

/* close scroller */
/* vedio */

.gallery,
h2 {
    /* display: flex; */
    flex-wrap: wrap;
    font-weight: 600;
    /* color: #136CB2; */
}

.about_h5 {
    margin-top: 30px;
    text-align: justify;
}

.strong {
    color: #136cb2;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;

}

.video-thumb {
    margin: 10px;
    position: relative;
}

.video-thumb img {
    border-radius: 25px;
    width: 100%;
    height: auto;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #10275b;
    border: none;
    cursor: pointer;
    /* Additional Effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Adds a shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    /* Adds smooth transition */
}

/* Hover effect */
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    /* Scales up the button on hover */
    background-color: #1840ac;
    /* Changes background color on hover */
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 853px;
    background: #000;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.video-popup iframe {
    width: 100%;
    height: 480px;
}

.close-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 1000;
}

.video-thumb {
    cursor: pointer;
}

#video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* vedio close */
.btn-primary {
    color: #fff;
    background-color: rgb(70, 93, 239);
    border-color: rgb(70, 93, 239);
}

.social-heading {
    font-size: 24px;
    /* Adjust as needed */
}
/*  */
.social-box li {
    display: inline-block;
    margin: 10px;
    
    /* Add animation */
}


.social-box li img {
    width: 40px;
    /* Increase the width */
    height: auto;
    /* Maintain aspect ratio */
}

/* contact us section css start  */

.social-box li img {
    width: 40px;
    /* Original width */
    height: auto;
    /* Maintain aspect ratio */
    transition: transform 0.3s;
    /* Smooth transition */
}

.social-box li img:hover {
    transform: scale(1.2);
    /* Increase size on hover */
}

.video-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* Adjust width as needed */
    max-width: 800px;
    /* Set a maximum width */
    height: auto;
    /* Allow the height to adjust based on the aspect ratio */
    z-index: 1000;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

.video {
    width: 100%;
    height: auto;
}

.thumbnail-container {
    margin-top: 50px;
    text-align: center;
}

.thumbnail {
    /* width: 200px; */
    height: auto;
    cursor: pointer;
}

.close-btn_v {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.blur-background {
    filter: blur(5px);
}

p {
    margin-bottom: 10px;
}

b {
    font-weight: bold;
}

.job-details {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

/*  */

.list-group-item {
    border: none;
    padding: 0px!important;
    /* Remove border */
}

/* CSS */
.image.titlt {
    position: relative;
    overflow: hidden;
}

.image.titlt .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image.titlt:hover .play-icon {
    opacity: 1;
}

.fa.fa-play {
    font-size: 50px;
    color: #fff;
    transition: transform 0.3s ease;
}

.image.titlt:hover .fa.fa-play {
    transform: scale(1.2);
}

/*  */
.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: scroll;
    position: fixed;
    display: none;
    /* Hide by default */
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 7% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10;
}

.lightbox-content {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -22px;
    right: 3%;
}

.video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

/* IGNORE FROM THIS POINT ON */

body {
    background: #efefef;
}

#container {
    border-radius: 4px;
    max-width: 300px;
    height: auto;
    padding: 50px;
    background: white;
    margin: 100px auto;
}

#playme {
    background: #007fed;
    text-transform: uppercase;
    font-weight: 300;
    border: none;
    color: white;
    padding: 10px 15px;
    display: inline-block;
    font-size: 14px;
    margin: 0;
}

#about_us_card {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 20px;
    text-align: center;
}

#about_us_card:hover {
    transform: translateY(-40px);
    border: 2px solid #136cb2;
}

.icon {
    margin-bottom: 15px;
}

.icon img {
    width: 20%;
    /* height: 50%; */
}

#about_us_card h2 {
    color: #3c557d;
    margin: 10px 0;
    font-size: 1.5em;
}

#about_us_card p,
strong {
    text-align: justify !important;
    color: #555;
    line-height: 1.9;
}
strong {
    color: #136cb2;
    /* text-transform:capitalize; */
    font-weight: 650;
}

@media (max-width: 450px) {
    .page-title .auto-container{
        position:relative;
        margin-top: 15px;
    }

    /* detail-section .inner-box h3{
        font-size: 25px !important;
    } */
}

@media (max-width: 600px) {
    #about_us_card {
        padding: 15px;
    }
    .strong {
        font-size: 20px;
    }
    /* #about_us_card h2 {
        font-size: 1.2em;
    } */

    /* #about_us_card p {
        font-size: 0.9em;
    } */
}
.timeline-section {
    background-color: #fff;
}

.timeline {
    position: relative;
    padding: 1rem 0;
    margin: 2rem 0;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background-color: #007bff;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: grow-line 2s ease-in-out forwards;
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    width: 50%;
    opacity: 0;
    animation: fade-in 1s ease-in-out forwards;
    animation-delay: calc(var(--item-index) * 0.5s);
}

.timeline-item::before {
    content: " ";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: #fff;
    border: 4px solid #007bff;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(odd)::before {
    left: auto;
    right: -13.5px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item:nth-child(even)::before {
    left: -13.5px;
    right: auto;
}

.timeline-item .timeline-content {
    padding: 1.5rem;
    background: #fff;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item .timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-item .timeline-content h3 span {
    font-size: 1.2rem;
    color: #136CB2;
}

.timeline-item .timeline-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes grow-line {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        text-align: left;
        padding: 1rem 1rem 1rem 2.5rem;
    }

    .timeline-item::before {
        left: -12.5px;
        right: auto;
    }

    .timeline-item:nth-child(odd)::before {
        left: 10.5px;
        right: auto;
    }

    .timeline-item:nth-child(even)::before {
        left: 10.5px;
        right: auto;
    }
}


@media (max-width: 450px) {
    .auto-container h2{
        margin-top: -50px;
    }

    .service-detail .inner-box .lower-content p, .check-list-font{
        font-size: 16px !important;
    }

    .client_title{
        margin-top: 15px !important;
    }
}

@media (max-width: 767.98px) {
    .timeline::after {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
}

@media (min-width: 1200px) { 
    .max-new-container{
        max-width: 1300px !important;
    }
    .solution_sidebar_width{
        width: 330px !important;
    }
 }


@media (min-width: 1400px) { 
    .max-new-container{
        max-width: 1500px !important;
    }
    .solution_sidebar_width{
        width: 330px !important;
    }
 }


.service-detail img {
    box-shadow: 0 0px 20px rgba(34, 34, 34, 0.434);
    border-radius: 25px;
    /* Adjust values as needed */
   
}

/* check font formatting */
.check-list-font{
    font-size: 20px;
    line-height:1.8em;
    font-weight: 400;
}
/* contact_us page css */
.mail_img{
    width:50%!important;
}
/* close */

/* video link */
.video_content{
   
    top: 0% !important;
    left: 0% !important;
    
}
.color-trigger i {
    color: #feffff;
    font-size: 24px;
    line-height: 38px;
    margin-left: 20px;
    margin-right: 8px;
}
.color-trigger {
    background: #0563a1;
    border: 2px solid #0563a1;
}


/* blog-pagination */

/* .blog_pagination nav div a{
    color:#000 !important;
}
.blog_pagination nav div span{
    color:#000 !important;
}
.blog_pagination div.hidden div:nth-child(2){
    display: none !important;
}
.blog_pagination div.hidden div:nth-child(1) p{
    margin-top: 20px !important;
    text-align: center !important;
} */