*,
::before,
::after {
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    text-decoration: none;
    color: var(--light-black)
}

img {
    vertical-align: bottom;
}

ul {
    /* list-style: none;*/
    padding: 0;
}

label {
    display: inline-block;
}

button {
    cursor: pointer;
    padding: 0;
}

:disabled {
    cursor: not-allowed;
}

iframe {
    border: none;
}

:root {
    --ff: 'Proxima Nova', sans-serif;
    --dpink: #950053;
    --white: #ffffff;
    --grey: #aaa;
    --black: #000;
    --light-black: #333;
    --light-grey: #F7F7F7;
    --bdr-radius: 10px;
    --font12: 12px;
    --font14: 14px;
    --font16: 16px;
    --font18: 18px;
    --txtd: none;
    --input-bdr: #aaa;
    --border-light: #dbe1e3;
    --bs-focus-ring-color: rgba(52, 58, 64, 0.25);
    /* Custom focus color */
}


/*
 * Custom Focus Styles
 * Overrides the default blue browser outline on focused elements.
 */

.btn:focus,
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:checked,
a:focus {
    outline: none;
    /*box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.2);*/
}


/* Remove focus ring from elements where it's not desired */

.btn-close:focus,
.accordion-button:focus {
    box-shadow: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    width: 20px;
    margin-bottom: 4px
}

.offcanvas-end {
    width: 100%
}

.navbar .container {
    z-index: 1;
    padding: 12px
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: var(--font18)
}

.offcanvas-body .navbar-nav .nav-link {
    color: var(--black)
}

.navbar-brand img {
    height: 45px
}

.nav-item {
    margin: 0 10px
}

.login-btn,
.flip-card-back button {
    background-color: var(--dpink);
    color: var(--white);
    border-radius: var(--bdr-radius);
    font-weight: 700;
    padding: 10px 30px 12px;
    font-size: 0.875rem;
    text-decoration: var(--txtd);
    border: none
}

.login-btn i {
    color: var(--white);
    padding-right: 5px
}

.login-btn:hover {
    background-color: var(--dpink)
}

.lightHeader {
    background: var(--white);
    transition: opacity 300ms;
    opacity: 1;
    border-bottom: 1px solid var(--border-light);
}

.lightHeader .navbar-nav a.nav-link {
    color: var(--black)!important
}

.lightHeader .navbar-nav a.nav-link:hover {
    border-bottom: 1px solid var(--dpink)
}

.mobile-canvas {
    background: linear-gradient(51deg, #fff0e3 43%, #fce4ef 100%);
    color: var(--black);
    padding: 10px 20px
}

.offcanvas-body .list-unstyled li a {
    font-size: var(--font16);
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3e3e3
}

.hem-button {
    width: 100%;
    display: flex;
    flex-flow: column no-wrap;
}

.hem-button a {
    color: var(--dpink);
    background: var(--white);
    text-decoration: none;
    border: 1px solid var(--grey);
    border-radius: 10px;
    text-align: center;
    width: 100%;
    padding-bottom: 4px
}

.btn-hem {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: .75rem;
}

.nav-icon {
    width: 20px;
    margin-right: 10px
}

.nav-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.4rem
}

.carousel-item .carousel-caption {
    left: 9%;
    right: 9%;
    width: 500px;
    bottom: 25%;
    text-align: left
}

.carousel .h2,
.carousel h2 {
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin-bottom: 30px
}

.carousel-caption {
    animation-duration: 1s;
    animation-fill-mode: both
}

