body::before{
    display:block;
    content:'';
    height:60px;
}

:root {
    --primary-mind: #00F0FF;
    --dark-bgs: #1C1F23;
    --dark-bgs-2: #393E45;
    --text-light-1:#EFF1F3;
    --text-light-2: #CACFD7;
    --light-bgs: #EFF1F3;

    --cnvs-primary-bgd-color: #1C1F23;
    --cnvs-primary-font: 'Audiowide', sans-serif;
    --cnvs-secondary-font: 'Poppins', serif;
}

body {
    background: var(--cnvs-body-bg);
    color: var(--text-light-1);
    margin: 0;
    padding: 0;
}

.dark,
body.dark{
    --cnvs-body-bg: var(--cnvs-primary-bgd-color);
    --cnvs-body-bg-boxed: var(--cnvs-primary-bgd-color);
    --cnvs-footer-bg: var(--cnvs-primary-bgd-color);
    --cnvs-header-sticky-bg: var(--cnvs-body-bg);
}

.bg-grey{
    background: #393E45;
}

.lead-lg {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.title-lead{
    font-family: 'Poppins', sans-serif;
    font-size: calc(1.375rem + 1vw);
    font-weight: 400;
    line-height: 1.5;
}

.border-primary-custom {
    --bs-border-color: #00F0FF;
}

.primary-text-light{
    color: #00737B;
}

/* Desktop (default) */
.big-title {
    font-size: 3rem;
}

.title {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.small-title {
    font-size: 2rem;
}

.text-body-custom {
    font-size: 1.25rem;
}

.text-body-small {
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .big-title {
        font-size: 1.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .small-title {
        font-size: 1.25rem;
    }

    .text-body-custom {
        font-size: 0.8rem;
    }

    .text-body-small {
        font-size: 0.875rem;
    }
}

/*-------------------wave animation--------------------------*/

/* Animate only letters */
.hero-subtitle.wave-text span {
    display: inline-block;
    animation: wave 1.6s ease-in-out 1 forwards;
    animation-delay: 1s;
    will-change: transform;
}

/* Space handling */
.hero-subtitle.wave-text .space {
    animation: none;
}

@keyframes wave {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-8px);
    }
    40% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}
.hero-subtitle.wave-text span:nth-child(1)  { animation-delay: 1s; }
.hero-subtitle.wave-text span:nth-child(2)  { animation-delay: 1.1s; }
.hero-subtitle.wave-text span:nth-child(3)  { animation-delay: 1.2s; }
.hero-subtitle.wave-text span:nth-child(4)  { animation-delay: 1.3s; }
.hero-subtitle.wave-text span:nth-child(5)  { animation-delay: 1.4s; }
.hero-subtitle.wave-text span:nth-child(6)  { animation-delay: 1.5s; }
.hero-subtitle.wave-text span:nth-child(7)  { animation-delay: 1.6s; }
.hero-subtitle.wave-text span:nth-child(8)  { animation-delay: 1.7s; }
.hero-subtitle.wave-text span:nth-child(9)  { animation-delay: 1.8s; }
.hero-subtitle.wave-text span:nth-child(10) { animation-delay: 1.9s; }
.hero-subtitle.wave-text span:nth-child(11) { animation-delay: 2.0s; }
.hero-subtitle.wave-text span:nth-child(12) { animation-delay: 2.1s; }
.hero-subtitle.wave-text span:nth-child(13) { animation-delay: 2.2s; }
.hero-subtitle.wave-text span:nth-child(14) { animation-delay: 2.3s; }
.hero-subtitle.wave-text span:nth-child(15) { animation-delay: 2.4s; }
.hero-subtitle.wave-text span:nth-child(16) { animation-delay: 2.5s; }
.hero-subtitle.wave-text span:nth-child(17) { animation-delay: 2.6s; }
.hero-subtitle.wave-text span:nth-child(18) { animation-delay: 2.7s; }
.hero-subtitle.wave-text span:nth-child(19) { animation-delay: 2.8s; }
.hero-subtitle.wave-text span:nth-child(20) { animation-delay: 2.9s; }
.hero-subtitle.wave-text span:nth-child(21) { animation-delay: 3s; }


.waves {
    position: absolute;
    top: 15vw;
    left:47vw;
    z-index: 1;
}
.waves.animate .delay1 {
    animation: waves-originless 4.5s linear 1s forwards;
}

.waves.animate .delay2 { animation: waves 4.5s linear 1.6s forwards; }
.waves.animate .delay3 { animation: waves 4.5s linear 2.2s forwards; }

.svg-box {
    position: relative;
    z-index: 10;
}

.svg-box:hover {
    -webkit-animation: bloop 2s linear;
    animation: bloop 2s linear;
}

.circle {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgb(0, 240, 255);
    margin: 30px;
    transition: 5s ease;
    position: absolute;
}

.circle {
    --wave-opacity: 0.2;
}


@keyframes waves {
    0% {
        transform: scale(1);
        opacity: 0.18;
        filter: blur(0px);
    }

    30% {
        opacity: 0.25;
    }

    55% {
        transform: scale(14);
        opacity: 0.12;
        filter: blur(1px);
    }

    75% {
        opacity: 0.05;
        filter: blur(2.5px);
    }

    100% {
        transform: scale(40);
        opacity: 0;
        filter: blur(6px);
    }
}


@keyframes waves-originless {
    0% {
        transform: scale(4);
        opacity: 0.05;
    }

    40% {
        opacity: 0.12;
    }

    70% {
        transform: scale(18);
        opacity: 0.05;
    }

    100% {
        transform: scale(28);
        opacity: 0;
    }
}

@-webkit-keyframes bloop {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}


/*-----------------------------------------NAVBAR---------------------------------------------------*/

.nav-item-text {
    display: inline-block;
    color: #CACFD7;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.05rem;
    position: relative;
    padding-bottom: 4px;
    text-decoration: none !important;
}

.nav-item-text.active {
    color: #EFF1F3;
    font-weight: 700;
}

/* underline ONLY when active (page-based) */
.nav-item-text.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #00F0FF;
    pointer-events: none;
}

