@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.maateen.me/solaiman-lipi/font.css');

:root {
    --primary-maroon: #83283B;
    --light-maroon: #f5e6e8;
    --text-dark: #333333;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
input,
select,
textarea,
button {
    font-family: 'SolaimanLipi', 'Inter', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'SolaimanLipi', 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999999;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-maroon);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Notice Bar */
.notice-bar {
    background: #f2edf0;
    /* Precisely requested light pinkish-grey */
    color: #4a5568;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f2e1e1;
    font-family: 'SolaimanLipi', sans-serif;
}

.notice-badge {
    background: var(--primary-maroon);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px -1px rgba(139, 46, 62, 0.2);
    flex-shrink: 0;
}

.notice-badge i {
    animation: bellBounce 0.8s ease-in-out infinite;
}

@keyframes bellBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-weight: 500;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* Hero Section */
.hero-section {
    padding: 40px 5%;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.hero-profiles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-img-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-img-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.profile-img-circle:hover {
    transform: scale(1.05);
}

.profile-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-btn {
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-maroon);
    background: transparent;
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    min-width: 160px;
    transition: var(--transition);
}

.pill-btn:hover {
    background: var(--primary-maroon);
    color: var(--white);
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    box-shadow: none;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    outline: none;
    font-size: 1rem;
    font-family: 'SolaimanLipi', sans-serif;
}

.search-btn {
    background: var(--primary-maroon);
    color: var(--white);
    border: none;
    padding: 0 40px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.search-btn:hover {
    background: #6b2430;
}

.reg-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reg-info strong {
    color: var(--primary-maroon);
}

/* Info Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    max-width: 1200px;
    margin: 15px auto 40px;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.info-card {
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-right: 1px solid #edf2f7;
    text-align: left;
}

.info-card:last-child {
    border-right: none;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    /* Royal Blue */
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #2d3748;
}

.info-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #718096;
    margin: 0;
    font-family: 'SolaimanLipi', sans-serif;
}

/* Section Headlines */
.section-header {
    padding: 40px 8% 20px;
}

.headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.headline h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary-maroon);
}

.view-all {
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.subheadline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Profile Suggestions Carousel */
.slider-container {
    position: relative;
    padding: 20px 8%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.member-card {
    background: var(--white);
    padding: 25px 15px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: none;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-id-top {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    display: block;
}

.member-img-circle {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f8f8;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.member-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-stats-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 700;
}

.stats-heart {
    transition: var(--transition);
}

.stats-heart:hover {
    transform: scale(1.1);
}

.stats-heart i {
    color: #cbd5e1; /* Grey for unliked */
    transition: all 0.3s ease;
}

.stats-heart.liked i {
    color: #ff4d4d; /* Red for liked */
}

.stats-heart:active {
    transform: scale(0.9);
}

.member-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    font-size: 0.85rem;
    gap: 8px 12px;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #4a5568;
    font-family: 'SolaimanLipi', sans-serif;
    line-height: 1.4;
}

.dot {
    width: 8px;
    height: 8px;
    background: #fbcfe8;
    /* Light pink dot */
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px; /* Aligns with the first line of text */
}

.detail-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #f5ecef;
    border: none;
    color: var(--primary-maroon);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'SolaimanLipi', sans-serif;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 46, 62, 0.1);
}

.member-card:hover .detail-btn {
    background: var(--primary-maroon);
    color: var(--white);
}

/* Urgent Post Grid */
.urgent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px 8%;
}

.urgent-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.urgent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--light-maroon);
}

.urgent-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.urgent-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.urgent-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.req-box {
    margin-top: 20px;
    background: #fdf5f6;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px dashed #efd3d7;
}

.req-label {
    color: var(--primary-maroon);
    font-weight: 700;
    margin-bottom: 5px;
}

.whatsapp-float {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    color: #25D366;
    font-size: 1.5rem;
}

