/* ═══════════════════════════════════════════════════════
   BornaliDNS — Dashboard Styles (Light Theme)
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import './index.css';

/* ── Layout ─────────────────────────────────────────── */
body.dashboard-body {
    background: var(--bg);
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    height: 100dvh;
}
@media (min-width: 769px) {
    body.dashboard-body {
        overflow: hidden;
    }
}

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar {
    width: 268px;
    min-width: 268px;
    background: #fff;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
    box-shadow: 2px 0 16px rgba(15, 23, 42, 0.04);
    overflow-y: auto;
}

.sidebar.collapsed {
    width: 68px;
    min-width: 68px;
}

.sidebar-header {
    padding: 22px 18px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sidebar-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.sidebar.collapsed .sidebar-logo-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text3);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.15s;
}

.sidebar-close:hover {
    color: var(--primary);
}

.nav-section {
    padding: 14px 10px 6px;
}

.nav-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    padding: 0 8px 8px;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.2s;
}

.sidebar.collapsed .nav-section-label {
    opacity: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text2);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
    margin-bottom: 2px;
    white-space: nowrap;
}

.nav-item:hover {
    background: var(--bg2);
    color: var(--text);
}

.nav-item.active {
    background: var(--primary-dim);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    font-weight: 600;
}

.nav-item .icon {
    width: 20px;
    text-align: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.nav-item .label {
    transition: opacity 0.2s;
}

.sidebar.collapsed .nav-item .label {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.nav-badge {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
}

.sidebar-footer {
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid var(--border);
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--bg2);
    cursor: pointer;
    transition: background 0.2s;
}

.user-chip:hover {
    background: var(--bg3);
}

.user-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.user-info .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.user-info .plan {
    font-size: 0.74rem;
    color: var(--primary);
    font-weight: 600;
}

.sidebar.collapsed .user-info {
    display: none;
}

/* ── Main area ───────────────────────────────────────── */
.main-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.top-header {
    height: 62px;
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
}

.header-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text2);
    font-size: 1.25rem;
    padding: 4px;
    transition: color 0.2s;
    border-radius: 8px;
}

.header-toggle:hover {
    color: var(--primary);
    background: var(--primary-dim);
}

.breadcrumb {
    flex: 1;
    font-size: 0.88rem;
    color: var(--text2);
}

.breadcrumb strong {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text2);
    font-size: 1rem;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.header-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-dim);
}

.live-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text2);
    background: var(--bg2);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

/* ── Content Area ────────────────────────────────────── */
.content-area {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding: 24px;
    background: var(--bg);
}

@media (max-width: 600px) {
    .content-area {
        padding: 16px;
    }
}

.content-area::-webkit-scrollbar { width: 6px; }
.content-area::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ── View ────────────────────────────────────────────── */
.view { display: none; }

.view.active {
    display: block;
    animation: fadeInUp 0.25s ease;
}

.view-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.view-subtitle {
    color: var(--text2);
    font-size: 0.9rem;
    margin-bottom: 26px;
}

/* ── Stats Row ───────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}

.stat-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 800;
}

.stat-value.primary { color: var(--primary); }
.stat-value.success { color: var(--success); }
.stat-value.danger { color: var(--danger); }
.stat-value.warning { color: var(--warning); }

.stat-change {
    font-size: 0.76rem;
    color: var(--text3);
    margin-top: 6px;
}

/* ── Panel ───────────────────────────────────────────── */
.panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.panel-body {
    padding: 20px;
    background: #fff;
}

/* ── Charts ──────────────────────────────────────────── */
.chart-wrap {
    position: relative;
    height: 240px;
}

canvas.chart {
    width: 100% !important;
    height: 100% !important;
}

/* ── Table ───────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.872rem;
}

thead th {
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text2);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    background: var(--bg2);
}

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

tbody tr:hover { background: var(--bg2); }
tbody tr:last-child td { border-bottom: none; }

/* ── Badges ──────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.71rem;
    font-weight: 700;
}

.badge-success { background: rgba(16, 185, 129, 0.12); color: #059669; }
.badge-danger { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.badge-warning { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.badge-info { background: var(--primary-dim); color: var(--primary); }
.badge-purple { background: var(--purple-dim); color: var(--purple); }

/* ── Toggle Switch ────────────────────────────────────── */
.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    transition: 0.28s;
}

.slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.28s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

input:checked + .slider {
    background: var(--primary);
    border-color: var(--primary);
}

input:checked + .slider::before {
    transform: translateX(22px);
    background: #fff;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.toggle-sublabel {
    font-size: 0.78rem;
    color: var(--text2);
}

/* ── Category Toggle Card ────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.category-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s;
}

.category-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    background: #fff;
    box-shadow: var(--shadow);
}

.category-card.active {
    border-color: rgba(14, 165, 233, 0.30);
    background: #fff;
}

.cat-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-icon { font-size: 1.4rem; }

/* ── Device Cards ────────────────────────────────────── */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.device-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}

