.social-icons {
    width: 150px;
    
}

@media (min-width: 768px) {
    .container-fluid .container {
        width: 1450px !important;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1248px !important;
    }
}




.social-icons span {
    margin-right: 20px !important;
    display: inline-block;
    height: 30px;
    width: 40px;
    padding: 15px;
}


.social-icons span:last-child {
    margin-right: 0;
}

.firsticons:hover {
    padding: 15px !important;
    transition: padding 0.2s ease-in-out;
}

.secondicons:hover {
    padding: 15px !important;
    transition: padding 0.2s ease-in-out;
}

.thirdicons:hover {
    padding: 15px !important;
    transition: padding 0.2s ease-in-out;
}



/* slider */
.testimonial-sliders {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
    padding: 30px;
}

.testimonial {
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    justify-content: space-around;
    min-width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
    flex: 0 0 auto;
    border-radius: 5px;
    /* border: 1px solid black; */
    /* gap: 20px; */
    /* Ensure items don't shrink */
}

.nav-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#prev {
    left: 10px;

}

#next {
    right: 10px;
    /* bottom: 0px; */
}

.nav-button {
    background: #147719;
}

@media (min-width: 768px) {
    .testimonial {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

@media (max-width: 767px) {

    #prev,
    #next {
        display: none;
    }
}


/* General Section Styles */
.custom-section {
    /* background-color: #f3f1f1; */
}

.custom-container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    /* align-items: center; */
    /* width: 90%; */
}

.custom-column {
    flex: 1 1 45%;
    /* margin: 10px 0; */
    padding: 0px 30px;
}

@media (max-width: 768px) {
    .custom-column {
        padding: 0px 0px;
    }
}


/* Animation Classes */
.fade-in-left {
    animation: fadeInLeft 1s ease-in-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Up and Down Animation */
.floating-up-down {
    animation: upDown 3s ease-in-out infinite;
}

/* @keyframes upDown {

0%,
100% {
transform: translateY(0);
}

50% {
transform: translateY(-10px);
}
} */

/* Image Box Styles */
.image-box {
    position: relative;
    height: auto;
    display: flex;
    gap: 20px;
}

.image-1,
.image-2 {
    flex: 1;
}

.image-1 img {
    width: 90% !important;
}

.image-1 img,
.image-2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .image-2 {
        display: none;
    }
}

/* .image-2 img {
width: 100%;
height: auto;
left: 320px !important;
border-radius: 8px;
} */

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
}

/* Title Area Styles */
.title-area .subtitle {
    font-size: 22px;
    color: #333;
    /* margin-top: 30px; */
    margin-bottom: 10px;
}

.title-area .main-title {
    font-size: 40px;
    font-weight: bold;
    color: #125683;
    margin-bottom: 5px;
}

.title-area .description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    /* width: 100%; */
}

/* Call Media Styles */
.call-media {
    display: flex;
    align-items: center;
    background-color: white !important;
    padding: 18px;
    margin-top: 0px;
    width: 450px !important;
    border-radius: 5px;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .call-media {
        display: flex;
        align-items: center;
        background-color: white !important;
        padding: 18px;
        margin-top: 40px;
        width: 310px !important;

    }
}

.call-media-icon {
    margin-right: 15px;
    background-color: #eff1f5;
    padding: 30px;
    border-radius: 5px;
}

.media-body .service-label {
    font-weight: bold;
    color: #000;
    /* margin-top: 100px !important; */

}


.media-body .contact-info a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

/* Button Styles */
.button-wrapper .custom-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #125683;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* .button-wrapper .custom-button:hover {
background-color: #0056b3;
} */

.card {
    box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
    -ms-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
    margin: 0px;
    border-radius: 10px;
    border: #000 1px solid;
    height: 430px;
    width: 99% !important;
}

.card .img-fluid {
    padding: 5px;

    border-radius: 8px;
    opacity: 0.7;
    /* Value should be between 0 (fully transparent) and 1 (fully opaque) */
}

.card .img-fluid:hover {
    opacity: 1;
    padding: 0px;
    background-color: #f3e3e3;
}

.card p {
    padding: 10px;
    color: #333;
    /* Example color */
    font-size: 16px;
    /* Example font size */
    text-align: center;
    line-height: 1.5rem;
}

.ol {
    font-size: 22px;
    line-height: 1.5rem;
}

.ol li {
    margin-top: 15px;
}

/* whatsap */


.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    background-color: #25D366;
    /* WhatsApp green */
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-whatsapp .whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    /* Maintain the original color */
    color: #fff;
    /* Maintain the original color */
    text-decoration: none;
}

/* .testimonial slider  */

.slider-area {
    /* background: #eefeff; */
}

@media (max-width: 768px) {
    .wrapper {
        height: 260px !important;
    }
}

.wrapper {
    display: flex;
    width: 950px;
    /* height: 160px !important; */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    /* padding: 1rem; */
    /* background: #eefeff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    gap: 10px;
    margin-bottom: 10px !important;
    /* Added gap to maintain space between items */
}

.item {
    animation: animate 10s linear infinite;
}

.container:hover .item {
    animation-play-state: paused;
}

@keyframes animate {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 767px) {
    .slider-area h2 {
        font-size: 30px;
    }

    .wrapper {
        width: 95%;
        border-radius: 0;
        padding: 0;
    }
}


/* welcome */

.jk-about-title {
    margin-bottom: 20px;
}

.jk-about-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.jk-about-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
}

.jk-about-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.jk-about-content b {
    color: #000000;
    font-weight: 600;
}



.jk-about-bottom {
    margin-top: 20px;
}

.jk-about-bottom p {
    font-size: larger !important;
    color: #555;
}

.ps-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

.ps-btn--warning {
    background-color: #ffc107;
    color: #000;
}

.ps-btn--warning:hover {
    background-color: #e0a800;
    color: #fff;
}

.content-box h2 {
    font-size: 16px;
    margin-top: 10px;
}

.content-box h3 {
    font-size: 15px;
    font-weight: 400;
}

.jk-about-point-box .prfle_img_bx {
    background-color: #f5f5f5;
    padding: 10px;
    height: 50px;
    width: 50px;
    margin: 10px;
}

/* .testinomail  */

.card-main {
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 8px 0px #8fb471;
    background-color: #f7f7f7;
    height: 294px !important;
}

@media (min-width: 768px) {
    .card-main {
        height: 244px !important;
    }

    .card-0 {
        height: 178px !important;
    }
}

.card-0 {
    color: white;
    background-color: #43336e !important;
    /* background-color: #e1facc !important; */
    position: relative;
    margin-left: 5px;
    margin-right: 20px;
    border-radius: 10px;
    height: 228px;
    padding: 10px;
}
.carousel-indicators li {
    cursor: pointer;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    /* color: white; */
    background-color: #8990b7;
}

/* .carousel-indicators .active {
background-color: #8fb471;
} */

.open-quotes {
    margin-left: 10px;
    margin-top: 10px;
}

.contentte {
    margin-left: 40px;
    margin-right: 40px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}
.close-quotes {
    margin-bottom: 10px;
    margin-right: 10px;
}
.card-main p{
    color: rgb(255, 255, 255);
 
}

.card-main h3{
    color: rgb(255, 255, 255);
    margin-top: 10px;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (height / width * 100) */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Remove the border */
}
