/* =====================================================
   CSS VARIABLES (Theme Colors)
   ===================================================== */
:root {
    --primary-color: #0d6efd;
    --bg-color: #f4f6f9;
    --text-color: #111827;
    --card-bg: #ffffff;
    --sidebar-bg: #1f2937;
    --sidebar-text: #cbd5e1;
    --sidebar-active: #374151;
}

/* =====================================================
   LIGHT / DARK THEME
   ===================================================== */
body.light {
    --bg-color: #f4f6f9;
    --text-color: #111827;
    --card-bg: #ffffff;
}

body.dark {
    --bg-color: #111827;
    --text-color: #e5e7eb;
    --card-bg: #1f2937;
}

/* =====================================================
   BASE
   ===================================================== */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* =====================================================
   SIDEBAR
   ===================================================== */
.sidebar {
    background-color: var(--sidebar-bg);
    min-height: 100vh;
}

.sidebar a,
.sidebar-group-title {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sidebar-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.sidebar a:hover,
.sidebar a.active,
.sidebar-group-title:hover {
    background-color: var(--sidebar-active);
    color: #ffffff;
}

.sidebar a i,
.sidebar-group-title i:first-child {
    width: 20px;
    margin-right: 8px;
    font-size: 16px;
    vertical-align: middle;
}

body.dark .sidebar a i {
    color: #9ca3af;
}

/* =====================================================
   SIDEBAR GROUP / HIERARCHY
   ===================================================== */
.sidebar-group {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-group-title {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.2px;
    background-color: rgba(255, 255, 255, 0.01);
}

.sidebar-group.open .sidebar-group-title {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left: 3px solid var(--primary-color);
    padding-left: 13px;
}

.sidebar-group.open .sidebar-group-title i:first-child {
    color: #ffffff;
}

/* =====================================================
   SIDEBAR DROPDOWN
   ===================================================== */
.sidebar-submenu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.035);
    padding: 0;
    transition:
        max-height 0.26s ease,
        opacity 0.18s ease;
}

.sidebar-group.open .sidebar-submenu {
    max-height: 320px;
    opacity: 1;
    padding: 0;
}

body.dark .sidebar-submenu {
    background-color: rgba(255, 255, 255, 0.05);
}

/* submenu item hierarchy */
.sidebar-submenu a {
    position: relative;
    margin: 0;
    padding: 10px 14px 10px 42px;
    font-size: 13px;
    color: #d7deea;
    border-bottom: none;
    border-radius: 0;
    background-color: transparent;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

/* left guide line */
.sidebar-submenu a::before {
    display: none;
    content: none;
}



/* child hover */
.sidebar-submenu a.active {
    background-color: var(--sidebar-active);
    color: #ffffff;
    font-weight: 600;

    border-left: none;
    box-shadow: none !important;
    transform: none !important;

    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding-left: 42px;
}

.sidebar-submenu a:hover::before {
    background-color: rgba(13, 110, 253, 0.75);
}

/* active submenu highlight - stronger */
.sidebar-submenu a.active {
    background: linear-gradient(
        90deg,
        rgba(13, 110, 253, 0.42) 0%,
        rgba(13, 110, 253, 0.18) 100%
    );
    color: #ffffff;
    font-weight: 700;
    box-shadow:
        inset 4px 0 0 #4da3ff,
        inset 0 0 0 1px rgba(77, 163, 255, 0.18),
        0 0 0 1px rgba(13, 110, 253, 0.10);
    transform: translateX(2px);
}

.sidebar-submenu a.active::before {
    background: linear-gradient(
        180deg,
        #66b3ff 0%,
        #0d6efd 100%
    );
    width: 3px;
    left: 23px;
}

.sidebar-submenu a.active i {
    color: #ffffff !important;
    opacity: 1;
}

.sidebar-submenu a.active:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.14);
}

.sidebar-submenu a i {
    margin-right: 8px;
}

/* Dropdown arrow */
.menu-arrow {
    float: right;
    font-size: 14px;
    transition: transform 0.22s ease;
    margin-top: 2px;
}

.sidebar-group.open .menu-arrow {
    transform: rotate(180deg);
}

body.dark .menu-arrow {
    color: #9ca3af;
}

/* =====================================================
   SIDEBAR OVERLAY (Mobile)
   ===================================================== */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
}

