@font-face {
    font-family: 'SolaimanLipi';
    src: url('/assets/SolaimanLipi.ttf') format('truetype');
}

:root{
    --primary-custom: #FF4484;
    --secondary-custom: #4B477C;
}

* {
    font-family: 'SolaimanLipi', sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.bg-light-custom {
    background-color: #FDEBE0;
}

.text-primary-custom {
    color: var(--primary-custom);
}

.text-secondary-custom {
    color: var(--secondary-custom);
}

.btn-primary-custom {
    background-color: var(--primary-custom);
    border-color: var(--primary-custom);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-custom);
    border-color: var(--secondary-custom);
}

.btn-secondary-custom {
    background-color: var(--secondary-custom);
    border-color: var(--secondary-custom);
}

.btn-secondary-custom:hover {
    background-color: #212529;
    border-color: #212529;
}

button:focus,
.btn:focus {
    outline: none !important;
}

.btn-primary-custom:focus{
    background-color: var(--secondary-custom) !important;
    border-color: var(--secondary-custom) !important;
}

.btn-secondary-custom:focus{
    background-color: #212529 !important;
    border-color: #212529 !important;
}

.offcanvas-body .navbar-nav .nav-item {
    padding-left: 10px;
    border-left: 3px solid #FFFFFF;
}

.offcanvas-body .navbar-nav .nav-item:hover {
    background-color: #FDEBE0;
    border-color: var(--primary-custom);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
}

.bottom-nav .nav-link i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-section {
    height: 100vh;
    background-image: url('https://cdn.pixabay.com/photo/2017/09/26/10/38/wedding-2788214_1280.jpg');
    /* Set the background image path */
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    width: 70%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.search-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.search-form label {
    font-size: 18px;
    color: #333;
}

.search-form .form-select:focus {
    outline: none;
    box-shadow: none;
}

.search-button {
    background-color: #FF4D8D;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #FF3377;
}

.search-icon {
    margin-right: 5px;
}

.blockquote {
    font-style: italic;
    padding-left: 6em;
    padding-right: 6em;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* .dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
} */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #333;
    width: 100%;
    height: 280px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-content div {
    padding: 8px;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: #ddd;
}

.dropdown-content .back {
    font-weight: bold;
    cursor: pointer;
}

.dropdown-trigger {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content .dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-content .dropdown-option:hover {
    background-color: #f1f1f1;
}

/* Login */

.auth_card {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: solid var(--secondary-custom);
    width: 40%;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: #FF3377;
}

/* Biodatas */

.noUi-connect {
    background: var(--secondary-custom) !important;
}

.noUi-tooltip {
    font-size: 12px !important;
}

.biodata-card {
    border-radius: 5px;
    transition: all .292s ease 0s;
    width: 100%;
}

.biodata-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    transition: box-shadow 0.2s ease;
}

#biodataDetails .biodata-card:hover {
    box-shadow: none;
}

.table-equal tbody th, td{
    width: 50%;
}

.biodata-card a {
    color: #f1f1f1;
    text-decoration: none;
}

.biodata-card .head {
    background: var(--secondary-custom);
    text-align: center;
    padding: 20px 0 15px;
    border: 1px solid var(--secondary-custom);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
}

.biodata-shortlisted-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    font-size: 20px;
}

.biodata-card .head img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
    /* White background */
    padding: 5px;
    /* Add padding to create a border space */
    border: 2px solid var(--secondary-custom);
    /* Circular border */
}

.pagination{
    --bs-pagination-color: var(--secondary-custom);
    --bs-pagination-focus-color: #FF3377;
    --bs-pagination-focus-border-color: #FF3377;
    --bs-pagination-active-bg: #FF3377;
    --bs-pagination-active-border-color: #FF3377;
}

#biodataDetails .biodata-card .head img {
    max-width: 120px;
    padding: 3px;
}

.biodata-card .head h2 {
    color: #fff;
    font-size: 1.3rem;
    margin: 15px 0 2px;
    font-weight: 400;
}

.biodata-card .body {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    padding: 20px 20px 25px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

#biodataDetails .biodata-card .body {
    background-color: var(--secondary-custom);
    border: 1px solid var(--secondary-custom);
    color: #fff;
}

.biodata-card .body .each-item:first-child {
    border-top: 1px solid #d5d5d5;
}

.biodata-card .body .each-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #d5d5d5;
}

.biodata-card .body .each-item label {
    border-right: 1px solid #d5d5d5;
}

.biodata-card .body .each-item label,
.biodata-card .body .each-item p {
    flex: 0 0 50%;
    text-align: center;
    padding: 5px;
    margin: 0;
    font-size: 14px;
}

#biodataDetails .biodata-card .body .each-item label {
    font-size: 16px;
    font-weight: bold;
}

#biodataDetails .biodata-card .body .each-item p {
    font-size: 16px;
}

#biodataDetails .biodata-card .body .each-item {
    border-top: 1px solid #d5d5d5;
}

#biodataDetails .card {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: solid var(--secondary-custom);
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
    outline: none;
}

.accordion-button:not(.collapsed) {
    background-color: #FF3377;
    color: #fff;
}

/* dashboard */
.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}
.icon-md {
    height: 2.5rem;
    line-height: 2.5rem;
    width: 2.5rem;
}
.bg-light-primary {
    background-color: #e0dcfe !important;
}


#loader {
    display: none; /* Hide loader by default */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Show loader and disable content when .loading is added */
.card-body.loading #loader {
    display: flex;
}

.card-body.loading form {
    opacity: 0.5;
    pointer-events: none;
}
/* Responsive Styles */
@media(max-width: 768px) {
    .hero-content {
        padding-top: 40px;
        width: 90%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-form .col-md-3,
    .hero-form .col-md-2 {
        max-width: 100%;
    }

    .blockquote {
        padding-left: 0;
        padding-right: 0;
    }

    .flower-icon {
        display: none;
    }

    .search-form {
        flex-wrap: wrap;
        padding: 40px 20px 40px 20px;
    }

    .search-button {
        border-radius: 30px;
        padding: 7px 15px;
        font-size: 15px;
        margin-left: 10px;
    }

    .auth_card {
        width: 100%;
    }
}

@media (min-width: 768px) {

    .bottom-nav,
    .navbar-toggler {
        display: none;
    }
}