@font-face {
    font-family: "satoshi-font";
    src: url(../font/Satoshi-Variable.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --inter-font: "Inter", sans-serif;
    --fraunces-font: "Fraunces", serif;
    --satoshi-font: "satoshi-font", sans-serif;
    --green: #1e7f00;
    --lite-purple: #b57edc;
    --pink: #ff88ff;
    --lite-red: #ff5454;
    --red: #ff3939;
    --para-color: #322977;
    --text-color: #191250;
    --gradient: linear-gradient(180deg, #b57edc 0%, #ff5454 100%);
}



::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.9rem;
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 12px;
    border: 3px solid var(--white);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body,
html {
    overflow-x: hidden;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

/* Header Start  */
.header {
    border-bottom: 1px solid gainsboro;
    padding: 10px 0;
}

.header-wrapper {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    position: relative;
    color: var(--text-color);
    font-family: var(--satoshi-font);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 3px;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--primary-color, #000);

    transform: scaleX(0);
    transform-origin: left;
    /* expand from left */

    transition: transform 0.3s ease;
}

/*.nav-links li a.active::after {*/
/*  transform: scaleX(1);*/
/*}*/

/* Hover: show underline */
.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    /* still open from left */
}

/* When mouse leaves — close from right */
.nav-links li a:not(:hover)::after {
    transform-origin: right;
}

.header-logo {
    width: 150px;
    position: relative;
    left: -85px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.primary-btn {
    color: #191250;
    font-weight: 700;
    font-family: var(--satoshi-font);
    font-size: 16px;
    padding: 13px 26px;
    border-radius: 5px;
    border: none;
    background: transparent;
}

.secondary-btn {
    color: var(--white);
    font-weight: 700;
    font-family: var(--satoshi-font);
    font-size: 16px;
    padding: 13px 26px;
    border-radius: 5px;
    transition: 0.5s;
    border: none;
    background: var(--lite-purple);
}

.secondary-btn:hover {
    color: var(--lite-purple);
    transition: 0.5s;
    background: var(--lite-red);
}

/* hero-banner start */
.hero-banner {
    padding: 230px 0;
    background-image: url("../images/hero-banner-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner .container {
    position: relative;
    z-index: 99;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(89deg, #ffffff99 61%, transparent 95%);
}

.banner-hd {
    font-size: 30px;
    text-transform: capitalize;
    color: var(--green);
    font-family: var(--fraunces-font);
    font-weight: 700;
    margin-bottom: 12px;
}

.banner-para {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--inter-font);
}

.gender-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

form .banner-para {
    margin-bottom: 8px;
    font-weight: 700;
}

.gender-btn-wrapper .gender-btn {
    text-align: center;
    background: #916eff1a;
    border-radius: 30px;
    border: 2px solid #f5e9ff;
    margin-bottom: 0;
    color: var(--black);
    padding: 10px;
    width: 100%;
    transition: 0.3s;
    font-size: 16px;
    font-weight: light;
    font-family: var(--inter-font);
}

.gender-btn-wrapper label {
    cursor: pointer;
}

.gender-btn-wrapper input:checked+label {
    background: var(--lite-purple);
    border: 2px solid transparent;
    color: var(--white);
    transition: 0.3s;
}

.age-gap-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.age-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.age-wrapper label {
    font-size: 14px;
    color: var(--black);
    font-family: var(--inter-font);
    margin-bottom: 6px;
    font-weight: 400;
}

.age-wrapper input {
    width: 100%;
    padding: 10px 17px;
    border-radius: 3px;
    background: rgba(25, 18, 80, 0.05);
    border: none;
    font-family: var(--inter-font);
    font-weight: 500;
}

.age-wrapper ::placeholder {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--inter-font);
}

.hero-banner-img-wrapper,
.hero-banner-img-wrapper img {
    position: relative;
}

.hero-banner-img-wrapper::after {
    background: url(../images/banner-after.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    bottom: 35%;
    animation: scale-in 2.5s infinite;
    right: 0;
}

.hero-banner-img-wrapper::before {
    background: url(../images/banner-before.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    top: 6%;
    left: 0;
    animation: scale-in 2.5s infinite;
}

.hero-banner-img-wrapper .hero-banner-wrapper::before {
    background: url(../images/herobanner-img-before.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 440px;
    width: 440px;
    top: 12%;
    right: 0;
    animation: moving-ball 2.9s infinite;
    transition: 1s;
}

.hero-banner-img-wrapper .hero-banner-wrapper::after {
    background: url(../images/herobanner-img-after.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 210px;
    width: 210px;
    top: 45%;
    z-index: -1;
    animation: moving-ball2 3.5s infinite;
    left: 0;
}

@keyframes scale-in {
    0% {
        scale: 0.9;
    }

    50% {
        scale: 1.5;
    }

    100% {
        scale: 0.9;
    }
}

@keyframes moving-ball {
    0% {
        transform: translateX(180px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(180px);
    }
}

@keyframes moving-ball2 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
    }

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

.hero-banner .secondary-btn {
    width: 100%;
    margin-top: 25px;
    background: #916eff;
    color: var(--white);
}

.hero-banner .secondary-btn:hover {
    color: var(--white);
    background: #191250;
}

.range-slider {
    position: relative;
    height: 40px;
    margin: 20px 0;
}

.right i:nth-child(1),
.left i:nth-child(1) {
    transform: rotate(180deg);
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    /* slider invisible but value moves */
    -webkit-appearance: none;
    background: transparent;
}

/* Track */
.slider-track {
    position: absolute;
    height: 8px;
    width: 100%;
    background: #d8a5f7;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

/* Remove default thumb */
.range-slider input::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    background: transparent;
}

/* Custom Handles */
.handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #c47af3;
    padding: 6px;
    border-radius: 20px;
    display: flex;
    gap: 3px;
    color: white;
    font-size: 10px;
    /* SMALL ARROWS LIKE IMAGE */
    cursor: pointer;
    z-index: 10;
}

.handle i {
    font-size: 7px;
}

/* Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.dropdown-selected {
    padding: 10px;
    background: #eee;
    border-radius: 6px;
    cursor: pointer;
}

.dropdown-list {
    position: absolute;
    top: 110%;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 10;
    padding: 0;
    list-style: none;
}

.dropdown-list li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background: #cfa5ff;
    color: white;
}

/* martimonial-platform section start*/

.martimonial-platform {
    background: var(--lite-red);
}

.martimonial-card {
    text-align: center;
    padding: 25px 10px;
}

.martimonial-card img {
    margin-bottom: 24px;
}

.martimonial-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 22px;
}

.martimonial-card p {
    color: var(--white);
    font-size: 16px;
    font-family: var(--inter-font);
    margin-bottom: 0;
    font-weight: 400;
}

.card-color {
    background: var(--red);
}

/* introduction-sec start */

.introduction-sec {
    padding: 40px 0;
}

.introduction-sec h2 {
    color: var(--green);
    font-weight: 700;
    font-size: 52px;
    margin-bottom: 20px;
    font-family: var(--fraunces-font);
}

.introduction-sec .quran-verse {
    color: var(--para-color);
    font-style: italic;
    font-family: var(--inter-font);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.introduction-sec p {
    font-weight: 400;
    font-family: var(--inter-font);
    font-size: 16px;
    color: var(--para-color);
    margin-bottom: 36px;
}

.introduction-sec .secondary-btn {
    display: block;
    display: flex;
    width: fit-content;
}

.introduction-sec .fst-italic a {
    text-decoration: none;
    transition: 0.5s;
    color: var(--lite-purple);
}

.introduction-sec .fst-italic a:hover {
    transition: 0.5s;
    color: var(--lite-red);
}

.img-postion1 {
    position: relative;
    left: -35px;
    z-index: -1;
    width: 330px !important;
}

.img-postion2 {
    position: relative;
    top: 50px;
    left: -25px;
    z-index: -1;
    width: 330px !important;
}

.img-postion3 {
    width: 280px !important;
}


.showcase-wrapper {
    display: flex;
    width: 100%;
    cursor: grab;
}

.showcase img {
    object-fit: cover;
    width: 100%;
    height: 600px;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
}

.next {
    right: 10px;
    border-radius: 8px;
    background: var(--lite-purple);
    color: var(--white);
    border: none;
    transition: 0.5s;
    padding: 12px 12px;
}

.next i {
    font-size: 16px;
}

.next:hover,
.prev:hover {
    background: var(--lite-red);
    color: var(--lite-purple);
    transition: 0.5s;
}

.prev i {
    font-size: 22px;
}

.next i {
    font-size: 22px;
}

.prev {
    left: 10px;
    border-radius: 8px;
    background: var(--lite-purple);
    color: var(--white);
    border: none;
    transition: 0.5s;
    padding: 12px 12px;
}

/* .showcase-wrapper .slick-slide.slick-current.slick-active img {
    animation: fade-in infinite 12s;
    position: relative;
} */

.showcase-hd {
    position: absolute;
    z-index: 1;
    font-size: 52px;
    color: red;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    text-shadow: 0px 0px 10px #ffffff;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fraunces-font);
}

@keyframes fade-in {
    form {
        overflow: hidden;
        scale: 1;
    }

    to {
        overflow: hidden;
        scale: 1.1;
    }
}

/* five-delibrate-step-sec start */

.five-delibrate-step-sec {
    padding: 90px 0;
}

.five-delibrate-step-sec h2 {
    text-transform: capitalize;
    color: var(--green);
    font-size: 52px;
    font-weight: 700;
    font-family: var(--fraunces-font);
    text-align: center;
    margin-bottom: 30px;
}

.delibrate-card-wrapper {
    padding: 90px 34px;
    background: var(--lite-purple);
    transition: 0.5s;
    border-radius: 15px;
    cursor: pointer;
    height: 100%;
}

.delibrate-card-wrapper:hover {
    background: var(--lite-red);
    transition: 0.5s;
}

.delibrate-card-wrapper h4 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--fraunces-font);
    color: var(--black);
}

.delibrate-card-wrapper p {
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0;
}

/* membership-sec start */

.membership-sec {
    padding: 70px 0;
    background: var(--gradient);
}

.membership-hd-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.membership-hd-wrapper h2 {
    color: var(--white);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 52px;
    margin-bottom: 20px;
}

.membership-hd-wrapper P {
    color: var(--white);
    font-weight: 400;
    font-family: var(--inter-font);
    font-size: 16px;
    margin-bottom: 0;
}

.membership-hd-wrapper .secondary-btn {
    background: var(--lite-red);
}

.membership-hd-wrapper .secondary-btn:hover {
    background: var(--white);
    color: var(--black);
}

.membership-list p {
    padding: 20px 0;
    font-size: 18px;
    color: var(--white);
    font-family: var(--fraunces-font);
    font-weight: 700;
    border-bottom: 1px solid #f5e9ff1a;
}

/* trusted-resources section start */
.trusted-resources {
    background: #f5e9ff;
    padding: 70px 0;
}

.trusted-resources h2 {
    color: var(--green);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 52px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: capitalize;
}

.resources-img-wrapper {
    overflow: auto;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.trusted-wrapper img {
    transition: 0.5s;
    border-radius: 10px;
    object-fit: cover;
}

.trusted-wrapper img:hover {
    scale: 1.1;
    transition: 0.5s;
}

.trusted-resources h3 {
    margin-bottom: 12px;
    font-family: var(--fraunces-font);
    font-weight: 700;
    font-size: 22px;
    color: var(--black);
    text-align: center;
}

.trusted-resources p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--inter-font);
    margin-bottom: 0;
    text-align: center;
}

/* testimonials-sec start */

.testimonials-sec {
    padding: 80px 0;
}

.testimonial-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #1912501a;
    border-radius: 30px;
    cursor: grab;
}

.testimonials-sec .flex-wrapper {
    flex-shrink: 0;
}

.testimonial-card-wrapper img {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 400px;
    object-fit: cover;
    width: 400px;
}

.testimonial-hd-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial-hd-wrapper h2 {
    font-size: 32px;
    font-family: var(--fraunces-font);
    font-weight: 700;
    color: var(--green);
}

.testiomnial-card-content {
    padding: 35px 75px 20px;
}

.testiomnial-card-content h5 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--fraunces-font);
    color: var(--black);
    margin-bottom: 44px;
}

