:root {
    --primary-color: #6b46c1;
    --secondary-color: #d53f8c;
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --light-purple: #f3e8ff;
    --dark-purple: #4a2b8a;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
}

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

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

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.bg-light-custom {
    background-color: var(--light-purple);
}
.bg-primary-gradient {
    background: var(--primary-gradient);
}

.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
    outline: none;
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.btn-outline-secondary {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 3px 10px rgba(107, 70, 193, 0.15);
    transform: translateY(-2px);
}

.btn-outline-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(107, 70, 193, 0.1);
}

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

/* .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
} */

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

.offcanvas-body .navbar-nav .nav-item:hover {
    background-color: var(--light-purple);
    border-color: var(--primary-color);
}

.navbar-nav .nav-link{
    font-weight: bold;
    font-size: 18px;
}

.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 */
.hero-section {
    background: url('https://cdn.pixabay.com/photo/2019/04/27/13/10/ramadan-4159961_960_720.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.9), rgba(213, 63, 140, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.search-form select {
    padding: 10px 15px;
}

.search-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    color: var(--text-color);
}

.search-button {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

/* Quote Section */
.quote-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.quote-container {
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(213, 63, 140, 0.05));
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    position: relative;
}

.quote-decoration-left,
.quote-decoration-right {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.quote-decoration-left {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2), rgba(107, 70, 193, 0.05));
    top: -50px;
    left: -50px;
}

