@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;

}

body {
    font-family: var(--f1);
}

a {
    text-decoration: none !important;
    display: inline-block !important;
}

img {
    width: 100%;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
}

p {
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}
.wrapper {
    overflow-x: hidden;
}
:root {
    --c1: #000;
    /* Black */
    --c2: #fff;
    /* White */
    --c3: #F0F0F0;
    /* Red */
    --c4: #FEC6C7;
    /* Background Color */
    --c5: #DBEDFB;
    /* Background Color */
    --c6: #DBEDFB;
    --c7: #DBEDFB;
    --c8: #1A474D;
    --c9: #D9B8D5;
    --c10: #636363;
    --f1: "Inter", sans-serif;
}


.spacing {
    padding: 100px 0;
}

/* header */
.header-btn a {
    background: var(--c1);
    padding: 7px 25px;
    border-radius: 28px;
}

.header-btn {
    text-align: end;
}

header.main-header .container {
    max-width: 1550px;
}


.header-btn {
    display: flex;
    justify-content: flex-end;
}

.header-btn a {
    padding: 12px 40px;
    background: #fff;
    color: var(--c8);
    border-radius: 50px;
    font-weight: 500;
    transition: all .5s;
}

.header-btn a:hover {
    background: #21444B;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 15px rgba(33, 68, 75, .35),
        0 0 35px rgba(33, 68, 75, .25),
        0 15px 30px rgba(0, 0, 0, .15);
}

.hero-section {
    margin-top: 25px;
}

.hero-box {
    background: linear-gradient(180deg, #FF5300, #ff956d);
    border-radius: 40px;
    overflow: hidden;
    padding: 210px 40px 90px 40px;
    height: 830px;
    z-index: 999;
    position: relative;
}

.hero-content h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    color: #fff;
    margin: 45px auto 0;
    font-size: 22px;
    width: 870px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 90px;
}

.btn1 {
    background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn2 {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
}

.joined span {
    display: inline-block;
    background: var(--c8);
    color: var(--c2);
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 18px;
    margin-top: 85px;
}

.mobile-left {
    position: absolute;
    bottom: -795px;
    left: -35px;
    max-width: 530px;
    z-index: 1;
    transition: bottom 1.2s ease;
}

@media (max-width: 991px) {
    .mobile-left {
        transition: none;
    }
}

.mobile-right {
    position: absolute;
    bottom: -825px;
    /* Initial position */
    right: -101px;
    max-width: 617px;
    z-index: -1;
    transition: bottom 1.2s ease;
}

@media (max-width: 991px) {
    .mobile-right {
        bottom: -325px;
        transition: none;
    }
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: floating 8s ease-in-out infinite;
    will-change: transform;
    transition: all .8s;
    box-shadow: 0px 0px 80px 0px #fff;
    z-index: -1;
}

@keyframes floating {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-12px) translateX(8px);
    }

    50% {
        transform: translateY(0) translateX(15px);
    }

    75% {
        transform: translateY(12px) translateX(8px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.c1 {
    width: 76px;
    height: 76px;
    background: var(--c3);
    left: 110px;
    top: 210px;
}

.c2 {
    width: 76px;
    height: 76px;
    background: var(--c9);
    right: 200px;
    top: 180px;
}

.c3 {
    width: 76px;
    height: 76px;
    background: var(--c5);
    left: 320px;
    bottom: 295px;
}

.c4 {
    width: 76px;
    height: 76px;
    background: var(--c8);
    right: 330px;
    bottom: 280px;
}

.c5 {
    width: 76px;
    height: 76px;
    background: var(--c4);
    left: 310px;
    top: 157px;
}

.c6 {
    width: 76px;
    height: 76px;
    background: var(--c6);
    right: 490px;
    bottom: 50px;
}

.hero-section .container {
    max-width: 1550px;
}

header.main-header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    padding: 35px 50px;
}

.web-btn a {
    background: var(--c2);
    padding: 15px 50px;
    border-radius: 40px;
    color: var(--c1);
    overflow: hidden;
    font-weight: 500;
    border: 1px solid var(--c2);
    transition: all .5s ease-in-out;
    font-size: 18px;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.web-btn a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--c8);
    transition: all .5s ease-in-out;
    z-index: -1;
}

.web-btn a:hover::before {
    width: 500px;
    height: 500px;
}

.web-btn a:nth-child(2) {
    background: transparent;
    border: 1px solid var(--c2);
    color: var(--c2);
}

/* transaction-section */
.web-title h2 {
    font-size: 60px;
    color: var(--c8);
    font-weight: 700;
}

.transaction-content p {
    font-size: 19px;
    max-width: 450px;
    margin: 0 0 0 auto;
    color: var(--c10);
}

.transaction-card-icon {
    width: 30px;
    padding-bottom: 15px;
}

