:root {
    --primary-light: #B3DADE;
    --primary-dark: #2C2B69;
    --primary-darker: #161635;
    --accent: #319b88;
    --black: #000000;
    --gray-dark: #595959;
    --gray-light: #C7C7C7;
    --sidebar-width: 260px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gradient {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 30%, var(--accent) 70%, rgba(58, 128, 136, 0.9) 100%);
    color: #fff
}

::placeholder {
    font-size: 18px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(174deg, #000000, #359d86);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(179, 218, 222, 0.2);
}

.sidebar-header {
    padding: 1.5rem;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

    .sidebar-brand i {
        background: linear-gradient(45deg, var(--primary-light), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.8rem;
        margin-right: 0.75rem;
    }

.sidebar-nav {
    padding: 1rem 0;
    flex-grow: 1;
}

.nav-item {
    margin: 0.25rem 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: rgba(179, 218, 222, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(179, 218, 222, 0.1), transparent);
        transition: left 0.5s;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        color: white;
        background: rgba(58, 128, 136, 0.3);
        transform: translateX(4px);
        box-shadow: 0 4px 15px rgba(58, 128, 136, 0.3);
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--accent), var(--primary-light));
        color:#fff;
        font-weight: 600;
        box-shadow: 0 6px 20px rgba(58, 128, 136, 0.4);
    }

    .nav-link i {
        margin-right: 0.75rem;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Bar */
.topbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin: 0;
}

    .page-title:focus-visible {
        outline: none !important;
    }

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--gray-dark);
}

    .breadcrumb-item.active {
        color: var(--primary-dark);
    }

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 120px;
}

.search-box {
    position: relative;
    width: 250px;
    left:75px;
}

    .search-box input {
        width: 80%;
        padding: 10px 40px;
        border: 1px solid #dee2e6;
        border-radius: 0.5rem;
        background: rgba(179, 218, 222, 0.1);
        color: var(--primary-darker);
        transition: all 0.3s ease;
    }

.filter-btn {
    padding: 10px 10px;
    border: 2px solid #319b88;
    background: none;
}

    .filter-btn:hover {
        background: none;
        color: #6c757d
    }

.search-box input:focus {
    outline: none;
    background: white;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .notification-btn:hover {
        background: rgba(58, 128, 136, 0.1);
        color: var(--accent);
    }

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .user-menu:hover {
        background: rgba(58, 128, 136, 0.2);
    }

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #319b88 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    border-radius:10px !important;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 600;
    color: var(--primary-darker);
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.75rem;
    color: var(--gray-dark);
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.color1 {
    background: rgba(72, 179, 190, 0.1);
}

.color2 {
    background: rgba(58, 128, 136, 0.1);
}

.color3 {
    background: rgba(44, 43, 105, 0.1);
}

.color4 {
    background: rgba(22, 22, 53, 0.1);
}

.color-1 {
    background: rgba(72, 179, 190, 0.3);
    color: #000;
}

.color-2 {
    background: rgba(58, 128, 136, 0.3);
    color: #000;
}

.color-3 {
    background: linear-gradient(to bottom, rgb(49 155 136 / 60%) 0%, rgb(121 167 59 / 67%) 99%);
    color: #000
}

.color-4 {
    background: rgb(49 155 136 / 60%);
    /*color: #000;*/
}




.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

    .stat-icon.users {
        /*background: linear-gradient(135deg, #667eea, #764ba2);*/
        background: #48b3be;
    }

    .stat-icon.revenue {
        background: #319b88;
    }

    .stat-icon.orders {
        background: #2C2B69;
    }

    .stat-icon.growth {
        background: #161635;
    }

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}





.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-darker);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-darker), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 1rem;
}

/* Cards */
.card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    /*overflow: hidden;*/
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.card-header {
    background:#fff !important;
    color: white;
    padding: 1.5rem 2rem;
    border: none;
    position: relative;
    overflow: hidden;
}

    /* .card-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(179, 218, 222, 0.2) 0%, transparent 70%);
        transform: translate(50px, -50px);
    }*/

    .card-header h5 {
        margin: 0;
        font-weight: 600;
        font-size:18px;
        position: relative;
        z-index: 1;
        color: #000;
    }
.business-container .card-header:first-child, .supplier-container .card-header:first-child {
    padding-bottom: 0px;
}

.rfi-container .rfi-content .card-header:first-child {
    background: none !important;
    color: #161635 !important;
    text-align: center;
    border: 1px solid #ffc107;
    border-radius: 5px;
    width: 50%;
    margin: auto;
}

.rfi-container .rfi-content .rfi-action-section .card{padding:20px;}
.rfi-container .rfi-content .rfi-action-section .card .card-body {
    padding: 0px;
}

.card-body {
    padding: 2rem;
}

/* Table Styles */
.table-container {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.table {
    margin: 0;
    border-spacing: 0;
}

    .table thead th {
        background: var(--accent);
        color: white;
        font-weight: bold !important;
        /*padding: 1.25rem 1.5rem !important;*/
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .table tbody td {
        /*padding: 1.25rem 1.5rem;*/
        vertical-align: middle;
    }

    .table tbody tr {
        transition: all 0.3s ease;
    }

        /* .table tbody tr:hover {
            background: rgba(179, 218, 222, 0.1);
            transform: scale(1.01);
        }*/

        .table tbody tr:last-child td {
            border-bottom: none;
        }

/* Status Badges */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status-badge.completed {
        background: rgba(34, 197, 94, 0.1);
        color: #059669;
    }

    .status-badge.processing {
        background: rgba(251, 191, 36, 0.1);
        color: #d97706;
    }

    .status-badge.cancelled {
        background: rgba(239, 68, 68, 0.1);
        color: #dc2626;
    }

/* Action Buttons */
.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .action-btn.view {
        background: rgba(59, 130, 246, 0.1);
        color: #2563eb;
    }

    .action-btn.edit {
        background: rgba(34, 197, 94, 0.1);
        color: #059669;
    }

    .action-btn.delete {
        background: rgba(239, 68, 68, 0.1);
        color: #dc2626;
    }

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Progress Bars */
.progress {
    height: 8px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    border-radius: 10px;
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

    .progress-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: progress-shine 2s infinite;
    }

@keyframes progress-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

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

    .main-content {
        margin-left: 0;
    }

    .topbar {
        padding: 1rem;
    }

    .search-box {
        width: 200px;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .user-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar-actions {
        gap: 0.5rem;
    }

    .search-box {
        display: none;
    }

    .page-title {
        font-size: 1.2rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-darker);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .mobile-menu-btn:hover {
        background: rgba(58, 128, 136, 0.1);
    }

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* Loading Animation */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}



/*Modal Design*/
/* Bootstrap Modal CSS for Business Management Component */

/* Modal Overlay Base Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Modal Dialog Container */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 1rem;
    pointer-events: none;
    max-width: 500px;
    transition: transform 0.3s ease-out;
}

    .modal-dialog.modal-lg {
        max-width: 800px;
    }

    .modal-dialog.modal-sm {
        max-width: 300px;
    }

    .modal-dialog.modal-xl {
        max-width: 1140px;
    }

/* Modal Content */
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #C7C7C7;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}

    .modal-header.bg-primary {
        background-color: #0d6efd !important;
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.125);
    }

    .modal-header.bg-success {
        background-color: #198754 !important;
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.125);
    }

    .modal-header.bg-danger {
        background-color: #dc3545 !important;
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.125);
    }

    .modal-header.bg-warning {
        background-color: #ffc107 !important;
        color: #212529;
        border-bottom-color: rgba(0, 0, 0, 0.125);
    }

/* Modal Title */
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
    color: #161635;
}

    .modal-title i {
        margin-right: 0.5rem;
    }

/* Modal Close Button */
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    /*background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='m.235 1.423 4.259 4.26 4.259-4.26a1 1 0 1 1 1.414 1.414L6.177 6.847l4.259 4.26a1 1 0 0 1-1.414 1.414L4.763 8.261 0.504 12.52a1 1 0 0 1-1.414-1.414L3.349 6.847-1.08 2.588a1 1 0 0 1 1.414-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;*/
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.15s ease-in-out;
}

    .btn-close:hover {
        opacity: 0.75;
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        opacity: 1;
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Modal Body */
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

    .modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Modal Footer */
.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
    gap: 0.5rem;
}

    .modal-footer > * {
        margin: 0.25rem;
    }