.testiomnial-card-content p {
    font-size: 25px;
    font-style: italic;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 60px;
    font-family: var(--inter-font);
}

.testiomnial-card-content span {
    font-size: 52px;
    color: var(--lite-purple);
    font-weight: 400;
    font-family: var(--inter-font);
    margin-bottom: 0px;
}

.testimonials-sec .slick-arrow {
    position: absolute;
    z-index: 1;
    right: 10%;
    top: 75%;
}

.card-next {
    right: 5% !important;
    border-radius: 8px;
    background: var(--white);
    color: var(--lite-purple);
    border: 1px solid var(--lite-purple);
    transition: 0.5s;
    padding: 12px 12px;
}

.card-next i {
    font-size: 20px;
}

.card-prev i {
    font-size: 22px;
}

.card-next:hover,
.card-prev:hover {
    background: var(--lite-purple);
    color: var(--white);
    transition: 0.5s;
}

.card-prev {
    border-radius: 8px;
    background: var(--white);
    color: var(--lite-purple);
    border: 1px solid var(--lite-purple);
    transition: 0.5s;
    padding: 12px 12px;
}

/* worthy-match-sec start */

.worthy-match-sec {
    padding: 90px 0;
    background: url(../images/worthy-match-banner-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.worthy-match-sec h2 {
    font-size: 32px;
    color: var(--green);
    font-family: var(--fraunces-font);
    font-weight: 700;
    margin-bottom: 25px;
}

.worthy-match-sec p {
    font-weight: 400;
    font-family: var(--inter-font);
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.worthy-match-sec span {
    font-style: italic;
}

.worthy-match-sec img {
    border-radius: 10px;
    object-fit: cover;
}

.worthy-match-sec .img-1 {
    height: 350px;
}

.worthy-match-sec .img-2 {
    height: 420px;
}

/* event page start */
.breadcrums-sec {
    padding: 76px 0 0;
}

.breadcrums-sec h2 {
    font-size: 60px;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fraunces-font);
    margin-bottom: 14px;
}

.breadcrumb-item a {
    font-size: 14px;
    color: var(--lite-purple);
    margin-bottom: 0;
    font-weight: 400;
    transition: 0.5s;
    font-family: var(--inter-font);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #f5e9ff;
    transition: 0.5s;
}

.event-banner {
    padding: 80px 0;
    text-align: center;
}

.event-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--fraunces-font);
    margin-bottom: 10px;
}