.transaction-card {
    background: var(--c3);
    padding: 45px;
    border-radius: 10px;
    transition: transform .5s ease, box-shadow .5s ease;
}


.transaction-card-content h6 {
    font-size: 24px;
    padding-bottom: 9px;
}

.transaction-card-content p {
    color: var(--c10);
    margin-bottom: 0;
}

.top-spacing {
    margin-bottom: 50px;
}

.about-img img {
    border-radius: 40px;
}

.about-img {
    width: 95%;
}

.steps-area-main {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 35px;
    position: relative;
    padding-bottom: 45px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 66px;
    height: 66px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--c8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-item:not(:last-child) .step-number::after {
    content: "";
    position: absolute;
    width: 3px;
    background: #21444B;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    height: 92px;
}

.step-content h6 {
    color: var(--c8);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    margin: 0;
    color: var(--c10);
    font-size: 16px !important;
    line-height: 1.7;
}

.step-content {
    width: 370px;
}

.about-content p {
    font-size: 18px;
}
.about-us-content {
    padding-right: 40px;
}
.mobile-slider-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* mobile-section */
.mobile-image-main {
    position: relative;
}

.mobile-image {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(60px, 60px);
    box-shadow: 0px 0px 14px #0000008a;
    border-radius: 20px;
    width: 65%;
}

.mobile-background {
    width: 100%;
}

.mobile-image img {
    border-radius: 20px;
}

/* testimonial-section */
.testimonial-content p {
    font-size: 20px;
    padding-top: 10px;
}

.testimonial-card-img {
    width: 64px;
    height: 64px;
}

.testimonial-card-img img {
    border-radius: 60px;
}

.testimonials-top-main {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--c3);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-card-content h6 {
    font-size: 19px;
    font-weight: 700;
}

.testimonial-card-content span {
    font-size: 16px;
    color: var(--c10);
}

.testimonial-card p {
    color: var(--c10);
    margin-bottom: 0;
}

.card-main {
    background: var(--c8);
    padding: 80px 60px 60px;
    border-radius: 30px;
}

.card-content.web-title h2 {
    color: var(--c2);
    font-weight: 600;
    font-size: 75px;
    margin-bottom: 30px;
}

.card-right-content-img img {
    border-radius: 20px;
}

.card-content.web-title p {
    color: var(--c2);
    font-size: 22px;
    font-weight: 300;
}

.card-right-content-img {
    margin-bottom: 40px;
}

.about-ul ul li {
    list-style: disc;
    color: var(--c2);
    font-weight: 300;
    font-size: 21px;
}

.about-ul ul {
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 15px;
}

.about-ul ul li {
    padding-bottom: 10px;
    width: 23%;
}

/*faqs-section  */
.faqs-content.web-title p {
    font-size: 20px;
    color: var(--c10);
}

.faqs-content.web-title h2 {
    padding-bottom: 20px;
}

.custom-accordion .accordion-item {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    padding: 30px 30px;
    font-size: 18px;
    font-weight: 400;
    color: #21444B;
    box-shadow: none;
    border-radius: 28px;
    background: transparent;
}

.custom-accordion .accordion-button::after {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    background-position: center;
    background-size: 14px;
    margin-right: 15px;
    display: flex;
    margin-left: 0;
    order: -1;
    flex-shrink: 0;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    align-items: center;
    justify-content: center;
    color: #ff6308;
    font-size: 14px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 0 30px 25px 61px;
    color: #555;
    font-size: 16px;
}

/* Colors */

.orange {
    background: #ff6308;
}

.orange .accordion-button {
    color: #fff;
}

.pink {
    background: var(--c4);
}

.purple {
    background: var(--c9);
}

.blue {
    background: var(--c5);
}

/* Hover */

.custom-accordion .accordion-item {
    transition: .35s;
}

.accordion-item.orange .accordion-body {
    color: var(--c2) !important;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.faqs-btn a {
    color: var(--c1);
    text-decoration: underline !important;
    margin-top: 30px;
}

/* contact-section */
.contact-form-main {
    background: #F0F0F0;
    padding: 45px;
    border-radius: 35px;
}

.contact-form-main h2 {
    font-size: 40px;
    color: var(--c8);
    font-weight: 700;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--c8);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group label span {
    font-weight: 400;
    color: #777;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 60px;
    border: 2px solid #cfcfcf;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: .3s;
    background: transparent;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--c2);
    box-shadow: 0 0 0 4px rgba(255, 98, 0, .12);
}

.contact-btn {
    width: 100%;
    height: 65px;
    border: none;
    border-radius: 50px;
    background: #FF5300;
    color: #fff;
    font-size: 16px;
    transition: .4s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 98, 0, .25);
    background-color: #fff;
    color: #FF5300;
}

