/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --base-h1-size: 4rem;
    --base-p-size: 1.2rem;
    --base-padding: 2rem;
    --zoom-factor: 1;
}

body {
    min-height: 100vh;
    font-family: "Open Sans", sans-serif;
}

/* Main Container */
.main-container {
    width: 100%;
    min-height: 100vh;
    background: white;
    overflow-x: hidden;
}

.content-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
}

.section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    width: 100%;
    /* padding: 1.5rem;
    padding-top: 10px; */
    padding-bottom: 50px;
    background: linear-gradient(0deg,
            #d3d3db 0.07%,
            #e5e6eb 61.19%,
            #EFF2FF 99.93%);
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 98%;
    margin: auto;
    min-height: 400px;
    text-align: center;
    margin-top: -2rem;
}

.hero-text {
    flex: 1;
    min-width: 20rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
    margin-bottom: 1.2rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.3;
    padding: 0;
}

.hero-text h1 span {
    display: inline-block;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.hero-text h1 span:nth-of-type(1) {
    animation-delay: 0s;
}

.hero-text h1 span:nth-of-type(2) {
    animation-delay: 0.6s;
}

.hero-text h1 span:nth-of-type(3) {
    animation-delay: 1.2s;
}

.hero-text h1 span:nth-of-type(4) {
    animation-delay: 1.8s;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text .highlight-blue {
    color:
        #4285F4;
}

.hero-text .highlight-yellow {
    color:
        #F8A401;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    max-width: 28rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-family: "Helvetica Now Display", sans-serif;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.button.primary {
    background:
        #4285F4;
    color: white;
    box-shadow: 0 0.25rem 0.15rem rgba(0, 0, 0, 0.25);
}

.button.secondary {
    background: white;
    color: black;
    border: 1px solid #EFEFEF;
    text-decoration: none;
}

.button:hover {
    background:
        #F4B400 !important;
    color: black !important;
}

.button.secondary:hover {
    border: 1px solid #F4B400 !important;
}


.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    height: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-content iframe {
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1;
}

.modal-overlay.seven {
    animation: fadeToRed 0.5s ease forwards;
}

@keyframes fadeToRed {
    0% {
        background-color: rgba(0, 0, 0, 0.6);
    }

    100% {
        background-color: rgba(255, 0, 0, 0.3);
    }
}

.seven-animation {
    animation: scalePop 0.5s ease forwards;
}

@keyframes scalePop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.hero-wrapper {
    background: transparent;
}

.hero-image {
    flex: 1;
    max-width: calc(52rem * var(--zoom-factor, 1));
    width: 100%;
    height: auto;
    /* margin: -15px; */
    /* background: transparent; */
    /* mix-blend-mode: color-burn; */
}



/* Why Invest Section */
.why-invest-section {
    width: 100%;
    max-width: 100rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Bubbles section */

.bubble-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* behind content */
    pointer-events: none;
}

.bubble-container span {
    position: absolute;
    display: block;
    bottom: -150px;
    width: 40px;
    height: 40px;
    background: rgba(18, 91, 116, 0.3);
    border-radius: 50%;
    animation: rise 15s linear infinite;
    z-index: 0;
}

/* Keyframes for bubble animation */
@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-1200px) scale(1.3);
        opacity: 0;
    }
}



.why-invest-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.why-invest-section .highlight-yellow {
    color: #F4B400;
    margin-left: 3rem;
}

.why-invest-section .highlight-blue {
    color: #4285F4;
}

.why-invest-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.rocket-image-container {
    flex: 1;
    max-width: 32rem;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: white;
}

.rocket-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invest-stats {
    flex: 1;
    min-width: 20rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-header {
    width: 100%;
    text-align: center;
}

.stat-header h3 {
    color: #4285F4;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-value {
    color: #F8A401;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.stat-value.animate {
    animation: zoomInUp 1.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    will-change: transform, opacity;
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(40px);
        text-shadow: none;
    }

    60% {
        opacity: 1;
        transform: scale(1.15) translateY(-10px);
        text-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}


.stat-description {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
}

.stat-description .bold {
    font-weight: 600;
}

/* AI for NRIs Investment Section */
.ai-nri-section {
    width: 100%;
    max-width: 100rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.ai-nri-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ai-nri-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.ai-nri-header .highlight-blue {
    color: #4285F4;
}

.ai-nri-header .highlight-yellow {
    color: #F4B400;
}

.ai-nri-subheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ai-nri-subheader h3 {
    color: black;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-align: center;
}

.ai-nri-subheader p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
    text-align: center;
}

.ai-nri-image {
    width: 100%;
    max-width: 60rem;
    height: auto;
    border-radius: 2rem;
}

.ai-features {
    display: flex;
    gap: 2rem;
    justify-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-100%);
    will-change: transform, opacity;
}

