* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* list-style: none; */
    font-family: "Satoshi";
}

a {
    display: inline-block;
    text-decoration: none;
}

.wrapper {
    overflow-x: hidden;
}

:root {
    --primary-yellow: #F2CA00;
    --dark-brown: #1B0B00;
    --text-gray: #515151;
    --black: #000000;
    --white: #FFFFFF;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

.container {
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
}


p {
    font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
    font-weight: 400;
    color: var(--black);
    padding: 0;
    margin: 0;
}

.web-title h2 {
    font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Header Styles */
.navbar-container {
    background: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    background: var(--white);
    box-shadow: 0px 8px 55px 0px #0000001A;
    border-radius: 16px;
    padding: 16px 16px 16px 32px;
    width: 100%;
}

.navbar-collapse {
    justify-content: end;
}

ul.navbar-nav {
    padding-right: 15px;
}

.nav-link {
    color: var(--dark-brown);
    font-size: 20px;
    font-weight: 400;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    height: 52px;
    border: 1px solid #EAEBEB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    border-color: #ccc;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #EAEBEB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 140px;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-brown);
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.header-btn {
    background-color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    height: 52px;
    border-radius: 16px;
    color: var(--dark-brown);
    display: block;
    font-weight: 500;
    padding: 16px 32px;
    transition: 0.3s ease-in-out;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background: transparent;
}


/* Hero Section */
.hero-section {
    background: var(--primary-yellow);
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(1.625rem, 1.175rem + 2.25vw, 3.875rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.hero-content .highlight {
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    color: var(--black);
    font-weight: 500;
}

.app-buttons {
    padding-top: 50px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-front {
    position: relative;
    z-index: 4;
}

.hero-img-left {
    margin-right: -25px;
    animation: moveDown 8s ease-in-out infinite;
}

.hero-img-right {
    margin-left: -25px;
    animation: moveUp 8s ease-in-out infinite;
}

.hero-img-left-card,
.hero-img-right-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    left: -50px;
    animation: bannercardmoveup 8s ease-in-out infinite;
}

.hero-img-right-card {
    left: auto;
    right: -50px;
    transform: translateY(-240%);
    animation: bannercardmovedown 8s ease-in-out infinite;
}

/* Keyframes */
@keyframes bannercardmoveup {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-170%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Keyframes */
@keyframes bannercardmovedown {
    0% {
        transform: translateY(-240%);
    }

    50% {
        transform: translateY(-80%);
    }

    100% {
        transform: translateY(-240%);
    }
}



/* Keyframes */
@keyframes moveDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(60px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-60px);
    }

    100% {
        transform: translateY(0);
    }
}

/* what section css start */
.what-section {
    padding: 100px 0px;
}

.what-sec-title {
    margin-bottom: 80px;
}

/* Container Style */

.what-swiper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.what-swiper-content h3 {
    font-size: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
    font-weight: 700;
    color: var(--black);
}

.what-swiper-content p {
    color: var(--text-gray);
}

/* Pagination Dots */
.what-section .swiper-pagination {
    margin-top: 40px;
    position: static;
    margin-bottom: 70px;
}

.what-section .swiper-pagination-bullet {
    background: #979797;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
}

.what-section .swiper-pagination-bullet-active {
    background: var(--primary-yellow);
    /* Yellow */
}

/* Navigation Buttons Container */
.what-section .swiper-navigation-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: block;
    width: 10px;
    transform: translateX(-50%);
}

.what-section .custom-prev,
.what-section .custom-next {
    width: 51px;
}

.what-section .custom-prev::after,
.what-section .custom-next::after {
    content: unset;
}

.what-circular-swiper-main {
    margin-left: 400px;
}

/* Key Features Section - Pixel Perfect Design */
.features-section {
    background: var(--dark-brown);
    padding: 100px 0;
}

.features-section .key-features-title {
    margin-bottom: 100px;
}

.features-section .key-features-title h2 {
    color: var(--white);
    text-align: center;
}

.key-features-card {
    display: flex;
    align-items: self-start;
    gap: 20px;
    margin-bottom: 100px;
}

.key-features-card:last-child {
    margin-bottom: 0;
}

.key-features-card-icon {
    background: #FFFFFF1A;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
}

.key-features-card-content h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.key-features-card-content p {
    color: #979797;
    font-size: 20px;
    font-weight: 400;
}

.features-section .iphone-container {
    position: relative;
    width: 70%;
    margin: 0 auto;
    max-width: 95vw;
    aspect-ratio: 1290 / 2796;
    /* iPhone 16 Pro Max accurate ratio */
}

.features-section .iphone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.features-section .swiper-container {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -53%);
    left: 50%;
    width: 88%;
    height: 88%;
    z-index: 0;
    border-radius: 36px;
    overflow: hidden;
}

.features-section .swiper-slide img {
    aspect-ratio: 297/645;
    width: 100%;
    object-fit: cover;
}

.features-section .key-features-mobile-logo {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%) rotate(0deg);
    animation: rotate360 5s linear infinite;
}

.key-features-mobile-logo img {
    aspect-ratio: 1/1;
}

@keyframes rotate360 {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) rotate(180deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.key-features-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 75%;
    animation: scaleUpDown 5s ease-in-out infinite;
}


.key-features-bg img {
    aspect-ratio: 1265/1109;
}

@keyframes scaleUpDown {
    0% {
        transform: translate(-50%, -60%) scale(0.8);
    }

    50% {
        transform: translate(-50%, -60%) scale(1);
    }

    100% {
        transform: translate(-50%, -60%) scale(0.8);
    }
}


/* cta section */
.cta-section .cta-box {
    background-color: var(--primary-yellow);
    border-radius: 20px;
    margin-top: 250px;
    position: relative;
}

.cta-title {
    padding-left: 100px;
}

.cta-hand-img {
    width: 550px;
    margin-left: auto;
    margin-top: -150px;
    margin-right: 60px;
}

.cta-hand-img .swiper-container {
    position: absolute;
    top: 50%;
    transform: translate(-40%, -48.5%);
    left: 50%;
    width: 45%;
    height: 100%;
    z-index: 0;
    border-radius: 36px;
    overflow: hidden;
}

.cta-hand-img.swiper-slide img {
    aspect-ratio: 297/645;
    width: 100%;
    object-fit: cover;
}

.cta-hand-left,
.cta-hand-right {
    position: absolute;
    top: 0;
    transform: translateY(140px);
    right: 0;
    z-index: 99;
    animation: ctahandcarddown 8s ease-in-out infinite;
}

.cta-hand-right {
    right: unset;
    left: 0;
    animation: ctahandcardup 8s ease-in-out infinite;
}

@keyframes ctahandcarddown {
    0% {
        transform: translateY(140px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(140px);
    }
}

@keyframes ctahandcardup {
    0% {
        transform: translateY(140px);
    }

    50% {
        transform: translateY(270px);
    }

    100% {
        transform: translateY(140px);
    }
}

.cta-section .cta-box .soial-btn a {
    margin-top: 40px;
    background-color: var(--white);
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    border-radius: 16px;
}

/* FAQ Section - New Design */
.faq-section {
    padding: 100px 0;
}

.faq-section .faq-title h2 {
    max-width: 465px;
}

.faq-section .faq-title p {
    color: var(--text-gray);
}

.faq-section .faq-img {
    margin-top: 50px;
}

.faq-section .faq-img img {
    width: auto;
    margin: 0 auto;
}

.faq-section .accordion-item {
    background: #FFFBF0;
    border-bottom: 1px solid #B1B1B1;
    border-radius: 16px !important;
    margin-bottom: 30px;
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-button {
    background: transparent;
    border: none;
    padding: 20px 30px;
    font-weight: 600;
    border-radius: 16px 16px 0px 0px !important;
    border: 0 !important;
    font-size: clamp(1.0625rem, 0.975rem + 0.4375vw, 1.5rem);
    color: var(--text-gray);
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #FFFBF0;
    color: var(--black);
    box-shadow: none;
    border-radius: 0;
    border: 0;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: #ffc107;
}

.faq-section .accordion-body {
    background: #FFFBF0;
    color: var(--text-gray);
    padding: 20px 30px;
    padding-top: 0px;
    border-radius: 0px 0px 16px 16px !important;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 400;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M25%2015L5%2015%22%20stroke%3D%22%23808080%22%20stroke-width%3D%221.875%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
    transform: unset;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M15%205V25%22%20stroke%3D%22%23FCCC35%22%20stroke-width%3D%221.875%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M5%2015H25%22%20stroke%3D%22%23FCCC35%22%20stroke-width%3D%221.875%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
    transform: unset;
}


/* Footer Section */
.footer-section {
    background-color: var(--black);
}

.footer-spacing {
    padding: 80px 0px;
}

.footer-brand {
    max-width: 80%;
}

.footer-logo img {
    width: auto;
}

.footer-brand p {
    color: var(--white);
    margin: 0;
    margin-top: 40px;
}

.footer-links h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li:hover a {
    color: var(--primary-yellow);
}


.social-links {
    display: flex;
    gap: 15px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--white);
    opacity: 30%;
    margin: 0;
}

.footer-bottom {
    text-align: center;
}

.copyright-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin: 20px 0;
}

/* End */


.privacy-title {
    font-size: clamp(0.9375rem, 0.725rem + 1.0625vw, 2rem);
    color: var(--black);
    font-weight: 700;
}

.privacy-title-inner {
    font-size: clamp(0.8125rem, 0.7rem + 0.5625vw, 1.375rem);
    color: var(--black);
    font-weight: 600;
}

.content-policy p {
    color: var(--black);
}



.contact-form {
    padding-right: 20px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form .required::after {
    content: "*";
    color: #ef4444;
    margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    font-size: 1rem;
    color: #374151;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #f59e0b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.contact-form .submit-btn {
    background-color: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-yellow);
}

.submit-btn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='black'%3E%3Cpath d='M14.9301 19.3201C14.7401 19.3201 14.5501 19.2501 14.4001 19.1001C14.1101 18.8101 14.1101 18.3301 14.4001 18.0401L19.9401 12.5001L14.4001 6.96012C14.1101 6.67012 14.1101 6.19012 14.4001 5.90012C14.6901 5.61012 15.1701 5.61012 15.4601 5.90012L21.5301 11.9701C21.8201 12.2601 21.8201 12.7401 21.5301 13.0301L15.4601 19.1001C15.3101 19.2501 15.1201 19.3201 14.9301 19.3201Z'/%3E%3Cpath d='M20.83 13.25H4C3.59 13.25 3.25 12.91 3.25 12.5C3.25 12.09 3.59 11.75 4 11.75H20.83C21.24 11.75 21.58 12.09 21.58 12.5C21.58 12.91 21.24 13.25 20.83 13.25Z'/%3E%3C/svg%3E");
    margin-top: 5px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contact-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-person {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

.contact-item::before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}

.email::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: #374151;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #1f2937;
}

.additional-info {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.spacing {
    padding: 100px 0px;
}

.merchants-title p {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    margin-bottom: 1.4rem;
}

.merchants-title p:last-child {
    margin-bottom: 0;
}

.privacy-title {
    font-size: clamp(0.9375rem, 0.725rem + 1.0625vw, 2rem);
    color: var(--black);
    font-weight: 700;
}

.privacy-title-inner {
    font-size: clamp(0.8125rem, 0.7rem + 0.5625vw, 1.375rem);
    color: var(--black);
    font-weight: 600;
}

.content-policy p {
    color: var(--black);
    margin-bottom: 1.4rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.content-policy ul {
    list-style: disc !important;
    list-style-type: disc !important;
    padding-left: 20px;
}

.content-policy h4,
.content-policy h3,
.content-policy h5 {
    margin-bottom: 20px;
}

.language-dropdown {
    display: none;
}