.sidebar-overlay.show {
    display: block;
}

#closeSidebar {
    border: none;
    border-radius: 0;
    font-size: 14px;
}
/*
.sidebar-brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
*/
.sidebar-logo {
    width: 45%;
    object-fit: contain;
    margin-bottom: 6px;
}

.sidebar-brand-text {
    font-size: 13px;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: 0.5px;
}

.admin-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* ===============================
   TOPBAR (Desktop + Mobile)
   =============================== */
.topbar {
    width: 100%;
    background-color: var(--card-bg);
    border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

/* Left section */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

/* Right section */
.topbar-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: right;
    white-space: nowrap;
}

/* Meta text */
.meta-item {
    line-height: 1.2;
    text-align: left;
}

.meta-label {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    padding-bottom: 3px;
}

.meta-value {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

/* Dark mode */
body.dark .topbar {
    border-bottom-color: #374151;
}

body.dark .meta-label {
    color: #9ca3af;
}

body.dark .meta-value {
    color: #e5e7eb;
}

/* Responsive handling */
@media (max-width: 992px) {
    .topbar-meta {
        display: none;
    }
}

/* =====================================================
   DASHBOARD
   ===================================================== */
.dashboard-page-wrapper {
    padding: 1rem 1.5rem 1.5rem 1.5rem !important;
}

.page-header-block {
    margin-bottom: 1rem;
}

.page-header-block h1,
.page-header-block h2,
.page-header-block h3,
.page-header-block h4 {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.page-header-block p {
    margin-bottom: 0;
}

.table-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    overflow: hidden;
}

.table-card .table {
    margin-bottom: 0;
}

.table-card .table th {
    font-size: 13px;
    font-weight: 600;
    background-color: #f8fafc;
}

.table-card .table td {
    vertical-align: middle;
}

.sidebar,
main.col-md-10 {
    margin: 0;
}

@media (max-width: 768px) {
    .dashboard-page-wrapper {
        padding: 1rem !important;
    }
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background-color: var(--card-bg);
}

.card-box {
    border-left: 4px solid var(--primary-color);
}

body.dark .card-box i {
    color: #ffffff !important;
    opacity: 0.9;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

body.dark .card h6 {
    color: #9ca3af;
}

body.dark .card h3 {
    color: #f9fafb;
}

/* =====================================================
   TABLES
   ===================================================== */
.table {
    border-collapse: collapse;
}

.table th,
.table td {
    border: 1px solid #e5e7eb;
    padding: 5px 8px;
    font-size: 13px;
}

body.dark .table th,
body.dark .table td {
    border-color: #374151;
}

body.dark .table {
    color: #e5e7eb;
}

body.dark .table thead {
    background-color: #1f2937;
}

body.dark .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #111827;
}

/* ===============================
   Responsive Table (Min width 650px)
   =============================== */
.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 3px;
}

.table-responsive-custom table {
    min-width: 650px;
    white-space: nowrap;
}

/* Badges */
.topbar-meta .badge {
    font-size: 10px;
    padding: 2px 7px 5px 7px;
    font-weight: normal;
}

.table td .badge {
    font-size: 11px;
    padding: 5px;
    font-weight: 500;
    border-radius: 3px;
}

.tdcenter {
    text-align: center;
}

.tdcenter .bi {
    font-size: 15px;
}

/* Table action buttons */
.table-actions {
    display: inline-flex;
    gap: 6px;
}

.table-actions .btn {
    padding: 1px 4px;
    font-size: 12px;
    border-radius: 3px;
}

.table-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.table-actions .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

body.dark .table-actions .btn-outline-primary {
    border-color: #60a5fa;
    color: #60a5fa;
}

body.dark .table-actions .btn-outline-danger {
    border-color: #f87171;
    color: #f87171;
}
.btn-outline-light:hover {
    background: #ffffffe0;
    color: #0d6efd;
    border-color: #ffffff;
}
/* =====================================================
   SECTION TITLES
   ===================================================== */
.admin-title {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-top: 6px solid var(--primary-color);
    background: linear-gradient(to right, rgba(13, 110, 253, 0.08), transparent);
}

.recent-title {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(13, 110, 253, 0.08), transparent);
}

body.dark .recent-title {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.15), transparent);
    color: #f9fafb;
}