/* Loading States */
.modal-body .text-center {
    padding: 2rem 0;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Alert Styles in Modals */
.modal-body .alert {
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.modal-body .alert-info {
    color: #055160;
    background-color: #d1ecf1;
    border-color: #b6e3ea;
}

.modal-body .alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.modal-body .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.modal-body .alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.modal-body .alert i {
    margin-right: 0.5rem;
}

/* Button Groups in Modals */
.modal-body .btn-group .btn {
    border-radius: 0.375rem;
}

    .modal-body .btn-group .btn:not(:first-child) {
        margin-left: 0.25rem;
    }

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .badge.rounded-pill {
        border-radius: 10rem;
    }

.bg-success {
    background-color: #198754 !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* Responsive Design */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: none;
        margin: 0.5rem;
    }

        .modal-dialog.modal-lg {
            max-width: none;
        }

    .modal-content {
        border-radius: 0.25rem;
    }

    .modal-header {
        padding: 0.75rem;
    }

    .modal-body {
        padding: 0.75rem;
        max-height: 50vh;
    }

    .modal-footer {
        padding: 0.5rem;
        flex-direction: column;
    }

        .modal-footer > * {
            width: 100%;
            margin: 0.25rem 0;
        }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-body .table-responsive {
        max-height: 300px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modal-content {
        border-color: #C7C7C7;
        color: black;
        background: #e2e8f0;
    }

    .modal-header {
        border-bottom-color: #C7C7C7;
    }

    .modal-footer {
        border-top-color: #C7C7C7;
    }

    .btn-close-white {
        filter: invert(1) grayscale(100%) brightness(200%);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modal-overlay {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
        border: 2px solid #C7C7C7;
    }

    .modal-header {
        border-bottom: 2px solid #C7C7C7;
    }

    .modal-footer {
        border-top: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .modal-content {
        animation: none;
    }

    .modal-dialog {
        transition: none;
    }

    .btn-close {
        transition: none;
    }
}

/* Focus Management */
.modal-overlay:focus {
    outline: none;
}

.modal-content:focus {
    outline: none;
}

/* Z-index Management */
.modal-overlay {
    z-index: 1055;
}

    .modal-overlay:nth-of-type(2) {
        z-index: 1056;
    }

    .modal-overlay:nth-of-type(3) {
        z-index: 1057;
    }

/* Print Styles */
@media print {
    .modal-overlay {
        display: none !important;
    }
}

.table-wrap .table {
    border-bottom: 1px solid #dee2e6 !important;
}

    .table-wrap .table tbody tr:hover {
        transform: inherit !important;
    }

    .table-wrap .table tbody th {
        padding: 0.5rem 0.8rem;
        font-size: 14px;
        border: 1px solid #fff !important;
    }

    .table-wrap .table tbody td {
        padding: .5rem .9rem;
    }

th {
    padding: 10px !important;
    /* background: #161635 !important; */
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #319b88;
    --bs-btn-border-color: #eef3f3;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a2df54;
    --bs-btn-hover-border-color: #a2df54;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1f5f51;
    --bs-btn-active-border-color: #1f5f51;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-outline-primary {
    --bs-btn-color: #2C2B69;
    --bs-btn-border-color: #2C2B69;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #319b88;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0d6efd;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}

i.bi.bi-key.me-2 {
    color: #319b88;
}

/*#airwallex-kyc-container {
    height: 130vh;
}*/
.main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.topbar {
    flex-grow: 0;
}

.dashboard-content {
    flex-grow: 1;
    overflow: auto;
}

    .dashboard-content:has(.kyc-container) {
        padding: 0;
    }

.kyc-container, .kyc-onboarding-section, .kyc-onboarding-content, .kyc-form-container, .kyc-iframe {
    height: 100% !important;
}

/* RFI (Request for Information) Styles */
/*.rfi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.rfi-header {
    background: #319b88;
    color: white;
    padding: 2rem;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0 8px 32px rgba(44, 43, 105, 0.2);
}

.rfi-content {
    background: white;
    border-radius:0px 0px 16px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rfi-init-section,
.rfi-status-section,


.rfi-form-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rfi-icon {
    color: var(--accent);
}

.rfi-onboarding-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.rfi-onboarding-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.rfi-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 800px;
    height: 80vh;
    overflow: hidden;
}

.rfi-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}


*/
/*#airwallex-rfi-container {
    height: 280vh;
}*/
/*.rfi-header {
    background: #319b88;
    color: white;
    padding: 2rem;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0 8px 32px rgba(44, 43, 105, 0.2);
}
.rfi-onboarding-footer {
    background: white;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/
.rfi-form-section .card,
.rfi-form-section .card .card-body {
    height: 100% !important;
}
.rfi-container, .rfi-form-section, .rfi-iframe {
    height: 100% !important;
}
.dashboard-content:has(.rfi-container) {
    padding: 0px;
}
.service-box {
    overflow: visible;
    padding: 30px 20px;
}

    .service-box .rounded-circle {
        background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 30%, var(--accent) 70%, rgba(58, 128, 136, 0.9) 100%);
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        margin: 0 auto !important;
    }

        .service-box .rounded-circle i {
            color: #fff;
        }

    .service-box .card-footer {
        background: #fff;
    }

    .service-box h6 {
        color: #488990;
        font-weight: 600;
    }

.search-box input {
    outline: none;
    background: white;
}










/*select business modal*/

/* Overlay background with blur */
.select-business-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.4s ease;
    /*display: none;*/
}

/* Transparent dropdown container */
.business-selector {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Dropdown button */
.business-dropdown {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: left;
}

    .business-dropdown:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
    }

/* Dropdown menu */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    padding: 6px 0;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    transition: background 0.2s ease;
}

    .dropdown-item:hover {
        background: rgba(92, 133, 225, 0.15);
    }

/* Gradient Continue button */
.btn-gradient {
    background: linear-gradient(135deg, #5c85e1, #b22fe1);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn-gradient:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/*add business*/

.add-business-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.4s ease;
    /*display: none;*/
}









.dropdown-toggle::after {
    display: none !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.topbar-actions {
    position: absolute;
}


.scrollable-dropdown {
    max-height: 250px; /* taller than before */
    overflow-y: auto; /* scrolls only when needed */
    border-radius: 0.5rem; /* smooth rounded corners */
    background-color: #fff; /* white background */
    z-index: 1050; /* stays above form controls */
}

    .scrollable-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .scrollable-dropdown::-webkit-scrollbar-thumb {
        background-color: #bbb;
        border-radius: 3px;
    }

        .scrollable-dropdown::-webkit-scrollbar-thumb:hover {
            background-color: #888;
        }

.stat-card.business {
    border-color: #85b0b5;
    background: rgba(133, 176, 181,0.2);
}
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.color-2 {
    background: rgb(58 128 136 / 62%);
    color: #000;
}

.trend-positive {
    color: green;
}

.stat-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .stat-card.business {
        border-color: #85b0b5;
        background: rgba(133, 176, 181,0.2);
    }

    .stat-card.suppliers {
        border-color: #747398;
        background: linear-gradient(to bottom, rgba(49,155,136,0.1) 0%,rgba(121,167,59,0.1) 99%)
    }

    .stat-card.invoices {
        border-color: #2e2e53;
        background: rgba(49, 155, 136, 0.1);
    }

.chart-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    padding: 20px;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}





.brand-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
}

.metric-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-color);
}

.metric-label {
    color: #6b7280;
    font-size: 14px;
    margin-top: 5px;
}

.trend-positive {
    color: green;
}

.trend-negative {
    color: red;
}

.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.table th {
    background-color: var(--light-bg);
    color: var(--dark-color);
    font-weight: 600;
    padding: 15px;
}

.table td {
    padding: 10px;
    vertical-align: middle;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
}

.status-pending {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--warning-color);
}

.status-paid {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        z-index: 1000;
    }

        .sidebar.show {
            left: 0;
        }

    .main-content {
        margin-left: 0;
    }
}




.card-body input .form-select {
    border: 2px solid #e5e7eb;
}
.card-body .form-select {
    border: 2px solid #e5e7eb;font-size:14px;}
.card-body .col-md-2 button {
    width: 100% !important;
    text-align:left;
    font-size:14px;
}
.card-body .col-md-2 .delete{border-color:red;color:red;}
.business-name-badge {
    border-radius: 10px;
    background-color:#cacaca !important;
    color: #000 !important;
}
.btn-group{gap:10px;}
    .btn-group button {
        border-radius: 5px !important;
    }
.business-list-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280 !important;
}

.pagination{gap:10px !important;}
    .pagination .page-item .page-link{
       border-radius:10px !important;
    }

  ::placeholder{font-size:14px;}
