@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Prevent iOS Safari floating/scroll bounce */
html, body {
    overflow-x: hidden;
    width: 100%;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch; 
}

body {
    min-height: 100vh;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

    --primary: #1877F2;
    --gray: #888888;
    --dark-gray: #4A4A4A;
    --white-gray: #efefef;
}

/* global */
.sp8 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.subHeading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Navbar styles */
.navbar {
    z-index: 2;
}

/* Navbar brand logo */
nav .nav__logo {
    height: 60px;
}

/* Nav links */
nav .nav-item .nav-link {
    color: var(--gray) !important;
    font-size: 16px;
    font-weight: 600;
}

nav .nav-item .active {
    color: var(--dark-gray);
}

nav .nav-item:hover {
    text-shadow: 0px 0px 1px var(--primary);
}

/* Auth buttons */
nav .auth__btns {
    display: flex;
    gap: 10px;
}

nav .auth__btns button {
    white-space: nowrap;
    height: max-content;
    padding: 8px 20px;
    border: none;
    outline: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

nav .auth__btns .signup__button,
nav .auth__btns .login__button {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    border: solid 1px var(--primary);
}

nav .auth__btns .login__button {
    color: var(--primary);
}

nav .auth__btns .signup__button {
    background-color: var(--primary);
    color: white;
}

nav .auth__btns .login__button:hover {
    color: white;
    background-color: var(--primary);
}

nav .auth__btns .signup__button:hover {
    color: var(--primary);
    background-color: transparent;
}

/* Navbar nav wrapper */
.navbar-nav {
    border-radius: 8px;
    padding: 1px 10px;
    border: 1px solid var(--white-gray);
    gap: 20px;
}


/* Navbar Links */
nav .nav-item .nav-link {
    color:  black !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px; /* so the hover bg looks smooth */
    transition: all 0.3s ease-in-out;
}

nav .nav-item .nav-link:hover {
    background-color: var(--primary);
    color: #fff !important; /* contrast text */
    text-shadow: none; /* remove the glow */
}

/* Responsive navbar tweaks */
@media (max-width: 991px) {
    .navbar-nav {
        border: none;
        gap: 10px;
        margin-top: 15px;
    }

    .auth__btns {
        flex-direction: column;
        width: 100%;
    }

    .auth__btns a,
    .auth__btns button {
        width: 100%;
    }
}

/* Hamburger (toggler) icon */
.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    left: 0;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}


/* hero section */
.hero__section {
    position: relative;
    padding: 30px 20px 50px 20px;
    text-align: center;

    .ai__icon {
        position: absolute;
        left: 71%;
        top: 115px;
    }

    h1 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;

        span {
            color: var(--primary);
        }
    }

    h6 {
        font-size: 16px;
        font-weight: 500;
        color: var(--gray);
        margin-bottom: 15px;

        span {
            font-weight: 700;
            color: var(--dark-gray);
        }
    }

    .hero__button {
        text-decoration: none;
        padding: 8px 20px;
        border: none;
        outline: none;
        border-radius: 100px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        background-color: var(--primary);
        color: white;
        margin-bottom: 20px;
    }

    .hero__image__section {
        display: flex;
        justify-content: center;
        gap: 10px;

        .tab-content {
            .tab-pane {
                position: relative;
                overflow: hidden;

                .bg__img {
                    border-radius: 16px;
                    overflow: hidden;
                    border: 2px solid #ebebeb;
                }

                /* .popup__img {
                    position: absolute;
                    max-height: 90%;
                    left: 15px;
                    bottom: 50%;
                    transform: translateY(50%);

                    animation: hero-mobile-popup 0.85s cubic-bezier(0.65, 0, 0.35, 1) both;
                } */
                .popup__img {
                    position: absolute;
                    max-height: 90%;
                    left: 15px;
                    bottom: 4%;
                    transform: translateY(50%);

                    animation: hero-slide-in 0.40s cubic-bezier(0.65, 0, 0.35, 1) both;
                }

            }
        }

        .hero__tab {
            display: flex;
            align-items: center;
            justify-content: center;

            .nav-link {
                color: var(--primary);
            }

            ul {
                flex-direction: column;
                gap: 15px;

                li {
                    display: flex;
                    align-items: center;
                    flex-direction: column;

                    .active {
                        .tab__icon {
                            background-color: var(--primary) !important;
                            color: white !important;
                        }
                    }

                    button {
                        display: flex;
                        flex-direction: column;
                    }

                    p {
                        font-size: 12px;
                        font-weight: 500;
                        color: var(--gray);
                        transition: all 0.2s ease-in-out;
                        margin-bottom: 0;
                    }
                }
            }

            .nav-item:has(.nav-link.active) p {
                color: var(--dark-gray);
                font-weight: 600;
                font-size: 12px;
            }

            .tab__icon {
                padding: 8px 10px !important;
                border-radius: 8px;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;

                svg {
                    height: 30px;
                    width: 30px;
                    display: block;
                    margin: 0 auto;
                }
            }

            .nav-pills .nav-link.active,
            .nav-pills .show>.nav-link {
                background-color: transparent;
                display: flex;
                flex-direction: column;
                gap: 5px;
                align-items: center;

            }

            .nav-item:has(.nav-link.active) .tab__icon {
                color: var(--bs-nav-pills-link-active-color);
                background-color: var(--bs-nav-pills-link-active-bg);
                width: max-content;
            }
        }
    }
}