.event-banner h3 {
    font-size: 30px;
    font-family: var(--fraunces-font);
    color: var(--black);
    font-weight: 700;
    margin-bottom: 36px;
}

.event-banner p {
    color: var(--black);
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--inter-font);
}

.community-guidance {
    padding: 40px 0 60px;
}

.community-guidance h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--fraunces-font);
    margin-bottom: 30px;
    text-align: center;
}

.community-guidance h5 {
    font-size: 16px;
    font-family: var(--inter-font);
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.community-guidance p {
    font-size: 16px;
    font-family: var(--inter-font);
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 0;
}

.community-guidance p span {
    font-style: italic;
}

/* how-it-works-sec starts */

.how-it-works-sec h1,
.how-it-works-sec3 h1 {
    margin-bottom: 36px;
}

.how-it-works-sec3 .italic-para {
    margin-bottom: 36px;
    font-style: italic;
}

.how-it-works-sec {
    padding-bottom: 0;
}

.how-it-works-sec .marraige-para {
    margin-bottom: 35px;
}

.how-it-works-sec .delibrate-card-wrapper {
    text-align: start;
    padding: 50px 36px;
}

.how-it-works-sec .delibrate-card-wrapper .italic-para {
    font-style: italic;
    margin-bottom: 20px;
}

.delibrate-card-wrapper .phase {
    width: 100%;
    border-radius: 100%;
    background: linear-gradient(254deg,
            rgba(79, 65, 225, 0.2) 0%,
            rgba(167, 127, 198, 0.2) 100%);
    padding: 16px 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.how-it-works-sec .delibrate-card-wrapper .phase p {
    font-weight: 700;
    color: var(--black);
}

/* eligibility page start */
.members-eligibility {
    padding: 50px 0;
}

.members-eligibility h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--fraunces-font);
    margin-bottom: 20px;
}

