/* =========================================
   Base Styles & Variables
   ========================================= */
:root {
    --primary-green: #b0c4a4;
    --primary-green-hover: #9bb08f;
    --text-dark: #222;
    --text-gray: #666;
    --border-color: #d1d5db;
    --bg-light: #ffffff; 
    --card-bg: #f9fbf9;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --uae-green: #a7c4a5;
    --link-blue: #0066cc;
    --danger-red: #d9534f;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
body { background-color: var(--bg-light); color: var(--text-dark); display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* =========================================
   Verify Document Page Styles
   ========================================= */
.verify-page-wrapper { flex: 1; padding: 30px 15px; background-color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 15px; }

.breadcrumb { margin-bottom: 25px; font-size: 14px; font-weight: 500; }
.breadcrumb .back-link { color: var(--link-blue); }
.breadcrumb .separator { margin: 0 8px; color: #999; }
.breadcrumb .current-page { color: #888; }

.verify-detail-card {
    background-color: var(--card-bg);
    border-radius: 8px; padding: 25px; margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.verify-detail-card h2 { font-size: 20px; color: #333; margin-bottom: 15px; font-weight: 600; }
.divider-line { border: 0; height: 1px; background: #e5e7eb; margin-bottom: 20px; }

.radio-group { display: flex; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
.custom-radio-label {
    display: flex; align-items: center; position: relative;
    cursor: pointer; font-size: 14px; font-weight: 500; color: #333; user-select: none;
}
.custom-radio-label input { position: absolute; opacity: 0; cursor: pointer; }
.radio-mark {
    height: 18px; width: 18px; background-color: var(--white);
    border: 2px solid #888; border-radius: 50%; margin-right: 8px;
    display: flex; justify-content: center; align-items: center;
}
.custom-radio-label input:checked ~ .radio-mark { border-color: #7b9e6c; }
.radio-mark:after {
    content: ""; display: none; width: 8px; height: 8px;
    border-radius: 50%; background: #7b9e6c;
}
.custom-radio-label input:checked ~ .radio-mark:after { display: block; }

.input-section label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #333; }
.text-danger { color: var(--danger-red); }
.input-row { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.form-control {
    flex: 1; min-width: 220px; padding: 10px 14px; border: 1px solid var(--border-color);
    border-radius: 4px; font-size: 14px; outline: none; background: var(--white);
}
.form-control:focus { border-color: #888; }
.btn-verify-action {
    background-color: var(--primary-green); color: #111;
    border: none; border-radius: 4px; padding: 10px 30px;
    font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.btn-verify-action:hover { background-color: var(--primary-green-hover); }

.captcha-section { padding-left: 5px; }
.captcha-section p { font-size: 14px; font-weight: 500; margin-bottom: 12px; color: #333; }
.captcha-mockup {
    display: inline-flex; border: 1px solid #ddd; background: #f9f9f9;
    border-radius: 2px; overflow: hidden; align-items: center; width: 100%; max-width: 280px;
}
.captcha-left { background-color: #1a73e8; color: white; font-size: 12px; font-weight: 600; padding: 12px; flex: 1; }
.captcha-right { padding: 8px 12px; background: #f1f1f1; display: flex; align-items: center; justify-content: center; border-left: 1px solid #ddd; cursor: pointer; }

/* Verify Result Styles */
.result-card {
    background: var(--white); padding: 30px 20px;
    border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin: 20px auto;
}
.success-icon-wrapper { display: flex; justify-content: center; margin-bottom: 15px; }
.result-title { text-align: center; font-size: 22px; font-weight: 600; color: #111; margin-bottom: 30px; }
.result-details { display: flex; flex-direction: column; }
.detail-row { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.border-none { border-bottom: none; padding-bottom: 20px; }
.detail-label { display: block; font-size: 12px; color: #777; margin-bottom: 4px; font-weight: 500; }
.detail-value { display: block; font-size: 15px; font-weight: 700; color: #222; word-break: break-all; }
.status-badge {
    position: absolute; right: 0; top: 12px;
    background-color: #e5f4e7; color: #2c7a3f;
    padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600;
}
.btn-verify-another {
    display: block; width: 100%; text-align: center;
    background-color: var(--primary-green); color: #111;
    padding: 12px; border-radius: 6px; font-size: 15px; font-weight: 600; transition: 0.3s;
}
.btn-verify-another:hover { background-color: var(--primary-green-hover); }

/* =========================================
   Home Page Specific Styles
   ========================================= */
.home-main { width: 100%; overflow-x: hidden; }
.btn-outline {
    background: transparent; border: 1px solid var(--text-dark);
    padding: 8px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.text-link {
    display: inline-block; font-weight: 600; color: #111; font-size: 14px; margin-bottom: 20px; text-decoration: none; transition: 0.2s;
}
.text-link:hover { text-decoration: underline; color: #555; }

.text-link-white {
    display: inline-block; font-weight: 600; color: #fff; font-size: 14px; margin-top: 10px; text-decoration: none;
}
.text-link-white:hover { text-decoration: underline; }

/* =========================================
   Hero Section (Fixed Pillar & No-Crop Fix)
   ========================================= */
.hero-section {
    background-color: #f2f7f1; 
    padding: 50px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero-logos img { height: 40px; }

.hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
}
.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 90%;
}

/* ডানপাশের ফিক্সড কালো বক্স */
.hero-image {
    flex: 0 0 320px; 
    height: 500px; 
    background-color: #000000;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ভিডিও বা ছবি যেন কোনোভাবেই না কাটে */
.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ম্যাজিক প্রোপার্টি: ক্যারেক্টারের মাথা বা সাইড আর কাটবে না */
    object-position: center center; 
    display: block;
}

/* =========================================
   Mobile & PC Side-by-Side Fix (Never Drop Down)
   ========================================= */
@media (max-width: 992px) {
    .hero-section {
        padding: 25px 0;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* এটি কোনোভাবেই ভিডিওকে নিচে নামতে দেবে না */
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }
    
    .hero-content {
        flex: 1 !important;
        min-width: 0 !important; /* টেক্সট যাতে ফ্লেক্সবক্স ভেঙে নিচে না পাঠায় */
        padding: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .hero-logos {
        margin-bottom: 10px !important;
    }
    .hero-logos img { 
        height: 25px !important; 
    }
    
    .hero-content h1 { 
        font-size: 15px !important; 
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    .hero-content p { 
        font-size: 11px !important; 
        margin-bottom: 12px !important; 
        line-height: 1.3 !important;
    }

    .btn-outline {
        padding: 4px 12px !important;
        font-size: 11px !important;
    }
    
    /* মোবাইলের জন্য ডানপাশের ভিডিও বক্সের নিখুঁত ফিক্সড সাইজ */
    .hero-image {
        flex: 0 0 110px !important; 
        width: 110px !important;
        height: 230px !important; 
        margin: 0 !important;
        border-radius: 6px;
    }
}
/* =========================================
   Other Home Sections
   ========================================= */
.news-section { padding: 40px 0; background: var(--white); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.section-header h2 { font-size: 24px; color: #111; }
.explore-link { font-weight: 600; color: #111; font-size: 14px; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.news-card { background: #f9f9f9; border-radius: 8px; overflow: hidden; cursor: pointer; transition: 0.3s; }
.news-card:hover { box-shadow: 0 8px 15px rgba(0,0,0,0.05); transform: translateY(-2px); }
.news-card img { width: 100%; object-fit: cover; }
.news-large { grid-column: span 2; grid-row: span 2; }
.news-large img { height: 280px; }
.news-small img { height: 110px; }
.news-info { padding: 12px; }
.news-large .news-info h3 { font-size: 18px; margin-bottom: 8px; }
.news-small .news-info h3 { font-size: 13px; margin-bottom: 6px; line-height: 1.3; }
.news-meta { font-size: 11px; color: #777; }

.split-container { display: flex; align-items: center; gap: 30px; padding: 40px 0; flex-wrap: wrap; }
.split-container.align-center { align-items: center; }
.split-content { flex: 1; min-width: 280px; }
.split-content h2 { font-size: 26px; margin-bottom: 15px; line-height: 1.3; }
.split-content p { color: #555; margin-bottom: 20px; line-height: 1.5; font-size: 15px; }
.split-image { flex: 1; display: flex; justify-content: center; width: 100%; }
.split-image img { max-width: 100%; height: auto; }

./* =========================================
   Abu Dhabi's Laws Section (Exact Match)
   ========================================= */
.laws-section { 
    background-color: var(--white); 
    padding: 60px 0;
}

.laws-grid { 
    flex: 1.2; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    min-width: 300px; 
}

.law-card { 
    background: var(--white); 
    padding: 24px 20px; 
    border-radius: 12px; 
    border: 1px solid #eef0ed;
    display: flex; 
    align-items: center; 
    gap: 18px; 
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02); 
    transition: all 0.25s ease;
}

.law-card:hover { 
    border-color: #b0c4a4; 
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.law-icon { 
    width: 50px; 
    height: 50px; 
    background: #b5d0ae; /* ছবির সাথে মিল রেখে সফট গ্রিন ব্যাকগ্রাউন্ড */
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-shrink: 0; 
}

.law-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

.law-arrow { 
    margin-left: auto; 
    color: #888; 
    font-weight: 500; 
    font-size: 16px;
    transition: transform 0.2s;
}

.law-card:hover .law-arrow {
    color: #111;
    transform: translateX(3px);
}

/* Responsive Laws Section */
@media (max-width: 992px) {
    .laws-grid { 
        grid-template-columns: 1fr; 
    }
}
/* =========================================
   Services Section (Exact Match)
   ========================================= */
.services-section { 
    padding: 50px 0; 
    background: var(--white); 
}

.services-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
}

.service-card {
    height: 380px; /* ছবির সাথে সামঞ্জস্য রেখে উচ্চতা বাড়ানো হয়েছে */
    border-radius: 16px; /* সুন্দর স্মুথ রাউন্ডেড কর্নার */
    overflow: hidden; 
    position: relative;
    background-size: cover; 
    background-position: center;
}

.service-overlay {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    padding: 40px 30px 30px; 
    color: var(--white);
}

.service-overlay h3 { 
    font-size: 24px; 
    margin-bottom: 12px; 
    font-weight: 700;
}

.service-overlay p { 
    font-size: 14px; 
    margin-bottom: 20px; 
    opacity: 0.95; 
    line-height: 1.5; 
    max-width: 90%;
}

/* ছবির সাথে হুবহু মিল রেখে আউটলাইন বাটন স্টাইল */
.btn-service-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white); 
    padding: 8px 18px; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.btn-service-outline:hover { 
    background: var(--white); 
    color: #111; 
    border-color: var(--white);
}

/* Responsive Services */
@media (max-width: 992px) {
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .service-card {
        height: 320px;
    }
}
.app-download-section { background-color: #f0f4ee; }
.app-store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { height: 40px; cursor: pointer; }
.app-phone img { max-height: 400px; }

/* =========================================
   Admin Dashboard & Modal Styles
   ========================================= */
.admin-body { background: #f4f7f6; padding: 20px; font-family: 'Segoe UI', sans-serif; }
.header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.btn-logout { background: #dc3545; color: #fff; padding: 8px 16px; text-decoration: none; border-radius: 4px; font-weight: bold; font-size: 14px; }
.admin-container { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.form-section { flex: 1; min-width: 280px; width: 100%; }
.table-section { flex: 2; overflow-x: auto; min-width: 280px; width: 100%; }
.form-group { margin-bottom: 12px; }
.admin-card label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 13px; }
.admin-card input, .admin-card select { width: 100%; padding: 8px 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 14px; }
.admin-card button[type="submit"] { width: 100%; padding: 10px; background: #3b7a57; color: #fff; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; margin-top: 5px; }
.success-msg { background: #d4edda; color: #155724; padding: 8px; margin-bottom: 15px; border-radius: 4px; text-align: center; font-size: 13px; }

table { width: 100%; border-collapse: collapse; font-size: 13px; white-space: nowrap; }
th, td { border-bottom: 1px solid #ddd; padding: 10px; text-align: left; }
th { background-color: #f8f9fa; font-weight: 600; }
.btn-delete { background: #dc3545; color: white; border: none; padding: 5px 10px; border-radius: 4px; cursor: pointer; font-size: 11px; font-weight: bold; }

.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(2px);
    z-index: 1000; justify-content: center; align-items: center; padding: 15px;
}
.modal-content {
    background: var(--white); width: 100%; max-width: 400px;
    padding: 30px 20px; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center; position: relative; max-height: 90vh; overflow-y: auto;
}
.close-modal {
    position: absolute; top: 12px; right: 18px; font-size: 22px;
    cursor: pointer; color: var(--text-gray); transition: 0.3s;
}
.close-modal:hover { color: var(--text-dark); }
.modal-content h2 { font-size: 18px; margin-bottom: 20px; font-weight: 600; }
.modal-btn {
    width: 100%; padding: 10px; margin-bottom: 10px; font-size: 13px; font-weight: 500;
    border-radius: 6px; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 8px;
}
.modal-btn.outline { background: var(--white); border: 1px solid var(--border-color); color: var(--text-dark); }
.modal-btn.outline:hover { background: #f9f9f9; border-color: #999; }
.modal-btn.uae-pass { background: var(--uae-green); border: none; font-weight: 600; }
.modal-btn.uae-pass:hover { background: #96b594; }
.divider { display: flex; align-items: center; text-align: center; margin: 12px 0; color: #888; font-size: 12px; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #ddd; }
.divider::before { margin-right: 8px; }
.divider::after { margin-left: 8px; }
.skip-link { display: block; margin-top: 15px; font-size: 13px; font-weight: 600; color: var(--link-blue); }
.lang-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* =========================================
   Footer Section (Exact Match to Reference)
   ========================================= */
footer { 
    background-color: var(--white); 
    border-top: 1px solid var(--border-color); 
    padding: 40px 20px 20px; 
    font-size: 13px; 
}

.footer-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo-col img {
    height: 48px;
    display: block;
}

.footer-col h4 { 
    margin-bottom: 15px; 
    font-size: 14px; 
    font-weight: 700; 
    color: #111;
}

.footer-col ul li { 
    margin-bottom: 10px; 
}

.footer-col ul li a { 
    color: #666; 
    transition: 0.2s; 
    text-decoration: none;
}

.footer-col ul li a:hover { 
    color: #111; 
}

.footer-right-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-store-badges {
    display: flex;
    gap: 10px;
}

.store-badge {
    height: 38px;
    cursor: pointer;
}

.footer-verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: #111;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
    width: 100%;
}

.footer-verify-btn:hover {
    background-color: #f9f9f9;
    border-color: #999;
}

.footer-bottom-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-top: 1px solid #eee; 
    padding-top: 20px; 
    color: var(--text-gray); 
    flex-wrap: wrap; 
    gap: 15px; 
}

.footer-copyright p {
    font-size: 12px;
    color: #555;
}

.uuid-text { 
    font-size: 11px; 
    color: #888; 
    margin-top: 4px; 
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-label {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.social-icons { 
    display: flex; 
    gap: 10px; 
}

.social-icons a {
    width: 28px;
    height: 28px;
    background: #f1f3f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: 0.2s;
}

.social-icons a:hover {
    background: #b0c4a4;
    color: #111;
}

/* =========================================
   Floating Support Widget (Exact Blob Style)
   ========================================= */
.floating-support-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Organic Blob Button Shape */
.floating-blob-btn {
    width: 58px;
    height: 58px;
    background-color: #b5d0ae; /* সফট অলিভ গ্রিন কালার */
    border: none;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* অর্গানিক ব্লব শেপ */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-blob-btn:hover {
    transform: scale(1.05);
}

/* Support Popup Box */
.support-popup-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    padding: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.support-popup-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.popup-item:hover {
    background-color: #f4f7f4;
}

.popup-icon {
    width: 34px;
    height: 34px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.whatsapp-bg { background-color: #25d366; }
.dari-bg, .ai-bg { background-color: #3b374a; }

.popup-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        gap: 25px;
    }
    .footer-right-col {
        align-items: flex-start;
    }
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* =========================================
   Precise SVG Sizing (Fixes Giant Icons Bug)
   ========================================= */

/* ফুটারের ভেরিফাই বাটন আইকন */
.footer-verify-btn svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

/* ফুটারের সোশ্যাল মিডিয়া আইকন */
.social-icons a svg {
    width: 16px !important;
    height: 16px !important;
    display: block;
}

/* ফ্লোটিং সাপোর্ট ব্লব বাটন আইকন */
.floating-blob-btn svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
}

/* পপআপ চ্যাট আইকনগুলো */
.popup-icon svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
}
/* মোবাইল বটম নেভবার আইকন */
.mobile-nav-item svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #555;
    flex-shrink: 0;
}

/* =========================================
   Unified Responsive Media Queries
   ========================================= */
@media (max-width: 992px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-large { grid-column: span 2; }
    .services-grid { grid-template-columns: 1fr; }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    .hero-content {
        align-items: center; 
        text-align: center;
        max-width: 100%;
        padding: 20px 10px 0 10px;
    }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { max-width: 100%; }
    
    .hero-image {
        flex: none;
        width: 100%;
        max-width: 300px; 
        height: 420px; 
        margin: 0 auto; 
    }
}

/* গ্লোবালি ডেস্কটপে মোবাইল নেভবার সম্পূর্ণ লুকানো থাকবে */
.mobile-bottom-nav {
    display: none !important;
}

@media (max-width: 768px) {
    header { padding: 8px 12px; justify-content: space-between; }
    .logo-area img { height: 35px; }
    
    .nav-links { display: none !important; } 
    .header-actions { gap: 6px; }
    .header-actions .btn { padding: 6px 8px; font-size: 12px; }
    .header-actions .verify-text-desktop { display: none; }
    .verify-icon-btn { padding: 6px !important; }
    
    .hero-logos { justify-content: center; }
    .hero-logos img { height: 30px; }
    .hero-content h1 { font-size: 24px; }
    
    .laws-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-large { grid-column: span 1; }
    .news-large img { height: 200px; }
    
    .admin-container { flex-direction: column; }
    .form-section, .table-section { width: 100%; }
    
    /* শুধুমাত্র মোবাইল স্ক্রিনে এটি ফিক্সড হয়ে নিচে শো করবে */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e0e0e0;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 11px;
        font-weight: 500;
        color: #666;
        text-decoration: none;
    }
    
    body {
        padding-bottom: 60px !important; /* মোবাইলে কন্টেন্ট নেভবারের নিচে ঢাকা পড়া রোধ করতে */
    }
}
@media screen and (max-width: 768px) {
    .floating-blob-btn {
        display: none !important;
    }
}

/* =========================================
   Custom reCAPTCHA Animation Styles
   ========================================= */
.fake-recaptcha-wrapper {
    border: 1px solid #d3d3d3;
    background: #f9f9f9;
    border-radius: 3px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.08);
    font-family: Roboto, helvetica, arial, sans-serif;
    margin-bottom: 15px;
}
.fake-recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.checkbox-box {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.checkbox-box:hover {
    border-color: #b2b2b2;
}
/* Loading Spinner Animation */
.checkbox-box.loading {
    border: 2px solid transparent;
    border-top-color: #4285f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    cursor: default;
}
/* Green Checkmark */
.checkbox-box.checked {
    border-color: transparent;
    cursor: default;
}
.checkbox-box.checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 20px;
    border: solid #009e55;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    top: -2px;
    left: 7px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.captcha-text {
    font-size: 14px;
    color: #222;
}
.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.captcha-logo img {
    width: 32px;
    opacity: 0.8;
}
.captcha-logo span {
    font-size: 10px;
    color: #555;
    margin-top: 2px;
}