.logo-text {
    color: #EFF1F3;
    text-align: center;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.125rem;
}


/*-------------------------------------------hero section-------------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: #1B1E22;
    display: flex;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: -11rem;                /* adjust overlap */
    left: 0;                  /* align to SCREEN LEFT EDGE */
    width: 51vw;
    height: 60vw;
    z-index: 3;
    pointer-events: none;     /* avoid blocking buttons */
    object-fit: contain;
    transform-origin: 70% 60%; /* pivot near fingers */
    animation: hand-rotate-touch 3.2s ease-in-out 1 forwards;
    animation-delay: 1s;
    will-change: transform;
}

@keyframes hand-rotate-touch {
    0% {
        transform: rotate(0deg) scale(1);
    }

    20% {
        transform: rotate(2.5deg) scale(1.015);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}


.hero-container {
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.hero-inner {
    display: inline-block; /* shrink-to-fit -> hugs content */
    text-align: right;
    z-index: 5;
}

.hero-title {
    color: #EFF1F3;
    display: inline-block;
    text-align: center;
    font-family: 'Audiowide', sans-serif;
    font-size: 8.75vw;
    font-weight: 400;
    letter-spacing: 0.875rem;
    line-height: normal;
    margin: 0;
    padding: 0;
}

.hero-subtitle {
    color: #E9EBEE;
    text-shadow: 0 2px 4px #00ADD2;
    font-family: 'Poppins',sans-serif;
    font-size: 2.3vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.125rem;
    text-align: right;
}
.hero-inner .text-center{
    margin-top: 12rem;
}

.hero-btn {
    position: relative;
    z-index: 11;
    display: inline-flex;
    height: 44px !important;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.small{
    font-family: Poppins;
    font-size: 1rem;
}

.hero-btn span {
    color: #AED2E3;
    text-align: center;
    text-shadow: 0 12px 12px rgba(0, 0, 0, 0.00);
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.statistics-title{
    color: #00F0FF;
    text-shadow: 0 2px 2px rgba(0, 173, 210, 0.50);
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2rem;
}

.statistics-caption{
    text-align: left;
    max-width: 15rem;
    color: #CACFD7;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
}


/*------------------------------------------------about us section-----------------------------*/
.about-us-section {
    background: #393E45;
}

.about-us-card{
    border-radius: 1.25rem;
    background: #393E45;
}

.card-title{
    color: #00F0FF;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.1125rem;
}
.card-title-white{
    color: #CACFD7;
}

.highlight-text{
    color: #00F0FF !important;
}
.card-paragraph {
    color: #CACFD7;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -0.045rem;
    line-height: normal;
    margin: 0;
}

.card-paragraph.dark{
    color: #1B1E22;
}

.highlight-text{
    color: #EFF1F3;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.0625rem;
}

.about-us-image {
    width: 100%;
    height: 100%;
}

.view-more-btn{
    text-decoration: none;
    color: #00F0FF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.view-more-btn.dark{
    color: #00737B;
}

/*---------------------------------our solutions section-----*/
.service-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 240, 255, 0.60);
    background: #EFF1F3;
    box-shadow: 0 2px 4px 0 #444A51;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: contain;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #EFF1F3;
}

.feature-separator {
    border: none;
    height: 3px;
    background: #00F0FF;
    justify-content: center;
    width: 50%;
    margin: 0;
}

.card-title-custom{
    color: #EFF1F3;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.1rem;
}

.card-title-custom.dark
{
    color: #1C1F23;
}

.card-paragraph-bigger{
    color: #CACFD7;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -0.0625rem;
    line-height: normal;
    margin: 0;
}

.text-primary-custom{
    color: #00F0FF;
}

.service-link {
    text-decoration: none;
    color: inherit;
}


.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.service-img-wrapper:hover .img-overlay {
    opacity: 1;
}

.overlay-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/*----------------------------accordion cards----------------------------*/
/* default (closed) */
.custom-accordion .accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 4px 0 #444A51;
}

.custom-accordion .accordion-item:has(.accordion-collapse.show) {
    background: #393E45 !important;
    font-family: 'Poppins', sans-serif;
    color: #EFF1F3;
    border: 2px solid #00F0FF;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 4px 0 #444A51 !important;
    will-change: background-color, border;
}

.collapsing {
    transition: none !important;
}

/*closed header*/
.custom-accordion .accordion-button.collapsed {
    display: flex;
    align-items: center;
    gap: 1.8125rem;
    border-radius: 0.75rem !important;
    border: none !important;    /* bootstrap override */
    box-shadow: none !important;
    color: #393E45;
    font-family: 'Poppins', sans-serif;
    font-size: calc(0.7rem + .9vw);
    font-weight: 600;
    text-align: left;
}

/*open state for header(button)*/
.custom-accordion .accordion-button:not(.collapsed) {
    background: #393E45;
    color: #EFF1F3 !important;
    gap: 1.8125rem;
    box-shadow: none !important;
    border-bottom: none !important;
    border-radius: 0.75rem !important;
    font-family: 'Poppins', sans-serif;
    font-size: calc(0.7rem + .9vw);
    font-weight: 600;
    text-align: left;
}

.custom-accordion .icon-default {
    width: 3vw;
    min-width: 2rem;
    height: auto;
    display: inline-block;
}

.custom-accordion .icon-active {
    display: none;
}
.custom-accordion .accordion-button:not(.collapsed) .icon-default {
    display: none;
}

.custom-accordion .accordion-button:not(.collapsed) .icon-active {
    width: 3vw;
    min-width: 2rem;
    display: inline-block;
}


.custom-accordion .img-active{
    position: absolute;
    bottom: 20%;
    right: 6vw;
    width: 22rem;
    height: auto;
    z-index: 50;
    pointer-events: none;
}

/* ---------------------------------------reviews-------------------------------*/

.review-card {
    width: 80%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #717A85;
    background: #EFF1F3;
    box-shadow: -8px -4px 29px 0 rgba(0, 0, 0, 0.08);
}

.review-card .card-header {
    background: #EFF1F3;
    padding: 1rem 1.5rem;
    border: none !important;
}

.review-card .review-date {
    font-size: 0.9rem;
}

.review-card .card-body {
    padding: 1.5rem;
    border: none !important;
}

.review-text {
    font-size: calc(0.7rem + .9vw);
    color: #393E45;
    font-family: "Poppins", sans-serif;
}

.review-card .card-footer {
    background: #EFF1F3;
    padding: 1rem 1.5rem;
    border: none !important;
}

.review-name {
    font-size: 1.1rem;
    color: #1B1E22;
}

.review-carousel .carousel-control-prev {
    left: -1rem;   /* push left arrow outward */
}

.review-carousel .carousel-control-next {
    right: -1rem;  /* push right arrow outward */
}

.testimonial-cta {
    font-size: 0.9rem;
    color: #00737B;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.testimonial-cta:hover {
    text-decoration: underline;
}

@media (max-width: 768px){
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.2); /* filled circle */
        backdrop-filter: blur(6px);              /* optional premium effect */
        background-size: 60% 60%;                /* keep arrow centered */
        background-position: center;
        background-repeat: no-repeat;
    }
    /* Make card full width */
    .review-card{
        width: 100%;
        max-width: 100%;
    }

    /* Remove horizontal spacing that breaks layout */
    .cards-wrapper{
        justify-content: center !important;
        gap: 0 !important;
    }

    /* Remove padding jump */
    .carousel-item{
        padding: 0 10px;
    }

}