.active > .page-link, .page-link.active {
    background: #319b88;
}



.rfi-container .rfi-header p{padding-left:40px;}
.rfi-container .rfi-content .rfi-action-section .card{padding:50px !important;}
.rfi-container .rfi-content .rfi-action-section .card .card-body h4{font-size:28px;font-weight:bold;}
    .rfi-container .rfi-content .rfi-action-section .card .card-body p {
        padding: 0px 130px;
        font-size: 18px;
    }

.page-item{cursor:pointer;}
    .page-item .page-link:hover {
        background: #319b88;color:#fff
    }



.topbar .topbar-content .topbar-actions input {
    border: 1px solid #dee2e6;
    box-shadow:none !important;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10b981;
}

.percentage {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: #10b981;
}
.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: #319b88;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.invoices-head i {
    background: #319b88;
    padding: 6px 10px;
    font-size: 22px;
    border-radius: 10px;
    color: #fff;
}
.invoices-head{text-align:justify;}









.pay-invoice .card-header i {
    color: #319b88;
}
.pay-invoice .card-header {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 0px;
}
.old-payments
.card-header {
    color: #000;
    font-size: 25px;
    font-weight: bold;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pay-invoice .info-row {
    color: #6b7280;
    font-size: 18px;
}
.invoice-details .summary-card {
    background: #319b88;
    color: white;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.invoice-details .summary-row.total {
    border-top: 1px solid rgb(0 0 0 / 20%);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 700;
}
.invoice-details .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    font-size: 14px;
    box-shadow: 0px 0px 7px #00000021;
    padding: 10px 10px 10px;
    height: 55px;
}
.summary-row p {
    font-size: 18px;
    margin: 0;
}
.summary-row input.form-control {
    border-radius: 0px;
    border-color: #319b88;
}
.invoice-details .alert.alert-light.mt-3 {
    border: none;
    background: none !important;
}
.summary-row strong {
    color: #319b88;
}
.invoice-details .card-body {
    padding: 1rem;
}
.payment-control {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
}

    .payment-control .form-label {
        color: #000;
        font-weight: 600;
        font-size: 18px;
    }
/*.pay-invoice .card {
    height: 295px;
}*/
.pay-invoice .card .card-header{overflow:clip;}
.invoice-details .card-header {
    color: #000;
    font-size: 25px;
    font-weight: bold
}

.parties-involved {
    box-shadow: 0px 0px 30px #b3b9c0;
    padding: 20px;
    border-radius: 10px;
}
tr.invoice-total-row {
    border-top: 2px solid #4a8a92;
}













/*Landing-Page-Css*/

html {
    overflow-x: hidden;
}

html, body {
    height: auto;
}

.body-landing-page {
    color: #505050;
    font-size: 15px;
    font-family: "Inter", sans-serif;
}

    .body-landing-page a {
        color: #319b88;
        text-decoration: none;
    }

        .body-landing-page a:hover, .body-landing-page a:focus {
            color: #319b88;
            text-decoration: none;
        }

    .body-landing-page img {
        max-width: 100%;
        vertical-align: middle;
    }

    .body-landing-page p {
        line-height: 26px;
        margin: 0 0 15px;
    }

    .body-landing-page h1, .body-landing-page h2, .body-landing-page h3, .body-landing-page h4, .body-landing-page h5, .body-landing-page h6 {
        font-weight: 900;
        font-family: "Manrope", sans-serif;
        margin: 0 0 10px;
    }

    .body-landing-page h2 {
        color: #319b88;
    }

..body-landing-page h3 {
    color: #319b88;
}

.body-landing-page h4 {
    color: #319b88;
}

.body-landing-page .pad-t0 {
    padding-top: 0 !important;
}

.body-landing-page .pad-t10 {
    padding-top: 10px !important;
}

.body-landing-page .pad-t15 {
    padding-top: 15px !important;
}

.body-landing-page .pad-t20 {
    padding-top: 20px !important;
}

.body-landing-page .pad-t25 {
    padding-top: 25px !important;
}

.body-landing-page .pad-t30 {
    padding-top: 30px !important;
}

.body-landing-page .pad-t35 {
    padding-top: 35px !important;
}

.body-landing-page .pad-t40 {
    padding-top: 40px !important;
}

.body-landing-page .pad-t45 {
    padding-top: 45px !important;
}

.body-landing-page .pad-t50 {
    padding-top: 50px !important;
}

.body-landing-page .pad-0 {
    padding: 0 !important;
}

.body-landing-page .pad-b0 {
    padding-bottom: 0 !important;
}

.body-landing-page .pad-b5 {
    padding-bottom: 5px !important;
}

.body-landing-page .pad-b10 {
    padding-bottom: 10px !important;
}

.body-landing-page .pad-b15 {
    padding-bottom: 15px !important;
}

.body-landing-page .pad-b20 {
    padding-bottom: 20px !important;
}

.body-landing-page .pad-b25 {
    padding-bottom: 25px !important;
}

.body-landing-page .pad-b30 {
    padding-bottom: 30px !important;
}

.body-landing-page .pad-b35 {
    padding-bottom: 35px !important;
}

.body-landing-page .pad-b40 {
    padding-bottom: 40px !important;
}

.body-landing-page .pad-b45 {
    padding-bottom: 45px !important;
}

.body-landing-page .pad-b50 {
    padding-bottom: 50px !important;
}

.body-landing-page .mrg-0 {
    margin: 0px !important;
}

.body-landing-page .mrb-0 {
    margin-bottom: 0px !important;
}

.body-landing-page .mrb-10 {
    margin-bottom: 10px !important;
}

.body-landing-page .mrb-15 {
    margin-bottom: 15px !important;
}

.body-landing-page .mrb-20 {
    margin-bottom: 20px !important;
}

.body-landing-page .mrb-25 {
    margin-bottom: 25px !important;
}

.body-landing-page .mrb-30 {
    margin-bottom: 30px !important;
}

.body-landing-page .mrb-35 {
    margin-bottom: 35px !important;
}

.body-landing-page .mrb-40 {
    margin-bottom: 40px !important;
}

.body-landing-page .mrb-45 {
    margin-bottom: 45px !important;
}

.body-landing-page .mrb-50 {
    margin-bottom: 50px !important;
}

.body-landing-page .mrb-60 {
    margin-bottom: 60px !important;
}

.body-landing-page .mrb-70 {
    margin-bottom: 70px !important;
}

.body-landing-page .mrb-80 {
    margin-bottom: 80px !important;
}

.body-landing-page .mrb-90 {
    margin-bottom: 90px !important;
}

.body-landing-page .mrb-100 {
    margin-bottom: 100px !important;
}

@media (min-width: 250px) {
    .sticky.header-landing-page nav {
        position: fixed;
        background: #fff;
        -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 5%);
        box-shadow: 0 3px 9px rgb(0 0 0 / 5%);
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        -webkit-transition: all .5s;
        transition: all .5s;
        max-width: 100%;
        margin-top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sticky.header-landing-page .navbar .logo img {
        max-width: 110px;
        filter: inherit;
    }

    .sticky.header-landing-page nav .navbar .links li a {
        padding: 23px 15px;
    }

    .sticky.header-landing-page .navbar .bx-menu {
        margin: 26px 0 0;
    }
    
}
.landing-page-active {
    position: fixed !important;
    width: 100% !important;
    z-index: 999 !important;
    background: #fff;
    transition:.4s ease;
}
.body-landing-page .header-landing-page .btn {
    font-size: 15px !important;
    margin: 0 0 0 15px !important;
}
    .landing-page-active.header-landing-page .navbar .logo img{width:110px;}

    .body-landing-page .container {
        position: relative;
        z-index: 3;
        padding: 0 15px;
    }

.body-landing-page .row {
    margin: 0 -15px;
}

    .body-landing-page .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }

.body-landing-page .hidden {
    display: none !important;
}