/* =====================================================
   SITE INFORMATION
   ===================================================== */
.site-info-box {
    border: 1px solid #d1d5db;
    border-top: 4px solid var(--primary-color);
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-info-title {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(to right, rgba(13, 110, 253, 0.12), transparent);
    border-bottom: 1px solid #d1d5db;
}

.site-info-content {
    padding: 16px 20px;
    text-align: center;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-meta {
    font-size: 12px;
    line-height: 1.6;
    color: #4b5563;
}

.company-meta .addressline {
    font-size: 14px;
    font-weight: 600;
}

body.dark .site-info-box {
    background-color: #1f2937;
    border-color: #374151;
    box-shadow: none;
}

body.dark .site-info-title {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.25), transparent);
    border-bottom-color: #374151;
}

body.dark .company-name {
    color: #f9fafb;
}

body.dark .company-meta {
    color: #d1d5db;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-section {
    background-color: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.form-section-title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--primary-color);
    padding-bottom: 4px;
}

.form-label {
    font-size: 13px;
    padding-left: 3px;
}

.form-control,
select.form-select,
input[type="date"] {
    font-size: 13px;
}

.form-check-label {
    font-size: 13px;
    color: #374151;
}

/* Placeholder */
::placeholder {
    font-size: 12px;
    color: #9ca3af;
    opacity: 1;
}

body.dark ::placeholder {
    color: #6b7280;
}

/* =====================================================
   PROFILE IMAGE
   ===================================================== */
#profilePreview {
    border-radius: 8px;
    transition: transform 0.2s ease;
}

#profilePreview:hover {
    transform: scale(1.03);
}

.text-muted {
    font-size: 11px;
    color: #92959b !important;
    line-height: 1.5;
}

/* Dark mode */
body.dark .text-muted {
    color: #9ca3af !important;
}

/* =====================================================
   FORM ACTION BUTTONS
   ===================================================== */
.form-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-actions .btn {
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.form-actions .btn:not(.btn-sm) {
    min-width: 120px;
    padding: 9px 22px;
    font-size: 13px;
}

.form-actions .btn-sm {
    min-width: auto;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.form-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.form-actions .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-1px);
}

.form-actions .btn-outline-secondary {
    background-color: #ffffff;
    border-color: #d1d5db;
    color: #374151;
}

.form-actions .btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

body.dark .form-actions .btn-outline-secondary {
    background-color: transparent;
    border-color: #4b5563;
    color: #e5e7eb;
}

body.dark .form-actions .btn-outline-secondary:hover {
    background-color: #374151;
}
/* Remove blue glow on focus */
.form-control:focus {
    box-shadow: none !important;
    border-color: #0d6efd; /* clean blue border */
}

/* Remove blue glow on focus */
.form-control:focus {
    box-shadow: none !important;
    border-color: #0d6efd; /* clean blue border */
}

/* =========================================
   SEARCH TOOLBAR
   ========================================= */
.search-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.search-input-wrap {
    position: relative;
    flex: 1 1 auto;
}

.search-input {
    padding: 10px 0 10px 14px;
}

.search-input-wrap.has-clear .search-input {
    padding-right: 38px;
}

.search-input:focus {
    box-shadow: none !important;
    border-color: #0d6efd;
}

.search-clear {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    line-height: 1;
}

.search-clear:hover {
    color: #111827;
}

.search-clear i {
    font-size: 12px;
}

.search-submit {
    min-width: 44px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
}

.search-submit i {
    font-size: 14px;
    line-height: 1;
}

body.dark .search-clear {
    color: #9ca3af;
}

body.dark .search-clear:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .search-toolbar {
        gap: 8px;
    }

    .search-submit {
        min-width: 40px;
        height: 34px;
        padding: 0 10px;
    }
}

/* =========================================
   CHAT STYLE SEARCH
   Final Connected Search Style
   ========================================= */
.chat-search {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    width: 280px;
    min-width: 280px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-search:focus-within {
    border-color: #0d6efd;
    box-shadow: none;
}

.chat-search-input {
    flex: 1 1 auto;
    width: auto;
    height: 100%;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px;
    color: #111827;
    padding: 0 48px 0 14px;
    line-height: 38px;
}

.chat-search-input::placeholder {
    color: #8b949e;
    font-size: 13px;
}

.chat-search-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.chat-search-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    width: 44px;
    height: 100%;
    border: none;
    border-left: none;
    border-radius: 0;
    background: #0d6efd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.chat-search-btn:hover {
    background: #0a58ca;
}