/* Hero section responsive */
@media (max-width: 991px) {
    .hero__section {
        padding: 40px 15px;
        text-align: center;
    }

    .hero__section h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero__section h6 {
        font-size: 14px;
    }

    .hero__section .hero__button {
        width: 100%;
        max-width: 280px;
    }

    .hero__section .hero__image__section {
        flex-direction: column;
        gap: 20px;
    }

    .hero__section .hero__image__section .tab-content .tab-pane .popup__img {
        max-height: 70%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }

    .hero__section .hero__tab ul {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .hero__section h1 {
        font-size: 22px;
    }

    .hero__section h6 {
        font-size: 12px;
    }

    .hero__section .hero__image__section .tab-content .tab-pane .popup__img {
        max-height: 60%;
        bottom: 5px;
    }
}

/* Fix hero image section overflow on mobile */
/* @media (max-width: 768px) {
    .hero__section .hero__image__section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero__section .hero__image__section .tab-content .tab-pane {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero__section .hero__image__section .tab-content .tab-pane .bg__img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .hero__section .hero__image__section .tab-content .tab-pane .popup__img {
        position: absolute;
        max-width: 90%;
        max-height: 60%;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
    }

    .hero__section .hero__tab ul {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero__section .hero__image__section .tab-content .tab-pane {
        max-width: 260px;
    }

    .hero__section .hero__image__section .tab-content .tab-pane .popup__img {
        max-height: 50%;
        bottom: 5px;
    }
} */

@media (max-width: 768px) {
    .hero__section .hero__image__section {
        display: none;
    }
}

/* @keyframes hero-slide-in {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
} */


@keyframes hero-slide-in {
    0% {
        transform: translateY(50%); /* start from bottom */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* end at original position */
        opacity: 1;
    }
}

/* Fix hero tab icon alignment with smooth transitions */
.hero__section .hero__tab .nav-pills .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out; /* smooth hover & active */
}

.hero__section .hero__tab .nav-pills .nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.hero__section .hero__tab .nav-pills .nav-link.active {
    background-color: transparent !important;
    color: var(--dark-gray) !important;
    transform: scale(1.05); /* subtle zoom on active */
}

.hero__section .hero__tab .tab__icon {
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease-in-out; /* smooth bg & color */
}

.hero__section .hero__tab .nav-item:has(.nav-link.active) .tab__icon {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.highlights__section {
    .content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        padding: 30px 10px;

        p {
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: center;
            justify-content: center;
        }

        img {
            width: 30px;
            height: 30px;
        }
    }

    @media (max-width: 768px) {
        .content {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            padding: 20px 10px;

            p {
                font-size: 13px;
                flex-direction: column; /* icon on top, text below */
                gap: 5px;
            }

            img {
                width: 35px;
                height: 35px;
            }
        }
    }
}



/* partner section */
.partner__section {
    text-align: center;
    padding-top: 60px;

    h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .partnerCarousel {
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;

            .image-wrapper {
                width: 100px;      
                height: 60px;  
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                }
            }
        }
    }

    @media (max-width: 1024px) {
        .partnerCarousel .swiper-slide .image-wrapper {
            width: 80px;
            height: 50px;
        }
    }

    @media (max-width: 768px) {
        .partnerCarousel .swiper-slide .image-wrapper {
            width: 70px;
            height: 45px;
        }
    }

    @media (max-width: 480px) {
        .partnerCarousel .swiper-slide .image-wrapper {
            width: 60px;
            height: 40px;
        }
    }
}


/* feature section */
.feature__section {
    text-align: center;
    padding: 60px 20px;

    h2 {
        font-size: 34px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 50px;
    }

    .feature__card {
        background-color: #fff;     
        border-radius: 12px;    
        padding: 30px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        img {
            margin-bottom: 20px;
            object-fit: contain;  
            transition: all 0.3s ease;     
        }

        h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary);
        }

        p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        &:hover {
            background-color: var(--primary); 
            
            h5, p {
                color: #fff;
            }

            
            img {
                filter: none; 
            }
        }
    }

    .row {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        .col-md-4 {
            margin-bottom: 30px;
            display: flex;
        }
    }

    @media (max-width: 768px) {
        .feature__card {
            padding: 20px 15px;

            img {
                object-fit: contain;
            }

            h5 {
                font-size: 16px;
            }

            p {
                font-size: 13px;
            }
        }
    }
}