.members-eligibility p {
    color: var(--para-color);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--inter-font);
}

.members-eligibility h3 {
    font-size: 30px;
    font-family: var(--fraunces-font);
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0px;
}

.eligibility-steps {
    padding: 0;
}

.eligibility-steps .delibrate-card-wrapper ul {
    margin-top: 30px;
    padding-left: 40px;
}

.eligibility-steps .delibrate-card-wrapper ul li {
    list-style-type: disc;
}

.family-integration h3 {
    margin-bottom: 30px;
}

.family-integration ul,
.help-building ul {
    padding-left: 40px;
}

.family-integration ul li,
.help-building ul li {
    list-style-type: disc;
}

.family-integration ul li p {
    margin-bottom: 0;
}

.certain {
    margin-bottom: 0 !important;
}

/* contribution page start */

.help-building {
    padding: 80px 0 0;
}

.help-building h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--fraunces-font);
    margin-bottom: 10px;
}

.help-building h3 {
    font-size: 30px;
    font-family: var(--fraunces-font);
    color: var(--black);
    font-weight: 700;
    margin-bottom: 36px;
}

.help-building p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--inter-font);
}

.help-building p a {
    transition: 0.5s;
    color: var(--lite-purple);
}

.help-building p a:hover {
    transition: 0.5s;
    color: var(--lite-red);
}

/* testimonials page start */

.testimonials-sec h2 {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--green);
    font-family: var(--fraunces-font);
}

.testimonials-sec p {
    font-size: 25px;
    margin-bottom: 0;
}

.testimonials-sec .flex-wrapper img {
    height: 490px;
}

/* contact page start */

.contact-us {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5e9ff 100%);
}

.contact-us form {
    border-radius: 20px;
    box-shadow: 0px 15px 30px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.contact-us form .card-top {
    background: url(../images/contact-top-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.contact-us form .card-bottom {
    padding: 40px 36px;
}

.contact-us form .card-bottom h3 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fraunces-font);
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper i {
    position: relative;
    top: 38px;
    left: 15px;
    font-size: 20px;
    color: var(--text-color);
}

.form-input-wrapper input,
.form-input-wrapper textarea,
.form-input-wrapper select {
    width: 100%;
    padding: 12px 16px 12px 56px;
    resize: none;
    border: none;
    border-radius: 3px;
    font-family: var(--para-color);
    font-weight: 400;
    outline: none;
    background: #1912500d;
}

.form-input-wrapper select,
.form-input-wrapper select option {
    font-family: var(--inter-font);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 600;
}

.form-input-wrapper textarea {
    height: 160px;
    margin-bottom: 20px;
}

.card-bottom {
    width: 100%;
}

.card-bottom .secondary-btn {
    width: 100%;
    display: block;
    text-align: center;
}

.contact-content-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--fraunces-font);
    margin-bottom: 30px;
}

.contact-content-wrapper h4 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--fraunces-font);
    color: var(--black);
    margin-bottom: 20px;
}

.contact-content-wrapper h5 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 15px;
    font-family: var(--inter-font);
}

.contact-content-wrapper h5 a {
    transition: 0.5s;
    color: var(--lite-purple);
}

.contact-content-wrapper h5 a:hover {
    color: var(--lite-red);
    transition: 0.5s;
}

.contact-content-wrapper p {
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--inter-font);
}

.contact-content-wrapper p:hover {
    color: var(--lite-purple);
    transition: 0.5s;
}

.contact-content-wrapper .social-links {
    gap: 20px;
    padding: 0 !important;
}

.contact-us .contact-content-wrapper ul.social-links li {
    list-style-type: none !important;
}

.contact-content-wrapper .social-links li a {
    color: var(--text-color);
    background: var(--white);
    font-size: 16px;
}

.contact-content-wrapper .social-links li a:hover {
    color: var(--white);
    background: var(--para-color);
}