@keyframes slideInLeftItem {

    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }

}

.ai-features.animate .feature-item:nth-child(4) {
    animation: slideInLeftItem 0.6s ease-out 0s forwards;
}

.ai-features.animate .feature-item:nth-child(3) {
    animation: slideInLeftItem 0.6s ease-out 0.4s forwards;
}

.ai-features.animate .feature-item:nth-child(2) {
    animation: slideInLeftItem 0.6s ease-out 0.8s forwards;
}

.ai-features.animate .feature-item:nth-child(1) {
    animation: slideInLeftItem 0.6s ease-out 1.2s forwards;
}

.feature-icon {
    position: relative;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(180deg, #EFF2FF 0%, #BBC1D8 39%, #8D96B7 100%);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.7s ease-in-out;
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #F4B400;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 0;
}

.feature-icon>* {
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon img {
    width: 4rem;
    height: 4rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-text h4 {
    color: black;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: "Helvetica Now Display", sans-serif;
    font-weight: 700;
    text-align: center;
}

.feature-text p {
    font-size: clamp(0.8rem, 5vw, 1rem);
    font-family: "Helvetica Now Display", sans-serif;
    line-height: 1.5;
    text-align: center;
}

/* Why Wyizer Section */
.why-wyizer-section {
    width: 100%;
    max-width: 90rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.why-wyizer-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.why-wyizer-section .highlight-blue {
    color: #4285F4;
}

.why-wyizer-section .highlight-yellow {
    color: #F4B400;
}

.wyizer-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 172px;
}

.wyizer-feature {
    flex: 1;
    min-width: 20rem;
    max-width: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.4s ease-out forwards, transform 0.4s ease;
    transform: translateX(10%);
    opacity: 0;
}

.wyizer-feature.animate {
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        transform: translateY(10%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.wyizer-feature:hover {
    transform: scale(1.1);
}

.wyizer-feature:hover .wyizer-image-container {
    background: #F4B400 !important;
    box-shadow: -0.375rem 0.3125rem 0.625rem rgba(244, 180, 0, 0.59);
    border-radius: 1.5rem;
}

.wyizer-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: #F0E7FF;
    box-shadow: -0.375rem 0.3125rem 0.625rem rgba(142.91, 74.14, 244.78, 0.59);
    border-radius: 1.5rem;
    overflow: hidden;
}

.wyizer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wyizer-feature h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-align: center;
    transition: color 0.3s ease;
}

.wyizer-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.wyizer-description p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.5;
    text-align: center;
}

.wyizer-description .quote {
    font-style: italic;
    font-weight: 700;
    opacity: 1;
    transition: all 0.3s ease-out;
}


.quote.animate {
    animation: ZoomIN 0.8s ease-out forwards;
}

@keyframes ZoomIN {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* How It Works Section */
.swiper-container {
    /* position: relative; */
    width: -webkit-fill-available;
    max-width: 60%;
}

.swiper-button-prev {
    background: white;
    border-radius: 50%;
    top: 47%;
    left: -30px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgb(0 0 0 / 17%);

    &::after {
        font-size: 1.4rem;
        content: "";
    }

    svg {
        width: 25px;
    }
}

.swiper-button-next {
    background: white;
    border-radius: 50%;
    top: 47%;
    right: -30px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgb(0 0 0 / 17%);

    &::after {
        font-size: 1.4rem;
        content: "";
    }

    svg {
        width: 25px;
    }
}

.swiper-button-prev,
.swiper-button-next {
    display: none;

    @media (min-width: 760px) {
        display: flex;
    }
}

.how-it-works-section {
    width: 100%;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.how-it-works-header {
    max-width: 52rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.how-it-works-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.how-it-works-header .highlight-blue {
    color: #4285F4;
}

.how-it-works-header .highlight-yellow {
    color: #F4B400;
}

.how-it-works-header p {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-family: "Helvetica Now Display", sans-serif;
    line-height: 1.5;
    text-align: center;
}

.how-it-works-section .swiper-slide {
    width: 150px;
    height: 430px;
    border-radius: 13px;
    background: #fff;
    /* overflow: hidden; */
    opacity: 1;
    box-shadow:
        0px 0px 0px #eaeaea,
        0px 0.8px 2.3px rgba(0, 0, 0, 0.2),
        0px -1.87px 0px rgba(0, 0, 0, 0.04) inset;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}


.how-it-works-section .swiper-slide-real-active {
    width: 300px;
    height: 400px;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.3);
    z-index: 2;
}

.how-it-works-section .swiper-slide img {
    /* width: 100%; */
    height: 300px;
    padding-top: 10px;
    border-radius: 0.7rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

.how-it-works-section .swiper-slide-real-active img {
    height: 280px;
    width: 110%;
}

.how-it-works-section .swiper-slide p {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.2rem, 30.5vw, 1.2rem);
    text-align: center;
    color: #272727;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.how-it-works-section .swiper-slide-real-active p {
    font-size: clamp(0.7rem, 1.8vw, 1rem);
    font-weight: 600;
}

@media screen and (max-width: 500px) {

    .how-it-works-section .swiper-slide p {
        font-size: 10px;
        line-height: 1.4;
        font-weight: 600;
    }

}

/* Navigation Arrows */
/* .how-it-works-section .swiper-button-next-custom,
.how-it-works-section .swiper-button-prev-custom {
    color: #4285f4;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #eff2ff 0%, #bbc1d8 39%, #8d96b7 100%);
    border-radius: 50%;
    --swiper-navigation-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-section .swiper-button-next-custom {
    right: 20px;
}

.how-it-works-section .swiper-button-prev-custom {
    left: 20px;
} */

/* .how-it-works-section .swiper-button-next-custom::after,
.how-it-works-section .swiper-button-prev-custom::after {
    font-size: 24px;
} */


/* Ensure proper centering of slides */
/* .how-it-works-section .swiper-wrapper {
    display: flex;
    align-items: center;
}

.how-it-works-section .swiper-container {
    padding: 0 !important;
} */

/* Add spacing between slides for better visual balance */
/* .how-it-works-section .swiper-slide {
    margin-right: 20px;
} */

.how-it-works-section .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 0.8rem;
    height: 0.8rem;
}

.how-it-works-section .swiper-pagination-bullet-active {
    background: #4285F4;
    opacity: 1;
    transform: scale(1.2);
}

.how-it-works-section .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 0.8rem;
    height: 0.8rem;
}

.how-it-works-section .swiper-pagination-bullet-active {
    background: #4285F4;
    opacity: 1;
    transform: scale(1.2);
}

/* Stay Informed Section */
.stay-informed-section {
    position: relative;
    width: 100%;
    max-width: 90rem;
    padding: 3rem 1rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -3.68rem;
}

.stay-informed-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.stay-informed-section .highlight-blue {
    color: #4285F4;
}

.stay-informed-section .highlight-yellow {
    color: #F8A401;
}

.stay-informed-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stay-informed-text {
    flex: 2;
    min-width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.stay-informed-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    text-align: center;
}

.stay-informed-text .button.primary {
    padding: 0.75rem 1.25rem;
    background: #4285F4;
    box-shadow: 0 -0.15rem 0 rgba(0, 0, 0, 0.04) inset;
    border-radius: 2rem;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: "Helvetica Now Display", sans-serif;
    font-weight: 700;
}

.stay-informed-content img {
    flex: 1;
    max-width: 32rem;
    height: auto;
    margin-top: -3rem;
}

.svg-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-origin: center center;
    width: 300px;
    width: 280px;
}

@media screen and (max-width: 480px) {
    .svg-button {
        width: 210px;
        height: auto;
    }

}


.svg-blue-button {
    display: inline-block;
    text-decoration: none;
    /* remove default underline */
    color: #4285F4;
    /* initial “fill” color for the SVG */
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Ensure the path inside uses the currentColor, and animates */
.svg-blue-button path {
    fill: currentColor;
    transition: fill 0.3s ease;
}

/* On hover, swap the color to orange */
.svg-blue-button:hover {
    color: #F8A401;
}

/* If you want the text to stay white, override its fill on hover */
.svg-blue-button text {
    transition: fill 0.3s ease;
}

.svg-blue-button:hover text {
    fill: white;
}

/* .stay-informed-content svg {
  display: block;
}
.stay-informed-content svg :hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.stay-informed-content svg :active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
} */
/* Optional pop effect: */
/* @keyframes click-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.svg-button.pop-on-click:active {
  animation: click-pop 0.3s ease;
} */

@media only screen and (min-width: 1024px) and (max-width: 3000px) {
    .break br {
        display: none !important;
    }
}


.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.flip-in-y {
    animation: flipInY 0.8s ease-out forwards;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn 1s ease-out forwards;
}

/* Initial state before scroll */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    60% {
        opacity: 1;
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes flipInY {
    from {
        transform: perspective(800px) rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: perspective(800px) rotateY(0deg);
        opacity: 1;
    }
}


@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.star.filled {
    background: url('../images/index/filled-star.svg');
}

.star:not(.filled) {
    background: url('../images/index/unfilled-star.svg');
}


.testimonials-section {
    /* max-width: 1600px; */
    width: 100%;
    margin: auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    margin-top: -2.5rem;
    border-radius: 15px;
}

.testimonials-section h2 {
    margin: 2rem auto;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.testimonials-header {
    opacity: 1;
    transform: translateX(100px);
}

.slide-in-right {
    animation: slideInRight 0.9s ease-out forwards;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(450px);
        /* Full right off-screen */
    }

    60% {
        opacity: 1;
        transform: translateX(-10px);
        /* Overshoot a little */
    }

    80% {
        transform: translateX(5px);
        /* Small bounce */
    }

    100% {
        transform: translateX(0);
    }
}

.highlight-blue {
    color: #007BFF;
}

.highlight-yellow {
    color: #FFC107;
}


.highlight-blue {
    color: #4285F4;
}

.highlight-yellow {
    color: #F8A401;
}

.slide-in-letters span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideOutDown 0.8s ease-out forwards;
}

@keyframes slideOutDown {
    from {
        transform: translateX(-20px) translateY(0);
        opacity: 0;
    }

    to {
        transform: translateX(-20px) translateY(50%);
        opacity: 1;
    }
}


.swiper-slide {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);

}

.swiper-slide h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.swiper-slide p {
    font-size: 0.9rem;
    color: #133240;
    margin-bottom: 1rem;
    text-align: left;
}


@media (max-width: 480px) {
    .testimonials-section {
        padding: 1rem;
        margin-top: -1.5rem;
    }

    .testimonials-section-div {
        position: relative;
        margin-right: 14rem;
        padding-inline: 1rem;
    }

    .mySwiper-testimonials .swiper-slide-active {
        width: 344.51px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
    .mySwiper-testimonials {
        padding: 5rem 0 !important;
        margin: -3rem 7rem !important;
    }

    .mySwiper-testimonials .swiper-slide {
        width: 320.51px !important;
        height: auto !important;
        /* width: 100% !important;
        height: 100% !important; */
    }

    .swiper-slide h3 {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    .swiper-slide p {
        font-size: 0.85rem;
    }

    .author-details .name {
        font-size: 0.85rem;
    }

    .author-details .location {
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .mySwiper-testimonials .swiper-slide-active {
        width: 650.51px;
    }
}

.read-more {
    color: #4EB1FB;
    cursor: pointer;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.author-info {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-details .name {
    font-weight: 600;
    font-size: 0.9rem;
    width: max-content;
}

.author-details .location {
    font-size: 0.8rem;
    color: #666;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    width: 1.3rem;
    height: 1.3rem;
    background-size: cover;
}



.swiper-slide.swiper-slide-active {
    transform: scale(1.1);
}

/* Updated navigation button styles */
.swiper-button-prev,
.swiper-button-next {
    color: #FF5733;
    /* <-- Changed from #4EB1FB to your desired color */
    width: 40px;
    height: 40px;
    background: rgba(199, 148, 148, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Soft shadow */
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(116, 104, 104, 0.9);
    /* Slightly brighter on hover */
    transform: scale(1.05);
    /* Subtle grow on hover */
}

/* .swiper-button-prev {
    left: -50px;
}

.swiper-button-next {
    right: -50px;
} */

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    color: inherit;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    overflow-x: hidden;
    position: relative;

}

@keyframes zoomSlideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(4px);
    }

    60% {
        opacity: 0.6;
        transform: translateY(-10px) scale(1.02);
        filter: blur(1px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.fancy-animate {
    opacity: 0;
    /* Start hidden */
    transition: opacity 0.5s;
}

.fancy-animate.visible {
    animation: zoomSlideFadeIn 1s ease-out forwards;
}

.accordion {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.accordion-body {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.faq-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.faq-section .highlight-blue {
    color: #4285F4;
}

.faq-section .highlight-yellow {
    color: #F8A401;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #f9f9f9;
    color: #333;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #eef1f5;
}

.accordion-body {
    background-color: #ffffff;
    padding: 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
    color: #555;
    border-top: 1px solid #e0e0e0;
}

.accordion-item {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.faq-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 35px 31px;
}

.faq-item {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(171, 171, 171, 0.06) 100%), #FFF;
    box-shadow: 0px -2.4px 0px 0px rgba(61, 61, 61, 0.04) inset, 0px 1px 3px 0px rgba(143, 143, 143, 0.20), 0px 0px 0px 1px #EAEAEA;
}

.faq-item p {
    color: #272727;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.176px;
    margin: 0;
}

.faq-icon {
    width: 0.8rem;
    height: 0.8rem;
    transform: translateY(-50%);
}

/* Footer Section */
.footer {
    width: 100%;
    background: linear-gradient(180deg, #EFF2FF 0%, #BBC1D8 61%, #8D96B7 100%);
    padding: 80.17px 39px 95.83px 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 98px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column img {
    max-width: 10rem;
    height: auto;
}

.footer-column p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px 10px 10px;
    width: 2rem;
    height: 2rem;
}

.social-icon.facebook::before {
    content: "\f09a";
    font-family: "Font Awesome 5 Brands";
    color: #1877F2;
    font-size: 1rem;
}

.social-icon.twitter::before {
    content: "\f099";
    font-family: "Font Awesome 5 Brands";
    color: #1DA1F2;
    font-size: 1rem;
}

.social-icon.youtube::before {
    content: "\f167";
    font-family: "Font Awesome 5 Brands";
    color: #FF0000;
    font-size: 1rem;
}

.social-icon.instagram::before {
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
    color: #515BD4;
    font-size: 1rem;
}

.social-icon.linkedin::before {
    content: "\f0e1";
    font-family: "Font Awesome 5 Brands";
    color: #0077B5;
    font-size: 1rem;
}

.social-icon.telegram::before {
    content: "\f2c6";
    font-family: "Font Awesome 5 Brands";
    color: #0088CC;
    font-size: 1rem;
}

.footer-column h3 {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links div {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links div:hover {
    color: #F4B400;
}

@media (max-width: 1024px) {
    .wyizer-features {
        gap: 4rem;
    }
}


/* Hero-section responsiveness */


/* Extra Large Screens - 1600px and above */
/* ================================
   ≥ 481px (Small Tablets / large phones)
   ================================ */

@media (max-width: 480px) {
    .hero-content{
        margin-top: 1rem !important;
    }
}

@media (min-width: 480px) {
    .hero-section {
        padding: 0rem;
    }

    .hero-content {
        flex-direction: column;
        /* padding: 0 1.5rem; */
        gap: 1.5rem;
        margin-top: -8rem !important;
    }

    .hero-text h1 {
        /* Slightly larger cap as viewport grows */
        font-size: clamp(2rem, 5.5vw, 3rem);
        margin-top: 10rem !important;
    }

    .hero-text p {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
        max-width: 28rem;
    }

    .hero-image {
        max-width: 500px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 800px) {

    .swiper-container {
        max-width: 80%;
    }

    .how-it-works-section .swiper-slide-active {
        height: 275px !important;
    }

    .how-it-works-section .swiper-slide {
        height: 320px !important;
    }

    .how-it-works-section .swiper-slide-active img {
        height: 220px !important;
    }

}

@media only screen and (min-width: 500px) and (max-width: 700px) {
    .mySwiper-testimonials .swiper-slide-active {
        height: 250px !important;
    }
}



/* ================================
   ≥ 769px (Tablets / small desktop)
   Switch to side-by-side layout.
   ================================ */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 1rem 2rem;
        margin-top: -2rem !important;
    }

    .hero-text {
        flex: 1;
        text-align: center;
        align-items: center;
        max-width: 850px;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .hero-text p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        line-height: 1.5;
    }

    .hero-image {
        max-width: 800px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 950px){
    .hero-content{
        margin-top: -8rem !important;
    }
}

/* ================================
   ≥ 1025px (Standard Desktop)
   Constrain container and increase sizes.
   ================================ */
@media (min-width: 1025px) {
    .hero-content {
        max-width: 1600px;
        margin: 0 auto;
        justify-content: space-between;
        /* gap: 2.5rem; */
        padding: 2rem 1rem;
        margin-top: -2rem !important;
    }

    .hero-text {
        max-width: 600px;
        text-align: start;
        align-items: start;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
        line-height: 1.2;
    }

    .hero-text p {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        max-width: 550px;
    }

    .hero-image {
        max-width: 500px;
    }

    .hero-buttons {
        gap: 1.5rem;
    }

    .mySwiper-testimonials {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: visible;
        padding: 2rem;
        align-items: center;
    }
}

/* ================================
   ≥ 1200px (Large Desktop)
   ================================ */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 1600px;
        margin: 0 auto;
        /* gap: 3rem; */
        padding: 2rem;
    }

    .hero-text {
        max-width: 650px;
    }

    .hero-text h1 {
        /* Slightly larger cap on bigger desktop */
        font-size: clamp(3rem, 3.5vw, 5rem);
    }

    .hero-text p {
        font-size: clamp(1.1rem, 1.5vw, 1.4rem);
        max-width: 600px;
    }

    .hero-image {
        max-width: 700px;
    }

    .hero-buttons {
        gap: 2rem;
    }
}

/* ================================
   ≥ 1400px (Extra Large Desktop)
   ================================ */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1800px;
        margin: 0 auto;
        /* gap: 3.5rem; */
        padding: 4rem;
    }

    .hero-text {
        max-width: 700px;
        align-items: start;
    }

    .hero-text h1 {
        font-size: clamp(3.2rem, 3vw, 6rem);
        line-height: 1.1;
    }

    .hero-text p {
        font-size: clamp(1.2rem, 1.2vw, 1.5rem);
        max-width: 650px;
        line-height: 1.6;
    }

    .hero-image {
        max-width: 700px;
    }

    .hero-buttons {
        gap: 2rem;
    }
}

/* ================================
   ≥ 1600px (Ultra-Wide Screens)
   ================================ */
@media (min-width: 2200px) {
    .hero-content {
        max-width: 2000px;
        margin: 3rem auto;
        margin-top: 2rem;
        gap: 4rem;
        padding: 4rem 2rem;
    }

    .hero-text {
        max-width: 750px;
    }

    .hero-text h1 {
        font-size: clamp(3.5rem, 2.5vw, 6.5rem);
        line-height: 1.1;
    }

    .hero-text p {
        font-size: clamp(1.3rem, 1vw, 1.6rem);
        max-width: 700px;
        line-height: 1.6;
    }

    .hero-image {
        max-width: 800px;
    }

    .hero-buttons {
        gap: 2.5rem;
    }
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .how-it-works-section .swiper-slide p {
        font-size: 10px;
        line-height: 1.4;
        font-weight: 600;
        margin-top: 0.5rem;
    }

    .mySwiper-testimonials .swiper-slide-active {
        width: 344.51px;
    }

    .why-invest-content {
        flex-direction: column;
    }

    .rocket-image-container {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
        border-radius: 1rem;
    }

    .invest-stats {
        min-width: unset;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 1.5rem;
    }

    .ai-features {
        flex-wrap: wrap;
    }

    .wyizer-features {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .stay-informed-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .stay-informed-text {
        gap: 0;
    }

    .stay-informed-text p {
        padding: 0 1rem;
    }

    .wyizer-feature {
        max-width: 20rem;
        transform: translateX(10%);
        /* Reset translation on mobile */
    }

    .wyizer-feature:hover {
        transform: scale(1.1) translateX(10%);
        /* Keep original scale and position */
    }

    .wyizer-description p {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    }

    .wyizer-feature h3 {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
        /* Prevent unnecessary horizontal scroll */
        width: 100%;
        padding: 1rem;
    }

    .nav-arrow {
        display: flex;
    }

    .testimonials {
        flex-direction: column;
        /* Stack vertically on mobile */
        align-items: center;
        width: 100%;
        gap: 1.5rem;
        overflow-x: hidden;
    }

    .testimonial,
    .testimonial.large {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mySwiper-testimonials {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        margin: 0 auto;
        overflow: visible;
        padding: 5rem;
        margin-top: -3rem;
        /* min-height: 0 !important; */
    }


    @media screen and (max-device-width: 600px) and (-webkit-min-device-pixel-ratio: 2) {
    .mySwiper-testimonials {
        height: auto !important;
        /* min-height: 300px; fallback */
    }
}

    .mySwiper-testimonials .swiper-slide {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: scale(0.9);
        opacity: 0.7;
        box-shadow: 0 6px 12px rgba(230, 8, 8, 0.1);

    }

    .mySwiper-testimonials .swiper-slide-active {
        transform: scale(1.03);
        opacity: 1;
        z-index: 2;
        /* height: 250px!important; */
    }

    .swiper-wrapper {
        overflow: visible !important;
        height: auto !important;
    }

    .how-it-works-section .swiper-slide {
        width: 160px;
        height: 240px;
    }

    .how-it-works-section .swiper-slide-active {
        width: 180px;
        height: 260px;
    }

    .how-it-works-section .swiper-slide img {
        height: 120px;
    }

    .how-it-works-section .swiper-slide-active img {
        height: 140px;
    }


    .wyizer-image-container {
        width: 75%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .wyizer-image-container {
        width: 90%;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
        /* Prevent unnecessary horizontal scroll */
        width: 100%;
        padding: 1rem;
    }

    .nav-arrow {
        display: flex;
    }

    .testimonials {
        flex-direction: column;
        /* Stack vertically on mobile */
        align-items: center;
        width: 100%;
        gap: 1.5rem;
        overflow-x: hidden;
    }

    .testimonial,
    .testimonial.large {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mySwiper-testimonials {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        overflow: visible;
        padding: 5rem;
        margin-top: -3rem;
    }

    .mySwiper-testimonials .swiper-slide {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: scale(0.9);
        opacity: 0.7;
        box-shadow: 0 6px 12px rgba(230, 8, 8, 0.1);

    }

    .mySwiper-testimonials .swiper-slide-active {
        transform: scale(1.03);
        opacity: 1;
        z-index: 2;
        /* height: 250px!important; */
    }
}




@media only screen and (min-width: 1000px) and (max-width: 1200px) {

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
        /* Prevent unnecessary horizontal scroll */
        width: 100%;
        padding: 1rem;;
    }

    .nav-arrow {
        display: flex;
    }

    .testimonials {
        flex-direction: column;
        /* Stack vertically on mobile */
        align-items: center;
        width: 100%;
        gap: 1.5rem;
        overflow-x: hidden;
    }

    .testimonial,
    .testimonial.large {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mySwiper-testimonials {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: hidden;
        padding: 5rem 0;
        margin-top: -3rem;
        /* justify-content: center; */
        display: flex
    }

    .mySwiper-testimonials .swiper-slide {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: scale(0.9);
        opacity: 0.7;
        box-shadow: 0 6px 12px rgba(230, 8, 8, 0.1);
        height: 300px !important;
    }

    .mySwiper-testimonials .swiper-slide-active {
        transform: scale(1.03);
        opacity: 1;
        z-index: 2;
        height: 300px !important;
        width: 350px !important;
    }

    .author-details .location {
        font-size: 0.75rem;
    }
}


@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .stay-informed-section {
        padding: 2rem 1rem;
    }

    .stay-informed-text p {
        font-size: 1rem;
        padding: 0 2rem;
    }

    .stay-informed-text {
        padding: 0.5rem;
    }

    .stay-informed-text .button.primary {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
    }

    .stay-informed-content img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .why-wyizer-section {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }


    .wyizer-feature {
        max-width: 100%;
        padding: 0;
        transform: translateX(10%);
    }

    .wyizer-description p {
        font-size: 1rem;
    }

    .wyizer-feature h3 {
        font-size: 1.1rem;
    }

    .wyizer-image-container {
        border-radius: 1rem;
        width: 60%;
    }

    .wyizer-feature:hover {
        transform: scale(1.1) translateX(10%);
    }

    .why-invest-section h2,
    .ai-nri-header h2,
    .why-wyizer-section h2,
    .stay-informed-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .why-invest-section {
        padding: 2rem 1rem;
    }

    .rocket-image-container {
        border-radius: 0.75rem;
    }

    .stat-header h3 {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
    }

    .stat-header p,
    .stat-description {
        font-size: 1rem;
        line-height: 1.4;
    }

    .stat-value {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .testimonials-container {
        padding: 1rem 0;
    }


    .testimonial,
    .testimonial.large {
        width: 100%;
        max-width: 95%;
        padding: 1rem;
    }

    .mySwiper-testimonials .swiper-slide-active {
        transform: scale(1.05);
    }

    .testimonials-section h2 {
        text-align: center;
        /* margin-left: -10rem; */
        margin-top: 5rem;
        font-size: 32px;
    }

    .how-it-works-section .swiper-slide {
        width: 160px;
        height: 245px;
    }

    .how-it-works-section .swiper-slide-active {
        width: 160px;
        height: 250px;
    }

    .how-it-works-section .swiper-slide img {
        height: 100px;
    }

    .how-it-works-section .swiper-slide-active img {
        height: 145px;
    }

    .how-it-works-section .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
    }

    .faq-item p {
        font-size: 16px;
        line-height: 20px;
    }

    .svg-button {
        margin-top: -0.5rem;
    }

    .swiper-container {
        max-width: 85%;
    }

}


@media (max-width: 350px) {
    .wyizer-image-container {
        width: 85%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .swiper-container {
        max-width: 90%;
    }

}
swiper-button-next
/* Ensure background cards are visible */
.swiper-slide {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    transform: scale(0.85);
    z-index: 1;
}

/* Highlight the center (active) card */
.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2 !important;
}

/* Optional: Smooth stacking */
.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.75 !important;
    z-index: 1 !important;
}


.swiper-button-prev-custom,
.swiper-button-next-custom {
    background: none !important;
    width: 48px !important;
    height: 48px !important;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    position: absolute;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.swiper-button-prev-custom:active,
.swiper-button-next-custom:active {
    transform: translateY(-50%) scale(0.95);
}

/* Optional: Hide default arrow icons */
.swiper-button-prev-custom::after,
.swiper-button-next-custom::after {
    display: none;
}

.swiper-button-prev-custom {
    left: 30px;
}

.swiper-button-next-custom {
    right: 30px;
}

/* Hide buttons on mobile and tablet */
@media (max-width: 1200px) {
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none;
    }
}

/* Show buttons only on desktop */
@media (min-width: 1201px) {
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: flex; /* Ensure buttons are visible on desktop */
    }
}
/* Navigation buttons positioned on sides */
.swiper-container {
    position: relative;
}

.mySwiper-testimonials .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.8);
    opacity: 0.6;
    width: 420.51px;
    height: auto !important;
    justify-content: space-between;

}

.mySwiper-testimonials .swiper-slide-active {
    width: 420.51px;
    justify-content: space-between;
    height: auto !important;
    /* min-height: 0 !important; */
    padding: 20.581px;
    gap: 0px;
    aspect-ratio: 420.51/213.00;
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
    scale: 1.1;
    box-shadow: 0 5px 45px rgba(211, 79, 79, 0.1);

}

.mySwiper-testimonials .swiper-slide-prev,
.mySwiper-testimonials .swiper-slide-next {
    transform: scale(0.9);
    opacity: 0.8;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    overflow: hidden;
}

.testimonials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.testimonial,
.testimonial.large {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 20rem;
    max-width: 20rem;
    flex-shrink: 0;
    text-align: left;
}