.w-20{
    width: 20%;
    flex: 0 0 auto;
}
/* HeroSection */
.heroSection {
    color: #333;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}
.heroSection video {
    margin-bottom: -7px;
    position: relative;
    z-index: -1;
    width: 100%;
    right: 0;
    max-height: 100vh;
    object-fit: cover;
}
.searchbox {
    z-index: 10;
    left: 0;
    right: 0;
    position: absolute;
    bottom: 50%;
    transform: translate(0%, 50%);
    margin: auto;
    background-color: #0000003d;
    padding: 20px;
    border-radius: 15px;
}
.searchbox .input-group {
    gap: 5px;
}
.searchbox select,
.searchbox input {
    background-color: transparent;
    color: white;
}
.searchbox .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23f05736' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
.searchbox .form-select option{
    color: black;
}
.searchbox .form-control:focus {
    color: white;
    background-color: transparent;
    border-color: white;
    outline: 0;
    box-shadow: none;
}
.searchbox input::placeholder {
    color: grey; /* Replace #999 with your desired color */
}

.scrolls {
    z-index: 9;
    left: 0;
    right: 0;
    position: absolute;
    bottom: 50px;
    text-align: center;
    color: #fff;
}
.scroll-container {
    width: 30px;
    margin: auto;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    clear: both;
}

.scroller {
    width: 16px;
    border-radius: 8px;
    background-color: var(--orangeColor);
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 24px;
    animation: scroller 1500ms ease-out infinite;
}

@keyframes scroller {
    0% {
        bottom: 24px;
        background-color: var(--orangeColor);
    }
    5% {
        top: 4px;
        background-color: var(--orangeColor);
    }
    32% {
        bottom: 4px;
        background-color: white;
    }
    66% {
        top: 24px;
        bottom: 4px;
        background-color: white;
    }
    100% {
        top: 4px;
        bottom: 24px;
        background-color: var(--orangeColor);
    }
}

.about-us-section .content {
    padding: 0 40px 0 0;
    background-color: #fff;
}

.about-us-para {
    line-height: 25px;
    text-align: justify;
}
.stats {
    text-align: center;
    padding: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
    /* background-color: #dddbdb; */
    border-right: 1px dashed #b1afaf;
}
.stats p {
    font-weight: 500;
}
.stats:last-child {
    border: none;
}
.stats:hover {
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.stats-section {
    background-color: #ffffff;
}
@media only screen and (min-width: 1200px) {
    .stats-section {
        margin-top: -30px;
        border-top: 20px solid #fff; /* Example border for the top */
        border-right: 20px solid #fff;
        z-index: 9;
        position: relative;
        width: 75%;
    }
}

/* Services Section */
/* Custom Timeline Styles */

.timeline-item {
    position: relative;
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: var(--orangeColor); /* Indigo 500 */
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.timeline-content {
    display: flex;
    gap: 1rem;
    flex-grow: 1;
    margin-left: 1rem;
    align-items: self-start;
    flex-direction: column;
}
.timeline-content p {
    margin: 0;
}
.timeline-icon-bg {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: var(--blueColor); /* Indigo 100 */
    color: #fff; /* Indigo 500 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    bottom: -3.5rem;
    width: 0.125rem;
    background: #e5e7eb; /* Gray 200 */
    z-index: 0;
}

.timeline-item:last-child:before {
    bottom: 2rem; /* Stops the line at the last item */
}

.service-card > * {
    position: relative;
    z-index: 1;
}
.ServiceIcon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #f05736;
    color: white;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ServiceIcon::after {
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    content: "";
    top: -10px;
    left: -10px;
    background-color: transparent;
    border: 2px dashed #eff1f7;
    border-radius: 50%;
}
.serviceCard {
    background-color: white;
    transition: all ease 0.5s;
    height: 100%;
}
.serviceCard:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-10px);
}
.serviceCardTitle {
    color: var(--primary);
    font-weight: 500;
}
.serviceCard:hover .serviceCardTitle {
    color: white;
}
/* developer services */
.ripple-background {
    z-index: 1;
    overflow: hidden;
    position: absolute;
}
.shade2 {
    opacity: 0.3;
}
.circle {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: white;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #1b5577;
}
.medium {
    width: 200px;
    height: 200px;
    left: -90px;
    top: -90px;
}
.shade3 {
    opacity: 0.2;
}
.large {
    width: 350px;
    height: 350px;
    left: -140px;
    top: -140px;
}
.services .service-card {
    position: relative;
    height: 100%;
    z-index: 1;
    border-top: 3px solid var(--blueColor);
}

.services i {
    color: var(--blueColor);
}

.service-card > .anim-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--blueColor);
    transition: height 0.3s ease;
}