/* faq page start */
.faq-sec {
    padding: 70px 0 40px 0;
}

.faq-sec h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--fraunces-font);
    margin-bottom: 60px;
    text-align: center;
}

.faq-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faff;
    padding: 30px;
    border-radius: 20px;
    transition: 0.5s;
    border: 1px solid #1912501a;
    cursor: pointer;
}

.faq-wrapper h3 {
    margin-bottom: 0px;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 22px;
}

.arrow-rotate {
    padding: 16px 18px;
    background: var(--white);
    border-radius: 100%;
    box-shadow: 0px 15px 30px -12px rgba(0, 0, 0, 0.12);
}

.arrow-rotate i {
    font-size: 20px;
    transform: rotate(50deg);
    transition: 0.5s;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.35s ease;
}

.faq-item.active .faq-body {
    max-height: 300px;
    height: auto;
    opacity: 1;
    padding: 40px 30px;
    background: #916eff;
    color: var(--white);
    font-family: var(--inter-font);
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s;
    transform: translateY(0);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.faq-item.active .faq-wrapper {
    background: #916eff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 0;
}

.faq-item.active h3 {
    color: var(--white);
    transition: 0.5s;
}

.arrow-rotate i {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow-rotate i {
    transition: 0.5s;
    transform: rotate(-40deg);
}

/* terms and condition page start */

.terms-condition-sec {
    padding: 80px 0;
}

.terms-condition-sec h5 {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 700;
}

.terms-condition-sec .italic-para {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
    font-style: italic;
}

.terms-condition-sec p {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
}

.terms-condition-sec ul {
    padding-left: 30px;
    margin: 0;
}

.terms-condition-sec ul li {
    color: var(--para-color);
    list-style-type: disc;
}

.terms-condition-sec p a {
    margin-bottom: 0;
    transition: 0.5s;
    color: var(--lite-purple);
}

.terms-condition-sec p a:hover {
    transition: 0.5s;
    color: var(--lite-red);
}

/* privacy policy page starts */
.privacy-policy-sec {
    padding: 80px 0;
}

.privacy-policy-sec h5 {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 700;
}

.privacy-policy-sec .italic-para {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
    font-style: italic;
}

.privacy-policy-sec p {
    margin-bottom: 20px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
}

.privacy-policy-sec ul {
    padding-left: 30px;
    margin: 0;
}

.privacy-policy-sec ul li {
    list-style-type: disc;
    color: var(--para-color);
}

/* register page starts */

.register-sec {
    padding: 80px 0;
}

.register-sec h3 {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 28px;
}

.register-sec p {
    margin-bottom: 16px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--inter-font);
    font-size: 16px;
}

.register-sec label {
    font-weight: 600;
    width: 100%;
    color: var(--black);
    font-size: 16px;
    text-align: start;
    font-family: var(--satoshi-font);
    margin-bottom: 8px;
}

.register-sec input[type="text"] {
    padding: 12px 17px;
    background: rgba(25, 18, 80, 0.05);
    border: 1px solid rgba(25, 18, 80, 0.05);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 16px;
}

.register-sec input[type="radio"] {
    height: 30px;
    width: 30px;
}

.register-sec .radio-flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    margin-bottom: 16px;
}

.register-sec .radio {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: unset;
}

.radio label {
    margin-bottom: 0;
    font-weight: 400;
    font-family: var(--satoshi-font);
    color: var(--black);
}

.register-sec .secondary-btn {
    width: 100%;
    margin-bottom: 16px;
}

.register-sec p a {
    margin-bottom: 0;
    color: var(--lite-purple);
    font-family: var(--inter-font);
    font-weight: 600;
}

.news-letter-sec {
    padding: 80px 0;
    background: #f8faff;
    text-align: center;
}

.news-letter-sec h2 {
    font-family: var(--fraunces-font);
    font-weight: 700;
    font-size: 52px;
    margin-bottom: 35px;
    color: var(--black);
}

.news-letter-sec p {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--inter-font);
}

.news-letter-sec input {
    width: 100%;
    padding: 18px 23px;
    box-shadow: 0px 18px 30px -14px rgba(25.00000000000007, 17.999999999999996, 80, 0.15);
    border-radius: 5px;
    border: 2px solid #1912501a;
}

.news-letter-sec .secondary-btn {
    position: relative;
    top: -57px;
    right: -200px;
    background: var(--pink);
    color: var(--black);
}

.register-image-wrapper,
.register-image-wrapper2 {
    position: relative;
}

