﻿.bgc-black-with-lighting {
    background: #001120;
}
.pt-130, .py-130 {
    padding-top: 130px;
}
.overflow-hidden {
    overflow: hidden !important;
}
.bgc-black-with-lighting:after, .bgc-black-with-lighting:before {
    position: absolute;
    width: 450px;
    height: 450px;
    z-index: -1;
    content: '';
    border-radius: 50%;
    background: #00ADEF;
    -webkit-animation: zoomInOut 5s infinite;
    animation: zoomInOut 5s infinite;
}
.bgc-black-with-lighting:before {
    left: -10%;
    top: 20%;
    -webkit-filter: blur(350px);
    filter: blur(350px);
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.bgc-black-with-lighting:after {
    right: -8%;
    top: -15%;
    -webkit-filter: blur(110px);
    filter: blur(110px);
}

@keyframes zoomInOut {
    0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
}
    50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
}
.section-title .sub-title {
    font-size: 18px;
    font-weight: 700;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #01c9f5;
    text-decoration: underline;
}
.section-title .sub-title:after, .section-title .sub-title:before {
    float: left;
    line-height: 0;
    font-size: 40px;
    font-weight: 300;
    /*content: "\f141";
    font-family: 'Font Awesome 5 Pro';*/
}
.section-title .sub-title:before {
    margin-right: 20px;
}
.sub-title:before {
    display: block;
}
.service-item
 {
    z-index: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: white;
    border-radius: 7px;
    margin-bottom: 30px;
}
.service-item.style-three {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fffdf7;
}

    .service-item .content h4 a {
        font-weight:600;
        color:#242424;
            font-size: 22px;
    }

.text-bluee {
    color:#005faf;
}
.feature-middle .image {
    max-width: 100%;
    padding-top: 45px;
    position: relative;
    margin-bottom: -100px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.feature-middle .image .circle-text {
    top: 0;
    left: 50%;
    max-width: 100%;
    position: absolute;
    -webkit-transform: translate(-51%);
    -ms-transform: translate(-51%);
    transform: translate(-51%);
}
.design-feature-shapes .shape {
    z-index: -1;
    position: absolute;
}
.design-feature-shapes .shape.dots {
    top: 15%;
    right: 8%;
    max-width: 10%;
    -webkit-animation: rotated_circle 30s infinite;
    animation: rotated_circle 30s infinite;
}
.rel {
    position: relative;
}
.design-feature-shapes .shape.wave-line {
    max-width: 35%;
    left: 0;
    bottom: 0;
    -webkit-animation: down-up-one 10s infinite;
    animation: down-up-one 10s infinite;
}
.z-1 {
    z-index: 1;
}
.bgc-overflow-hidden {
     overflow:hidden;
}
@keyframes rotated_circle {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@keyframes down-up-one {
    0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
}
    50% {
    -webkit-transform: rotateX(0deg) translateY(25px);
    transform: rotateX(0deg) translateY(25px);
}

100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
}
}

.service-item .icon {
    margin-bottom:25px;
   
}

    .service-item .icon img {
         width:80px;
    height:80px;                                                                                           
    }

.bgc-black-with-lighting {
    border-radius:30px;
}
 /* Carousel heading */
        .heading {
            display: block;
            text-align: center;
        }

        /* Container for the entire carousel */
        .multi-carousel-container {
            cursor: grab;
            margin: 0 auto;
            max-width: 100%;
            overflow: hidden;
            position: relative;
        }

            /* Cursor styles for dragging */
            .multi-carousel-container.dragging,
            #multiCarousel.dragging {
                cursor: grabbing;
            }

        /* Wrapper for all slides */
        .multi-carousel-inner {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Individual slide */
        .multi-carousel-item,
        .clone {
            box-sizing: border-box;
            flex: 0 0 33.333333%;
            padding: 0 5px;
            position: relative; /* Essential for item-number positioning */
        }

        /* Control buttons */
        .multi-carousel-control-prev,
        .multi-carousel-control-next {
            align-items: center;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            height: 40px;
            justify-content: center;
            position: absolute;
            text-decoration: none;
            top: 50%;
            transform: translateY(-50%);
            transition: background-color 0.3s ease;
            width: 40px;
            z-index: 10;
        }

            .multi-carousel-control-prev:hover,
            .multi-carousel-control-next:hover {
                background-color: rgba(0, 0, 0, 0.7);
            }

        .multi-carousel-control-prev {
            left: 10px;
        }

        .multi-carousel-control-next {
            right: 10px;
        }

        /* Image container with dynamic height */
        .img-container {
            border-radius: 1.5rem;
            /*height: var(--carousel-height, 20vh);*/
            overflow: hidden;
            position: relative;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

            /* Image styling */
            .img-container img,
            #carouselInner img {
                /*height: 100%;
  object-fit: cover;*/
                object-position: top;
                pointer-events: none;
                user-drag: none;
                width: 100%;
                -webkit-user-drag: none;
                transition: transform 0.3s ease;
            }

            .img-container:hover img {
                transform: translateZ(0) scale(1.02);
            }

        /* Item number styling - guaranteed visibility */
        .item-number {
            align-items: center;
            background-color: rgba(255, 255, 255, 0.75);
            border-radius: 50%;
            display: inline-flex;
            font-size: 120%;
            font-weight: bold;
            height: 35px;
            justify-content: center;
            left: 1rem;
            position: absolute;
            top: 1rem;
            width: 35px;
            z-index: 2; /* Higher than default but below controls */
            /* Isolation prevents z-index context issues */
            isolation: isolate;
        }

        /* Carousel cursor styling */
        #multiCarousel {
            cursor: grab;
            touch-action: pan-y;
        }

            /* Disable text selection during drag */
            #multiCarousel.dragging {
                user-select: none;
                -webkit-user-select: none;
            }

        /* Responsive adjustments for screens smaller than 720px (45em) */
        @media (max-width: 45em) {
            .multi-carousel-item,
            .clone {
                flex: 0 0 100%;
            }
        }
        .project-content {
            padding: 22px;
            text-align:center;
            background:#fff;
            -webkit-box-shadow: 5px 0 15px rgba(195, 195, 195, 0.35);
            box-shadow: 5px 0 15px rgba(195, 195, 195, 0.35);
        }
        .project-content .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
      color: #817f7f;
    font-size: 13px;
    line-height: 19px;
    margin-top: 8px;
}
.py-80{
	padding-top:80px;
	padding-bottom:80px;
}
.multi-carousel-item .project-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 100%;
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.multi-carousel-item:hover .project-over {
    bottom: 0;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.details-btn {
    font-size: 22px;
    width: 70px;
    height: 70px;
    background: white;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: #0066ff;
}
.multi-carousel-item .project-over .details-btn {
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    margin-left: -25px;
    position: relative;
}
.multi-carousel-item:hover .project-over .details-btn {
    opacity: 1;
    margin-left: 0;
}
.multi-carousel-item:hover .project-over .details-btn {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.multi-carousel-item .project-over:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
    background: #0066ff;
}
.multi-carousel-item .project-over:after {
    opacity: 0.5;
    background: #1e1e22;
}

.project-content h4 {
    font-size: 18px;
    font-weight: 700;
}