.service-card:hover .anim-layer {
    height: 100%;
}

.service-card:hover h2,
.service-card:hover i,
.service-card:hover p,
.service-card:hover .serviceCardTitle {
    position: relative;
    z-index: 1;
    color: white;
}

.service-card i {
    background-color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-card:hover i {
    color: var(--blueColor);
}
/* Blog Section */
.blog-card-container {
    /* background-color: #f3f4f6; */
}
.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 36;
}
.itemSlider .title {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
/* swiper custom css */
.mySwiper {
    width: 100%;
    height: 90vh;
}

.swiper-slide {
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.mySwiper2 .swiper-slide {
    padding-bottom: 40px;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet {
    transition: all ease 0.5s;
    background-color: var(--blueColor);
}
.swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 10px;
}
.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
    background: #fff !important;
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 12px 0 #24272c26 !important;
    color: #000 !important;
}
.mySwiper2 .swiper-button-next:after,
.mySwiper2 .swiper-button-prev:after {
    font-size: 13px !important;
    font-weight: 600 !important;
}
.mySwiper3 .swiper-button-next,
.mySwiper3 .swiper-button-prev {
    background: #fff !important;
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 12px 0 #24272c26 !important;
    color: #000 !important;
}
.mySwiper3 .swiper-button-next:after,
.mySwiper3 .swiper-button-prev:after {
    font-size: 13px !important;
    font-weight: 600 !important;
}
.mySwiper3 .swiper-slide {
    padding-bottom: 40px;
    height: auto;
    align-items: stretch;
}
@media (max-width: 768px) {
    .heroSection video {
        height: 70vh;
    }
    .about-us-section .content {
        padding: 0px 12px;
    }
    .about-us-para {
        line-height: 23px;
    }
}
@media (min-width: 768px) {
    .timeline-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .timeline-item {
        align-items: baseline;
    }
    .service-card i {
        background-color: white;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .scroller {
        width: 16px;
        border-radius: 8px;
        background-color: #fff;
        position: absolute;
        top: 4px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 34px;
        animation: scroller 1500ms ease-out infinite;
    }
    @keyframes scroller {
        0% {
            bottom: 34px;
            background-color: var(--orangeColor);
        }
        5% {
            top: 4px;
            background-color: var(--orangeColor);
        }
        32% {
            bottom: 4px;
            background-color: white;
        }
        66% {
            top: 34px;
            bottom: 4px;
            background-color: white;
        }
        100% {
            top: 4px;
            bottom: 34px;
            background-color: var(--orangeColor);
        }
    }
}

#project-results{
    position: absolute;
    display: none;
    background-color: #FFF;
    width: 100%;
    padding: 0px;
    list-style: none;
    
}
#project-results li a{

    padding: 8px;
    display: block;
    border-bottom: 1px solid #c4c4c4;
}

.feed-img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.youtube-thumbnail {
    border-radius: 12px;
    aspect-ratio: 251/141;
}

.youtube-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.youtube-slider {
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.duration {
    position: absolute;
    padding: 1px 4px;
    z-index: 1;
    right: 8px;
    bottom: 8px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}