.quote-decoration-right {
    background: linear-gradient(135deg, rgba(213, 63, 140, 0.05), rgba(213, 63, 140, 0.2));
    bottom: -50px;
    right: -50px;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.quote-symbol i {
    font-size: 2.5rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-source {
    display: inline-block;
    position: relative;
    padding-top: 15px;
}

.quote-source:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.quote-author {
    font-size: 1rem;
    color: #6c757d;
    font-style: italic;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .quote-container {
        padding: 40px 20px;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .quote-symbol {
        width: 60px;
        height: 60px;
    }

    .quote-symbol i {
        font-size: 2rem;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f6f0ff, #fce8f3);
    padding: 80px 0;
}

.stat-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    color: #fff;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.step-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
    background: linear-gradient(135deg, #f6f0ff, #fce8f3);
    color: var(--primary-color);
    font-size: 2rem;
}

/* Blog Section Styles */
.blog-section {
    background: linear-gradient(135deg, #f6f0ff, #fce8f3);
    padding: 80px 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.divider-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #6b46c1, #d53f8c, transparent);
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b46c1, #d53f8c);
    color: white;
    margin: 0 15px;
}

/* Blog Card Styles */
.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #6b46c1, #d53f8c);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-date i {
    margin-right: 5px;
    color: #6b46c1;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-read-more {
    display: flex;
    align-items: center;
    color: #6b46c1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #d53f8c;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* Blog Details Section */
.blog-details-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #6b46c1;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Blog Header */
.blog-header {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-meta {
    margin-bottom: 20px;
}

.blogdetails-category {
    display: inline-block;
    background: linear-gradient(135deg, #6b46c1, #d53f8c);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

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

.blog-info i {
    margin-right: 5px;
    color: #6b46c1;
}

.blogdetails-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-footer {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.blog-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-share .share-btn.facebook {
    background-color: #3b5998;
}

.blog-share .share-btn.twitter {
    background-color: #1da1f2;
}

.blog-share .share-btn.whatsapp {
    background-color: #25d366;
}

.blog-share .share-btn.copy {
    background-color: #6c757d;
}

.blog-share .share-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .divider-line {
        width: 60px;
    }

    .divider-icon {
        width: 35px;
        height: 35px;
    }
}

/* Footer */

/* Custom Dropdown Styling */
.customDropdown {
    position: relative;
    display: block;
    width: 100%;
}

.dropdown-trigger {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #495057;
}

/* Add a dropdown arrow */
.dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.dropdown-trigger.active::after {
    transform: rotate(-135deg);
}

.dropdown-trigger:hover,
.dropdown-trigger:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
    outline: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

/* Custom scrollbar for webkit browsers */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 8px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
}

.dropdown-content div {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content div:last-child {
    border-bottom: none;
}

.dropdown-content div:hover {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    color: var(--primary-color);
}

.dropdown-content .back {
    font-weight: bold;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
}

.dropdown-content .back::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-right: 10px;
}

/* Animation for dropdown opening */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

/* Active state for the dropdown trigger */
.dropdown-trigger.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
}


/* Login */
.register-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(213, 63, 140, 0.05));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.1);
    position: relative;
}

.register-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.register-card-header {
    padding: 40px 30px 20px;
}

.register-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

.register-title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.register-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

.register-card-body {
    padding: 20px 40px 40px;
}

.custom-input {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
}

.form-floating>.custom-input {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.gender-select {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
}

.gender-label {
    display: block;
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.gender-options {
    display: flex;
    gap: 15px;
}

.gender-option {
    flex: 1;
    margin: 0;
    cursor: pointer;
}

.gender-option input {
    display: none;
}

.gender-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gender-option input:checked+.gender-option-inner {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
}

.gender-option i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
}

.register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.register-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.register-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .register-card-body {
        padding: 20px 20px 30px;
    }

    .register-title {
        font-size: 1.5rem;
    }

    .register-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Biodatas */
.biodatas-section {
    background-color: var(--light-bg);
    min-height: 100vh;
}

.filter-sidebar {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.filter-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 15px 20px;
}

.filter-header h3 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.custom-accordion .accordion-button {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--text-color);
    background-color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f8f0ff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b46c1' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-accordion .accordion-body {
    padding: 15px 20px;
}

/* Form Element Styles */
.filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.custom-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.custom-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
}

/* Range Slider Styles */
.range-slider-container {
    padding: 10px 0;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.range-slider {
    position: relative;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    margin: 20px 0;
}

.range-track {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    z-index: 2;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

/* Custom Checkbox Styles */
.custom-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkbox-label {
    position: relative;
    padding-left: 28px;
    line-height: 20px;
}

.checkbox-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked+.checkbox-label:before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input:checked+.checkbox-label:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    padding: 20px;
    background-color: #fff;
}

.btn-filter-search {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-filter-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
}

.btn-filter-reset {
    flex: 1;
    padding: 12px;
    background-color: var(--light-bg);
    color: #6c757d;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-filter-reset:hover {
    background-color: #e9ecef;
    color: #495057;
}

/* Biodatas Container Styles */
.biodatas-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.biodatas-header {
    text-align: center;
    margin-bottom: 30px;
}

.biodatas-header h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.biodatas-header p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Biodatas Grid */
.biodatas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Biodata Card Styles */
.biodata-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.biodata-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.1);
    border-color: var(--primary-color);
}

.biodata-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.biodata-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.biodata-avatar.male {
    color: #4a6cf7;
}

.biodata-avatar.female {
    color: var(--secondary-color);
}

.biodata-avatar img {
    max-width: 50px;
}

.biodata-id {
    flex: 1;
}

.biodata-id span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.biodata-id h3 {
    font-size: 1rem;
    margin: 0;
}

.biodata-favorite {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.biodata-favorite:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

.biodata-card-body {
    padding: 20px;
}

.biodata-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-color);
}

.biodata-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.biodata-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
    color: #fff;
}

.biodata-view-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.biodata-view-btn:hover i {
    transform: translateX(5px);
}