/* Video Cards */
.video-card {
    min-width: 320px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-overlay {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-overlay:hover {
    transform: scale(1.1);
    background: var(--white);
}

.video-footer {
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Promotion Card Styles */
.promo-item-card {
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.promo-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.promo-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f8fafc;
}

.promo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-content {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f8fafc;
}

.promo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-tag {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promo-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.promo-action {
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Office Card */
.office-card {
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.office-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
}

.office-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-footer {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    border-top: 1px solid #f8fafc;
    background: #fff;
}

/* Success Card */
.success-card {
    min-width: 220px;
    height: 400px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    overflow: hidden;
    position: relative;
}

.success-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 8%;
}

.accordion-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

/* Benefit Section */
.benefit-progress-bar {
    width: 200px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-progress-fill {
    height: 100%;
    background: #10b981;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.benefit-percentage {
    background: #d1fae5;
    color: #065f46;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.section-container {
    padding: 20px 8%;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-card-item {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .benefit-card-item {
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .benefit-card-item {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .benefit-card-item {
        max-width: 100%;
        min-width: 100%;
    }
}

.benefit-card-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #e2e8f0;
}

.benefit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.benefit-card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.4;
}

.benefit-card-tag {
    background: #fff1f2;
    color: #be123c;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.benefit-card-line {
    width: 40px;
    height: 4px;
    background: var(--primary-maroon);
    border-radius: 10px;
}

.accordion-header:hover {
    background: #edf2f7;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    padding: 15px 25px;
    max-height: 200px;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Guidelines Box */
.guideline-box {
    margin: 20px 8%;
    background: #f1f3f5;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    line-height: 1.8;
    position: relative;
    border: 1px solid #e9ecef;
}

.guide-num {
    background: var(--white);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-maroon);
    box-shadow: var(--shadow-sm);
}

.guide-text {
    font-size: 0.9rem;
    color: #444;
}

/* Progress Section */
.progress-section {
    padding: 40px 8%;
}

.progress-header-text {
    margin-bottom: 20px;
}

.progress-bar-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.bar-bg {
    flex: 1;
    height: 12px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #00c853;
    width: 10%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.percent-badge {
    background: #e6fffa;
    color: #00c853;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #b2f5ea;
}

/* Service Cards */
.services-section {
    padding: 20px 8% 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    color: var(--primary-maroon);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    transition: all 0.5s ease;
}

.service-description.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-toggle-btn {
    background: transparent;
    border: none;
    color: var(--primary-maroon);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: var(--transition);
}

.service-toggle-btn i {
    transition: transform 0.3s ease;
}

.service-toggle-btn.expanded i {
    transform: rotate(180deg);
}

.service-link {
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* Extended Footer */
.main-footer {
    background: #4a0b12;
    /* Deep Maroon */
    color: #e2e8f0;
    padding: 60px 10% 0px;
    font-family: 'SolaimanLipi', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-address {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e0;
    font-size: 0.85rem;
}

.footer-address i {
    margin-top: 4px;
}

.menu-columns {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #cbd5e0;
    font-family: 'Hind Siliguri', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.contact-item i {
    color: #cbd5e0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    /* Translucent circles */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary-maroon);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.85rem;
    color: #cbd5e0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.small-chips {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.chip {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 240px;
    transition: var(--transition);
}

.chip:hover {
    box-shadow: var(--shadow-md);
}

.chip-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chip-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
}

.chip-underline {
    width: 45px;
    height: 4px;
    background: #b83b4d;
    border-radius: 2px;
}

.chip-badge {
    background: #fdf2f2;
    color: #b83b4d;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Side Drawer */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2147483646;
    /* One less than max possible to stay above header */
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2147483647;
    /* Max possible z-index */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.menu-drawer.open {
    right: 0;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.drawer-list {
    list-style: none;
}

.drawer-item {
    margin: 5px 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    font-family: 'Hind Siliguri', sans-serif;
}

.drawer-item i {
    width: 20px;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.drawer-item::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    font-size: 0.8rem;
    color: var(--primary-maroon);
}

.drawer-item:hover {
    background: #fdf2f2;
    color: var(--primary-maroon);
}

.drawer-item:hover i {
    color: var(--primary-maroon);
}

.drawer-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.drawer-footer {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.drawer-social a {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.drawer-social a:hover {
    color: var(--primary-maroon);
}

.drawer-copy {
    font-size: 0.75rem;
    color: #94a3b8;
}


.drawer-highlight {
    background: #f7fafc;
    margin: 5px 25px;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--primary-maroon);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Hind Siliguri', sans-serif;
}

.drawer-divider {
    height: 1px;
    background: #edf2f7;
    margin: 25px 30px;
}

.drawer-section-title {
    padding: 0 40px 15px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #a0aec0;
    font-family: 'Hind Siliguri', sans-serif;
}

.drawer-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px;
    margin-bottom: 5px;
    text-align: left;
}

.drawer-contact-icon {
    width: 45px;
    height: 45px;
    background: #f7e6e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    font-size: 1.1rem;
}

.drawer-contact-info h5 {
    font-size: 0.9rem;
    margin: 0;
    color: #444;
}

.drawer-contact-info p {
    font-size: 0.8rem;
    margin: 0;
    color: #718096;
}

/* responsive */
@media (max-width: 768px) {
    .hero-profiles {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .profile-card {
        flex: 1;
        min-width: 0;
    }

    .profile-img-circle {
        width: 100px;
        height: 100px;
    }

    .pill-btn {
        padding: 8px 10px;
        font-size: 0.85rem;
        min-width: unset;
    }

    .hero-section {
        padding: 30px 4%;
    }

    .reg-info {
        padding: 0 10px;
        font-size: 0.85rem;
    }

    .search-container {
        margin: 25px auto;
        border-radius: 12px;
        width: 95%;
    }

    .search-input {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .search-btn {
        padding: 0 12px;
        font-size: 0.85rem;
        gap: 4px;
    }

    .search-btn i {
        font-size: 0.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        margin: 15px 5% 30px;
        border-radius: 15px;
    }

    .info-card {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
        padding: 20px;
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .section-header {
        padding: 25px 5% 15px;
    }

    .headline h2 {
        font-size: 0.9rem;
        gap: 6px;
        white-space: nowrap;
    }

    .headline h2 i {
        font-size: 0.9rem;
    }

    .view-all {
        font-size: 0.75rem;
    }

    .subheadline {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .urgent-grid {
        grid-template-columns: 1fr;
        padding: 15px 5%;
    }

    .urgent-card {
        padding: 20px;
    }

    .urgent-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .urgent-body .meta-item {
        font-size: 0.7rem;
    }

    .card-id-top {
        font-size: 0.8rem;
    }

    .member-meta {
        font-size: 0.75rem;
        gap: 5px 8px;
    }

    .card-stats-row {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .detail-btn {
        font-size: 0.85rem;
        padding: 10px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Global Mobile Font Reduction */
    body {
        font-size: 0.9rem;
    }

    /* Profile Modal Mobile Adjustments */
    .modal-id-top {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .modal-avatar-circle {
        width: 90px !important;
        height: 90px !important;
        margin-bottom: 15px !important;
        border-width: 3px !important;
    }

    .modal-divider {
        font-size: 0.9rem !important;
        margin: 15px 0 8px !important;
    }

    .modal-info-grid {
        gap: 2px 8px !important;
    }

    .info-item {
        margin-bottom: 5px !important;
    }

    .info-label {
        font-size: 0.75rem !important;
        margin-bottom: -2px !important;
        gap: 4px !important;
    }

    .info-label::before {
        width: 6px !important;
        height: 6px !important;
    }

    .info-value {
        font-size: 0.72rem !important;
        padding-left: 10px !important;
        margin-top: 0 !important;
        line-height: 1.2 !important;
    }

    .modal-arrow {
        width: 32px !important;
        height: 32px !important;
    }

    .btn-modal-more {
        font-size: 0.95rem !important;
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .headline h2 {
        font-size: 1rem;
    }

    .modal-info-grid {
        gap: 2px 5px !important;
    }

    .info-label {
        font-size: 0.7rem !important;
        letter-spacing: -0.2px;
    }

    .info-value {
        font-size: 0.68rem !important;
    }

    .btn-modal-more {
        font-size: 0.85rem !important;
        margin-top: 10px !important;
    }
}

.video-card {
    min-width: 280px;
}
}

/* Brides Page Styles */
.brides-hero {
    padding: 60px 10%;
    text-align: center;
    background: #fff;
    font-family: 'Hind Siliguri', sans-serif;
}

.brides-avatar {
    width: 80px;
    height: 80px;
    background: #fdf2f2;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brides-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #2d3748;
}

.whatsapp-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.brides-search-wrap {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-label {
    background: #fdf2f2;
    display: inline-block;
    padding: 2px 15px;
    border-radius: 50px;
    color: #8b2e3e;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.brides-search-box {
    display: flex;
    border: 1.5px solid #8b2e3e;
    border-radius: 50px;
    padding: 4px;
    overflow: hidden;
}

.brides-search-box input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Hind Siliguri', sans-serif;
}

.brides-search-box button {
    background: #8b2e3e;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

.daily-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b2e3e;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cat-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cat-item {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.cat-item.active {
    color: #8b2e3e;
    border-bottom-color: #8b2e3e;
}

/* Filter Cards */
.filter-box-section {
    padding: 0 10% 40px;
    font-family: 'Hind Siliguri', sans-serif;
}

.filter-card {
    background: #f9f6f7;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.filter-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
}

.filter-tip {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.filter-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 2px;
    border-bottom: 2.5px solid transparent;
}

.filter-links a.active {
    color: #8b2e3e;
    border-bottom-color: #8b2e3e;
}

/* Listing Utility */
.listing-utility {
    padding: 40px 10% 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Hind Siliguri', sans-serif;
}

.filter-toggle-btn {
    border: 1.5px solid #8b2e3e;
    color: #8b2e3e;
    padding: 5px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.listing-count {
    color: #718096;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Brides Grid */
.brides-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 10% 80px;
    justify-content: center;
}

.brides-grid .member-card {
    min-width: 220px;
    max-width: 240px;
    padding: 15px 12px 12px;
}

.slider-container .member-card {
    min-width: calc((100% - (20px * 6)) / 6.5);
    flex: 0 0 auto;
}

@media (max-width: 1400px) {
    .slider-container .member-card {
        min-width: calc((100% - (15px * 4)) / 4.5);
    }
}

@media (max-width: 1000px) {
    .slider-container .member-card {
        min-width: calc((100% - (15px * 2)) / 2.5);
    }
}

@media (max-width: 768px) {

    .slider-container .member-card,
    .slider-container .urgent-card {
        min-width: 83.3% !important;
        flex: 0 0 83.3% !important;
        max-width: 83.3% !important;
    }

    .slider-wrapper {
        padding: 0 !important;
    }

    .slider-container {
        gap: 15px !important;
        padding: 10px 15px !important;
        display: flex !important;
        overflow-x: auto !important;
    }
}


/* Urgent Post Slider Card Widths (Desktop/Large Screens) */
.slider-container .urgent-card {
    min-width: calc((100% - (20px * 4)) / 4.5);
    flex: 0 0 auto;
    margin: 0;
}

@media (max-width: 1550px) {
    .slider-container .urgent-card {
        min-width: calc((100% - (15px * 3)) / 3.5);
    }
}

@media (max-width: 1100px) {
    .slider-container .urgent-card {
        min-width: calc((100% - (15px * 2)) / 2.5);
    }
}

.member-id-tag {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.brides-grid .member-img-circle {
    width: 100px;
    height: 100px;
}

.brides-grid .member-meta {
    gap: 5px 8px;
    margin-bottom: 15px;
}

.brides-grid .meta-item {
    font-size: 0.75rem;
}

.brides-grid .detail-btn {
    padding: 8px;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .brides-hero {
        padding: 40px 5%;
    }

    .listing-utility {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .brides-grid {
        padding: 20px 5% 50px;
    }
}

/* ==========================================================================
   Profile Modal Styles
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.profile-modal {
    background: var(--white);
    width: 95%;
    max-width: 550px;
    max-height: 95vh;
    border-radius: 35px;
    position: relative;
    padding: 30px 25px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scrollbar-width: none;
}

.profile-modal::-webkit-scrollbar {
    display: none;
}

.modal-overlay.show .profile-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-maroon);
    transform: rotate(90deg);
}

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.modal-arrow:hover {
    background: var(--primary-maroon);
    color: #fff;
    border-color: var(--primary-maroon);
}

.modal-arrow-left {
    left: calc(50% - 325px);
}

.modal-arrow-right {
    right: calc(50% - 325px);
}

@media (max-width: 680px) {
    .modal-arrow {
        width: 38px;
        height: 38px;
    }

    .modal-arrow-left {
        left: 10px;
    }

    .modal-arrow-right {
        right: 10px;
    }
}

.modal-arrow.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-id-top {
    text-align: center;
    font-weight: 800;
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-family: 'Hind Siliguri', sans-serif;
}

.modal-step {
    display: none;
    animation: slideUpFade 0.5s ease backwards;
}

.modal-step.active {
    display: block;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-avatar-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: radial-gradient(circle, rgba(231, 76, 116, 0.12) 0%, rgba(255, 255, 255, 1) 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blur-profile {
    filter: blur(12px) !important;
    pointer-events: none;
    user-select: none;
}

.modal-divider {
    color: #1a202c;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 25px 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Hind Siliguri', sans-serif;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    padding: 0 5px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    font-family: 'Hind Siliguri', sans-serif;
}

.info-item.full {
    grid-column: span 2;
}

.info-label {
    color: #1a202c;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
}

.info-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fbcfe8;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-value {
    color: #718096;
    font-weight: 500;
    font-size: 0.9rem;
    padding-left: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.modal-contact-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.contact-icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon-circle.whatsapp {
    background: #25D366;
}

.contact-icon-circle.messenger {
    background: #0084FF;
}

.contact-icon-circle.imo {
    background: #ffffff;
    border: 1px solid #eee;
}

.contact-icon-circle.imo img {
    width: 30px;
}

.contact-icon-circle.telegram {
    background: #0088cc;
}

.contact-icon-circle.phone {
    background: #4b5563;
}

.contact-icon-circle.email {
    background: #ffffff;
    border: 1px solid #eee;
    color: #718096 !important;
}

.modal-notice-text {
    text-align: center;
    background: #fff5f5;
    color: #c53030;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px dashed #feb2b2;
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.6;
}

.modal-footer-action {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn-modal-more {
    background: transparent;
    color: #83283b;
    border: none;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: 'Hind Siliguri', sans-serif;
}

.btn-modal-more i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-modal-more:hover {
    color: #6b2430;
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .profile-modal {
        padding: 30px 15px 20px;
        border-radius: 25px;
    }

    .modal-id-top {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .modal-divider {
        font-size: 0.95rem;
        margin: 15px 0 10px;
        gap: 10px;
    }

    .modal-info-grid {
        gap: 2px 12px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.75rem;
        padding-left: 12px;
    }

    .btn-modal-more {
        font-size: 0.95rem;
        padding: 8px 15px;
    }

    .modal-avatar-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .modal-notice-text {
        font-size: 0.75rem;
        padding: 10px;
    }

    .contact-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Login Page Styles */
.login-page-bg {
    background: #f8fafc;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Hind Siliguri', sans-serif;
}

.login-card {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
}

.login-type-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.login-type-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    font-size: 0.95rem;
}

.login-type-radio input {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: #8b2e3e;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.login-type-radio input:checked+.radio-mark {
    border-color: #8b2e3e;
}

.login-type-radio input:checked+.radio-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

.login-type-radio input:checked~span:last-child {
    color: #1e293b;
    font-weight: 700;
}

.login-form-group {
    text-align: left;
    margin-bottom: 25px;
}

.login-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.login-input-with-icon {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 2px 15px;
    transition: var(--transition);
    background: #f8fafc;
}

.login-input-with-icon:focus-within {
    border-color: #8b2e3e;
    background: #fff;
}

.login-input-with-icon input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    outline: none;
    font-size: 0.95rem;
    color: #1e293b;
    font-family: inherit;
}

.country-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
}

.login-submit-btn {
    width: 100%;
    background: #8b2e3e;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 46, 62, 0.2);
    transition: var(--transition);
}

.login-submit-btn:hover {
    background: #6b2430;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 46, 62, 0.3);
}

.login-footer-links {
    margin-top: 25px;
}

.forgot-pass {
    display: block;
    color: #8b2e3e;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.register-link {
    color: #8b2e3e;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}

.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .register-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Registration Page High-Fidelity Styles */
.registration-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fdfdfd;
}

.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 0;
    width: 100%;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 650px;
}

.step-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #e9eff5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #435b71;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: none;
    z-index: 2;
}

.step-circle.active {
    background: #8b2e3e;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(139, 46, 62, 0.25);
}

.step-line {
    height: 2px;
    background: #e9eff5;
    flex-grow: 1;
    margin: 0 14px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.step-line.active {
    background: #8b2e3e;
}

.step-box {
    display: none;
}

.step-box.active {
    display: block;
    animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-prev {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-prev:hover {
    background: #e2e8f0;
}

/* Registration Page Specifics (Matching Image) */
.thin-notice-bar {
    background: #8b2e3e;
    color: white;
    font-size: 0.8rem;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.thin-notice-bar i {
    font-size: 0.9rem;
}

.registration-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fdfdfd;
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .register-form-row {
        grid-template-columns: 1fr;
    }
}

.login-input-simple {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px 15px;
    margin-top: 10px;
    border: 1px solid #f1f5f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.01);
}

.login-input-simple input,
.login-input-simple select,
.login-input-simple textarea {
    border: none;
    background: transparent;
    padding: 15px 12px;
    outline: none;
    font-family: inherit;
    flex: 1;
    color: #1e293b;
    font-size: 1rem;
}

.login-input-simple select {
    color: #475569;
}

.country-select-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.exact-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.btn-step-prev {
    padding: 18px;
    background: white;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    border-radius: 25px;
    /* More rounded pill-like shape as per image */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.1rem;
    width: 100%;
}

.btn-step-next {
    padding: 18px;
    background: #1a1e4d;
    /* Correct Midnight Blue from image */
    border: none;
    color: white;
    border-radius: 25px;
    /* More rounded pill-like shape as per image */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.1rem;
    width: 100%;
}

.btn-step-next:hover {
    background: #0f1235;
    box-shadow: 0 5px 15px rgba(26, 30, 77, 0.2);
}

.btn-step-prev:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* ==========================================================================
   Urgent Post Modal Styles
   ========================================================================== */

.urgent-modal {
    border-radius: 20px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.modal-header-urgent {
    padding: 20px 30px;
    border-bottom: 2px solid #f7fafc;
}

.modal-title-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Hind Siliguri', sans-serif;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--primary-maroon);
    font-weight: 700;
    font-family: 'Hind Siliguri', sans-serif;
}

.urgent-step {
    display: none;
    padding: 25px 30px 30px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.urgent-step::-webkit-scrollbar {
    width: 6px;
}

.urgent-step::-webkit-scrollbar-thumb {
    background-color: #cbd5e0;
    border-radius: 10px;
}

.urgent-step.active {
    display: block;
}

.step-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-form-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 5px;
    font-family: 'Hind Siliguri', sans-serif;
}

.step-form-header p {
    font-size: 0.95rem;
    color: #718096;
    font-family: 'Hind Siliguri', sans-serif;
}

.urgent-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
    font-family: 'Hind Siliguri', sans-serif;
}

.form-group label span {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #cbd5e0;
    background-color: #fff;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 5px;
}

.file-upload-box {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: var(--transition);
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-upload-box i {
    font-size: 2rem;
    color: #a0aec0;
    margin-bottom: 10px;
}

.file-upload-box p {
    color: #718096;
    font-size: 0.9rem;
    pointer-events: none;
}

.file-upload-box .preview-img-uploaded {
    max-width: 100%;
    max-height: 130px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

.file-upload-box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.urgent-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.btn-prev-urgent,
.btn-next-urgent {
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Hind Siliguri', sans-serif;
}

.btn-prev-urgent {
    background: #edf2f7;
    border: none;
    color: #4a5568;
}

.btn-prev-urgent:hover {
    background: #e2e8f0;
}

.btn-next-urgent {
    background: #1a1e4d;
    color: #fff;
    border: none;
}

.btn-next-urgent:hover {
    background: #2d3748;
}

/* Phone Input */
.phone-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 2px 10px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1.5px solid #edf2f7;
    cursor: pointer;
    color: #2d3748;
    font-weight: 700;
    font-size: 0.95rem;
}

.phone-input-group input {
    border: none;
    background: transparent;
}

.clear-input {
    color: #cbd5e0;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Preview */
.preview-header {
    text-align: center;
}

.preview-header p {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.preview-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 25px;
}

.preview-user-header {
    background: #f8fafc;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.preview-avatar {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-divider {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a202c;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #edf2f7;
}

.preview-list {
    list-style: none;
}

.preview-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.p-label {
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
}

.p-val {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Success */
.success-icon-wrap {
    width: 70px;
    height: 70px;
    background: #e6fffa;
    color: #38a169;
    border: 2px solid #81e6d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.whatsapp-success-btn {
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-success-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .urgent-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .urgent-footer-btns {
        grid-template-columns: 1fr;
    }
}

/* Checkbox Alignment */
.checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
    user-select: none;
    margin-top: 15px !important;
    font-family: 'Hind Siliguri', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer;
    accent-color: var(--primary-maroon);
    flex-shrink: 0;
}

/* Country Dropdown */
.country-dropdown-list {
    position: absolute;
    background: #fff;
    min-width: 280px;
    max-height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10002;
    padding: 0;
    display: none;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-dropdown-list.active {
    display: flex;
}

.dropdown-search-wrap {
    padding: 10px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
}

.dropdown-search {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Hind Siliguri', sans-serif;
}

.dropdown-search:focus {
    border-color: var(--primary-maroon);
}

.dropdown-items-container {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-bottom: 1px solid #f8fafc;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Hind Siliguri', sans-serif;
}

.country-item:hover {
    background: #f1f5f9;
}

.country-name {
    flex: 1;
    font-weight: 500;
    color: #334155;
    font-size: 0.9rem;
}

.country-dial {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}



/* Slider Arrows - Premium Fixed Position */
.slider-wrapper {
    position: relative !important;
    width: 100%;
}

.slider-arrow {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #83283B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #83283B;
    cursor: pointer;
    z-index: 1000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-arrow:hover {
    background: #83283B;
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
}

.slider-arrow.prev {
    left: 25px;
}

.slider-arrow.next {
    right: 25px;
}

@media (max-width: 1024px) {
    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none !important;
    }
}

.contact-icon-circle.imo img {
    width: 32px;
    height: auto;
}

.member-card {
    text-align: left !important;
}

.card-id-top {
    text-align: center;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    color: #4a5568;
}

.member-img-circle {
    margin-left: auto !important;
    margin-right: auto !important;
}

.card-stats-row {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.stats-id {
    font-weight: 700;
    color: #2d3748;
    font-size: 0.95rem;
}

.stats-heart {
    color: #4a5568;
    font-size: 0.9rem;
}

.member-meta {
    padding-left: 5px;
}

.detail-btn {
    text-align: center !important;
}

i.fa-solid.fa-envelope {
    color: #787878 !important;
}

/* Urgent Post Contact Icons Design */
.urgent-contact-links {
    margin-top: 20px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 2147483647; /* Maximum possible z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-video-container {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: none;
}

.lightbox-video-container iframe {
    width: 100%;
    height: 100%;
}

.lightbox-overlay.show .lightbox-content,
.lightbox-overlay.show .lightbox-video-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2147483647;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-maroon);
    transform: scale(1.1);
}

.member-card img,
.modal-avatar-circle img {
    cursor: zoom-in;
}

.urgent-contact-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.urgent-contact-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.urgent-contact-links a.whatsapp {
    background: #25D366;
}

.urgent-contact-links a.imo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.urgent-contact-links a.phone {
    background: #3b82f6;
}

.urgent-contact-links a.email {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #718096 !important;
}

.urgent-contact-links a.messenger {
    background: #0084FF;
}

.urgent-contact-links a.telegram {
    background: #0088cc;
}

.urgent-contact-links a.imo img {
    width: 22px;
    height: auto;
}

.urgent-contact-links a i {
    transition: transform 0.3s ease;
}

.urgent-contact-links a:hover i,
.urgent-contact-links a:hover img {
    transform: rotate(10deg);
}

@media (max-width: 480px) {
    .urgent-contact-links {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 10px 8px;
    }

    .urgent-contact-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .urgent-contact-links a.imo img {
        width: 18px;
    }
}

/* Modern Pagination Styling - Final Fix */
.pagination-wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination-wrapper nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-wrapper ul,
.pagination-wrapper li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
}

.pagination-wrapper .flex.justify-between.flex-1,
.pagination-wrapper .hidden.sm\:flex-1,
.pagination-wrapper nav>div.d-none,
.pagination-wrapper nav>div:not(:last-child),
.pagination-wrapper p.text-muted,
.pagination-wrapper .small.text-muted {
    display: none !important;
    /* Hide results summary bar across all frameworks */
}

.pagination-wrapper nav div[role="navigation"],
.pagination-wrapper .pagination,
.pagination-wrapper nav>div:last-child {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-item,
.page-link,
.pagination-wrapper nav a,
.pagination-wrapper nav span {
    padding: 10px 18px !important;
    border: 1px solid #e2e8f0 !important;
    background: white !important;
    color: #4a5568 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    line-height: 1;
}

.page-item.active .page-link,
.pagination-wrapper nav span[aria-current="page"] span {
    background: var(--primary-maroon) !important;
    color: white !important;
    border-color: var(--primary-maroon) !important;
    z-index: 10;
}

.page-link:hover,
.pagination-wrapper nav a:hover {
    background: #f8fafc !important;
    color: var(--primary-maroon) !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
}

.pagination-wrapper nav svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {

    .page-link,
    .pagination-wrapper nav a,
    .pagination-wrapper nav span {
        padding: 8px 14px !important;
        font-size: 0.85rem;
        min-width: 38px;
    }
}

/* ==========================================================================
   FOOTER & WIDGET EXTENSIONS (Antigravity)
   ========================================================================== */

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr !important;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    min-width: 0;
    overflow: hidden;
}

.payment-badges>img {
    border-radius: 4px;
    width: 17px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .main-footer {
        padding: 60px 5% 30px;
        text-align: center;
    }

    .payment-badges,
    .contact-list {
        justify-content: center;
    }

    .payment-item {
        justify-content: center;
    }
}

/* WhatsApp Floating Chat */
.whatsapp-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', 'SolaimanLipi', sans-serif;
}

.wa-floating-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

.wa-floating-btn .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
    opacity: 0.5;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: wa-window-in 0.3s ease;
}

.whatsapp-chat-window.active {
    display: flex;
}

@keyframes wa-window-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.whatsapp-chat-window .chat-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info i {
    font-size: 1.2rem;
}

.header-info span {
    font-weight: 600;
    font-size: 0.95rem;
}

.close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-body {
    background: #e5ddd5;
    padding: 20px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
}

.message-bubble {
    background: white;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    max-width: 85%;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.chat-footer {
    padding: 12px 15px;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #e1e9f1;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.chat-footer input:focus {
    border-color: #25d366;
}

.chat-footer button {
    background: #25d366;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.chat-footer button:hover {
    background: #128c7e;
    transform: rotate(15deg);
}

@media (max-width: 480px) {
    .whatsapp-chat-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-chat-window {
        width: 280px;
        bottom: 70px;
    }
}

/* Modal Font Family Fix */
.profile-modal, 
.modal-overlay {
    font-family: 'SolaimanLipi', sans-serif !important;
}

.info-label {
    font-family: 'SolaimanLipi' !important;
}

.modal-overlay {
    background: transparent !important;
    backdrop-filter: blur(0px);
}

.dot {
    display: none !important;
}

.dynamic-option-tab {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.dynamic-option-tab span {
    display: none !important;
}

.dynamic-option-tab:hover {
    color: #8b2e3e;
    text-decoration: underline;
}