.register-image-wrapper::after {
    background: url(../images/register-after-img.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    top: 65%;
    right: 50%;
    animation: scale-in 2.5s infinite;
}

.register-image-wrapper2::before {
    background: url(../images/register-before-img.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    top: 65%;
    right: 50%;
    animation: scale-in 2.5s infinite;
}

/* login page starts */

.login-sec label {
    display: none;
}

.login-sec input {
    width: 100%;
    padding: 18px 23px !important;
    border-radius: 5px;
    border: 2px solid #1912501a !important;
    margin-bottom: 16px;
    background: rgba(25, 18, 80, 0.05);
}

.radio {
    width: 100%;
}

.radio input {
    width: 25px;
    margin-bottom: 0;
    height: 25px;
}

.login-sec .radio label {
    display: block;
}

.login-sec .radio-flex {
    justify-content: space-between;
}

.login-sec .radio-flex a {
    color: var(--black);
    font-family: var(--satoshi-font);
    font-weight: 500;
    padding-bottom: 5px;
    font-size: 14px;
    border-bottom: 1px solid var(--black);
}

/* footer section start */

.footer {
    padding: 30px 0 20px;
}

.footer img {
    height: 150px;
    margin-bottom: 40px;
}

.footer .secondary-btn {
    width: 230px;
}

.footer h3 {
    font-size: 18px;
    font-family: var(--inter-font);
    font-weight: 600;
    color: var(--green);
    margin-bottom: 21px;
}

.footer ul {
    padding: 0;
    margin: 0;
}

.footer ul li {
    padding-bottom: 10px;
}

.footer ul li a:hover {
    color: var(--lite-purple);
    transition: 0.5s;
}

.footer ul li a {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter-font);
    color: var(--black);
    margin-bottom: 0;
}

.contact-footer-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}

.contact-footer-wrapper:nth-child(2) {
    margin-bottom: 20px;
}

.contact-footer-wrapper a {
    color: var(--black);
    font-weight: 600;
}

.contact-footer-wrapper i {
    font-size: 15px;
}

/* bottom bar sec start */

.bottom-bar {
    padding: 25px 0;
    background: var(--lite-purple);
}

.social-links {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.social-links a {
    display: block;
    padding: 8px 10px;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 0;
    background: #f5e9ff;
    transition: 0.5s;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-color);
}

.social-links a:hover {
    background: var(--lite-red);
    color: var(--white);
    transition: 0.5s;
}

.bottom-bar-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-wrapper {
    display: flex;
    justify-content: start;
    gap: 25px;
    align-items: center;
}

.language-wrapper p {
    color: var(--white);
    font-size: 14px;
    font-family: var(--inter-font);
    font-weight: 400;
    margin-bottom: 0;
}

.language-wrapper p span {
    font-weight: 600;
}

.globe-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.footer ul li a,
.footer .contact-footer-wrapper a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 3px;
}

/* Underline hidden by default */
.footer ul li a::after,
.footer .contact-footer-wrapper a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--primary-color, #000);
    /* apna color rakh sakte hain */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover par open left → right */
.footer ul li a:hover::after,
.footer .contact-footer-wrapper a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--lite-purple) !important;
}

/* Mouse remove par close right → left */
.footer ul li a:not(:hover)::after,
.footer .contact-footer-wrapper a:not(:hover)::after {
    transform-origin: right;
}

/* Ensure list items can show dropdown */
.nav-links li {
    position: relative;
    list-style: none;
}

/* Dropdown Arrow */
.nav-links .dropdown>a .arrow {
    display: inline-block;
    margin-left: 6px;
    border: solid var(--text-color);
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

/* Rotate arrow on hover */
.nav-links .dropdown:hover>a .arrow {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    left: -65px;
    top: 100%;
    background: #fff;
    min-width: 250px;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0px 15px 30px -12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 10;
    border: none;
}

/* Show dropdown smoothly */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

/* Dropdown menu links */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-family: var(--satoshi-font);
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.globe-dropdown {
    position: relative;
    display: inline-block;
}

/* Globe icon */
.globe-wrapper img {
    width: 28px;
    cursor: pointer;
}

/* Dropdown container */
.language-menu {
    position: absolute;
    bottom: 35px;
    left: 25px;
    background: #fff;
    width: 130px;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 10;
}

/* Show on hover */
.globe-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu items */
.language-menu li {
    list-style: none;
}

.language-menu li a {
    display: block;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 15px;
    font-family: var(--inter-font);
    color: var(--text-color);
    text-decoration: none;
    transition: 0.2s ease;
}

.language-menu li a:hover {
    background: #f5f5f5;
}

/* custom drop down in home page form of country*/

.custom-dropdown {
    width: 100%;
    position: relative;
    font-family: Arial;
}

.dropdown-selected {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: #f3f3f6;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--inter-font);
    font-weight: 500;
    color: var(--black);
}

.dropdown-list {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    display: none;
    /* hidden by default */
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-list li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background: #d8a5f7;
    color: white;
}

#scroll-top-btn {
    display: inline-block;
    background: var(--red);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#scroll-top-btn::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    line-height: 50px;
    color: var(--black);
}

#scroll-top-btn:hover {
    cursor: pointer;
    background-color: var(--white);
}

#scroll-top-btn:active {
    background-color: var(--white);
}

#scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/*add css */

.reviews-sec .testiomnial-card-content p {
    font-size: 17px !important;
}

.contact-us .contact-content-wrapper ul {
    padding-left: 17px;
}

.contact-us .contact-content-wrapper ul li {
    list-style-type: disc !important;
}

.footer ul li a.active:hover {
    border-bottom: 2px solid transparent !important;
}

.bottom-bar-content-wrapper .language-wrapper i {
    color: white;
}

.hero-banner .secondary-btn {
    margin-top: 30px !important;
}