/*-------------------------------------------our solution page---------------------------*/

.card-custom-for-text{
    border-radius: 0.75rem;
    border: 2px solid #00F0FF;
    background: #EFF1F3;
    box-shadow: 0 2px 4px 0 rgba(0, 173, 210, 0.30);
}

.card-custom-for-text-dark{
    border-radius: 0.75rem;
    border: 2px solid #00F0FF;
    background: #1C1F23;
    box-shadow: 0 2px 4px 0 rgba(0, 173, 210, 0.30);
}


.card-paragraph.white {
    color: #CACFD7;
}

.card-title-custom-2 {
    color: #E9EBEE;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.06rem;
}

.card-title-custom-2.dark{
    color: #1B1E22;
}

.card-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0.75rem;
    background: #393E45;
}

.card-img-wrapper.light {
    background: #CACFD7;
}

.card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.custom-rounded-1{
    border-radius: 0 4rem 0 0;
}

.custom-rounded-2{
    border-radius: 0 0 0 4rem;
}

.custom-rounded-light{
    border-radius: 0 4rem 0 4rem;
}

.img-max-h {
    max-height: 215px;   /* adjust as needed */
    width: auto;         /* keep aspect ratio */
}


/*-------------------------------------custom platform 1---------------------*/

#laptop-img-1 {
    position: relative;
    overflow: visible; /* allow image to escape section */
}