.contact-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.contact-img {
    height: 100%;
}

/*footer  */
.footer-inner {
    background: var(--c8);
    padding: 50px 0;
    border-radius: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.socials-icon ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.socials-icon ul li a {
    width: 40px;
    height: 40px;
    background: var(--c2);
    border-radius: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--c8);
}

.footer-bottom {
    border-top: 1px solid var(--c2);
    color: var(--c2);
    margin-top: 30px;
    padding-top: 20px;
}

.web-btn a:hover {
    color: var(--c2) !important;
    border-color: transparent;
}

.about-content.web-title>p {
    margin-top: 15px;
}

.custom-accordion {
    position: relative;

    /* Fixed Height */
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-accordion-header h5 {
    margin: 0;
    font-size: 22px;
}

.custom-accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
}

.custom-accordion-body {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s ease;
}

.custom-accordion.active .custom-accordion-body {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-slider {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1a474d;
    opacity: 1;
    transition: .5s;
}

.swiper-pagination-bullet-active {
    background: var(--c8);
    width: 35px;
    border-radius: 20px;
}

.mobile-slider {
    overflow-y: visible !important;
    padding: 40px 0 60px;
}

.mobile-slider .swiper-wrapper {
    align-items: center;
}

.mobile-slider .swiper-slide {
    height: auto !important;
    overflow: visible !important;
    display: flex;
    justify-content: center;
}

.mobile-image-main {
    overflow: visible;
}

.mobile-background img,
.mobile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content h3 {
    font-size: 16px;
    color: var(--c8);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1;
    background-color: var(--c2);
    box-shadow: 0px 0px 5px 0px #fff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 30px;
    border-radius: 50px;
}

.about-us-content.web-title h2 {
    margin-bottom: 30px;
}

.about-us-img {
    overflow: hidden;
    border-radius: 50px;
}

.about-us-img img {
    border-radius: 50px;
    transition: all .5s ease;
}

.about-us-img:hover img {
    transform: scale(1.1);
}

.about-ul p {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 18px;
    color: var(--c2);
}

.transaction-card-icon i {
    color: #ff5300;
    font-size: 27px;
}

.swiper-pagination {
    position: unset !important;
    margin-top: 30px;
}

.card-content.web-title.community-title h2 {
    font-size: 50px;
}

.card-content.web-title.community-title p {
    font-size: 20px;
}

.about-ul.community-ul ul li {
    width: 100%;
    font-size: 20px;
}


section.safety-section .transaction-card {
    height: 100%;
}

.small-title {
    background: var(--c5);
    color: var(--c8);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.individual-section {
    overflow: hidden;
}

.individual-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.individual-box {
    background: var(--c3);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: all .4s ease;
    border: 2px solid transparent;
}

.individual-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 24px rgb(255 83 0 / 12%);
}

.individual-box i {
    font-size: 38px;
    color: #FF5300;
    margin-bottom: 20px;
}

.individual-box h6 {
    color: var(--c8);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.individual-section .web-title p {
    color: var(--c10);
    font-size: 18px;
    line-height: 1.8;
}


.web-title.individual-content h2 {
    margin-bottom: 20px;
    font-size: 55px;
}

.web-title.individual-content {
    padding-right: 40px;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.business-box {
    background: var(--c3);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all .4s ease;
    border: 2px solid transparent;
}

.business-box:hover {
    transform: translateY(-10px);
    border-color: var(--c8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.business-box i {
    font-size: 40px;
    color: #FF5300;
    margin-bottom: 20px;
}

.business-box h6 {
    color: var(--c8);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}


.web-btn.invert-btn a {
    background-color: var(--c8);
    color: var(--c2);
    border-color: var(--c8);
}

.web-btn.invert-btn a:before {
    background-color: #FF5300;
}

.business-content.individual-content {
    padding-right: 0px;
    padding-left: 40px;

}

.vision-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    transition: all .4s ease;
}

.vision-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .12);
}

.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--c2);
    color: var(--c8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.vision-box h4 {
    color: var(--c2);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.vision-box p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-box p:last-child {
    margin-bottom: 0;
}


section.vision-mission-section .web-title h2 {
    color: var(--c2);
}


.join-community-card {
    background: var(--c8);
    border-radius: 40px;
    padding: 90px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-badge {
    display: inline-block;
    background: var(--c2);
    color: var(--c8);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-community-card h2 {
    color: var(--c2);
    font-size: 58px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.join-community-card p {
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 25px;
}

.community-tagline {
    color: var(--c2);
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
}

.join-community-btn a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--c2);
    color: var(--c8);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all .4s ease;
}

.join-community-btn a:hover {
    background: var(--c1);
    color: var(--c2);
    transform: translateY(-5px);
}