.header-landing-page {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0;
    z-index: 5;
}

    .header-landing-page .login-btn {
        padding: 0;
        margin: 0 0 0 15px
    }

    .header-landing-page .body-landing-page .btn {
        font-size: 15px;
        margin: 0 0 0 15px
    }

    .header-landing-page nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        font-size: 16px;
        font-weight: 900;
        font-family: "Manrope", sans-serif;
    }

        .header-landing-page nav .navbar {
            display: flex;
            align-items: start;
            justify-content: space-between;
            margin: auto; /* background: red; */
            position: relative;
            max-width: 100%;
            margin: 0 0 0;
            box-shadow: none;
            background: none;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
            padding: 0;
        }

    .header-landing-page .navbar .logo {
    }

        .header-landing-page .navbar .logo a {
            display: block;
            margin: 0;
            padding: 20px 0;
        }

        .header-landing-page .navbar .logo img {
            max-width: 210px;
            position: relative;
            z-index: 100;
        }

    .header-landing-page nav .navbar .nav-links {
        height: 100%;
        margin: 0 0 0 auto;
        display: flex;
        align-content: center;
        align-items: center;
    }

    .header-landing-page nav .navbar .links {
        display: flex;
        padding: 0;
        margin: 0;
    }
        /*.header-landing-page nav .navbar .links li:nth-child(4){margin-right: 200px;}*/
        .header-landing-page nav .navbar .links li {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            list-style: none;
            text-transform: capitalize;
            margin: 0;
        }

            .header-landing-page nav .navbar .links li a {
                padding: 39px 15px;
                display: block;
                text-decoration: none;
                white-space: nowrap;
                color: #000;
            }

        .header-landing-page nav .navbar .links > li > a:hover,
        .header-landing-page nav .navbar .links > li > a:focus,
        .header-landing-page nav .navbar .links > li > a:focus-within, .header-landing-page nav .navbar .links > li.current-menu-item > a {
            color: #319b88;
        }

    .header-landing-page .links li:hover .htmlcss-arrow, .header-landing-page .links li:hover .js-arrow {
        transform: rotate(180deg);
    }

    .header-landing-page nav .navbar .links li .arrow {
        width: 16px;
        line-height: 52px;
        text-align: center;
        display: inline-block;
        color: #319b88;
        transition: all 0.3s ease;
        margin: 2px 0 0 5px;
        font-size: 16px;
        font-weight: bold;
    }

    .header-landing-page nav .navbar .links li .sub-menu { /*border: 1px solid #dddddd6b; box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); position: absolute; top: 100%; left: 0; background: #fff; box-shadow: none; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; display: none; z-index: 2; padding: 5px 15px;*/
        overflow: hidden;
    }

    .header-landing-page nav .navbar .links li:hover .htmlCss-sub-menu, .header-landing-page nav .navbar .links li:hover .js-sub-menu {
        display: block;
    }