.fadeInUp {
    animation-name: fadeInUp
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


/* Registration Form Home Page */

.form-box {
    max-width: 550px;
    margin: auto;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: absolute;
    right: 1%;
    top: 100px
}

.form-box-2 {
    margin: auto;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    right: 1%;
    top: 130px
}

.mar-top {
    margin-top: 85px !important;
}

.form-box h3 {
    font-size: 1.25rem;
    font-weight: 700
}

.form-box h3 span {
    color: #a2005c;
}

.form-box p {
    color: #606367;
    font-size: 0.9375rem
}

.gender-btn {
    width: 100%
}

.gender-btn input[type="radio"] {
    display: none
}

.gender-label {
    padding: 7px 15px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease
}

.gender-label span {
    font-size: 18px
}

.support {
    margin: 10px 0 0;
    color: var(--black)
}

.gender-btn input[type="radio"]:checked+.gender-label {
    color: var(--dpink);
    box-shadow: 0 0 0 0px var(--dpink), 0 0 0 calc(1px + 0px) #aaa, 0 0 var(--dpink);
    border: 1px solid var(--dpink);
    box-shadow: none
}

.form-check-input:checked {
    box-shadow: none;
}

.form-select,
.form-control {
    border-radius: 8px
}

.input-group .form-select {
    max-width: 100px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.register-btn {
    background-color: var(--dpink);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 7px 0
}

.register-btn:hover {
    background: #8c004f
}

.form-box .form-control,
.form-box .form-select,
.gender-btn .btn,
.gender-label,
.login-box .form-contro {
    line-height: 2.4rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    /*box-shadow:0 0 0 0px #fff, 0 0 0 calc(1px + 0px) #aaa, 0 0 #aaa;*/
    border: 2px solid #b3b3b3
}

.form-check-input {
    border-radius: 0.25rem;
    font-size: 1rem;
    box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) #aaa, 0 0 #aaa;
}

.form-check-label {
    font-size: 12px
}

.form-check-label a {
    font-weight: bold;
    text-decoration: none;
    color: var(--light-black)
}

.custom-select-style {
    background-color: #f8f9fa;
    border: 2px solid #0d6efd;
    border-radius: 0.5rem;
    color: #212529;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease
}

.custom-select-style:focus {
    border-color: none;
    box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.25);
    outline: none
}

.form-box .form-control:focus,
.form-box .form-select:focus,
.form-box .form-check-input:focus,
.login-box .form-control:focus,
nav .form-control:focus {
    border: 2px solid #b3b3b3;
    box-shadow: none
}

.social-icons-r {
    float: right
}

.social-icons-r a {
    font-size: 18px;
    margin: 0 7px;
    color: #555;
    transition: color 0.3s ease;
}

.social-icons-r a:hover {
    color: var(--dpink);
}

.search-form {
    background: #F7F7F7
}

#country-code {
    font-size: 1.0rem;
    border-right: none;
}

.form-control.m-no {
    border-left: none;
    padding-left: 0
}

.flag-option {
    background-repeat: no-repeat;
    background-size: 20px 15px;
    padding-left: 5px
}

.in-flag {
    background-image: url('https://flagcdn.com/w40/in.png');
}

.us-flag {
    background-image: url('https://flagcdn.com/w40/us.png');
}

.gb-flag {
    background-image: url('https://flagcdn.com/w40/gb.png');
}

.ae-flag {
    background-image: url('https://flagcdn.com/w40/ae.png');
}

.au-flag {
    background-image: url('https://flagcdn.com/w40/au.png');
}


/*Login Form */

.login-bg.offcanvas.offcanvas-end {
    width: 60%!important;
    background: url(../images/login-bg.png) center/cover no-repeat;
}

.login-bg .btn-close {
    position: absolute;
    right: 10%;
    top: 10%;
}

.login-bg {
    margin: 0;
    padding: 50px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fde9f1, #fbe4ef);
}

.login-bg .offcanvas-header {
    margin: 0 0 20px;
}

.login-bg a {
    color: var(--black);
    font-size: var(--font16);
    margin: 10px 0
}

.register-link {
    font-size: 0.8125rem;
    color: var(--dpink);
    background: #ffeff4;
    border-radius: 20px;
    text-decoration: none;
    padding: 3px 15px 5px;
}

.login-bg .register-btn {
    padding: 15px 0;
}

.login-box {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.login-box h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.7rem
}

.login-box .form-control {
    height: 56px;
    border-radius: 6px;
    font-size: 17px;
}

.form-text-link {
    font-size: 14px;
}

