/*** Spinner Start ***/

#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;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/

.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}


/*** Topbar End ***/


/*** Navbar Start ***/

.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {

        visibility: hidden;
        position: absolute;
        left: -230px;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}





/* Mega Menu Styles */
.mega-menu {
    min-width: 700px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    background: #fff;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-content {
    width: 100%;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mega-menu-item {
    display: flex;
    flex-direction: row;
    width: 44vh;
    align-items: center;
    padding: 10px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    background: #f8f9fa;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    background: #0d6efd;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.mega-menu-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon,
.mega-menu-item.active .mega-menu-icon {
    background: rgba(255, 255, 255, 0.2);
}

.mega-menu-icon i {
    font-size: 22px;
    color: #0d6efd;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon i,
.mega-menu-item.active .mega-menu-icon i {
    color: white;
}

.mega-menu-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #333; /* Changed from #ffff to #333 for better readability */
    margin-left: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-text,
.mega-menu-item.active .mega-menu-text {
    color: white;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 600px;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        min-width: 100%;
        width: 100%;
        padding: 15px;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-menu-item {
        flex-direction: row;
        padding: 15px;
        background: rgb(255, 255, 255);
        color: #ffff;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .mega-menu-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 15px;
        background: rgb(14, 36, 235);
    }

    .mega-menu-icon i {
        font-size: 18px;
        color: white;
    }

    .mega-menu-text {
        color: rgb(14, 36, 235);
        text-align: left;
        font-size: 14px;
    }

    .mega-menu-item:hover,
    .mega-menu-item.active {
        background: rgb(14, 36, 235);
        transform: none;
    }

    .mega-menu-item:hover .mega-menu-icon,
    .mega-menu-item.active .mega-menu-icon {
        background: rgb(54, 74, 255);
    }

    .mega-menu-item:hover .mega-menu-icon i,
    .mega-menu-item.active .mega-menu-icon i {
        color: #fff;
    }

    .mega-menu-item:hover .mega-menu-text,
    .mega-menu-item.active .mega-menu-text,
    .mega-menu-text .active {
        color: rgb(255, 255, 255);
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .mega-menu-item:hover,
    .mega-menu-item.active {
        background: #0d6efd;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    }

    .mega-menu-item:hover .mega-menu-text,
    .mega-menu-item.active .mega-menu-text {
        color: rgb(255, 255, 255);
    }

    .mega-menu-item {
        width: auto;
        padding: 12px;
    }

    .mega-menu-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .mega-menu-icon i {
        font-size: 16px;
    }

    .mega-menu-text {
        font-size: 14px;
    }
}

/*** Navbar End ***/



/*** Carousel Hero Header Start ***/

.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    pointer-events: none;
}



.header-carousel .owl-nav button.owl-prev,
.header-carousel .owl-nav button.owl-next {
    pointer-events: all;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: none;
    cursor: pointer;
}

.header-carousel .owl-nav button:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}



.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/Ways-to-improve-office-productivity-with-customised-web-application-development-min.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}


/*** Single Page Hero Header End ***/


/*** Feature Start ***/

.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Feature End ***/


/*** Service Start ***/

.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}


/*** Service End ***/


/*** FAQs Start ***/

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** FAQs End ***/


/*** Blog Start ***/

.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}


/*** Blog End ***/


/*** Team Start ***/

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}


/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Testimonial End ***/


/*** Contact Start ***/

.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}


/*** Contact End ***/


/*** Footer Start ***/

.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}


/*** Footer End ***/


/*** copyright Start ***/

.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}


/*** copyright end ***/


/* slider three */

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 110px;
    padding-right: 20px;
    color: white;
}

.slide11-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 110px;
    padding-right: 20px;
    padding-top: 2%;
    margin: 3% 0%;
    color: white;
}

.slide-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    animation: slideInLeft 1s ease-out;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideInLeft 1.2s ease-out;
}

.cta-group {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1.4s ease-out;
}

.btn-primary {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.cart-icon {
    width: 20px;
    height: 20px;
}


/* Slide Navigation Dots */

.slider-nav {
    position: absolute;
    left: 40px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.3);
}


/* Arrow Navigation */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}


/* Animations */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Responsive */