/* how it works section */
.how__it__work__section {
    text-align: center;
    padding: 100px 100px 0 100px;

    h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    p {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray);
        margin-bottom: 35px;
    }

    img {
        max-width: 100%;
        border-radius: 16px;
    }

    .how__it__work__tab {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;

        ul.nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            border-radius: 10px;
            padding: 10px 20px;
            transition: all 0.3s ease;
        }

        .nav-link.active {
            color: white !important;
            background-color: var(--primary) !important;
        }

        .nav-link:hover {
            background-color: var(--primary-light);
            color: white;
        }
    }

    .how__it__work__section .how__it__work__tab {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .tab-content .row {
        align-items: center; /* vertical alignment */
    }
    

    .tab-content {
        text-align: left;
        margin-top: 30px;

        .row {
            align-items: center;
            justify-content: center;
        }

        p {
            color: black;
            font-weight: 500;
            font-size: 16px;
        }
    }
}


/* integration section */
.integration__section {
    text-align: center;
    padding: 100px 100px 0 100px;

    .row {
        
        align-items: center;
    }

    img {
        max-width: 100%;
        border-radius: 10px;
    }

    h2 {
        font-size: 34px;
        font-weight: 700;
    }

    p {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray);
    }

    button {
        padding: 8px 20px;
        border: none;
        outline: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        background-color: var(--primary);
        color: white;
    }
}

/* service section */
.service__section {
    text-align: center;
    padding: 100px 100px 0 100px;

    h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    img {
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .row {
        align-items: center;
        padding: 60px;
        margin-bottom: 20px;
    }

    .tab-pane {
        text-align: start;

        h5 {
            font-weight: 600;
        }

        p {
            color: var(--gray);
            font-weight: 500;
        }
    }

    ul {
        flex-direction: column;
        gap: 15px;
    }

    .services__buttons {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 20px;

        button {
            padding: 10px 20px;
            max-width: 400px;
            width: 100%;
            border: none;
            outline: none;
            border-radius: 10px;
            cursor: pointer;
            text-align: start;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray);
        }
    }

    .service__section .tab-content {
        min-height: 400px;
        transition: min-height 0.3s ease;
    }
    .tab-wrapper {
        position: relative;
        transition: height 0.5s ease;
    }
    
    /* Keep tab-panes stacked and fade smoothly
    .tab-pane {
        display: block !important;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .tab-pane.show {
        position: relative;
        opacity: 1;
    } */
    
}



/* key features */
.key__feature__section {
    padding-top: 100px;
    text-align: center;
    padding-bottom: 40px;

    h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature__box p {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 35px;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .row {
        justify-content: center;
    }

    img {
        background-color: var(--primary);
        padding: 18px;
        border-radius: 1040px;
        margin-bottom: 12px;
    }

    .feature__box:hover p {
        visibility: visible;
    }

    .text__box {
        transition: all 0.4s ease-in-out;
        padding: 10px;
        border-radius: 8px;

        p {
            margin-bottom: 0;
            color: #4E9BFF;
        }
    }

    .feature__box:hover .text__box {
        color: var(--primary);
        background-color: #B3D4FF;
    }

}

/* Features Section Start */

.feature__card {
    padding: 20px;
    background-color: #E6E6E6;
    border-radius: 20px;
    text-align: start;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    position: relative;
}

.feature__card img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 200px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: transform 0.4s ease-in-out;
}

.feature__card h5 {
    font-size: 18px;
    font-weight: 700;
    transition: color 0.4s ease-in-out;
}

.feature__card p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: color 0.4s ease-in-out;
}

/* Hover effects */
.feature__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.feature__card:hover img {
    transform: scale(1.05);
}

.feature__card:hover h5 {
    color: var(--primary);
}

.feature__card:hover p {
    color: var(--dark-gray);
}