/* Pagination Styles */
.biodatas-pagination {
    margin-top: 30px;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: #e2e8f0;
    padding: 8px 16px;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .biodatas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* biodata details page */
.biodata-details-section {
    background-color: var(--light-bg);
    min-height: 100vh;
}

/* Profile Sidebar Styles */
.profile-sidebar {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.dashboard-profile-header {
    background-color: var(--light-purple) !important;
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar.male {
    color: #4a6cf7;
}

.profile-avatar.female {
    color: var(--secondary-color);
}

.profile-avatar img {
    max-width: 60px;
}

.biodata-number {
    text-align: center;
}

.biodata-number span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.biodata-number h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

/* Profile Info List */
.profile-info-list {
    padding: 20px;
}

.profile-info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.info-value {
    font-weight: 600;
    color: var(--text-color);
}

/* Profile Actions */
.profile-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.shortlist-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.shortlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
}

.share-btn {
    background-color: var(--light-bg);
    color: #6c757d;
    border: 1px solid #e2e8f0;
}

.share-btn:hover {
    background-color: #e9ecef;
    color: #495057;
}

.action-btn i {
    margin-right: 8px;
}

/* Tab Navigation Styles */
.biodata-tabs {
    margin-bottom: 20px;
    overflow-x: auto;
}

.biodata-tabs .nav-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 5px;
}

.biodata-tabs .nav-item {
    flex: 0 0 auto;
}

.biodata-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    color: #6c757d;
    background-color: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.biodata-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Biodata Card Styles */
.biodata-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.biodata-card-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.biodata-card-header h3 {
    margin: 0;
    color: var(--light-purple);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.biodata-card-header h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.biodata-card-body {
    padding: 20px;
}

/* Info Table Styles */
.info-table {
    width: 100%;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-cell {
    padding: 0 10px;
}

.info-title {
    flex: 0 0 40%;
    font-weight: 600;
    color: #6c757d;
}

/* Education History Styles */
.education-history {
    margin-top: 20px;
}

.education-history h4 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background-color: var(--light-bg);
    color: #6c757d;
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.custom-table td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
}

.custom-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* Contact Info Styles */
.contact-info-locked {
    text-align: center;
    padding: 30px 20px;
}

.lock-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.contact-info-locked h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-locked p {
    color: #6c757d;
    margin-bottom: 25px;
}

.unlock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
}

.unlock-btn i {
    margin-right: 8px;
}

.login-prompt {
    margin-top: 20px;
}

.login-prompt p {
    color: #6c757d;
    margin-bottom: 10px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--light-bg);
    color: #6c757d;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #e9ecef;
    color: #495057;
}