@media (max-width: 968px) {
    .slide {
        flex-direction: column;
    }

    .slide-content {
        padding: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .slider-nav {
        left: 20px;
    }
}


/* slider three end */

.container-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5px;
}

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1E90FF;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1E90FF;
}

nav a.active {
    color: #1E90FF;
}

.btn-demo {
    background: #1E90FF;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-demo:hover {
    background: #1873CC;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    color: #FF8C00;
    font-size: 42px;
    margin-bottom: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-icon {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.xamarin-logo {
    font-size: 120px;
    color: white;
    font-weight: bold;
}

.platform-icons {
    position: absolute;
}

.icon-android {
    position: absolute;
    left: -60px;
    font-size: 60px;
}

.icon-apple {
    position: absolute;
    top: -80px;
    font-size: 60px;
}

.icon-windows {
    position: absolute;
    right: -60px;
    font-size: 60px;
}

.hero-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
    line-height: 1.8;
}

.features-section {
    background: #f8f9fa;
}

.features-section h2 {
    color: #FF8C00;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #1E90FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li span {
    color: #555;
    line-height: 1.6;
}

.tech-showcase {
    text-align: center;
}

.xamarin-brand {
    margin-bottom: 30px;
}

.xamarin-brand img {
    max-width: 100%;
    height: auto;
}

.xamarin-text {
    font-size: 72px;
    color: #3498DB;
    font-weight: 300;
    margin-bottom: 10px;
}

.xamarin-subtitle {
    color: #1E90FF;
    font-size: 24px;
    font-weight: 500;
}

.platform-box {
    background: #1E90FF;
    padding: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.platform-logo {
    font-size: 120px;
    color: white;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section h2 {
        color: #FF8C00;
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .platform-icon {
        width: 300px;
        height: 300px;
    }

    .xamarin-logo {
        font-size: 80px;
    }
}


/* box cards  */

.features1-section {
    text-align: center;
    padding: 60px 20px;
}

.features-section h2 {
    font-size: 26px;
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.features2-list {
    list-style: none;
}

.feature-box {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border-bottom: 4px solid #0066ff;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.features1-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.feature-box h3 {
    color: #ff7a00;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}


/* circle */


/* Container and Section */

.ops-support-section {
    background-color: #f9f9f9;
    ;
}

.ops-container {
    padding: 6% 0%;
    text-align: center;
}

.ops-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}


/* Grid */

.ops-grid-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ops-grid-item {
    display: flex;
    width: 1200px;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    max-width: 200px;
}

.ops-grid-item p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}


/* Circles */

.ops-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.yellow-circle {
    background-color: #ffc107;
    color: #fff;
}


/* Dotted Line */


/* Responsive */

@media (max-width: 768px) {
    .ops-grid-row {
        flex-direction: column;
    }

    .ops-line {
        width: 2px;
        height: 40px;
        margin: 20px 0;
        border-top: none;
        border-left: 2px dotted #ccc;
    }
}


/* Animation */

.ops-grid-item {
    opacity: 100;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.ops-grid-item.show {
    opacity: 1;
    transform: translateY(0);
}


/* shadow cards  */

.container11 {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.container12 {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.card {
    background: #fff;
    text-align: center;
    width: 50%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
}

.card ul li::before {
    content: "✓";
    margin-right: 10px;
    color: #ff7a00;
}

.card .ideal {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}


/* End-to-End */

.app-services-section {
    text-align: center;
    padding: 60px 20px;
}

.talk-btn {
    background-color: #ff7a00;
    color: #fff;
    border: none;
    padding: 12px 28px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.talk-btn:hover {
    background-color: #e86b00;
}

.technology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.toggle-container {
    max-width: 1200px;
    margin: 0 auto;
}

.toggle-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.toggle-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.toggle-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.toggle-header:hover {
    background: #f8f9fa;
}

.toggle-header.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    color: white;
}

.toggle-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.toggle-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.toggle-header.active .toggle-icon {
    background: white;
    color: var(--primary-color);
}

.toggle-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.toggle-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.toggle-header.active .toggle-arrow {
    transform: rotate(180deg);
    color: white;
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toggle-content.active {
    max-height: 2000px;
}

.toggle-body {
    padding: 30px;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tech-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.tech-badge i {
    color: var(--primary-color);
    font-size: 18px;
}

.tech-badge span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.solution-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
}

.solution-card h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-section h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-light-custom {
    background: white;
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 32px;
    }

    .toggle-header {
        padding: 20px;
    }

    .toggle-title h3 {
        font-size: 18px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.header-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-in;
}

.header-section h4 {
    color: #2563eb;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.header-section h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-card {
    border-radius: 20px;
    background: white;
    margin: 50px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #015fc9 0%, #315aa7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-title {
    flex: 1;
}

.service-title h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-title .subtitle {
    color: #2563eb;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #2563eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(308deg, #f1f1f1 0%, #ffffff15 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #f59e0b;
}

.highlight strong {
    color: #92400e;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #015fc9 0%, #315aa7 100%);
    border-radius: 20px;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 1.8rem;
    }

    .service-card {
        margin: 10px;
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-title h2 {
        font-size: 1.5rem;
    }

    .container-3 {
        flex-direction: column;
    }
}

/* ========================================
   CLIENT & BADGES SECTIONS - SHARED STYLES
   ======================================== */

.clients-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #1e90ff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.clients-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.clients-section>p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Custom CSS for the subtle background grid pattern (not easily done with pure Tailwind) */
.clients-section-bg {
    background-image: linear-gradient(135deg, #667eea 0%, #1e90ff 100%);
    position: relative;
    overflow: hidden;
}

.clients-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Simple SVG grid pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

/* Custom scroll snapping for better UX (optional but nice) */
#logoSlider {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Ensure JS scroll is smooth */
}

.logo-item {
    scroll-snap-align: start;
}

/* ========================================
   CONTAINER STYLES
   ======================================== */

.client-container,
.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.carousel-container {
    max-width: 1200px;
    padding: 0;
}

.client-slider-wrapper,
.carousel-container {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    overflow: hidden;
}



/* ========================================
   OWL CAROUSEL ITEMS
   ======================================== */

.owl-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.owl-carousel .item:hover {
    transform: scale(1.05);
}

/* ========================================
   IMAGE STYLES
   ======================================== */

.client-img,
#logoSlider img {
    width: 140px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-img:hover,
#logoSlider img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scroll-btn:hover {
    background: #764ba2;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* ========================================
   OWL CAROUSEL NAVIGATION
   ======================================== */

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    pointer-events: all;
    background: #667eea !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.owl-nav button:hover {
    background: #764ba2 !important;
    transform: scale(1.1);
}

/* ========================================
   OWL CAROUSEL DOTS
   ======================================== */

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 15px;
    }

    .clients-section h2 {
        font-size: 2rem;
    }

    .clients-section>p {
        font-size: 1rem;
    }

    .client-container {
        padding: 0 50px;
    }

    .client-slider-wrapper,
    .carousel-container {
        padding: 30px 15px;
    }

    .client-img,
    #logoSlider img {
        max-width: 100px;
        max-height: 60px;
    }

    .scroll-btn,
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .client-container {
        padding: 0 45px;
    }

    .scroll-btn,
    .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Custom CSS for the scroll area and button appearance */
.scroll-container {
    /* Ensures smooth movement when JavaScript updates transform */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-wrapper {
    /* Prevent image stretching in the flex container */
    flex-shrink: 0;
    width: 140px;
    /* Fixed width for each logo item */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}












.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #fffbfb;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for buttons */
    margin-top: 30px;
}

.carousel-track-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Hide overflowing slides */
    padding: 45px 0;
    position: relative;
}

.carousel-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide {
    flex: 0 0 auto;
    /* Prevent stretching */
    min-width: 16.66%;
    /* 6 logos per view */
    text-align: center;
    padding: 0 15px;
    /* Spacing between logos */
    box-sizing: border-box;
    /* Include padding in width */
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.carousel-slide img:hover {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6a6ad9;
    /* Purple color for buttons */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #5a5ac0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-slide {
        width: calc(100% / 4);
        /* Show 4 items */
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        width: calc(100% / 3);
        /* Show 3 items */
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .carousel-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        width: calc(100% / 3);
        /* Show 2 items */
    }

    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
}

/* cookies banner */