.separator {
    text-align: center;
    margin: 15px 0;
    color: #888;
}

.register-link {
    font-weight: 500;
    color: #e91e63;
}

.register-link:hover {
    text-decoration: underline;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.social-icons-r .bi-facebook {
    color: #0165E1
}

.social-icons-r .bi-twitter-x {
    color: #000
}

.social-icons-r .bi-linkedin {
    color: #0A66C2
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 10px 20px
}

.user-icon {
    width: 48px;
    height: 48px;
    background-color: #f3d7e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #b5738f
}

.user-text {
    text-align: left;
}

.user-text h6 {
    margin: 0;
    font-weight: 600
}

.user-text small {
    color: #666
}

.btn-group {
    display: flex;
    gap: 10px
}

.btn-log,
.btn-reg {
    border-radius: 0.5625rem;
    font-weight: 500;
    height: 40px;
    padding: 0 20px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    padding: 0.5625rem 1.5625rem;
    color: var(--dpink);
    background-color: var(--white);
    border: 1px solid #fff
}

.btn-log:hover,
v.btn-reg:hover {
    background-color: #f3f3f3
}


/* Home Search */

.search {
    width: 100%;
    height: 50px
}

.search:hover {
    background: var(--dpink)
}

.search i {
    margin-right: 10px
}

.search-form .form-select {
    padding-top: 1.2rem!important
}

.search-form .col {
    position: relative
}

.search-form .col label {
    position: absolute;
    color: var(--grey);
    left: 25px;
    top: 2px;
    font-size: var(--font12);
    padding: 0
}


/* Heighlighted Profile */

.h-profile {
    background: var(--light-grey);
    padding: 20px;
    margin: 20px;
    padding-top: 20px
}

.h-profile h2 {
    font-size: 1.8rem;
    margin-bottom: 15px
}

.flip-card {
    perspective: 1000px;
    width: 239px;
    height: 335px;
    margin-bottom: 20px
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg)
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.flip-card-front {
    background: linear-gradient(45deg, #cbcbcb 0%, #ececec 100%);
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.flip-card-front h3 {
    color: var(--dpink)
}

.flip-card-back {
    background: linear-gradient(45deg, #ee9ca7 0%, #ffdde1 100%);
    color: var(--light-black);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px
}

.social-icons a {
    color: var(--light-black);
    margin: 0 10px;
    font-size: 24px;
    transition: transform 0.3s ease
}

.social-icons a:hover {
    transform: scale(1.2)
}

@keyframes wave {
    0% {
        transform: rotate(0deg)
    }
    10% {
        transform: rotate(14deg)
    }
    20% {
        transform: rotate(-8deg)
    }
    30% {
        transform: rotate(14deg)
    }
    40% {
        transform: rotate(-4deg)
    }
    50% {
        transform: rotate(10deg)
    }
    60% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

.waving-hand {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%
}

.full li {
    display: inline-block;
    margin: 0 20px 0 0;
}

.full li:nth-child(5n) {
    margin-right: 0
}

.app-download {
    background: linear-gradient(90deg, #fbeeff 0%, #f8f3fb 100%)
}

.app-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem
}

.app-image {
    max-width: 75%;
    height: auto
}

.store-badge {
    max-height: 60px;
    margin-right: 15px
}

.qr-code {
    max-height: 60px;
    margin-right: 10px
}

.special {
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
    scrollbar-width: none;
}

.special ul {
    display: table;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.special li {
    display: table-cell;
    min-width: 200px;
    max-width: 200px;
    overflow: hidden;
    padding: 0 10px;
}

.bg-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/matrimonial-special.png') center/cover no-repeat;
    color: white
}

.info-box {
    border-radius: 12px;
    background: white;
    padding: 20px;
    transition: transform 0.3s ease;
    height: 100%;
    color: var(--black)
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 30px;
    margin-bottom: 15px
}

.success-card {
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white
}

.carousel-item {
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    overflow: hidden
}

.carousel-content {
    display: flex;
    flex-direction: column
}

@media (min-width: 768px) {
    .carousel-content {
        flex-direction: row;
    }
}

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

@media (min-width: 768px) {
    .carousel-img {
        width: 40%;
        height: 100%
    }
}

.carousel-text {
    padding: 20px;
    position: relative;
    flex-grow: 1
}

.hearts-bg {
    position: absolute;
    bottom: 10px;
    right: 20px;
    opacity: 0.2;
    font-size: 2rem
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d63384
}

#pills-tab {
    justify-content: center;
}

#pills-tab li button {
    color: var(--white);
    background: var(--grey);
}

#pills-tab li button.active {
    background: var(--dpink)
}

.tab-button {
    text-align: center;
    margin: 0 auto 30px;
}

.tab-button a {
    font-size: 14px;
    padding: 5px 15px 7px;
    margin: 5px 10px 10px 0;
    color: var(--black);
    border: 1px solid #333;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold
}

.icon-box {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px 20px 35px;
    transition: 0.3s;
    height: 100%
}

.icon-box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1)
}

