@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/********** Template CSS **********/
:root {
    --primary: #FF3E41;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
    --blue: #4848b8;
}

.blurBGcolor {
    background-color: var(--blue);
    color: #fff;
}

.whitecolor {
    color: #fff;
}

.graycolor {
    background-color: #ead3b5;
}

.bluecolor {
    color: var(--blue);
}

.boxshadow {
    box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.box-radius {
    border-top-right-radius: 20px;
    /* Adjust the value as needed */
    border-bottom-left-radius: 20px;
    /* Adjust the value as needed */
}
.center + .d-flex{
    background-color: #e5bfbf;
}

body,title,nav,h1,h2,h3,h4,h5,h6,p,section,div,footer{
    font-family: "Jost", sans-serif;
}

/* Remove UL style */
/* Remove default list style */
.ulstyle {
    list-style-type: none;
    padding: 0;
}

/* ============================================================================= */
.a-pointer {
    cursor: pointer;
}

/* ============================================================================== */
.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    /* background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-color: #FF3E41;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/* index */
/* Updated code */
.body1 {
    font-family: "Jost", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;
    background-color: #f0f0f0;
}

.carousel-container {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    border: 1px solid #ccc;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel {
    display: flex;
    animation: scroll 20s linear infinite;
}

.carousel-card {
    flex: 0 0 20%;
    margin: 10px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-card img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 50%; */
}

.dp-logo {
    border-radius: 50%;
    width: 100px;
    /* Set your desired width */
    height: 100px;
    /* Set your desired height */
    object-fit: contain;
    /* Ensures the logo is contained within the dimensions without distortion */
    margin: 0 auto;
    /* Center the image within the card */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-card {
        flex: 0 0 25%;
    }
}

@media (max-width: 992px) {
    .carousel-card {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .carousel-card {
        flex: 0 0 100%;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Updated code */

.card-box {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.card-box:hover {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.3s ease-in-out;
}

.card-box:hover .card-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.card-overlay h5,
.card-overlay p {
    margin: 0;
    transition: opacity 0.3s ease-in-out;
}

.card-box:hover .card-overlay h5,
.card-box:hover .card-overlay p {
    opacity: 1;
}

.card-container {
    width: 90%;
    max-width: 400px;
    margin: 20px;
}

/* client Slider */
.carousel-control {
    width: 4%;
}

.carousel-control.left,
.carousel-control.right {
    margin-left: 15px;
    background-image: none;
}

@media (max-width: 767px) {
    .carousel-inner .active.left {
        left: -100%;
    }

    .carousel-inner .next {
        left: 100%;
    }

    .carousel-inner .prev {
        left: -100%;
    }

    .active>div {
        display: none;
    }

    .active>div:first-child {
        display: block;
    }

}

@media (min-width: 767px) and (max-width: 992px) {
    .carousel-inner .active.left {
        left: -50%;
    }

    .carousel-inner .next {
        left: 50%;
    }

    .carousel-inner .prev {
        left: -50%;
    }

    .active>div {
        display: none;
    }

    .active>div:first-child {
        display: block;
    }

    .active>div:first-child+div {
        display: block;
    }
}

@media (min-width: 992px) {
    .carousel-inner .active.left {
        left: -16.7%;
    }

    .carousel-inner .next {
        left: 16.7%;
    }

    .carousel-inner .prev {
        left: -16.7%;
    }
}


/* client Slider */

/* index */

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/* Timeline */
.ps-timeline-sec {
    position: relative;
    background: #fff;
}

.ps-timeline-sec .container {
    position: relative;
}

@media screen and (max-width: 767px) {
    .ps-timeline-sec .container ol:before {
        background: var(--primary);
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 100%;
        position: absolute;
        top: 130px !important;
        left: 36px !important;
    }

    .ps-timeline-sec .container ol:after {
        background: var(--primary);
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 100%;
        position: absolute;
        top: inherit !important;
        left: 36px;
    }

    .ps-timeline-sec .container ol.ps-timeline {
        margin: 70px 0 !important;
        border-left: 2px solid var(--primary);
        padding-left: 0 !important;
        padding-top: 120px !important;
        border-top: 0 !important;
        margin-left: 25px !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li {
        height: 220px;
        float: none !important;
        width: inherit !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li:nth-child(2) .img-handler-bot h5 {
        width: 70px;
    }

    .ps-timeline-sec .container ol.ps-timeline li:last-child {
        margin: 0;
        bottom: 0 !important;
        height: 120px;
    }

    .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
        bottom: 40px !important;
        width: 40% !important;
        margin-left: 25px !important;
        margin-top: 0 !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot img {
        width: 100%;
    }

    .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
        margin-bottom: 0 !important;
        top: 20px;
        width: 50% !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li span {
        left: 0 !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
        content: none !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
        content: none !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
        content: none !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
        content: none !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
        position: absolute !important;
        bottom: 150px !important;
        width: 30% !important;
        float: left !important;
        margin-left: 35px !important;
        margin-bottom: 0 !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li .img-handler-top h5 {
        margin: 0 auto !important;
        width: 80% !important;
        text-align: center;
    }

    .ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
        position: absolute !important;
        bottom: 150px !important;
        width: 30% !important;
        float: left !important;
        margin-left: 35px !important;
        margin-bottom: 0 !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li p {
        text-align: left !important;
        width: 100% !important;
        margin: 0 auto !important;
        margin-top: 0px !important;
    }

    .ps-timeline-sec .container ol.ps-timeline li .ps-top {
        width: 60% !important;
        float: right !important;
        right: 0;
        top: -40px;
    }

    .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
        width: 60% !important;
        float: right !important;
        right: 0;
        top: -40px;
    }
}

.ps-timeline-sec .container ol:before {
    background: var(--primary);
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 8px;
    top: 49.5%;
}

.ps-timeline-sec .container ol:after {
    background: var(--primary);
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    right: 8px;
    top: 49.5%;
}

.ps-timeline-sec .container ol.ps-timeline {
    margin: 200px 0;
    padding: 0;
    border-top: 2px solid var(--primary);
    list-style: none;
}

.ps-timeline-sec .container ol.ps-timeline li {
    float: left;
    width: 25%;
    padding-top: 30px;
    position: relative;
}

.ps-timeline-sec .container ol.ps-timeline li span {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
    text-align: center;
    line-height: 50px -10;
    color: var(--blue);
    font-size: 1.5em;
    font-style: normal;
    position: absolute;
    top: -26px;
    left: 50%;
    line-height: 2.5rem;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: "";
    color: var(--primary);
    width: 2px;
    height: 50px;
    background: var(--primary);
    position: absolute;
    top: -50px;
    left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: "";
    color: var(--primary);
    width: 8px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    bottom: 90px;
    left: 44%;
    border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: "";
    color: var(--primary);
    width: 2px;
    height: 50px;
    background: var(--primary);
    position: absolute;
    bottom: -50px;
    left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: "";
    color: var(--primary);
    width: 8px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    top: 90px;
    left: 44%;
    border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 130px;
    width: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top h5 {
    display: table;
    margin: 0 auto;
    text-align: center;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute;
    margin-top: 60px;
    width: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot h5 {
    display: table;
    margin: 0 auto;
    text-align: center;
}

.ps-timeline-sec .container ol.ps-timeline li p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 100px;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    position: absolute;
    margin-top: 35px;
}

/* Timeline */


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    /* transition: .5s; */
    transition: transform 0.5s ease;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}

.img-div {
    padding: 5px;
    text-align: center;
}

.service-img {
    width: 150px;
    height: 150px;
}

/* college-erp */
/* .div-effect{
    padding: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #F8F2F0;
}

.hover-effect{
    text-align: center;
    border-radius: 5px;
}
.hover-effect:hover {
    background-color: #FF3E41;
    color: white;
    cursor: pointer;
}
.div-effect:hover{

}
.custom-section .bg-light {
    transition: all 0.3s ease;
} */

/* End college-erp */

/* Service-Modal */
.service-modal .modal-content {
    border-radius: 20px;
}

.service-modal .modal-header {
    border-bottom: 1px solid #FF3E41;
}

.service-modal img {
    border-radius: 10px;
    box-shadow: 1px 1px 1px 0.5px black;
}

.service-modal .modal-footer {
    border-top: 1px solid #FF3E41;
    ;
}

/* End Service-Modal */


/* customized-portal */
.li-hover {
    padding: 4px;
    padding-left: 10px;
    margin: 4px 0px;
    transition: 0.5s;
    font-size: 1.1rem;
}

.li-hover:hover {
    color: #fff;
    background-color: #FF3E41;
    font-size: 1.15rem;
    cursor: pointer;
}

/* Team Member */
.img-radius {
    border-radius: 50%;
}

/* End Team Member */
/* customized-portal */

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*  */
.custom-section {
    cursor: pointer;
    padding: 1.3rem !important;
    margin: 1rem !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.100);
}

/*  */

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}
/* Client Trial Start*/
.owl-nav {
    position: absolute;
    bottom: 50%;
    width: 100%;
}

.owl-prev, .owl-next {
    display: block;
    width: 50px;
    height: 50px;
}

.owl-prev {
    float: left;
    margin-left: -50px;
}

.owl-next {
    float: right;
    margin-right: -50px;
}

.card1-title {
    color: #18abd0;
}

.card1-img-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Size of the circle */
    width: 150px; /* Size of the circle */
    margin: auto;
    overflow: hidden; /* Ensures the image fits within the container */
    border-radius: 50%; /* Makes the container circular */
    background-color: #f0f0f0; /* Optional: Add a background color for better visibility */
}

.card1-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.text-center1 {
    color: #51CFED;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
        margin-left: -40px;
        margin-right: -40px;
    }

    .card1-img-top {
        height: 120px; /* Adjusted size for smaller screens */
        width: 120px;
    }
}

@media (max-width: 992px) {
    .owl-nav {
        bottom: 50%;
    }

    .card1-img-top {
        height: 100px; /* Adjusted size for smaller screens */
        width: 100px;
    }
}

@media (max-width: 768px) {
    .owl-prev, .owl-next {
        width: 30px;
        height: 30px;
        margin-left: -30px;
        margin-right: -30px;
    }

    .owl-nav {
        bottom: 40%;
    }

    .card1-title {
        font-size: 1.2rem;
    }

    .card1-img-top {
        height: 80px; /* Adjusted size for smaller screens */
        width: 80px;
    }
}

@media (max-width: 576px) {
    .owl-prev, .owl-next {
        width: 20px;
        height: 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .owl-nav {
        bottom: 30%;
    }

    .card1-title {
        font-size: 1rem;
    }

    .card1-img-top {
        height: 60px; /* Adjusted size for smaller screens */
        width: 60px;
    }

    .text-center1 {
        font-size: 0.9rem;
    }
}


/* Client Trial End */