/* testimonial__section */
.testimonial__section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    border-radius: 40px;
    margin-bottom: 60px;

    background-image: url('../images/bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    overflow: hidden;

    .bg__blur {
        background-color: #ffffff42;
        height: 80%;
        width: 100%;
        position: absolute;
        border-radius: 15px;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
        left: 40px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 0px;
        font-weight: 600;
        margin-bottom: 20px;

        span {
            color: white;
            margin-bottom: 10px;
        }
    }

    .row {
        position: relative;
        z-index: 1;
        align-items: center;

        .col-md-4 {
            display: flex;
            justify-content: center;
        }
    }

    .first__section {
        width: max-content;
        text-align: start;

        button {
            padding: 8px 20px;
            border: 1px solid white;
            outline: none;
            border-radius: 100px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            background-color: transparent;
            color: white;
        }
    }

    .testimonial__slider__section {
        overflow: hidden;

        .testimonial__card {
            background: #FFFFFF;
            border-radius: 22px;
            overflow: hidden;
            text-align: start;

            img {
                max-height: 45%;
                width: 100%;
                object-fit: cover;
                border-radius: 0;
            }

            .testimonial__text {
                padding: 15px;

                p {
                    font-size: 12px;
                    color: var(--dark-gray);
                }

                h6 {
                    font-size: 14px;
                    font-weight: 600;
                }
            }
        }
    }

    .slider {
        margin: 40px auto 10px auto;
    }

    .swiper-container {
        padding-bottom: 20px;
    }

    .swiper-scrollbar {
        border-radius: 50px;
        height: 4px;
        width: 100%;
    }

    .swiper-wrapper img {
        /* height: 150px; */
        width: 100%;
        object-fit: contain;
        border-radius: 20px;
    }

    .swiper__btn {
        margin-top: 80px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .swiper__btn .swiper-button-prev,
    .swiper__btn .swiper-button-next {
        position: static;
        margin: 0;
        color: white;
        background-color: var(--dark-gray);
        height: 40px !important;
        width: 40px !important;
        aspect-ratio: 1/1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper__btn .swiper-button-next:after,
    .swiper__btn .swiper-button-prev:after {
        font-size: 12px;
        font-weight: 800;
        line-height: normal;
    }

}


/* Service section hover effect */
.service__section .tab-pane img {
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* On hover: scale up and add subtle shadow */
.service__section .tab-pane img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}




/* cta section */
.cta__section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    gap: 30px;

    h5 {
        margin-bottom: 0;
        font-weight: 700;
        font-size: 24px;

        span {
            color: var(--primary);
        }
    }

    button {
        padding: 8px 20px;
        border: none;
        outline: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        background-color: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        transition: all 0.4s ease-in-out;
    }

    button:hover {
        background-color: var(--primary);
        color: white;
        transition: all 0.4s ease-in-out;
    }
}

/* footer */
footer {
    background-image: url('../images/footer_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 90px;
    color: white;

    a {
        text-decoration: none;
        color: white;
    }

    ul {
        padding: 0;

        li {
            list-style-type: none;
            font-size: 14px;
            margin-bottom: 10px;
        }
    }

    h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer__logo {
        img {
            height: 50px;
            margin-bottom: 20px;
        }

        p {
            font-size: 14px;
            font-weight: 300;
        }
    }

    .contact__section {}

    .footer-logo-area3 a {
        transition: all 0.3s ease-in-out;
    }

    .footer-logo-area3 a:hover {
        transition: all 0.3s ease-in-out;
        transform: translateY(-3px);
    }

}

.footer__bottom__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 500;

    p {
        margin-bottom: 0;
    }

    ul {
        display: flex;
        gap: 20px;
        margin-bottom: 0;

        li {
            list-style-type: none;

            a {
                color: black;
            }
        }
    }
}

@media only screen and (max-width: 600px) {

    .row {
        gap: 20px;
    }

    .swiper__btn .swiper-button-prev,
    .swiper__btn .swiper-button-next {
        height: 10% !important;
        width: 10% !important;
        font-size: 12px !important;
    }
}

.whatsapp__floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    /* WhatsApp green */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.whatsapp__floating img {
    width: 35px;
    height: 35px;
}

.whatsapp__floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


/* Responsive adjustments for smaller devices */
@media (max-width: 1200px) {
    .how__it__work__section,
    .integration__section,
    .service__section {
        padding: 60px 50px 40px 50px; /* reduce top, sides, and bottom */
    }
}

@media (max-width: 992px) {
    .how__it__work__section,
    .integration__section,
    .service__section {
        padding: 50px 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .how__it__work__section,
    .integration__section,
    .service__section {
        padding: 40px 20px 20px 20px;
    }

    .services__buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }

    .services__buttons button {
        flex-shrink: 0;
        white-space: nowrap;
        max-width: 250px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .row {
        flex-direction: column;
        padding: 0;
    }
}
/* CTA Section */
.cta__section {
    display: flex;
    flex-direction: row; /* side by side by default */
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* allow wrapping on small screens */
    padding: 20px;
    text-align: center;
}

.cta__section h5 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.cta__section h5 span {
    color: var(--primary);
}

.cta__section a {
    text-decoration: none;
}

.cta__section button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta__section button:hover {
    background-color: #0f5bcc;
}

@media (max-width: 768px) {
    .cta__section {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .cta__section h5 {
        font-size: 18px;
        line-height: 1.4;
    }

    .cta__section button {
        width: 100%;
        max-width: 250px; 
    }
}