.icon-box i {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 10px
}

.faq-btn {
    background-color: #880E4F;
    color: white;
    border-radius: 8px;
    padding: 10px 20px
}

.faq-btn:hover {
    background-color: #ad1457
}

.accordion-item,
.accordion-item h2 {
    font-size: 1rem
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--black)
}

.accordion-header .accordion-button:focus {
    box-shadow: none
}


/* Profile Page */

.header-bg {
    background: url(../images/top-bg-pink.jpg);
    color: white;
    padding: 30px 20px;
    margin-top: 96px
}

.profile-pic {
    width: 100%;
    border-radius: 10px;
    object-fit: cover
}

.profile-left {
    position: -webkit-sticky;
    height: 100vh;
    min-height: 800px;
    position: sticky;
    top: 10px;
}

.tag {
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 12px;
    margin: 2px;
    font-size: 0.85rem
}

.profile-left .carousel-control-next,
.profile-left .carousel-control-prev {
    width: 8%
}

.match-score {
    color: green;
    font-weight: bold
}

.thumbnail-img {
    width: 60px;
    border-radius: 5px;
    margin-right: 5px
}

.dropdown-toggle::after {
    display: none
}

.profile {
    border-left: 1px solid #ddd
}

.profile h5 i {
    margin-right: 6px
}

.profile .section {
    padding: 1rem;
    border-bottom: 1px solid #ddd
}

.profile .section:last-child {
    border-bottom: none
}

.profile .label {
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 5px
}

.thumb {
    cursor: pointer;
    border: 2px solid transparent;
    margin: 5px 5px 0 0;
    border-radius: 5px;
    transition: 0.3s
}

.thumb.active,
.thumb:hover {
    border-color: var(--dpink)
}

.carousel-inner img {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.dropdown .bi-caret-down-fill {
    color: var(--black)
}

.dropdown .rounded-circle:hover {
    border: 2px solid var(--border-light)
}

.btn.edit {
    background: var(--light-grey);
    padding: 2px 15px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid var(--border-light);
}

.btn.submit {
    background: var(--dpink);
    font-size: 18px;
    padding: 5px 20px;
    color: var(--white);
}

.sidebar {
    background-color: #f8f9fa;
    border-right: 1px solid #ddd;
    height: 100%;
    padding: 1rem
}

.profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px
}

.profile-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    height: 100%
}

.verified {
    color: #c71585;
    font-size: 0.85rem;
    font-weight: 600
}

.premium {
    color: goldenrod;
    font-size: 0.85rem;
    font-weight: 600
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600
}

.form-label {
    font-size: 0.9rem
}

.accordion-button {
    padding: 0.5rem 1rem
}

.sidebar .accordion-button::after {
    content: '+' !important;
    font-size: 1.25rem;
    font-weight: bold;
    transform: none !important;
    background-image: none;
    margin-left: auto
}

.sidebar .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    font-size: 1.25rem;
    font-weight: bold;
    transform: none !important;
    background-image: none;
    margin-left: auto
}