.login-btn i {
    margin-right: 8px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-btn:active {
    transform: translateY(0);
}

.youtube-btn{
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.google-btn,
.youtube-btn,
.email-btn {
    background-color: #fff !important;
    color: #333;
}

.google-btn:hover,
.youtube-btn:hover,
.email-btn:hover {
    background-color: var(--light-bg);
}

.create-account-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.create-account-btn:hover {
    background: linear-gradient(135deg, #5a3ca6, #c43679);
}

.btn-icon,
.auth-btn i {
    margin-right: 12px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.account-status {
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .info-row {
        flex-direction: column;
    }

    .info-title {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .biodata-tabs .nav-link {
        padding: 8px 12px;
    }

    .biodata-tabs .nav-link i {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .biodata-tabs .nav-link span {
        font-size: 0.8rem;
    }
}

/* dashboard */

/* Dashboard Section */
.dashboard-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    position: sticky;
    top: 20px;
}

/* Profile Card */
.profile-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-header {
    background: linear-gradient(135deg, #6b46c1, #d53f8c);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

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

.profile-name {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-actions {
    padding: 20px;
}

.complete-biodata-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.complete-biodata-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    color: white;
}

.complete-biodata-btn i {
    margin-right: 8px;
}

/* Sidebar Menu */
.sidebar-menu {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-link:hover {
    background-color: #f8f9fa;
    color: #6b46c1;
}

.menu-item.active .menu-link {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    color: #6b46c1;
    border-right: 3px solid #6b46c1;
}

.menu-link i {
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Dashboard Header */
.dashboard-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-header p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Dashboard Cards */
.dashboard-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.1);
}

.dashboard-cards .card-header {
    display: flex;
    align-items: center;
    padding: 20px 20px 10px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.card-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
}

.card-body {
    padding: 10px 20px 20px;
}

/* Connection Card */
.connection-card .card-icon {
    background: linear-gradient(135deg, #6b46c1, #d53f8c);
    color: white;
}

.connection-count {
    text-align: center;
    margin-bottom: 15px;
}

.count-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b46c1;
}

.count-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.connection-info {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 15px;
}

.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.purchase-btn i {
    margin-right: 8px;
}

/* Views Card */
.views-card .card-icon {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
}

.view-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: #2c3e50;
}

/* Shortlisted Card */
.shortlisted-card .card-icon {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.shortlisted-count {
    text-align: center;
}

/* My Shortlist Card */
.my-shortlist-card .card-icon {
    background: linear-gradient(135deg, #e83e8c, #fd7e14);
    color: white;
}

.my-shortlist-count {
    text-align: center;
    margin-bottom: 15px;
}

.view-list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b46c1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-list-btn:hover {
    color: #d53f8c;
}

.view-list-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-list-btn:hover i {
    transform: translateX(5px);
}

/* Purchases Card */
.purchases-card .card-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

.purchases-count {
    text-align: center;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .dashboard-header h2 {
        font-size: 1.8rem;
    }

    .dashboard-cards .card-header {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}


/* Status Badge Styling */
.status-container {
    display: inline-block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: none;
}

/* Published = Emerald */
.status-badge.published {
    background-color: #34D399; /* medium green */
    color: #ffffff;
}

/* Pending = Amber */
.status-badge.pending, .status-badge.archived {
    background-color: #FBBF24; /* amber */
    color: #ffffff;
}

/* Rejected = Rose */
.status-badge.rejected {
    background-color: #F87171; /* soft red */
    color: #ffffff;
}

/* Incomplete = Cool Gray */
.status-badge.incomplete {
    background-color: #9CA3AF; /* gray */
    color: #ffffff;
}

/* Step Progress Styling */
.pill-step-tracker {
    padding: 1rem;
    background-color: #f4f1fc;
    border-radius: 10px;
}

.pill-step {
    background-color: #e0e0e0;
    color: #555;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.pill-step.active {
    background-color: var(--secondary-color);
    color: #fff;
}

.pill-step.completed {
    background-color: var(--dark-purple);
    color: #fff;
}

.step-check {
    display: inline-block;
}
.pill-step:not(.completed) .step-check {
    display: none;
}


/* View Button Styling */
.view-biodata-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
}

.view-biodata-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    color: white;
}

/* Form Card Styling */
.biodata-form-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 30px;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background-color: rgba(107, 70, 193, 0.05);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background-color: rgba(213, 63, 140, 0.05);
    bottom: 50px;
    left: -30px;
}

.circle-3 {
    width: 70px;
    height: 70px;
    background-color: rgba(107, 70, 193, 0.05);
    bottom: -20px;
    right: 100px;
}

/* Card Header Styling */
.biodata-form-header {
    background: var(--primary-gradient);
    padding: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

/* Card Body Styling */
.biodata-form-body {
    padding: 30px;
    position: relative;
    min-height: 400px;
}

/* Custom Loader Styling */
.custom-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-items: center;
    z-index: 10;
}

.loader-spinner {
    display: flex;
    gap: 10px;
}

.loader-spinner .spinner-grow {
    width: 15px;
    height: 15px;
}

.loader-spinner .spinner-grow.text-primary {
    background-color: var(--primary-color);
}

.loader-spinner .spinner-grow.text-secondary {
    background-color: var(--secondary-color);
}

.loader-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Form Footer Styling */
.biodata-form-footer {
    padding: 20px 30px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Navigation Buttons */
.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.prev-btn {
    background-color: #e2e8f0;
    color: var(--text-color);
}

.prev-btn:hover:not(:disabled) {
    background-color: #cbd5e1;
}

.next-btn {
    background: var(--primary-gradient);
    color: white;
}

.next-btn:hover {
    opacity: 0.9;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form Styling - These will apply to the AJAX loaded form */
.biodata-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.biodata-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.biodata-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
}

.biodata-form .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.biodata-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .biodata-header {
        text-align: center;
    }

    .status-container,
    .step-progress-container {
        margin-bottom: 15px;
    }

    .biodata-form-body {
        padding: 20px 15px;
    }
}

.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;
}

@media (min-width: 768px) {

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

/* Footer Styles */
.footer-section {
    background-color: #2c3e50;
    color: #fff;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 20px;
    }
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}