.chat-search-btn i {
    font-size: 14px;
    line-height: 1;
}

.chat-search-clear {
    position: absolute;
    top: 50%;
    right: 56px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    line-height: 1;
    z-index: 2;
}

.chat-search-clear:hover {
    color: #111827;
}

.chat-search-clear i {
    font-size: 10px;
    line-height: 1;
}

/* Dark mode */
body.dark .chat-search {
    background: #1f2937;
    border-color: #374151;
}

body.dark .chat-search:focus-within {
    border-color: #60a5fa;
}

body.dark .chat-search-input {
    color: #f9fafb;
}

body.dark .chat-search-input::placeholder {
    color: #9ca3af;
}

body.dark .chat-search-btn {
    background: #ffffff;
    color: #111827;
    border-left: 1px solid #e5e7eb;
}

body.dark .chat-search-btn:hover {
    background: #e5e7eb;
}

body.dark .chat-search-clear {
    color: #9ca3af;
}

body.dark .chat-search-clear:hover {
    color: #ffffff;
}

/* =========================================
   LIST TOOLBAR
   ========================================= */
.list-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.list-toolbar form {
    margin: 0;
}

.list-toolbar .list-action-btn,
.list-toolbar .btn,
.list-toolbar .btn-sm {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    white-space: nowrap;
    border-radius: 8px;
}

.empty-state-panel {
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    border: 1px dashed #dbe2ea;
    border-radius: 10px;
    background: #f8fafc;
}

.empty-state-panel h5 {
    font-weight: 600;
}

.empty-state-panel p {
    font-size: 13px;
}

@media (max-width: 768px) {
    .chat-search {
        width: 100%;
        min-width: 100%;
    }

    .list-toolbar {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .list-toolbar form {
        width: 100%;
    }

    .list-toolbar .list-action-btn,
    .list-toolbar .btn,
    .list-toolbar .btn-sm {
        width: 100%;
    }

    .empty-state-panel {
        min-height: 220px;
        padding: 28px 16px;
    }
}

/* ===============================
   Member Registration – Dark Mode Fix
   =============================== */
body.dark .form-section {
    background-color: #111827;
    border-color: #374151;
}

/* Section titles */
body.dark .form-section-title {
    color: #93c5fd;
}

/* Labels */
body.dark .form-label {
    color: #e5e7eb;
}

/* Inputs, selects, textarea */
body.dark .form-control,
body.dark .form-select,
body.dark textarea {
    background-color: #1f2937;
    color: #e5e7eb;
    border-color: #374151;
}

/* Input focus */
body.dark .form-control:focus,
body.dark .form-select:focus,
body.dark textarea:focus {
    background-color: #1f2937;
    color: #ffffff;
    border-color: #60a5fa;
    box-shadow: none;
}

/* Radio & checkbox labels */
body.dark .form-check-label {
    color: #d1d5db;
}

/* File input */
body.dark input[type="file"] {
    background-color: #1f2937;
    color: #e5e7eb;
    border-color: #374151;
}

/* Hamburger menu – dark theme only */
body.dark #menuToggle {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

body.dark #menuToggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* =====================================================
   FOOTER
   ===================================================== */
.app-footer {
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #6c757d;
}

body.dark .app-footer {
    border-top-color: #374151;
    color: #9ca3af;
}
/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        width: 260px;
        height: 100%;
        z-index: 1050;
        transition: left 0.3s ease;
    }

    .sidebar.show {
        left: 0;
    }

    .site-info-content {
        padding: 10px 10px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-left,
    .topbar-meta {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .topbar-meta {
        width: 100%;
        gap: 3px !important;
        margin-top: 6px;
        margin-left: -2px;
    }

    .meta-value {
        font-size: 10px;
    }

    .meta-item {
        text-align: left;
        font-size: 12px;
    }

    .admin-avatar {
        width: 30px;
        height: 30px;
    }

    .mobile-hide {
        display: none;
    }

    .mobile-p-4 {
        padding: 1rem !important;
    }

    .topbar-meta a.btn {
        padding: 4px;
        font-size: 12px;
        line-height: 1;
    }

    .topbar-meta a.btn i {
        font-size: 14px;
    }

    body.admin-login {
        align-items: flex-start !important;
        padding-top: 15px;
    }

    .sidebar-submenu a {
        margin-right: 8px;
        margin-left: 14px;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background-image: url('/assets/admin/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.60),
        rgba(13, 110, 253, 0.40)
    );
}

/* Hero Height */
.min-vh-75 {
    min-height: 75vh;
}

/* Glass Card */
.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30);
}