.img-overfit {
    position: absolute;

    /* center inside LEFT column */
    left: 25%;
    bottom: -10%;
    transform: translateX(-50%) scale(1.1);
    width: min(400px, 90%);
    height: auto;
    z-index: 50;
    pointer-events: none;
}



.card-statistics{
    border-radius: 3.75rem;
    border: 1px solid #00F0FF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.arrow-indicator-1 {
    position: absolute;
    /* adjust these to match your SVG */
    top: -10vw;
    left: 18vw;
    width: 20vw;          /* ← make it smaller */
    height: auto;
    pointer-events: none;
    transform: rotate(273deg); /* adjust angle */
}

/*--------------team----------------------------*/
.hero-parallax {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background-color: #212529; /* fallback */
}

/* background image layer */
.hero-parallax .parallax-background {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 180%;
    background-size: cover;
    background-position: center;
    transform: translateY(-25%);
    z-index: 0;
}

/* dark overlay */
.hero-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* text above everything */
.hero-parallax .container {
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------media queries-------------------------*/
/*ipad*/
@media (max-width: 768px) {

    .hero-section {
        padding: 4rem 2rem;
    }

    .hero-btn {
        padding: 0.75rem 1rem;
    }

    .hero-image {
        position: absolute;
        top: -3vw;
        left: -4vw;
        width: 54vw;
        height: 60vw;
        pointer-events: none;
        object-fit: contain;
    }

    .img-overfit{
        display: none;
    }

    .waves {
        position: absolute;
        top: 14vw;
        left:45vw;
        z-index: 1;
    }
    .img-active {
        position: static !important;     /* remove absolute positioning */
        transform: none !important;      /* remove translation */
        width: 30% !important;          /* full width */
        max-width: 400px;                /* optional */
        margin: 1.5rem auto 0 auto;      /* center it */
        z-index: 1 !important;           /* normal stacking */
        pointer-events: none;
        display: block;
    }

    .hero-subtitle.wave-text > span:not(.subtitle-mobile){
        display:none;
    }

    .circle {
        height: 10px;
        width: 10px;
    }

    .small-mobile{
        font-size: 1rem !important;
        font-weight: 400 !important;
    }
}

@media (min-width: 577px) {
    .hero-subtitle.wave-text .d-md-none {
        display: none;
    }
}

/*for mobile*/
@media (max-width: 576px) {

    .subtitle-mobile{
        display:block;
        text-align:center;
        line-height:1.2;
        letter-spacing:0.05rem;
        max-width:180px;
        margin-left:auto;
    }

    .small{
        font-family: Poppins;
        font-size: 0.7rem;
    }

    .waves{
        position: absolute;
        top: 31vw;
        left: 43vw;
    }

    .circle{
        height: 4px;
        width: 4px;
    }

    .hero-subtitle.wave-text span:not(.d-md-none) {
        display: none;
    }

    .hero-subtitle.wave-text span {
        animation: none !important;
    }


    .hero-section {
        padding: 3rem 1rem;
        text-align: center;
        overflow: hidden;
    }

    .hero-inner {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .hero-inner .text-center{
        margin-top: 6rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: -0.02rem;
        text-align: center;
        margin-top: 0.3rem;
    }

    .hero-btn {
        height: 38px !important;
    }

    .hero-image {
        position: absolute;
        top: 17vw;
        left: 0;
        width: 54vw;
        height: 60vw;
        pointer-events: none;
        object-fit: contain;
    }

    .statistics-caption{
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    .highlight-text{
        font-weight: 400;
    }

    .card-paragraph-bigger{
        font-size: 1rem;
    }

    .img-active {
        position: static !important;     /* remove absolute positioning */
        transform: none !important;      /* remove translation */
        width: 30% !important;          /* full width */
        max-width: 400px;                /* optional */
        margin: 1.5rem auto 0 auto;      /* center it */
        z-index: 1 !important;           /* normal stacking */
        pointer-events: none;
        display: block;
    }

    .img-overfit {
        display: none;
    }

    .accordion-body .row {
        flex-direction: column !important;
        text-align: center;
    }

    .lead-lg{
        font-size: 0.75rem;
    }

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

    .hero-parallax .parallax-background {
        top: 120px;
    }
}

/*extra large desktop*/
@media (min-width: 1600px) {
    .hero-image {
        position: absolute;
        top: -7vw;                /* adjust overlap */
        left: -1vw;                  /* align to SCREEN LEFT EDGE */
        width: 51vw;
        height: 60vw;
        pointer-events: none;     /* avoid blocking buttons */
        object-fit: contain;      /* optional: preserve proportions */
    }

    .lead-lg {
        font-size: 1.25rem;
        font-weight: 300;
    }

    .waves {
        position: absolute;
        top: 14vw;
        left:46vw;
        z-index: 1;
    }


}

/*large*/
@media (max-width: 1599px) and (min-width: 1400px) {
    .hero-image {
        position: absolute;
        top: -6.5vw;                /* adjust overlap */
        left: 0;                  /* align to SCREEN LEFT EDGE */
        width: 51vw;
        height: 60vw;
        pointer-events: none;     /* avoid blocking buttons */
        object-fit: contain;      /* optional: preserve proportions */
    }

    .lead-lg {
        font-size: 1.25rem;
        font-weight: 300;
    }
    .waves {
        position: absolute;
        top: 14vw;
        left:47vw;
        z-index: 1;
    }
}

/*medium*/
@media (max-width: 1399px) and (min-width: 992px) {
    .waves {
        position: absolute;
        top: 12vw;
        left:45vw;
        z-index: 1;
    }
    .hero-image {
        position: absolute;
        top: -7vw;                /* adjust overlap */
        left: 0;                  /* align to SCREEN LEFT EDGE */
        width: 51vw;
        height: 60vw;
        pointer-events: none;     /* avoid blocking buttons */
        object-fit: contain;      /* optional: preserve proportions */
    }

    .lead-lg {
        font-size: 1.25rem;
        font-weight: 300;
    }

    .arrow-indicator-1{
        display: none;
    }

}

/*desktop->ipad*/
@media (max-width: 992px) and (min-width: 768px) {
    .waves {
        position: absolute;
        top: 13.5vw;
        left:44vw;
        z-index: 1;
    }

    .hero-image {
        position: absolute;
        top: -5vw;                /* adjust overlap */
        left: 0;                  /* align to SCREEN LEFT EDGE */
        width: 51vw;
        height: 60vw;
        pointer-events: none;     /* avoid blocking buttons */
        object-fit: contain;      /* optional: preserve proportions */
    }


    .img-active {
        position: static !important;     /* remove absolute positioning */
        transform: none !important;      /* remove translation */
        width: 30% !important;          /* full width */
        max-width: 400px;                /* optional */
        margin: 1.5rem auto 0 auto;      /* center it */
        z-index: 1 !important;           /* normal stacking */
        pointer-events: none;
        display: block;
    }

    .accordion-body .row {
        flex-direction: column !important;
        text-align: center;
    }

    .lead-lg {
        font-size: 1.25rem;
        font-weight: 300;
    }

    .img-overfit{
        display: none;
    }
}

/*new soulutions*/

.rounded-pill-custom{
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-radius: 25rem;
    border: 1px solid #00F0FF;
    background: rgba(0, 240, 255, 0.14);
    color: #00F0FF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
}

.card-solutions{
    display: flex;
    padding: 3rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

    border-radius: 1.5rem;
    border: 1px solid rgba(57, 62, 69, 0.92);

    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hover */
.card-solutions:hover{
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.28);
    transform: translateY(-12px);
}


.text-card{
    color: #CACFD7;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.05625rem;
}

.solutions-card-title{
    color: #E9EBEE;
    font-family: Poppins;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.1125rem;
    margin-bottom: 0;
}

.texts-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}


.list-check{
    gap: 0.625rem;
}
.list-check i{
    color: #00F0FF;
}

.view-more-btn-new{
    border-radius: 1.25rem;
    border: 1px solid #00F0FF;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 0.2rem;
    color: #00F0FF;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Circle behind icon */
.view-more-btn-new i{
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00F0FF;
    color: #000;
    font-size: 0.9rem;
}

/* Hover effect */
.view-more-btn-new:hover{
    background: #00F0FF;
    color: #000;
}

.view-more-btn-new:hover i{
    background: #000;
    color: #00F0FF;
}

a.view-more-btn-new{
    text-decoration: none;
}

.view-more-btn-new.dark{
    background: #00F0FF;
    color: #000;
}

.view-more-btn-new.dark i{
    background: #393E45;
    color: #00F0FF;
}

.view-more-btn-new.dark:hover {
    background: transparent;
    color: #00F0FF;
}

.view-more-btn-new.dark:hover i {
    color: #000;
    background: #00F0FF;
}

.custom-text-contact{
    color: #FFF;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    text-align: center;
}

.custom-text-form{
    color: #EFF1F3;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
}


.form-control{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;   /* smaller than default */
}




.section-title{
    color: #E9EBEE;
    font-family: Poppins;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.15rem;
}

.section-description{
    max-width: 37rem;
    color: #CACFD7;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.05625rem;
}

.solution-image {
    width: 100%;
    max-width: 520px;   /* controls visual size */
    height: auto;
}

.mb-5rem {
    margin-bottom: 5rem;
}


.bg-light .text-card{
    color: #363B42;
}

.bg-light .solutions-card-title{
    color: #1C1F23;
}

.bg-light .card-solutions{
    border-radius: 1.5rem;
    border: 1px solid #CACFD7;
}

.bg-light .section-description{
    color: #1C1F23;
}

.bg-light .section-title{
    color: #1C1F23;
}

/* Shadow appears only on hover */
.bg-light .card-solutions:hover{
    box-shadow: 0 2px 24px 0 rgba(86, 175, 182, 0.57);
}

.bg-light .rounded-pill-custom{
    color: #00737B;
    border: 1px solid #00737B;
    background: rgba(0, 240, 255, 0.14);
}

.bg-light i{
    color: rgb(5, 169, 179);
}



@media (max-width: 768px){
    /* CARD */
    .card-solutions{
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 1px 4px rgba(0,0,0,0.12);
        gap: 0.75rem;
    }

    .card-solutions:hover{
        transform: none;
        box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    }

    /* TITLE */
    .solutions-card-title{
        font-size: 1.25rem;
        line-height: normal;
        letter-spacing: -0.0625rem;
    }

    /* TEXT */
    .text-card{
        font-size: 0.9rem;
        letter-spacing: -0.04rem;
        font-weight: 400;
    }

    /* PILL */
    .rounded-pill-custom{
        font-size: 0.75rem;
        font-style: normal;
        font-weight: 400;
        padding: 0.25rem 0.75rem;
    }

    /* SECTION TITLE */
    .section-title{
        font-size: 2rem;
        letter-spacing: -0.08rem;
    }

    /* SECTION DESCRIPTION */
    .section-description{
        font-size: 1rem;
    }

    /* BUTTON */
    .view-more-btn-new{
        width: fit-content;
        height: 2.4rem;
        justify-content: space-between;
        font-size: 0.875rem;
        margin-top: 1rem !important;
    }

    /* BUTTON ICON */
    .view-more-btn-new i{
        width: 2rem;
        height: 2rem;
    }

    /* COLUMN STACKING SPACING */
    .texts-column{
        gap: 0.5rem;
    }

    .list-check{
        gap: 0.4rem;
    }

    .text-light-contact{
        font-size: 1rem !important;
        font-weight: 400 !important;
    }

    .text-light-note{
        font-size: 0.8rem;
    }

}

.text-light-contact{
    color: #CACFD7;
    font-family: Poppins;
    font-style: normal;
    line-height: normal;
}

.text-light-note{
    color: #CACFD7;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.05625rem;
    margin-top: 1rem;
}


/*---------clients section --------------*/
.client-header-title{
    color: #EFF1F3;
    font-family: Poppins;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.client-header-subtitle{
    color: #EFF1F3;
    font-family: Poppins;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.05rem;
}


/* Card */
.client-card{
    flex: 1;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(57, 62, 69, 0.92);
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

/* Header (image + title area) */
.client-header{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.client-img{
    width: 60px;
    height: 60px;
    border-radius: 6px;
    padding:12px;
    object-fit: contain;
}

.client-title{
    color: #EFF1F3;
    font-family: Poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.client-subtitle{
    color: #CACFD7;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}
.client-benefits li {
    margin-bottom: 0.5rem;
}


/* Pill */
.client-pill{
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #EFF1F3;
}

/* List */
.client-list{
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #CACFD7;
    font-size: 0.9rem;
}

.client-list li{
    margin-bottom: 0.4rem;
}

/* Button */
.client-btn{
    font-size: 0.9rem;
    color: #EFF1F3;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 992px){
    .clients-row{
        flex-direction: column;
    }

    .client-card{
        width: 100%;
    }
}

#clientsCarousel {
    position: relative;
}

#clientsCarousel .carousel-inner {
    will-change: transform;
}

#clientsCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-controls {
    position: absolute;
    bottom: -20px;   /* adjust spacing below cards */
    right: 0;
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.22);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all .3s ease;
}

.carousel-btn:hover {
    background: #222;
    transform: translateY(-2px);
}
@media (max-width: 768px) {

    #clientsCarousel .carousel-inner {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    #clientsCarousel .carousel-item {
        display: contents; /* remove slide grouping */
    }

    #clientsCarousel .row {
        display: contents; /* remove row grouping */
    }

    #clientsCarousel .col-12 {
        flex: 0 0 90%;
        scroll-snap-align: start;
        padding-right: 1rem;
    }

    #clientsCarousel .carousel-inner::-webkit-scrollbar {
        display: none;
    }
    .carousel-controls {
        position: absolute;
        bottom: -45px;
        right: 0;
    }

    .carousel-btn{
        width: 40px;
        height: 40px;
    }


}


.review-avatar-img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