.accordion-button:not(.collapsed)::after {
    content: '-' !important
}

.interest-wrapper {
    position: relative;
    display: inline-block
}

.send-button {
    background-color: #fff;
    border: 2px solid #f3f3f3;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer
}

.interest-box {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    width: 500px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none
}

.interest-wrapper:hover .interest-box {
    display: block
}

.interest-box h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px
}

.option-box {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: 0.3s
}

.option-box:hover {
    background-color: #f9f9f9;
    border-color: #aaa
}

.option-box input[type="radio"] {
    margin-right: 10px;
    margin-top: 5px
}

@media (max-width: 576px) {
    .interest-box {
        width: 90vw;
        left: 5vw
    }
}

@media (max-width: 768px) {
    .thumbs-col {
        flex-direction: row !important;
        overflow-x: auto
    }
    .thumb {
        margin-right: 0
    }
    .profile-left {
        position: static;
        height: auto;
        min-height: auto;
    }
}


/* Package Page Design */

.package {
    background: linear-gradient(135deg, #32bea6, #6ce0c3);
    color: #333
}

.package .container {
    border: 1px solid var(--black);
    padding: 20px 0
}

.package-card {
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    padding: 2re
}

.package-card:hover {
    transform: translateY(-5px)
}

.highlight {
    background-color: #e6f9f5
}

.top-seller,
.best-value {
    font-size: 1rem
}

.top-seller {
    color: #dc3545;
    font-weight: 600
}

.best-value {
    color: #fd7e14;
    font-weight: 600
}

.checkmark {
    color: green;
    font-weight: bold;
    margin-right: 5px
}

.text-muted-line {
    text-decoration: line-through;
    color: #bbb
}

.package h5 {
    font-size: 1.1rem;
    font-weight: 600
}

.package h4 {
    font-size: 1.6rem;
    font-weight: bold
}

.price-old {
    font-size: 0.9rem
}

.per-month {
    font-size: 0.85rem
}

.package-title {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: bold
}

.package-subtitle {
    color: var(--white);
    font-size: 0.95rem
}

.ribbon-box {
    display: inline-block;
    background: linear-gradient(90deg, #47e6ca, #29c7b0);
    padding: 0.4rem 1.5rem;
    border-radius: 40px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem
}

.continue-btn {
    background-color: white;
    border: 1px solid var(--grey);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--light-black);
    transition: all 0.3s ease
}

.continue-btn:hover {
    background-color: #f1f1f1
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: #000
}

.package-discount {
    color: green;
    font-weight: bold;
    font-size: 0.9rem
}

.package-old-price {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: #888
}

@media (min-width: 992px) {
    .package .col-lg-2 {
        flex: 0 0 auto;
        width: 19%
    }
}


/* Footer */

footer h4 {
    font-size: 16px;
}

footer a {
    color: var(--light-black)
}

.list-unstyled li {
    padding-bottom: 0px
}

.list-unstyled li a {
    text-decoration: none;
    font-size: var(--font14);
    color: var(--light-black)
}

.list-unstyled li a:hover {
    color: var(--dpink)
}

footer .bg-light {
    font-size: var(--font12)
}

footer .info {
    height: 80px;
    line-height: 80px;
    margin-bottom: 50px
}

footer .info strong {
    font-size: var(--font16)
}

footer .info i {
    font-size: var(--font18);
    color: var(--dpink)
}

.footer-social a {
    color: var(--dpink);
    font-size: 21px;
    margin-right: 20px
}

.mob-m {
    display: none
}

.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    z-index: 1030
}

.mobile-footer .nav-link {
    font-size: 0.85rem;
    color: #555
}

.mobile-footer .nav-link.active {
    color: var(--dpink)
}

.mobile-footer .bi {
    display: block;
    font-size: 1.2rem
}


/* Dashboard */

.sidebar {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    height: 100vh
}

.nav.flex-column li a {
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    padding-left: 10px
}

.nav.flex-column .nav-item {
    padding-left: 0;
    margin-left: 0
}