.Forgot-sec button {
    width: 57%;
}

.Forgot-sec {
    padding: 80px 0;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper .password-field {
    width: 100%;
    padding-right: 40px;
    /* icon space */
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    opacity: 0.6;
}

.password-wrapper .toggle-password:hover {
    opacity: 1;
}

/* general-sec */

.form-section {
    padding: 40px 0;
}

/* .form-container {
    width: 550px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
} */

h2 {
    font-size: 26px;
    margin-bottom: 5px;
    text-align: center;
}

.sub-text {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.general-sec input {
    width: 50%;
}

select {
    width: 50%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f0f4ff;
    font-size: 15px;
}

.three-flex {
    display: flex;
    gap: 10px;
}

.three-flex {
    display: flex;
    gap: 15px;
}

.question {
    display: flex;
    gap: 80px;
    margin-top: 20px;
}

.question p {
    text-align: start !important;
    margin-bottom: 8px;
    font-weight: 600;
    width: 345px;
}

.question label {
    font-weight: normal;
}

.next-btn {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    border: none;
    background: #eabfff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.next-btn:hover {
    background: #d596ff;
}

.back-btn {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: #444;
    font-size: 14px;
}

.general-sec label {
    display: block !important;
    margin-top: 0 !important;
}

.inform-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.inform-div-2 .three-flex select {
    width: 133px;
}

.general-sec select {
    margin-bottom: 0 !important;
}

.general-sec input {
    padding: 15px 23px !important;
    margin-bottom: 0;
}

.radio-div-gen {
    display: flex;
    gap: 30px;
    align-items: start;
}

.radio-mini-gen {
    display: flex;
    align-items: center;
    gap: 10px;
}

.general-sec {
    padding: 40px 0;
}

.general-sec .secondary-btn {
    width: 100%;
}

.photo-section {
    padding: 80px 0;
}

.circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    overflow: hidden;
    /* ⭐ VERY IMPORTANT */
    background-size: cover;
    /* ⭐ auto adjust */
    background-position: center;
}

.photo-section .photo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.photo-box .circle:hover {
    background-color: #f5e9ff;
    border: 1px solid #7d6790;
}

.photo-box .plus {
    font-size: 40px;
    color: var(--lite-purple);
}

.photo-section .primary-btn {
    background-color: var(--lite-purple);
    color: var(--white);
}

.upload-btn-div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-section #doneBtn {
    color: var(--black) !important;
    font-size: 16px;
    font-family: var(--inter-font);
    font-family: bold;
    text-decoration: underline !important;

}

.photo-section #doneBtn:hover {
    color: var(--red) !important;
    transition: all 1s;
}

.photo-section .primary-btn {
    width: fit-content;
    display: flex;
    margin: auto;
    justify-content: center;
}

.pkges-sec {
    padding: 80px;
}

.plan-info {
    display: flex;
    align-items: center;
}

.plan-container {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid gray;
    margin: 30px auto;
    font-family: "Poppins", sans-serif;
}

.plan-container h2 {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: start;
    font-family: var(--inter-font);
    color: var(--black);
}

.plan-container p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: var(--inter-font);
    color: var(--black);
    font-weight: 400;
}

.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.plan-row:first-of-type {
    border-top: none;
}

.level {
    font-size: 18px;
    font-weight: 500;
}

.price {
    font-size: 14px;
    color: #666;
}

.select-btn {
    background-color: var(--lite-purple);
    /* Light Purple */
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--inter-font);
    cursor: pointer;
    transition: 0.3s ease;
}

.plan-row button {
    width: 30%;
}

.select-btn:hover {
    background-color: #a855f7;
    /* Darker purple */
}

.plan-info .level2 {
    font-weight: 600;
}

.plan-info p {
    width: 350px;
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 300;
    color: var(--black);
}

.plan-info .price {
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 600;
    color: var(--black);
}

/* sibmit-sec */
.submit-sec {
    padding: 80px;
}

.Payment-Gateway p {
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
    color: #36708f;
}

.Payment-Gateway {
    margin-bottom: 20px;
    padding: 12px 18px;
    border-radius: 7px;
    background-color: #d9edf7;
}

.submit-sec h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--fraunces-font);
    text-align: start;
    margin-bottom: 15px;
}

.submit-sec .memb-inform-div {
    background-color: white;
    padding: 45px;
    border: 2px solid #b57edc;
    margin-bottom: 30px;
    border-radius: 7px;
}

.submit-sec p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--inter-font);
}

.submit-sec .memb-inform-div p span {
    font-weight: 600;
}

.submit-sec .memb-inform-div .memb-list {
    padding-left: 19px;
}

.submit-sec .memb-inform-div .memb-list li {
    list-style: disc !important;
    margin-bottom: 10px;
}

.account-form-info {
    background-color: white;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 7px;
    padding: 36px;
    border: 1px solid #e8e8e8;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-top: 40px !important;
}

.account-form-info .form-wrapper div {
    width: 100%;
}

.account-form-info .form-wrapper label {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--inter-font);
}

.account-form-info .form-wrapper input,
select {
    padding: 12px;
    width: 100%;
    background-color: #f3f3f6 !important;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
}

