:root {
    --bs-accordion-btn-focus-border-color: #fe86ac;
    --bs-primary-bg-subtle: #1e1e1e;
    --bs-primary-text-emphasis: #fe6e94;
    --bs-body-bg: #181818;
    --bs-body-color: #e9e8e8;
    --bs-primary: #10a37f;
    --bs-secondary: #444654;
    --bs-border-color: #3f414e;
    --bs-card-bg: #444654;
    --bs-btn-bg: #10a37f;
    --bs-btn-color: #ffffff;
    --bs-input-bg: #40414f;
    --bs-input-color: #e9e8e8;
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --dark-color: #e6e6e6;
    --light-color: #1c1c1c;
}
[data-bs-theme=dark] .accordion-button::after {
    filter: invert(1)!important;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.navbar {
    background: rgb(36 36 36 / 95%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 560px) {
.navbar-brand img {
    height: 28px!important;
    max-width: 150px!important;
}
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.city-indicator {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.main-content {}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.4);
}

.footer {
    background: var(--light-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner-border {
    color: var(--primary-color);
}

.carousel-control-prev-icon {
    filter: invert(100%);
}

.carousel-control-next-icon {
    filter: invert(100%);
}

/*


======================================================================


*/


.profile-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px) scale(1.01);
}

.profile-image {
    width: 100%;
    height: auto;
}

@media (max-width: 560px) {
.card-img-top {
    height: 45vh!important;
    object-fit: cover;
}
}

.card-img-top {
    height: 50vh;
    object-fit: cover;
}

.tag-top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.tag-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.tag-top span {
    color: red;
}

.info-box {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.verified-label {
    font-size: 12px;
    color: white;
    background-color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}

.phone {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.status {
    font-size: 14px;
    color: white;
}