.card-profile {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 15px
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px
}

.badge-progress {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a5065a;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    padding: 2px 10px;
}

.verify-box {
    background-color: #fce8f3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px
}

.verify-box img {
    width: 100px;
    margin-bottom: 10px
}

.verify-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px
}

.btn-verify {
    background-color: #a5065a;
    color: white;
    font-weight: 600;
    border: none;
    padding: 8px 20px;
    border-radius: 20px
}

.plan-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.plan-box img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.plan-text {
    font-size: 14px;
}

.btn-upgrade {
    font-size: 13px;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
}

.dashboard-box {
    background: var(--white);
    border-radius: 12px;
    color: #333
}

.rounded-btn {
    border-radius: 25px
}

.match-box {
    background: linear-gradient(to right, #fef6fb, #f1e8ff);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: #6a1b9a
}

.match-box h6 {
    margin-top: 10px
}

.match-box img {
    width: 100%;
    border-radius: 12px
}

.section-header {
    font-weight: 600;
    color: #7c2e8e
}

.recent-profile img {
    border-radius: 5px;
    height: 150px;
}

.recent-profile h6 {
    font-size: 14px;
    margin-top: 8px;
    color: #333
}

.dashboard-box .overflow-auto {
    overflow: hidden!important
}

.nav-link {
    color: #5e35b1
}

.nav-link:hover {
    color: #311b92
}

.btn-primary {
    background-color: #950053;
    border: none
}

.btn-danger {
    background-color: #950053;
    border: none
}

.btn-outline-secondary {
    color: #950053;
    border-color: #6a1b9a
}

.btn-outline-secondary:hover {
    background-color: #6a1b9a;
    color: white
}

.bg-light {
    background-color: #f9f3fc !important
}

a.text-primary {
    color: #7b1fa2 !important;
}

.dashboard-box .bg-dash {
    border-radius: 20px;
    padding: 0 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px
}

.dashboard-box .bg-light {
    background-image: linear-gradient(62deg, #fff0e3 6%, #fadbf8)
}

.dashboard-box .bg-light i {
    color: var(--dpink)
}

.dashboard-box .add-photo {
    background-color: #975ad8;
}

.dashboard-box .add-photo .btn,
.dashboard-box .verify .btn {
    height: 28px;
    margin-top: 15px;
    background: var(--white);
    border-radius: 30px;
    padding: 0px 20px 2px
}

.dashboard-box .add-photo i {
    font-size: 40px;
    color: #c69df2
}

.dashboard-box .add-photo button {
    color: #975ad8
}

.dashboard-box .verify {
    background-color: #d94e9c;
}

.dashboard-box .verify i {
    font-size: 40px;
    color: #f082c0
}

.dashboard-box .verify button {
    color: #d94e9c
}

.section-heading {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 10px 0 30px
}

.section-header {
    font-weight: 600;
    font-size: 1.7rem;
    margin: 10px 0;
    color: var(--black);
}

.match-box {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 15px
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.swiper-slide img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover
}

.see-all {
    text-align: right;
    font-size: 14px;
    color: #007bff;
    font-weight: 500;
    margin-top: 10px
}

.swiper-container-wrapper {
    overflow-x: hidden
}

.swiper {
    padding-bottom: 20px
}

.swiper-slide {
    width: auto
}

.swiper-slide {
    width: 380px
}

.status-button {
    border: 1px solid #e8c0d6;
    border-radius: 50px;
    padding: 7px 10px;
    color: var(--light-black);
    font-weight: 500;
    background-color: fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 5px;
    height: 100%;
    justify-content: center;
}

.status-button:hover {
    background-color: var(--dpink);
}

.status-button:hover .status-label,
.status-button:hover i {
    color: var(--white)
}

.status-button i {
    font-size: 1.4rem;
    color: var(--dpink);
}

.status-label {
    font-size: 1rem;
    line-height: 1.2;
    word-break: break-word;
    margin-left: 10px;
}


/* Viewed */

.activity-wrapper {
    max-width: 400px;
    padding: 30px
}

.accordion-button {
    background-color: #f4f4f4;
    border-radius: 12px !important;
    font-weight: 600;
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    background-color: #f4f4f4;
    border-radius: 12px 12px 0 0 !important
}

.accordion-body {
    background-color: #f4f4f4;
    border-radius: 0 0 12px 12px;
    padding: 0
}

.accordion-item {
    border: none;
    margin-bottom: 15px
}

.accordion-button::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    background-image: none;
    transform: rotate(0deg)
}

.accordion-button.collapsed::after {
    transform: rotate(180deg);
}

.list-group-item {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #555
}

.custom-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px
}