/* Feature Cards */
.hero-feature {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
}

.hero-feature i {
    font-size: 26px;
    color: #0d6efd;
    display: block;
    margin-bottom: 8px;
}

.hero-feature span {
    font-size: 14px;
    font-weight: 500;
}

.hero-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* HERO ANIMATION */
.hero-section h1 {
    animation: fadeUp 1s ease;
}

.hero-section p {
    animation: fadeUp 1.4s ease;
}

.hero-section .btn {
    animation: fadeUp 1.8s ease;
}

.hero-card {
    animation: fadeRight 1.4s ease;
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* NAVBAR SECTION */
.home-navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.home-navbar.scrolled {
    background: rgba(13, 18, 33, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.home-navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.home-navbar.scrolled {
    background: rgba(13, 18, 33, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .home-navbar-collapse {
        margin-top: 12px;
        padding: 14px 16px;
        background: rgba(13, 18, 33, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .home-navbar .navbar-nav .nav-link {
        padding: 10px 0;
        color: #ffffff;
    }
}

/* FEATURE SECTION */
.feature-section-text {
    max-width: 720px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    transition: all 0.30s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
    border-color: rgba(13, 110, 253, 0.18);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(13, 110, 253, 0.20));
    color: #0d6efd;
    font-size: 28px;
}

.feature-box h5 {
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CLIENT SECTION */
.client-text {
    max-width: 720px;
}

.client-logos {
    opacity: 0.85;
}

.client-logo {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef1f6;
    transition: all .3s ease;
}

.client-logo img {
    width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
}

/* PRICING SECTION */
.pricing-text {
    max-width: 720px;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    transition: all 0.30s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.10);
    border-color: rgba(13, 110, 253, 0.20);
}

.pricing-card-featured {
    border: 2px solid #0d6efd;
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 0.80rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-price .period {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #495057;
    line-height: 1.6;
}

.pricing-list li i {
    color: #198754;
    margin-top: 3px;
    flex-shrink: 0;
}

/* WHY SECTION */
.why-feature {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eef1f6;
    transition: all .3s ease;
    height: 100%;
}

.why-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-feature i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 8px;
}

.why-feature h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* CTA CARD */
.cta-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-item i {
    color: #0d6efd;
}

/* ======================================
   FOOTER SECTION
====================================== */
.footer-section {
    font-size: 0.95rem;
    padding-bottom: 30px;
    border-radius: 5px;
}

/* ======================================
   BRAND / LOGO
====================================== */
.footer-brand img {
    display: block;
}

.footer-logo {
    height: 70px;
}

/* ======================================
   TEXT
====================================== */
.footer-section p {
    line-height: 1.6;
}

/* ======================================
   FOOTER LINKS
====================================== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-links i {
    color: #e8f1ff;
    font-size: 13px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ======================================
   CONTACT LIST
====================================== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #adb5bd;
}

.footer-contact i {
    color: #b9d5ff;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.6;
}

.footer-contact a {
    color: #adb5bd;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer a {
    transition: 0.2s ease;
}

.footer a:hover {
    color: #ffffff;
}
/* ======================================
   SOCIAL ICONS
====================================== */
.footer-social a {
    color: #adb5bd;
    font-size: 18px;
    margin-right: 14px;
    transition: 0.25s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/*-------------------------------- Hero Section ------------------------------------*/
/* .hero-section{
    position:relative;
    background-image:url('/assets/admin/img/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    height: 650px;
    border-radius: 5px;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    border-radius: 5px;
}

.hero-section .container{
    position:relative;
    z-index:2;
}
.hero-card{
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.min-vh-75{
    min-height:75vh;
}
.contact{
    border-radius: 5px;
} */