.device-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.device-icon { font-size: 2rem; margin-bottom: 10px; }
.device-name { font-weight: 700; margin-bottom: 4px; color: var(--text); }
.device-ip { font-size: 0.78rem; color: var(--text2); margin-bottom: 12px; font-family: monospace; }
.device-actions { display: flex; gap: 8px; justify-content: center; }

/* ── Form Elements ───────────────────────────────────── */
.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

.form-input::placeholder { color: var(--text3); }

select.form-input {
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
}

/* ── Sidebar Overlay (Mobile) ────────────────────────── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .sidebar.open ~ .sidebar-overlay {
        opacity: 1;
        pointer-events: all;
    }
}

/* ── Radio group ─────────────────────────────────────── */
.radio-group {
    display: flex;
    gap: 10px;
}

.radio-opt {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    color: var(--text);
}

.radio-opt:hover { border-color: var(--primary); background: var(--primary-dim); }

.radio-opt.selected {
    border-color: var(--primary);
    background: var(--primary-dim);
    color: var(--primary);
}

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
    padding: 20px;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
    max-width: 480px;
    transform: scale(0.96);
    transition: transform 0.22s;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: none;
}

@media (max-width: 600px) {
    .modal {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.modal-overlay.open .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: var(--bg2);
    border: none;
    cursor: pointer;
    color: var(--text2);
    font-size: 1.1rem;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
}

/* ── Live Feed ───────────────────────────────────────── */
.live-feed {
    height: 280px;
    overflow-y: auto;
    font-size: 0.8rem;
    font-family: monospace;
}

.live-feed::-webkit-scrollbar { width: 4px; }
.live-feed::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.feed-row {
    display: grid;
    grid-template-columns: 100px 1fr 80px 70px;
    gap: 14px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    animation: fadeInUp 0.2s ease;
}

.feed-row .time { color: var(--text3); }
.feed-row .domain {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}
.feed-row .ip { color: var(--text2); }

/* ── Profile / Setup cards ─────────────────────────────── */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.profile-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}

.profile-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.profile-card .big-icon { font-size: 2.8rem; margin-bottom: 12px; }
.profile-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); font-weight: 700; }
.profile-card p { color: var(--text2); font-size: 0.82rem; margin-bottom: 16px; }

/* ── Source list ─────────────────────────────────────── */
.source-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.source-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.source-info .src-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.source-info .src-meta { font-size: 0.76rem; color: var(--text2); margin-top: 2px; }

/* ── Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ── bKash Global Mode Toggle ─────────────────────────── */
.bkash-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.bkash-toggle input {
    opacity: 0; width: 0; height: 0;
    position: absolute;
}

.bkash-slider {
    position: absolute;
    inset: 0;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.bkash-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bkash-toggle input:checked + .bkash-slider {
    background: rgba(0, 193, 138, 0.18);
    border-color: #00c18a;
    box-shadow: 0 0 12px rgba(0, 193, 138, 0.25);
}

.bkash-toggle input:checked + .bkash-slider::before {
    transform: translateX(24px);
    background: #00c18a;
    box-shadow: 0 0 8px rgba(0, 193, 138, 0.5);
}

.bkash-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 272px;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 8px 0 40px rgba(15, 23, 42, 0.15);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar, .sidebar.collapsed {
        width: 272px !important;
    }

    .sidebar .sidebar-logo-text,
    .sidebar .nav-item .label,
    .sidebar .nav-section-label,
    .sidebar .user-info {
        display: flex !important;
        opacity: 1 !important;
        width: auto !important;
    }

    .main-wrap { width: 100%; }
    .top-header { padding: 0 16px; height: 58px; }
    .content-area { padding: 20px 16px; }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card { padding: 16px; }
    .stat-value { font-size: 1.55rem; }
    .breadcrumb { display: none; }

    .live-counter span { display: none; }
}

/* Force single column for inline 2-col grids on small screens */
@media (max-width: 640px) {
    [style*="grid-template-columns:minmax(0,2fr)"],
    [style*="grid-template-columns: minmax(0,2fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }

    .device-grid, .category-grid, .profile-grid {
        grid-template-columns: 1fr;
    }

    .header-actions .header-icon-btn:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .view-title { font-size: 1.3rem; }
    .panel-body { padding: 14px; }
    .content-area { padding: 16px 12px; }

    .modal { padding: 22px 16px; }
    .feed-row { grid-template-columns: 80px 1fr 60px; }
    .feed-row .ip { display: none; }
}


/* Sidebar close button for mobile */
.sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text2);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .sidebar-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 6px 14px !important;
        background: var(--bg2) !important;
        color: var(--primary) !important;
        border: 1px solid var(--border) !important;
        border-radius: 8px;
        font-weight: 800;
        font-size: 1.4rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

.sidebar-close:hover {
    background: var(--bg2);
    color: var(--primary);
}

/* Responsive grid for activation codes */
.gen-codes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: end;
}

@media (max-width: 992px) {
    .gen-codes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gen-codes-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 8900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
    color: #FFF;
}