@media (min-width:1100px) {

    .header-landing-page nav .navbar .links li .sub-menu {
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 2;
        padding: 7px 15px 5px;
        width: 250px;
        background: #fff;
        border: 1px solid #dddddd6b;
        box-shadow: 0 10px 40px rgba(0,0,0,.08);
        -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.08);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .25s ease-out;
        -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
        -o-transition: all .25s ease-out;
        transition: all .25s ease-out;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .header-landing-page nav .navbar .links li:hover .htmlCss-sub-menu, .header-landing-page nav .navbar .links li:hover .js-sub-menu {
        opacity: 1;
        visibility: visible;
        -moz-transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.header-landing-page .navbar .links li .sub-menu li {
    padding: 0;
    margin: 0;
    border-bottom: 1px dashed #d5d5d5;
}

    .header-landing-page .navbar .links li .sub-menu li:last-child {
        border-bottom: 0;
    }

.header-landing-page .navbar .links li .sub-menu a {
    color: #000;
    padding: 8px 0;
    display: block;
    width: 100%;
}

    .header-landing-page .navbar .links li .sub-menu a:hover {
        color: #319b88;
    }

.header-landing-page .navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.header-landing-page .navbar .links li .htmlCss-more-sub-menu { /* line-height: 40px; */
}

.header-landing-page .navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 1;
    display: none;
}

.header-landing-page .links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.header-landing-page .navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

    .header-landing-page .navbar .search-box i {
        position: absolute;
        height: 100%;
        width: 100%;
        line-height: 40px;
        text-align: center;
        font-size: 22px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-landing-page .navbar .search-box .input-box {
        position: absolute;
        right: calc(100% - 40px);
        top: 80px;
        height: 60px;
        width: 300px;
        background: #3E8DA8;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

.header-landing-page .navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.header-landing-page .search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.header-landing-page .search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.header-landing-page .navbar .nav-links .sidebar-logo {
    display: none;
}

.header-landing-page .navbar .bx-menu {
    display: none;
}

@media (max-width:1100px) {
    .header-landing-page nav .navbar {
        max-width: 100%;
        padding: 0;
        flex-direction: row-reverse;
    }

        .header-landing-page nav .navbar:before, .header-landing-page nav .navbar:after {
            display: none
        }

        .header-landing-page nav .navbar .logo a {
            font-size: 27px;
            padding: 20px 0;
            margin: 0;
        }

    .header-landing-page .navbar .logo img {
        max-width: 250px;
    }

    .header-landing-page nav .navbar .links > li:first-child {
        border-top: 1px solid #ccc;
    }

    .header-landing-page nav .navbar .links > li {
        padding: 0;
        border-bottom: 1px solid #ccc;
        white-space: nowrap;
    }

        .header-landing-page nav .navbar .links > li a:hover, .header-landing-page nav .navbar .links > li.active > a {
            color: #319b88;
        }

    .navbar .links li .sub-menu a {
        padding: 10px;
    }

    .header-landing-page .navbar .links li .sub-menu a:hover, .header-landing-page nav .navbar .sub-menu > li.active > a {
        color: #319b88;
        background: none;
    }

    .header-landing-page nav { /* position: relative; */
    }

    .header-landing-page .navbar .bx-menu {
        display: block;
    }

    .header-landing-page nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 100%;
        width: 100%;
        background: #fff;
        line-height: normal;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
        overflow-x: scroll;
        align-content: start;
    }

    .header-landing-page .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 15px 0;
    }

    .header-landing-page .sidebar-logo .logo-name {
    }

        .header-landing-page .sidebar-logo .logo-name img {
            max-width: 250px;
        }

    .header-landing-page .sidebar-logo i {
        font-size: 25px;
        color: #319b88;
        cursor: pointer;
    }

    .header-landing-page .navbar .bx-menu {
        font-size: 25px;
        color: #319b88;
        cursor: pointer;
        margin: 45px 0 0;
    }

    .header-landing-page .header-landing-page-position .sidebar-logo i {
        color: #fff;
    }

    .header-landing-page .header-landing-page-position .navbar .bx-menu {
        color: #000;
    }

    .header-landing-page.header-landing-page-position nav .navbar .links > li > a {
        color: #fff;
    }

    .header-landing-page.header-landing-page-position nav .navbar .links li .arrow {
        color: #fff;
    }

    .header-landing-page.header-landing-page-position nav .navbar .links > li a:hover, .header-landing-page.header-landing-page-position nav .navbar .links > li.active > a {
        color: #319b88;
    }

    .header-landing-page nav .navbar .links {
        display: block;
        margin-top: 20px;
        padding: 0;
    }

        .header-landing-page nav .navbar .links li .arrow {
            line-height: 40px;
            position: absolute;
            border-left: 1px solid #ccc;
            width: 52px;
            top: 7px;
            bottom: 7px;
            right: 0;
            cursor: pointer;
            color: #000;
        }

        .header-landing-page nav .navbar .links li {
            display: block;
            margin: 0;
        }

            .header-landing-page nav .navbar .links li:nth-child(3) {
                margin-right: 0;
            }

            .header-landing-page nav .navbar .links li a {
                padding: 15px;
                color: #000;
            }

    .header-landing-page .navbar .links li .sub-menu a {
        padding: 10px 0;
        white-space: break-spaces;
    }

    .header-landing-page nav .navbar .links li .sub-menu {
        border: 0;
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
        background: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        padding: 0 65px 0 30px;
    }

        .header-landing-page nav .navbar .links li .sub-menu li {
            border-bottom: 1px solid #ccc;
        }

    .header-landing-page .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

        .header-landing-page .navbar .links li .sub-menu .more-sub-menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .header-landing-page .links li:hover .htmlcss-arrow, .header-landing-page .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .header-landing-page .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .header-landing-page .navbar .links li .sub-menu .more span { /* background: red; */
        display: flex;
        align-items: center; /* justify-content: space-between; */
    }

    .header-landing-page .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    .header-landing-page nav .navbar .links li:hover .htmlCss-sub-menu, .header-landing-page nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .header-landing-page .navbar .nav-links.show1 .links .htmlCss-sub-menu, .header-landing-page .navbar .nav-links.show3 .links .js-sub-menu, .header-landing-page .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .header-landing-page .navbar .nav-links.show1 .links .htmlcss-arrow, .header-landing-page .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .header-landing-page .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    .header-landing-page nav .navbar .nav-links {
        max-width: 100%;
    }
}


.banner-landing-page {
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
    margin: 0;
    /*padding: 150px 0 0;*/
}

    .banner-landing-page:before {
        /*background-image: url(images/banner-bg-01.png);*/
        background-image: url('../images/banner-bg-01.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        position: absolute;
        left: -15%;
        top: -10%;
        width: 60%;
        height: 900px;
        opacity: 0.5;
    }

    .banner-landing-page:after {
       /* background-image: url(images/banner-bg-02.png);*/
        background-image: url('../images/banner-bg-02.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        position: absolute;
        right: -15%;
        bottom: 0;
        width: 56%;
        height: 900px;
        opacity: 0.5;
    }

    .banner-landing-page .slide button {
        top: 47%;
        opacity: 1;
        width: 65px;
        height: 65px;
        z-index: 100;
        color: #fff;
        display: block;
        font-size: 34px;
        cursor: pointer;
        overflow: hidden;
        line-height: 24px;
        text-shadow: none;
        position: absolute;
        font-weight: normal;
        background: rgba(0, 0, 0, 0.5); /*-webkit-box-shadow: 0 0px 10px 5px rgba(0,0,0,.1); box-shadow: 0 0px 10px 5px rgba(0,0,0,.1);*/
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        left: 20px;
    }

    .banner-landing-page .slide:hover button {
        opacity: 1;
    }

    .banner-landing-page .slide button.left {
    }

    .banner-landing-page .slide button.right {
        left: inherit;
        right: 20px;
    }

    .banner-landing-page .slide button.left {
        right: 80px;
    }

        .banner-landing-page .slide button.left:hover, .banner-landing-page .slide button.right:hover {
            color: #fff;
            background: #b78d2e;
            border: 0px transparent;
        }

    .banner-landing-page .slide button .fa {
        margin: 0;
        background: none;
        font-size: 22px;
        padding: 6px 0 0;
    }

    .banner-landing-page .slide button.left > span:nth-child(1) {
        left: 45%;
    }

    .banner-landing-page .slide button.right > span:nth-child(1) {
        right: 45%;
    }

    .banner-landing-page .banner-text {
        padding: 50px 0 0;
    }

    .banner-landing-page figure {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        overflow: hidden;
        margin: 0;
        position: relative;
    }

        .banner-landing-page figure img {
            width: 100%;
            object-fit: cover;
            object-position: center center;
        }

    .banner-landing-page .banner-landing-page-form {
        position: relative;
        z-index: 3;
    }

    .banner-landing-page h2 {
        color: #000;
        font-size: 80px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .banner-landing-page h2 span {
            color: #319b88;
        }

    .banner-landing-page p {
        line-height: 36px;
        font-size: 20px;
    }

    .banner-landing-page .body-landing-page .btn {
        font-size: 17px;
    }

.body-landing-page .btn {
    background: #319b88;
    border: 0;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    padding: 12px 25px;
    overflow: hidden;
    text-shadow: none;
    text-transform: capitalize;
    letter-spacing: 0;
}

    .body-landing-page .btn:hover, .body-landing-page .btn:focus {
        color: #fff;
        background: #a2df54;
    }

        .body-landing-page .btn:hover i {
            transition: 0.3s;
            color: #fff;
        }

    .body-landing-page .btn:before {
        content: '';
        background-image: url(images/arrow-right-white.svg);
        background-image: url('../images/arrow-right-white.svg');
        background-repeat: no-repeat;
        background-position: right center;
        background-attachment: scroll;
        background-size: 38px 8px;
        width: 19px;
        height: 8px;
        display: inline-block;
        margin-right: 15px;
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        filter: inherit;
        position: relative;
        top: -2px;
    }

    .body-landing-page .btn:hover:before, .body-landing-page .btn:focus:before {
        filter: brightness(100%);
        width: 38px;
    }

    .body-landing-page .btn i {
        position: relative;
        margin: 0 0 0 10px;
        top: 1px;
        z-index: 10;
    }

    .body-landing-page .btn span {
        position: absolute;
        width: 25%;
        height: 100%;
        background-color: #319b88;
        transform: translateY(150%);
        border-radius: 50%;
        left: calc((var(--n) - 1) * 25%);
        transition: 0.3s;
        transition-delay: calc((var(--n) - 1) * 0.1s);
        z-index: -1;
    }

    .body-landing-page .btn:hover span, .body-landing-page .btn:focus span {
        transform: translateY(0) scale(2);
    }

    .body-landing-page .btn span.s1 {
        --n: 1;
    }

    .body-landing-page .btn span.s2 {
        --n: 2;
    }

    .body-landing-page .btn span.s3 {
        --n: 3;
    }

    .body-landing-page .btn span.s4 {
        --n: 4;
    }

@keyframes video-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes rollShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-359deg);
    }
}

@keyframes bounce-y {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce-x {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}


.body-landing-page .body-landing-page .content {
    margin: 0 auto;
    max-width: 75%;
}

.body-landing-page .row-flex {
    flex-direction: row-reverse;
}

.body-landing-page .sub-title {
    color: #319b88;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 15px;
}

    .body-landing-page .sub-title span {
        position: relative;
        display: inline-block;
        padding: 8px 25px;
        border: 1px solid #CDD0CF;
        border-radius: 10px;
        color: #505050;
        font-size: 16px;
    }

.swiffta-model-landing-page {
    position: relative;
}

    .swiffta-model-landing-page .card {
        padding: 45px 35px 30px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        background: linear-gradient(to bottom, rgba(49,155,136,0.1) 0%,rgba(121,167,59,0.1) 99%);
        margin: 30px 0 0;
        border: 0;
    }

    .swiffta-model-landing-page ul {
        padding: 0 0 5px;
        margin: 0 auto;
        /*max-width: 70%;*/
        text-align: left;
    }

.swiffta-model-landing-page .right-grid{padding: 0 100px;}

.swiffta-model-landing-page li {
    list-style: none;
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    position: relative;
}

    .swiffta-model-landing-page ul li::before {
        content: "\f192";
        color: #00a9c6;
        font-family: FontAwesome;
        position: absolute;
        left: 0;
        top: 1px;
    }
    .swiffta-model-landing-page h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

    .swiffta-model-landing-page h2 span {
        color: #319b88;
    }
.what-we-do-landing-page {
    padding: 90px 0 60px;
    position: relative;
    z-index: 2;
}

    .what-we-do-landing-page h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .what-we-do-landing-page h2 span {
            color: #319b88;
        }

    .what-we-do-landing-page ul {
        padding: 0 0 5px;
        margin: 0 auto;
        max-width: 70%;
        text-align: left;
    }

        .what-we-do-landing-page ul li {
            list-style: none;
            margin: 0 0 15px;
            padding: 0 0 0 25px;
            position: relative;
        }

            .what-we-do-landing-page ul li::before {
                content: "\f192";
                color: #319b88;
                font-family: FontAwesome;
                position: absolute;
                left: 0;
                top: 1px;
            }

    .what-we-do-landing-page .left-grid {
        padding: 0 15px 0;
        position: relative; /*display: -ms-flexbox; display: flex; -ms-flex-pack: center; justify-content: left; -ms-flex-align: center; align-items: center;*/
    }

    .what-we-do-landing-page .right-grid {
        padding: 0 120px 0 15px;
    }

    .what-we-do-landing-page .body-landing-page .btn {
        margin-top: 15px;
    }
/*.what-we-do-landing-page figure{padding: 40px 40px 0; -webkit-border-radius: 15px 15px 0 0; -moz-border-radius: 15px 15px 0 0; border-radius: 15px 15px 0 0; background: linear-gradient(to bottom, rgba(49,155,136,0.1) 0%,rgba(121,167,59,0.1) 99%);}
  .what-we-do-landing-page figure img{-webkit-border-radius: 15px 15px 0 0; -moz-border-radius: 15px 15px 0 0; border-radius: 15px 15px 0 0; position: relative; z-index: 2; border: 10px solid #fff; border-bottom: 0;}
  .what-we-do-landing-page figure img.position-01{box-shadow: inset 0 0 6px 0 hsla(0,0%,100%,.59),inset 0 1px 0 0 hsla(0,0%,100%,.92),inset 0 0 5px 0 hsla(0,0%,100%,.2); position: absolute; top: 26%; right: 14%; width: 170px; -webkit-border-radius: 15px !important; -moz-border-radius: 15px !important; border-radius: 15px !important;}
  .what-we-do-landing-page figure img.position-02{box-shadow: inset 0 0 6px 0 hsla(0,0%,100%,.59),inset 0 1px 0 0 hsla(0,0%,100%,.92),inset 0 0 5px 0 hsla(0,0%,100%,.2); position: absolute; top: 30%; right: 14%; width: 170px; -webkit-border-radius: 15px !important; -moz-border-radius: 15px !important; border-radius: 15px !important;}
  .what-we-do-landing-page figure span{display: block; color: #319b88; font-size: 60px; margin: 0 0 -30px; position: relative; font-weight: 1000; font-family: "Manrope", sans-serif; text-transform: uppercase; text-align: center; -webkit-text-fill-color: transparent; -webkit-text-stroke: 3px #319b88;}*/

.our-benefits-landing-page {
    position: relative;
    z-index: 1;
    padding: 90px 0 60px;
}

    .our-benefits-landing-page h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .our-benefits-landing-page h2 span {
            color: #319b88;
        }

    .our-benefits-landing-page .row-info .info{
        padding: 45px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        background: linear-gradient(to bottom, rgba(49,155,136,0.1) 0%,rgba(121,167,59,0.1) 99%);
        margin: 0; height: 100%;
    }

    .our-benefits-landing-page h3 {
        color: #000;
        font-size: 34px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

    .our-benefits-landing-page p:last-child {
        margin-bottom: 0;
    }

    .our-benefits-landing-page figure {
        margin: 0;
        padding: 0 12%;
    }
    .our-benefits-landing-page .row-info figure img {
        width: 100%;
        height: 60px;
        object-fit: contain;
        object-position: center center;
    }
.journey-text-landing-page {
    padding: 90px 0 60px;
    position: relative;
    z-index: 2;
}

    .journey-text-landing-page h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .journey-text-landing-page h2 span {
            color: #319b88;
        }

    .journey-text-landing-page .info-area {
        position: relative;
        margin: 0 0 30px;
        background: rgba(49, 155, 136, 0.1);
        padding: 40px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
    }

        .journey-text-landing-page .info-area:nth-child(2n) {
            background: rgba(121, 167, 59, 0.1);
        }

            .journey-text-landing-page .info-area:nth-child(2n) h4 span {
                color: #319b88;
            }

        .journey-text-landing-page .info-area figure {
            margin: 0 0 20px;
            width: 140px;
            background: #77D1BC;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            text-align: center;
            overflow: hidden;
        }

        .journey-text-landing-page .info-area img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            object-position: center center;
        }

        .journey-text-landing-page .info-area p {
            color: #1D443E;
            font-size: 22px;
            line-height: 40px;
        }

        .journey-text-landing-page .info-area h4 {
            color: #000;
            font-size: 20px;
            margin: 40px 0 0;
        }

            .journey-text-landing-page .info-area h4 span {
                color: #319b88;
                display: block;
                font-size: 16px;
                font-weight: 700;
                margin: 5px 0 0;
            }

    .journey-text-landing-page .ifno-sticky {
        position: sticky;
        height: 650px;
        top: 100px;
        right: 0;
    }

        .journey-text-landing-page .ifno-sticky figure {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
            padding: 5px;
        }

            .journey-text-landing-page .ifno-sticky figure img {
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
            }

.pricing-wrap-landing-page {
    position: relative;
    padding: 80px 0 70px;
    z-index: 1;
}

    .pricing-wrap-landing-page h2 {
        color: #000;
        font-size: 30px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .pricing-wrap-landing-page h2 span {
            color: #319b88;
        }

    .pricing-wrap-landing-page .right-grid {
        position: absolute;
        right: 0;
        bottom: -86px;
        padding: 0 35px;
        text-align: center;
    }

    .pricing-wrap-landing-page .inner-box {
        position: relative;
        padding: 13px 28px 30px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
        transition: all 300ms ease;
        z-index: 3;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        height: 100%;
    }

        .pricing-wrap-landing-page .inner-box:before {
            content: "";
            position: absolute;
            top: -87px;
            left: -38px;
            width: 185px;
            height: 185px;
            border-radius: 100px;
            background-color: #319b88;
            transition: all 300ms ease;
        }

        .pricing-wrap-landing-page .inner-box:hover:before {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
        }

        .pricing-wrap-landing-page .inner-box:hover, .pricing-wrap-landing-page .inner-box:hover h4, .pricing-wrap-landing-page .inner-box:hover h4 a, .pricing-wrap-landing-page .inner-box:hover .count {
            color: #fff;
            opacity: 1;
        }

        .pricing-wrap-landing-page .inner-box .icon {
            max-width: 60px;
            margin: 0 0 50px;
        }

            .pricing-wrap-landing-page .inner-box .icon img {
                filter: brightness(0) invert(1);
            }

        .pricing-wrap-landing-page .inner-box .count {
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 40px;
            font-weight: 600;
            opacity: 0.2;
        }

        .pricing-wrap-landing-page .inner-box .inner {
            position: relative;
        }

        .pricing-wrap-landing-page .inner-box h4 {
            font-size: 16px;
            color: #000;
            line-height: 28px;
            margin: 0;
            font-weight: 500;
            font-family: "Inter", sans-serif;
            letter-spacing: -0.3px;
        }

.our-pricing {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

    .our-pricing h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .our-pricing h2 span {
            color: #319b88;
        }

    .our-pricing .pricingTable {
        margin: 60px 0 0;
        background: #fff none repeat scroll 0 0;
        color: #232434;
        padding: 50px 35px 35px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        -webkit-box-shadow: 0px 19px 43px 0px rgba(17, 17, 17, 0.05);
        box-shadow: 0px 19px 43px 0px rgba(17, 17, 17, 0.05);
        -webkit-perspective: 700px;
        perspective: 700px;
        position: relative;
        text-align: center;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        z-index: 1;
        border: 1px solid #e5e5e5;
    }

    .our-pricing .pricing-col:nth-child(3) .pricingTable {
        margin-top: 0;
        background: linear-gradient(to bottom, rgba(49,155,136,0.08) 0%,rgba(121,167,59,0.08) 99%);
    }

        .our-pricing .pricing-col:nth-child(3) .pricingTable .pricing-content {
            background: rgba(49, 155, 136, 0.1);
        }

    .our-pricing .pricingTable .tag {
        background: #319b88;
        color: #fff;
        position: absolute;
        font-weight: 900;
        font-family: "Manrope", sans-serif;
        padding: 7px 20px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        left: 0;
        right: 0;
        top: -20px;
        max-width: 165px;
        margin: 0 auto;
        text-transform: uppercase;
    }

    .our-pricing .pricingTable .pricingTable-header {
    }

    .our-pricing .pricingTable .title {
        display: block;
        font-size: 24px;
        font-weight: 600;
        text-transform: capitalize;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    .our-pricing .pricingTable .price-month {
        font-size: 16px;
        font-weight: 500;
        margin-top: 5px;
    }

    .our-pricing .pricingTable .price-value {
        font-size: 170px;
        line-height: 112px;
        position: relative;
        color: rgba(49, 155, 136, 0.1);
        margin: 40px 0;
    }

        .our-pricing .pricingTable .price-value .value-bg {
            display: inline-block;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            color: #319b88;
            font-weight: 600;
            font-size: 60px;
            line-height: 60px;
        }

    .our-pricing .pricingTable-2 .price-value {
        color: #e6e4ff;
    }

        .our-pricing .pricingTable-2 .price-value .value-bg {
            color: #7564e5;
        }

    .our-pricing .pricingTable .pricing-content {
        list-style: none;
        padding: 25px 25px 10px;
        margin: 0 auto 30px;
        background: rgba(49, 155, 136, 0.04);
        border-radius: 10px;
    }

        .our-pricing .pricingTable .pricing-content li {
            position: relative;
            text-align: left;
            border-bottom: 1px dashed rgba(49, 155, 136, 0.6);
            margin: 0 0 15px;
            padding: 0 0 15px 30px;
        }

            .our-pricing .pricingTable .pricing-content li:last-child {
                border-bottom: 0;
                margin-bottom: 0;
            }

            .our-pricing .pricingTable .pricing-content li:before {
                content: "\f00c";
                font-family: FontAwesome;
                position: absolute;
                left: 0;
                top: -1px;
                font-size: 17px;
                color: #319b88;
            }

.tag-sec-landing-page {
    padding: 150px 0;
    background: #030B0A;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .tag-sec-landing-page::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 1;
        right: 0;
        margin: 0 auto;
        /*background-image: url(images/img-03.jpg);*/
        background-image: url('../images/img-03.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
        background-size: cover;
        opacity: 0.2;
    }

    .tag-sec-landing-page h2 {
        color: #000;
        font-size: 50px;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
    }

        .tag-sec-landing-page h2 span {
            color: #319b88;
        }

    .tag-sec-landing-page .info {
        position: relative;
        max-width: 65%;
        margin: 0 auto;
        padding: 35px 35px 20px;
        transition: 0.3s ease-in;
        background: #fff;
        overflow: hidden;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
    }

    .tag-sec-landing-page form {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

        .tag-sec-landing-page form > * {
            padding: 0 15px;
        }

        .tag-sec-landing-page form br {
            display: none;
        }

        .tag-sec-landing-page form label {
            display: block;
            margin: 0 0 5px;
        }

        .tag-sec-landing-page form h5 {
            color: #fff;
            margin: 0;
        }

        .tag-sec-landing-page form .form-control {
            background: #eff1f0;
            border: 7px;
            box-shadow: none;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            color: #000;
            height: 50px;
            padding: 6px 15px
        }

            .tag-sec-landing-page form .form-control::-webkit-input-placeholder {
                color: #000;
            }

            .tag-sec-landing-page form .form-control::-moz-placeholder {
                color: #000;
            }

            .tag-sec-landing-page form .form-control:-ms-input-placeholder {
                color: #000;
            }

            .tag-sec-landing-page form .form-control:-moz-placeholder {
                color: #000;
            }

        .tag-sec-landing-page form textarea {
            height: 120px !important;
        }

        .tag-sec-landing-page form .form-group {
            margin: 0 0 30px;
        }

        .tag-sec-landing-page form p {
            margin: 0;
        }

.footer-landing-page {
    padding: 80px 0 0;
    position: relative;
}

    .footer-landing-page .container {
        position: relative;
        z-index: 1;
    }

    .footer-landing-page a {
        color: #000;
        font-weight: 700;
    }

        .footer-landing-page a:hover {
            color: #319b88;
        }

    .footer-landing-page .footer-left {
        padding: 0 10% 0 15px;
    }

    .footer-landing-page .footer-right {
        padding: 0 15px;
    }

.wg-1 {
    margin: 0 0 30px;
}

    .wg-1 h4 {
        color: #319b88;
        font-size: 24px;
        margin: 0 0 20px;
        position: relative;
    }

    .wg-1 ul {
        margin: 0;
        padding: 0;
    }

        .wg-1 ul li {
            list-style: none;
            position: relative;
            padding: 0 0 10px;
        }

    .wg-1 .address {
        font-size: 17px;
        font-weight: 500;
    }

    .wg-1 address {
        margin: 0;
        display: flex;
        gap: 30px;
    }

        .wg-1 address h5 {
            font-size: 16px;
            font-weight: 600;
        }

            .wg-1 address h5 a {
                font-size: 20px;
                font-weight: 800;
                display: block;
                margin: 5px 0 0;
            }

    .wg-1 p b {
        font-size: 18px;
        display: block;
        color: #000;
    }

    .wg-1 address span {
        font-size: 18px;
        line-height: normal;
        color: #585858;
        margin-bottom: 5px;
        display: block;
    }

.ft-logo {
    margin: 0;
}

.icon-ft {
    margin: 0;
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .icon-ft i {
        font-size: 16px;
        color: #fff;
        background: #319b88;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        margin: 0;
    }

        .icon-ft i:hover {
            background: #319b88;
            color: #fff;
            transition: 0.8s ease-in-out;
            -webkit-transition: all 0.8s ease-in-out;
            -moz-transition: all 0.8s ease-in-out;
            -ms-transition: all 0.8s ease-in-out;
            -o-transition: all 0.8s ease-in-out;
        }

.ft-bottom-landing-page {
    position: relative;
    z-index: 2;
    padding: 25px 0 15px;
    margin: 20px 0;
}

    .ft-bottom-landing-page .row {
        align-items: center;
    }

    .ft-bottom-landing-page .copyright span {
        color: #319b88;
        font-weight: 700;
    }

    .ft-bottom-landing-page .left-grid {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .ft-bottom-landing-page .links {
        display: flex;
    }

        .ft-bottom-landing-page .links a {
            padding: 0 20px 0 0;
        }

            .ft-bottom-landing-page .links a:last-child-child {
                padding-right: 0;
            }

.mid-inner-landing-page {
    padding: 150px 0 60px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
    margin: 0;
}

    .mid-inner-landing-page:before {
        /*background-image: url(images/banner-bg-01.png);*/
        background-image: url('../images/banner-bg-01.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        position: absolute;
        left: -15%;
        top: -90px;
        width: 60%;
        height: 900px;
        opacity: 0.5;
    }

.mid-inner-landing-page-landing-page:after {
   /* background-image: url(images/banner-bg-02.png);*/
    background-image: url('../images/banner-bg-02.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
    right: -15%;
    top: 50%;
    width: 56%;
    height: 900px;
    opacity: 0.5;
}

.mid-inner-landing-page ul {
    padding: 0 0 5px;
}

    .mid-inner-landing-page ul li {
        list-style: none;
        margin: 0 0 15px;
        padding: 0 0 0 25px;
        position: relative;
    }

        .mid-inner-landing-page ul li::before {
            content: "\f192";
            color: #00a9c6;
            font-family: FontAwesome;
            position: absolute;
            left: 0;
            top: 2px;
        }

.mid-inner-landing-page ol {
    padding: 0 0 0 20px;
}
/*.mid-inner ol{margin: 0; padding: 0 0 5px; counter-reset: section;}
  .mid-inner ol li{margin: 0 0 15px; padding: 5px 0 5px 35px; list-style: none; position: relative;}
  .mid-inner ol li::before{content: counters(section, "."); counter-increment: section; position: absolute; background: rgba(201, 57, 23, 0.2); color: #00a9c6; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; text-align: center; line-height: 30px; width: 30px; height: 30px; left: 0; top: 0;}*/

.content-wrap-landing-page * + * {
    margin-top: 20px;
}

.content-wrap-landing-page h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
}

.content-wrap-landing-page ol li {
    margin-top: 5px;
}

.content-wrap-landing-page ol ol li {
    margin-top: 0;
}

.content-wrap-landing-page .table i {
    font-size: 20px;
}

    .content-wrap-landing-page .table i.fa-check {
        color: #3da337;
    }

.content-wrap-landing-page .table-wrap .table thead th {
    background: #319b88;
    color: #fff;
}

/** Smartphones **/
@media (min-width: 320px) and (max-width: 767px) {

    .header-landing-page .login-btn {
        padding: 15px 0 0;
        margin: 0;
    }

    .banner-landing-page::before {
        left: -35%;
        top: 0;
        width: 90%;
        height: 320px;
    }

    .banner-landing-page::after {
        right: -15%;
        width: 86%;
        height: 400px;
    }

    .banner-landing-page .banner-text {
        padding: 0 0 30px;
    }

    .banner-landing-page h2 {
        font-size: 48px;
    }

    .banner-landing-page p {
        line-height: 32px;
        font-size: 17px;
    }

    .body-landing-page .body-landing-page .sub-title span {
        font-size: 16px;
    }

    .what-we-do-landing-page h2, .our-benefits-landing-page h2, .journey-text-landing-page h2, .pricing-wrap-landing-page h2, .tag-sec-landing-page h2, .body-landing-page .content-wrap h2 {
        font-size: 33px;
    }

    .body-landing-page .body-landing-page .content {
        max-width: inherit;
    }

    .what-we-do-landing-page .right-grid {
        padding: 0 15px;
    }

    .what-we-do-landing-page figure {
        padding: 30px 30px 0;
    }

        .what-we-do-landing-page figure span {
            font-size: 40px;
            margin: 0 0 -20px;
        }

    .what-we-do-landing-page ul {
        max-width: inherit;
    }

    .our-benefits-landing-page .row-info {
        padding: 30px 20px 0;
    }

    .our-benefits-landing-page h3 {
        font-size: 26px;
    }

    .our-benefits-landing-page figure {
        padding: 0;
        text-align: center;
    }

    .journey-text-landing-page .ifno-sticky {
        height: inherit;
        top: 0;
        right: 0;
        margin: 0 0 30px;
    }

    .journey-text-landing-page .info-area {
        padding: 25px;
    }

        .journey-text-landing-page .info-area p {
            font-size: 20px;
            line-height: 36px;
        }

    .our-pricing .pricingTable {
        margin: 30px 0 0 !important;
        padding: 50px 20px 35px;
    }

    .pricing-wrap-landing-page {
        padding-bottom: 0;
    }

        .pricing-wrap-landing-page .right-grid {
            position: relative;
            bottom: 0;
            right: 0;
            padding: 0 15%;
        }

    .tag-sec-landing-page .info {
        max-width: inherit;
        padding: 35px 25px 20px;
    }

    .tag-sec-landing-page form .form-group {
        width: 100%;
    }

    .icon-ft {
        justify-content: start;
    }

    .ft-bottom-landing-page .links {
        padding: 10px 0;
    }

    .ft-bottom-landing-page .left-grid {
        display: block;
    }
}


/* Smartphones to Tablets */
@media (min-width: 481px) and (max-width: 767px) {

    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 959px) {

    .body-landing-page .container {
        width: auto;
        max-width: 850px !important;
        padding: 0 30px;
    }

    .header-landing-page .login-btn {
        padding: 15px 0 0;
        margin: 0;
    }

    .banner-landing-page::before {
        left: -35%;
        top: 0;
        width: 90%;
        height: 320px;
    }

    .banner-landing-page::after {
        right: -15%;
        width: 86%;
        height: 400px;
    }

    .banner-landing-page .banner-text {
        padding: 0 0 30px;
    }

    .banner-landing-page h2 {
        font-size: 54px;
    }

    .banner-landing-page p {
        line-height: 32px;
        font-size: 17px;
    }

    .body-landing-page .sub-title span {
        font-size: 16px;
    }

    .what-we-do-landing-page h2, .our-benefits-landing-page h2, .journey-text-landing-page h2, .pricing-wrap-landing-page h2, .tag-sec-landing-page h2, .body-landing-page .content-wrap h2 {
        font-size: 37px;
    }

    .body-landing-page .content {
        max-width: inherit;
    }

    .what-we-do-landing-page .left-grid, .what-we-do-landing-page .right-grid {
        width: 100%;
    }

    .what-we-do-landing-page .right-grid {
        padding: 0 15px;
    }

    .what-we-do-landing-page figure {
        padding: 30px 30px 0;
    }

        .what-we-do-landing-page figure span {
            font-size: 40px;
            margin: 0 0 -20px;
        }

    .our-benefits-landing-page .row-info {
        padding: 30px 20px 0;
    }

        .our-benefits-landing-page .row-info .left-grid, .our-benefits-landing-page .row-info .right-grid {
            width: 100%;
        }

    .our-benefits-landing-page h3 {
        font-size: 26px;
    }

    .our-benefits-landing-page figure {
        padding: 0;
        text-align: center;
    }

    .journey-text-landing-page .ifno-sticky {
        height: inherit;
        top: 0;
        right: 0;
        margin: 0 0 30px;
    }

    .journey-text-landing-page .info-area {
        padding: 25px;
    }

        .journey-text-landing-page .info-area p {
            font-size: 20px;
            line-height: 36px;
        }

    .our-pricing .pricingTable {
        margin: 30px 0 0 !important;
        padding: 50px 20px 35px;
    }

    .pricing-wrap-landing-page {
        padding-bottom: 0;
    }

        .pricing-wrap-landing-page .left-grid, .pricing-wrap-landing-page .right-grid {
            width: 100%;
        }

        .pricing-wrap-landing-page .right-grid {
            position: relative;
            bottom: 0;
            right: 0;
            padding: 0 15%;
        }

    .tag-sec-landing-page .info {
        max-width: inherit;
        padding: 35px 25px 20px;
    }

    .tag-sec-landing-page form .form-group {
        width: 100%;
    }

    .footer-landing-page .footer-left {
        width: 100%;
        padding: 0 15px 40px;
    }

    .footer-landing-page .footer-right {
        width: 100%;
    }

    .ft-bottom-landing-page .left-grid {
        display: block;
        width: 65%;
    }

    .ft-bottom-landing-page .right-grid {
        width: 35%;
    }
}

/* Desktop */
@media (min-width: 960px) and (max-width: 1190px) {

    .body-landing-page .container {
        width: auto;
        max-width: 1030px !important;
        padding: 0 30px;
    }

    .header-landing-page .login-btn {
        padding: 15px 0 0;
        margin: 0;
    }

    .banner-landing-page::before {
        left: -35%;
        top: 0;
        width: 90%;
        height: 320px;
    }

    .banner-landing-page::after {
        right: -15%;
        width: 86%;
        height: 400px;
    }

    .banner-landing-page .banner-text {
        padding: 0 0 30px;
    }

    .banner-landing-page h2 {
        font-size: 60px;
    }

    .banner-landing-page p {
        line-height: 32px;
        font-size: 17px;
    }

    .body-landing-page .sub-title span {
        font-size: 16px;
    }

    .what-we-do-landing-page h2, .our-benefits-landing-page h2, .journey-text-landing-page h2, .pricing-wrap-landing-page h2, .tag-sec-landing-page h2, .body-landing-page .content-wrap h2 {
        font-size: 39px;
    }

    .body-landing-page .content {
        max-width: inherit;
    }

    .what-we-do-landing-page .right-grid {
        padding: 0 15px;
    }

    .what-we-do-landing-page figure {
        padding: 30px 30px 0;
    }

        .what-we-do-landing-page figure span {
            font-size: 40px;
            margin: 0 0 -20px;
        }

    .our-benefits-landing-page .row-info {
        padding: 30px 20px 0;
    }

    .our-benefits-landing-page h3 {
        font-size: 26px;
    }

    .our-benefits-landing-page figure {
        padding: 0;
        text-align: center;
    }
    .our-benefits-landing-page .row-info figure img {
        width: 100%;
        height: 70px;
        object-fit: contain;
        object-position: center center;
    }
    .journey-text-landing-page .ifno-sticky {
        height: inherit;
        top: 0;
        right: 0;
        margin: 0 0 30px;
    }

    .journey-text-landing-page .info-area {
        padding: 25px;
    }

        .journey-text-landing-page .info-area p {
            font-size: 20px;
            line-height: 36px;
        }

    .our-pricing .pricingTable {
        margin: 30px 0 0 !important;
        padding: 50px 20px 35px;
    }

    .pricing-wrap-landing-page {
        padding-bottom: 0;
    }

        .pricing-wrap-landing-page .left-grid, .pricing-wrap-landing-page .right-grid {
            width: 100%;
        }

        .pricing-wrap-landing-page .right-grid {
            position: relative;
            bottom: 0;
            right: 0;
            padding: 0 15%;
        }

    .tag-sec-landing-page .info {
        max-width: inherit;
        padding: 35px 25px 20px;
    }

    .tag-sec-landing-page form .form-group {
        width: 100%;
    }

    .footer-landing-page .footer-left {
        width: 100%;
        padding: 0 15px 40px;
    }

    .footer-landing-page .footer-right {
        width: 100%;
    }
}

@media (min-width: 1200px) {

    ..body-landing-page .container {
        max-width: 90%;
    }
    /*.container{max-width: 94%;}*/

}

@media (min-width: 1450px) {

    ..body-landing-page .container {
        max-width: 1350px;
    }
}



/*notification banners*/


.banner-container {
    max-width: 900px;
    margin: 50px auto;
}

.info-banner {
    background-color: #FFD6D6;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.info-banner-icon {
    color: #495057;
    font-size: 20px;
    margin-top: 2px;
}

.info-banner-text h6 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

.info-banner-text p {
    color: #495057;
    margin: 0;
    font-size: 13px;
}

.info-banner-btn {
    background-color: #3b5998;
    color: white;
    border: none;
    padding: 10px 35px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-additional-Info-banner-btn {
    background-color: #3b5998;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
    .info-banner-btn:hover {
        background-color: #2d4373;
    }

.pending-banner {
    background-color: #FFECB3;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pending-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.pending-banner-icon {
    color: #495057;
    font-size: 20px;
    margin-top: 2px;
}

.pending-banner-text h6 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

.pending-banner-text p {
    color: #495057;
    margin: 0;
    font-size: 13px;
}

.pending-banner-icon-right {
    color: #5a6c7d;
    font-size: 32px;
    opacity: 0.7;
}

.connect-banner {
    background-color: #FFD6D6;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.connect-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.connect-banner-icon {
    color: #495057;
    font-size: 20px;
    margin-top: 2px;
}

.connect-banner-text h6 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

.connect-banner-text p {
    color: #495057;
    margin: 0;
    font-size: 13px;
}

.connect-banner-btn {
    background-color: #3b5998;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .connect-banner-btn:hover {
        background-color: #5a8399;
    }

.bg-partial {
    background-color: #ff6600 !important;
    color: white !important;
}

.red {
    color: #e31e24;
}