@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* list-style: none; */
    font-family: "Outfit", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
}

/* .wrapper {
    overflow-x: hidden;
} */

:root {
    --primary-yellow: #222e37;
    --secondary: #820d22;
    --blue: #5e7997;
    --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.8rem + 0.375vw, 1.25rem);
    font-weight: 400;
    color: var(--blue);
    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);
    position: relative;
}


.footer-logo {
    max-width: 300px;
}

a.navbar-brand {
    max-width: 250px;
}

.policy-content-img-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.policy-content-img img {
    border-radius: 20px;
}

.web-title h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.faq-title.web-title h2::before,
.cta-title.web-title h2::before,
.about-us-content.web-title h2::before {
    left: 0;
    transform: unset;
}

.cta-title h2,
.cta-title p {
    color: var(--white);
}

/* 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(--black);
    font-size: 20px;
    font-weight: 400;
    margin: 0 15px;
    transition: all 0.3s ease ease-in-out;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary) !important;
    font-weight: 500;
}

.nav-link.active::before {
    width: 100%;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 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(--secondary);
    border: 1px solid var(--secondary);
    height: 52px;
    border-radius: 16px;
    color: var(--white);
    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;
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    transition: all 0.3s ease-in-out;
}

.header-btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* .header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 99, 105, 0.4);
} */


/* 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: 600;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-content .highlight {
    color: var(--white);
    background-color: var(--secondary);
    padding: 0px 10px;
    border-radius: 8px;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    color: var(--white);
    font-weight: 400;
}

.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(--primary-yellow);
}

.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: var(--secondary);
    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-content {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.faq-section .faq-img {
    margin-top: 50px;
}

.faq-section .faq-img img {
    width: auto;
    margin: 0 auto;
}

.faq-section .accordion-item {
    background: var(--primary-yellow);
    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(--white);
    font-weight: 400;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-yellow);
    color: var(--white);
    box-shadow: none;
    border-radius: 0;
    border: 0;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    /* border-color: #ffc107; */
}

.faq-section .accordion-body {
    background: var(--primary-yellow);
    color: var(--white);
    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-body a {
    color: var(--white);
    text-decoration: underline;
}

.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%22M15%205V25%22%20stroke%3D%22%23ffffff%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%23ffffff%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%22M25%2015L5%2015%22%20stroke%3D%22%23ffffff%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: var(--secondary);
    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: var(--blue);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.contact-form .submit-btn {
    background-color: var(--blue);
    color: var(--white);
    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='%23ffffff'%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 Form Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    animation: slideIn 0.3s ease-in-out;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert strong {
    font-weight: 600;
}

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

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

/* Loading state for submit button */
.submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    background-color: #9ca3af;
}


.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-description {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-person {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 32px 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--white);
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.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='%23ffffff'%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='%23ffffff'%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: var(--white);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: var(--white);
    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: var(--white);
    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;
}

.why-sell-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
}


.why-sell-card-content span {
    background-color: var(--secondary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
}

.why-sell-card-img img {
    aspect-ratio: 500 / 317;
    border-radius: 16px;
    object-fit: cover;
}

.why-sell-card-content h4 {
    font-weight: 600;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    color: var(--black);
    margin: 15px 0px;
}

.why-sell-card-content p {
    color: var(--blue);
    font-size: clamp(0.8125rem, 0.75rem + 0.3125vw, 1.125rem);
    font-weight: 400;
}

.why-sell-card-content {
    margin-top: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}


.real-stories-card {
    background-color: var(--white);
    border: 1px solid #0000001a;
    border-radius: 16px;
    padding: 80px 32px 32px;
    position: relative;
    text-align: center;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.real-stories-card-img img {
    border-radius: 50%;
    height: 120px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -43%);
    width: 120px;
}

.real-stories-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.real-stories-card-name h5 {
    font-size: 18px;
    font-weight: 700;
}

.real-stories-card-name a {
    border: 2px solid #0000001a;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.real-stories-card-name a:hover {
    background-color: #f5f5f5;
}


.join-people-swiper-card {
    background-color: var(--white);
    border: 1px solid #0000001A;
    border-radius: 16px;
    contain: content;
    margin: 0 0 16px;
    min-height: 104px;
    overflow: hidden;
    padding: 16px 156px 16px 16px;
    position: relative;
}

.join-people-swiper-card-name {
    color: var(--black);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.2;
}

.join-people-swiper-card-description {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
    min-height: 42px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    z-index: 1;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.444;
    font-weight: 600;
}

.join-people-swiper-card-date {
    color: var(--black);
    font-size: 13px;
    line-height: 1.444;
    font-weight: 500;
}

.join-people-swiper-card-image {
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
}

.join-people-swiper-card-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}


/* Alternative: Direct gradient on swiper container */
.join-people-swiper {
    position: relative;
}

.join-people-swiper::before,
.join-people-swiper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 128px;
    z-index: 10;
    pointer-events: none;
}

.join-people-swiper::before {
    left: 0;
    background-image: linear-gradient(90deg, #fff, #fff 10%, #fff0);
}

.join-people-swiper::after {
    right: 0;
    background-image: linear-gradient(270deg, #fff, #fff 10%, #fff0);
}


.policy-content h2 {
    font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}

.policy-content h3 {
    font-size: clamp(1.1875rem, 1.025rem + 0.8125vw, 2rem);
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white-color);
}

.policy-content h4 {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--white-color);
}

.policy-content h5 {
    font-size: clamp(1.0625rem, 0.975rem + 0.4375vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--white-color);
}

.policy-content h6 {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white-color);
}

.policy-content a {
    color: var(--secondary);
    font-weight: 500;
    border-bottom: 1px solid;
}

/* Paragraph */
.policy-content p {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--white-color);
}

/* Lists */
.policy-content ul,
.policy-content ol {
    padding-left: 1.2em;
    margin-bottom: 20px;
    list-style: disc;
}

.policy-content ul li,
.policy-content ol li {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    color: var(--white-color);
}

.policy-content ul li::marker,
.policy-content ol li::marker {
    color: var(--secondary);
}

.about-us-img img {
    aspect-ratio: 600/600;
    border-radius: 20px;
    object-fit: cover;
}

.about-us-content p {
    margin-bottom: 15px;
}

.about-us-content h2 {
    margin-bottom: 40px;
}

ul.how-it-works li h3 span {
    color: var(--secondary);
    font-weight: 600;
    padding-right: 20px;
}

ul.how-it-works li h3 {
    font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
    color: var(--black);
}

ul.how-it-works li p {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    margin-top: 6px;
}

ul.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.how-it-works-content {
    padding-left: 40px;
}

.how-it-works-content h2 {
    font-size: clamp(1.375rem, 1.025rem + 1.75vw, 3.125rem);
}

/* 404 Page Styles */
.error-404-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--primary-dark);
}

.error-404-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-404-number {
    font-size: clamp(6rem, 10vw, 12rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(242, 169, 0, 0.3);
}

.error-404-title {
    font-size: clamp(1.75rem, 2.5vw, 3rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
}

.error-404-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    text-decoration: none;
    transition: all 0.3s ease;
}


.hero-img-left-card {
    display: none;
}