.btn-viewed {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white
}

.btn-address {
    background-color: #f4f4f4;
    color: #444
}

.btn-shortlist {
    background: linear-gradient(to right, #a200ff, #d580ff);
    color: white
}

.custom-btn i {
    margin-right: 10px;
    font-size: 18px
}


/* responsive */

@media screen and (min-width:1220px) {
    h1 {
        font-size: 2.0rem!important;
    }
    .navbar-brand img {
        height: 31px
    }
    .carousel-item img {
        height: 100vh;
        max-height: 650px
    }
    .form-check-label {
        font-size: var(--font12)
    }
}

@media screen and (max-width:980px) {
    h1 {
        font-size: 1.05rem!important;
    }
    .search i {
        margin-right: 0
    }
    .form-box {
        position: static;
        margin-top: 280px
    }
    .full {
        overflow-x: auto;
        box-sizing: border-box;
        scrollbar-width: none;
        display: flex
    }
    .full li:nth-child(5n) {
        margin-right: 27px
    }
    .full li:last-child {
        margin-right: 0
    }
    .lightHeader .navbar-toggler {
        color: var(--black)
    }
    .lightHeader .hamburger span {
        background-color: var(--black)
    }
    .mob-m {
        display: block
    }
    .package .container {
        border: none;
        padding: 0;
    }
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 1.05rem!important;
    }
    .navbar-brand img {
        height: 30px
    }
    .form-box {
        margin-top: 190px
    }
    .flip-card {
        width: 258px
    }
    .carousel-item img {
        height: 100vh;
        max-height: 325px
    }
    footer .info {
        height: auto;
        line-height: 30px;
        margin-bottom: 40px;
        padding-top: 20px
    }
    .app-section {
        padding: 2rem 1rem
    }
    footer .col-md-3,
    footer .col-md-2 {
        width: 50%
    }
    .navbar .container {
        padding: 7px
    }
    .tab-button a {
        display: inline-block
    }
    .tab-content.p-4 {
        padding: 10px
    }
    .h-profile h2 {
        font-size: 1.4rem
    }
    .carousel-item .carousel-caption {
        width: 85%
    }
    .carousel .h2,
    .carousel h2 {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 10px
    }
    .carousel-caption p {
        font-size: 0.8rem;
        line-height: 1rem
    }
    .store-badge {
        max-height: 45px
    }
    .info .col-md-3 div {
        border: 1px solid var(--dpink);
        border-radius: 0.5625rem;
        padding: .5rem .75rem;
        float: left;
        width: 100%;
        line-height: 20px;
    }
    .info i {
        float: left;
        margin-top: 10px;
    }
    .info strong {
        float: right;
        width: 76%;
    }
    .social-icons-r {
        width: 100%;
        text-align: center;
        margin: 20px 0 0
    }
    .social-icons-r a {
        font-size: 25px;
        margin: 0 12px
    }
    .btn-outline-warning,
    .btn-outline-primary,
    .btn-outline-danger {
        display: inline-block;
        font-size: 14px
    }
    .profile .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .mar-top {
        margin-top: 75px
    }
    .profile section,
    .profile .label,
    .profile {
        font-size: 14px
    }
    .status-button {
        border-radius: 10px;
        flex-direction: column
    }
    .col-md-9.profile {
        padding: 0;
        border: none;
    }
    .dashboard-box .bg-dash {
        box-shadow: none;
        padding: 0;
    }
    .profile .dashboard-box {
        padding: 0
    }
    .status-label {
        margin-left: 0
    }
    .dashboard-box .overflow-auto {
        overflow: auto!important
    }
}