.account-form-info .form-wrapper select {
    padding: 14px;
}

.account-form-info .form-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-wrapper {
    margin-top: 10px;
    cursor: pointer;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 15px;
}

.eye {
    font-size: 18px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-wrapper i,
.txt-show-hide {
    color: #0c3d54 !important;
}

.already-an-account {
    padding: 12px 36px;
    background-color: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 7px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.billing-address {
    border-radius: 7px;
}

.payment-information {
    border-radius: 7px;
}

.payment-information .payment-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Payment-Gateway2 {
    margin-top: 40px;
}

.submit-sec .submit-btm-sec {
    margin-top: 15px;
}

.submit-sec .submit-btm-sec:hover {
    background-color: white !important;
    border: 1px solid var(--lite-purple) !important;
    color: var(--lite-purple) !important;
}

.pkges-sec .select-btn:hover {
    background-color: white !important;
    border: 1px solid var(--lite-purple) !important;
    color: var(--lite-purple) !important;
}

.general-sec .form-wrapper input,
select {
    width: 100%;
}

.general-sec .form-container h2 {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fraunces-font);
    font-size: 28px;
}

.general-sec .form-container p {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 400;
    font-family: var(--inter-font);
    font-size: 16px;
    margin-bottom: 20px;
}

.general-sec .form-container form label {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
    font-family: var(--satoshi-font);
    font-size: 16px;
    margin-bottom: 8px;
}

.general-sec .form-container form label span {
    color: var(--red);
}

.photo-section h2 {
    font-size: 22px;
    font-family: var(--fraunces-font);
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0;
}

.photo-section p {
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}

.radio label {
    margin-top: 0;
}

.steps-wrapper>div {
    display: none;
}

.steps-wrapper>div.active {
    display: block;
}


.profile-box {
    position: relative;
    display: inline-block;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 14px;
    cursor: pointer;
}

.profile-box i {
    font-size: 25px;
}

.profile-box span {
    font-size: 16px;
    font-family: var(--inter-font);
    font-weight: 600;
}

 #dropdownMenu {
    display: none;
    position: absolute;
    top: 50px;
    right: 50%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 21px 0;
    z-index: 9;
}
 #dropdownMenu1 {
    text-align: center;
    position: unset;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 21px 0;
    z-index: 9;
}

.about-dropdown {
    display: block !important;
}

/* .dropdown {
    position: unset;
    top: 50px;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
    padding: 21px 0;
    z-index: 9;
} */

.dropdown a {
    display: block;
    padding: 7.5px 25px;
    text-decoration: none !important;
    color: #333;
    /* border-bottom: 1px solid #eee; */
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter-font);
}

.dropdown a i {
    font-size: 16px;
    margin-right: 8px;
}

.header-wrapper .upgrade-btn {
    background-color: #ff88ff;
    border-radius: 30px;
    padding: 10px 20px;
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-box a {
    color: var(--black);
    font-family: var(--inter-font);
    font-size: 16px;
}

.notifications-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.notifications-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(20, 10, 98, 0.12);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(20, 10, 98, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.15s ease;
}

.notifications-btn:hover {
    background: linear-gradient(145deg, #faf8ff 0%, #f3edff 100%);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.18);
}

.notifications-btn:active {
    transform: scale(0.96);
}

.notifications-btn:focus-visible {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

.notifications-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #140a62;
    line-height: 1;
}

.notifications-btn-inner i,
.profile-box .notifications-btn-inner i {
    font-size: 17px;
}

.admin-notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 2px solid #fff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.45);
    pointer-events: none;
}

.profile-box .admin-notification-badge span {
    font-size: 11px;
    font-weight: 700;
    line-height: 19px;
    font-family: var(--inter-font);
}

.notifications-dropdown {
    top: 54px;
    right: 0;
    min-width: 320px;
    max-width: 380px;
    max-height: 420px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(20, 10, 98, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 55px rgba(20, 10, 98, 0.14);
    z-index: 99;
}

.notifications-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.notifications-dropdown-title {
    color: #140a62;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mark-all-read-btn {
    flex-shrink: 0;
    margin: 0;
    padding: 6px 10px;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.mark-all-read-btn:hover {
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.1);
}

.mark-all-read-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.notifications-list {
    max-height: 340px;
    overflow-y: auto;
    background: #fff;
}

.notifications-dropdown a.notification-item {
    display: block;
    padding: 14px 16px;
    color: #333;
    font-family: var(--inter-font);
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.notifications-dropdown a.notification-item:hover {
    color: inherit;
    background: #faf8ff;
}

.notifications-dropdown a.notification-item:last-child {
    border-bottom: none;
}

.notifications-dropdown a.notification-item strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.notification-item-msg {
    display: block;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.notification-item-time {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 11px;
}

.notification-empty {
    padding: 18px 16px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.hamburger {
    padding: 10px;
    background-color: var(--lite-purple);
    color: var(--white);
    border-radius: 5px;
}

.hamburger,
.hamburger i {
    display: none;
}

.side-bar {
    position: fixed;
    top: 0;
    left: -2000px;
    width: 320px;
    height: 100vh;
    background: var(--lite-purple);
    transition: all 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}