@media screen and (max-width:460px) {
    h1 {
        font-size: 1.05rem!important;
    }
    .header-bg .h3,
    .header-bg h3 {
        font-size: calc(1rem + .6vw)
    }
    .header-bg .py-5 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .profile button.btn {
        font-size: 0.8rem;
        padding: 6px
    }
    .profile button.btn.me-2 {
        margin-right: 2px!important
    }
}


/* Search Page */

.search-header {
    background: linear-gradient(to right, #61003f, #8f0052);
    color: white;
    padding: 40px 20px 30px;
    text-align: center;
    margin-top: 130px
}

.search-header h2 {
    font-weight: bold
}

.search-bar {
    max-width: 600px;
    margin: 20px auto
}

.search-bar input {
    border-radius: 50px 0 0 50px
}

.search-bar button {
    border-radius: 0 50px 50px 0;
    background-color: #8f0052;
    color: white;
    border: none
}

.filter-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto
}

.btn-search {
    background-color: #8f0052;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold
}

.btn-search:hover {
    background-color: #61003f
}

.more-filters {
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer
}


/*PRAMOD CSS*/

.custom-select-box {
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 10px 14px;
    cursor: pointer;
    background-color: #fff;
    font-weight: 500;
    color: #495057;
    min-width: 220px;
    position: relative;
    transition: background-color 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-select-box:hover {
    background-color: #f1f3f5;
}

.slider-container {
    display: none;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 999;
    width: 100%;
}

#ageSlider .noUi-target,
#ageSliderMobile .noUi-target,
#heightSliderMobile .noUi-target #heightSlider .noUi-target {
    height: 6px !important;
    background: #e9ecef !important;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

#ageSliderMobile .noUi-connect,
#heightSliderMobile .noUi-connect,
#ageSlider .noUi-connect,
#heightSlider .noUi-connect {
    height: 6px !important;
    background-color: #950053 !important;
    border-radius: 4px;
}

#ageSliderMobile .noUi-handle,
#heightSliderMobile .noUi-handle,
#ageSlider .noUi-handle,
#heightSlider .noUi-handle {
    height: 18px !important;
    width: 18px !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border: 2px solid #ffffff !important;
    background: #950053 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    cursor: grab;
    border-radius: 50%;
}

#ageSliderMobile .noUi-handle:before,
#heightSliderMobile .noUi-handle:before,
#ageSliderMobile .noUi-handle:after,
#heightSliderMobile .noUi-handle:after,
#ageSlider .noUi-handle:before,
#heightSlider .noUi-handle:before,
#ageSlider .noUi-handle:after,
#heightSlider .noUi-handle:after {
    display: none !important;
}

#ageSliderMobile .noUi-tooltip,
#heightSliderMobile .noUi-tooltip,
#ageSlider .noUi-tooltip,
#heightSlider .noUi-tooltip {
    display: none !important;
}

.slider-container {
    transition: all 0.3s ease;
}

.noUi-target {
    background: #e9ecef !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    height: 6px !important;
}


/*PRAMOD CSS END*/

.noUi-target {
    border-radius: 4px;
}


/*
 * Minimalist Button Theme
 * Overrides default Bootstrap button styles for a consistent look.
 */

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    background-color: #950053 !important;
    border-color: #950053 !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: none !important;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #950053 !important;
    border-color: #950053 !important;
}

.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #950053 !important;
    border-color: #950053 !important;
    border-radius: 8px;
    font-weight: 600;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: #950053 !important;
    color: white !important;
}


/* Remove the old, unused .lightHeader class and its rules */

.navbar-light .hamburger span {
    background-color: var(--black);
}

.mobile-canvas {
    background: linear-gradient(51deg, #fff0e3 43%, #fce4ef 100%);
    color: var(--black);
    padding: 10px 20px
}

.navbar-light .navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--dpink);
}