﻿:root {
    --primary-color: #435ebe;
    --text-dark: #1e1e2d;
    --text-muted: #6c757d;
    --badge-bg: #ff6e81;
    --border-color: #e4e6ef;
    --font-family: 'poppins', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--primary-color);
}

.logo-arc {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: -5px;
    left: 0;
    pointer-events: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;

}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    margin-top: 2px;
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--badge-bg);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--badge-bg);
}

.cta-button {
    text-decoration: none;
    color: var(--primary-color);
    background: transparent;
    border: 1.5px solid var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgb(1 32 139), #1d1e1e), url(pic-10.png);
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay svg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #a2b6ff);

    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

/* Modern Luxury Search Bar */
.modern-search-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-search-form {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 5px;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
    min-width: 0;
    /* Prevents overflow */
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-input-group i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 12px;
}

.search-input-group .form-control {
    border: none;
    box-shadow: none;
    padding: 15px 5px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: transparent;
    width: 100%;
}

.search-input-group select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.search-btn-premium {
    background: linear-gradient(135deg, #435ebe, #2a3d8a);
    color: #fff;
    border: none;
    padding: 0 35px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn-premium:hover {
    background: linear-gradient(135deg, #2a3d8a, #435ebe);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 94, 190, 0.4);
}

.search-btn-premium i {
    font-size: 1.2rem;
}

/* Responsive Search */
@media (max-width: 991px) {
    .modern-search-form {
        flex-direction: column;
        padding: 10px;
    }

    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 5px 10px;
    }

    .search-btn-premium {
        margin-top: 10px;
        padding: 15px;
        justify-content: center;
        width: 100%;
    }
}

/* Responsive */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    border-radius: 3px;
}

/* Job Cards Section */
.job-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.job-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.job-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-badge.verified {
    background-color: rgba(67, 94, 190, 0.1);
    color: var(--primary-color);
}

.job-badge.unverified {
    background-color: #f1f1f1;
    color: var(--text-muted);
}

.job-card-body {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.job-info-main h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.company-name {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.job-details {
    margin-bottom: 1.5rem;
}

.job-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.job-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-type {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.6;
}

.view-details {
    background-color: #ff7675;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-details:hover {
    background-color: #d63031;
}

/* Inline Tender Meta Styles */
.tender-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #800080;
    font-size: 0.85rem;
    font-weight: 500;
    align-items: center;
}

.tender-meta-inline span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tender-meta-inline .separator {
    opacity: 0.5;
    margin: 0 0.2rem;
}

.tender-meta-row-inline {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Premium Tender Card Styles */
.tender-card-premium {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;

    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.tender-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.tender-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.tender-premium-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tender-premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.tender-label-bold {
    font-weight: 800;
    color: #800080;
    margin-right: 0.5rem;
}

.tender-text-value {
    color: #444;
    line-height: 1.4;
}

.badge-blue {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-green {
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tender-price-large {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
}

@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1rem 2rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .cta-button {
        display: none;
    }

    .hero {
        padding: 3.5rem 1.25rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .search-container {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .search-field {
        width: 100%;
        border-right: none !important;
        padding: 0;
    }

    .search-field:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }

    .search-field select,
    .search-field input {
        padding: 0.75rem;
    }

    .search-button {
        width: 100%;
        height: 50px;
        margin-top: 0.5rem;
    }

    .tender-card {
        flex-direction: column;
    }

    .tender-status-column {
        width: 100%;
        align-items: flex-start;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
    }
}

/* Tender Card Section */
.tender-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2rem auto;
    border-left: 5px solid #800080;
    max-width: 1200px;
}

.tender-main-content {
    flex: 1;
}

.tender-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: #800080;
    font-size: 0.9rem;
    font-weight: 500;
}

.tender-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tender-detail-row {
    margin-top: 1rem;
}

.tender-label {
    font-weight: 800;
    color: #800080;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.tender-value {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.tender-status-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    min-width: 150px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.status-days {
    background-color: #3498db;
}

.status-ongoing {
    background-color: #27ae60;
}

.tender-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.view-tender-btn {
    background-color: #ff6e81;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-tender-btn:hover {
    background-color: #ff4d63;
}

.stats-section {
    background: linear-gradient(rgb(1 32 139), #1d1e1e);
    padding: 80px 0;
    margin-top: 40px;
}

.stats-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 1200px;
    padding-inline: 20px;
}

.stats-container .stat {
    background: #ff6e81;
    padding: 32px 24px;
    text-align: center;
    color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 8px 16px rgba(210, 0, 98, 0.2);
    transition: transform 0.3s ease;
}

/* ==========================================================================
   Tender List Redesign V2 (Fresh Tenders)
   ========================================================================== */

/* Sidebar Styles */
.refine-search-sidebar {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.refine-search-sidebar .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a3d8a;
}

.applied-filters-box .badge {
    border-radius: 4px;
    letter-spacing: 0.3px;
}

/* New Tender Card V2 */
.tender-card-v2 {
    background: #ffffff;
    border: 1px solid #e0e4e9;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tender-card-v2:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd3da;
}

/* Numeric ID Badge on the left */
.tender-id-badge {
    width: 32px;
    height: 32px;
    background: #002366;
    /* Dark Blue from reference */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Inline Metadata Row */
.tender-meta-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.tender-meta-inline span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tender-meta-inline i {
    font-size: 0.9rem;
}

.tender-meta-inline .separator {
    color: #ccc;
    font-weight: 300;
    margin: 0 2px;
}

/* Dates and ID Row */
.tender-dates-row {
    font-size: 0.85rem;
    color: #444;
}

.tender-dates-row strong {
    color: #000;
}

.text-orange {
    color: #f39c12 !important;
}

/* Title and Description */
.tender-title-v2,
.tender-desc-v2 {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.tender-title-v2 strong,
.tender-desc-v2 strong {
    font-weight: 800;
    color: #002366;
    /* Consistent with badge color */
    margin-right: 5px;
}

/* Right Section: Status and Action */
.tender-status-section {
    min-width: 140px;
    border-left: 1px solid #f0f0f0;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.days-left {
    color: #f85c70;
    /* Soft Red/Pink */
    font-weight: 700;
    font-size: 1.1rem;
}

.tender-price-v2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
}

.btn-view-tender {
    background-color: #f85c70;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    width: 100%;
}

.btn-view-tender:hover {
    background-color: #e04a5e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(248, 92, 112, 0.2);
}

/* Search results badge refinement */
.search-results-count .badge {
    box-shadow: 0 2px 4px rgba(248, 92, 112, 0.2);
}

/* Custom Pagination V2 (Matching Reference) */
.custom-pagination .page-link {
    border: 1px solid #eef0f2;
    margin: 0 4px;
    border-radius: 8px !important;
    color: #6c757d;
    font-weight: 600;
    padding: 8px 16px;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-pagination .page-item.active .page-link {
    background-color: #002366;
    /* New Dark blue from ref */
    border-color: #002366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 35, 102, 0.3);
}

.custom-pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #002366;
    border-color: #cbd3da;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #adb5bd;
    border-color: #eef0f2;
    box-shadow: none;
}

.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
    padding: 8px 20px;
}

@media (max-width: 576px) {
    .custom-pagination .page-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 32px;
        height: 32px;
    }
}

/* Responsive V2 */
@media (max-width: 768px) {
    .tender-card-v2 .d-flex {
        flex-direction: column;
    }

    .tender-id-badge {
        margin-bottom: 1rem;
    }

    .tender-status-section {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
}

.stats-container .stat:hover {
    transform: translateY(-8px);
}

.stats-container .stat .odometer {
    font-size: 31px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 8px;
}

.stats-container .stat .type {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.odometer.plus {
    position: relative;
    padding-right: 20px;
}

.odometer.plus::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    font-weight: 800;
}

@media (max-width: 650px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding-inline: 1.25rem;
    }

    .stats-container .stat {
        padding: 24px 16px;
    }

    .stats-container .stat .odometer {
        font-size: 28px;
    }

    .stats-container .stat .type {
        font-size: 16px;
    }

    .job-section {
        padding: 3rem 1rem;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .tender-card-premium {
        padding: 1.25rem;
    }

}


/* Tenders Categories Section */
.categories-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.categories-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.category-card {
    background-color: #f5f5f5;
    padding: 25px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #666;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.category-card span,
.category-card a {
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.services-header {
    margin-bottom: 60px;
    color: #000000;
}

.services-subtitle {
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: linear-gradient(rgb(1 32 139), #1d1e1e);
    padding: 45px 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #00ff88;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card p {
    color: #a0a6b1;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .services-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .services-title {
        font-size: 2rem;
    }
}

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}

.white-heading {
    color: #ffffff;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}

/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
    background-size: cover;
}

#testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
    overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ffffff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #9dd3af;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
    height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
    background: #eeeeee;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.testimonial4_control_button .carousel-control-prev,
.testimonial4_control_button .carousel-control-next {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control-prev {
    left: 7%;
    top: 50%;
    right: auto;
}

.testimonial4_control_button .carousel-control-next {
    right: 7%;
    top: 50%;
    left: auto;
}

.testimonial4_control_button .carousel-control-prev:hover,
.testimonial4_control_button .carousel-control-next:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

.testimonial4_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
}

.testimonial4_header h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
}

.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
    color: #ffffff;
    font-size: 22px;
}

.testimonial .carousel {
    padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}

.testimonials-wrap {
    padding: 40px 0;
}

.heading-section {
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    color: #ff6e81;
}

.heading-section h3 {
    font-size: 28px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 15px;
}

.testimonial-box {
    display: block;
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(rgb(1 32 139), #1d1e1e);
    border: 1px solid rgba(0, 0, 0, .03);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

.quote {
    position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}

.name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}

.position {
    color: #adadad;
    font-size: 14px;
}

.carousel-testimonial .owl-nav {
    text-align: center;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
    padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
    outline: none;
    padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
    display: block;
    font-size: 40px;
    width: 25px;
    height: 25px;

    line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}

/* ------testimonial  close-------*/

/* Site Footer Styles */
.site-footer {
    background: #000000cf;
    color: #a0a0a0;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
    margin-top: 50px;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px 40px;
    align-items: start;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-bio p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #ff6e81;
    transform: translateY(-3px);
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.header-line {
    width: 40px;
    height: 2px;
    background-color: #ff6e81;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.contact-info span {
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-feedback {
    display: flex;
    justify-content: flex-end;
}

.feedback-btn {
    background: linear-gradient(135deg, #ff6e81 0%, #D20062 100%);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(210, 0, 98, 0.3);
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(210, 0, 98, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    background: #00000003;

    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.bottom-container p {
    font-size: 0.9rem;
    margin: 0;
}

.payment-icons img {
    height: 25px;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.7;
}

/* Footer Responsiveness */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-feedback {
        justify-content: flex-start;
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-feedback {
        grid-column: span 1;
    }

    .bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Modern Tender Card Styles */
.tender-card-new {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease;
}

.tender-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.percentage-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    z-index: 10;
}

.index-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    background: #fff;
}

.tender-meta-row-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #333;
}

.meta-separator {
    color: #ccc;
    font-weight: 300;
}

.tender-title-new {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.tender-desc-new {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tender-footer-row-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.75rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-label {
    font-weight: 600;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.2rem;
    margin-left: auto;
    cursor: pointer;
}

.buy-points-btn {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #f39c12;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.buy-points-btn::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 10px solid #f39c12;
}

.buy-points-btn span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
}

.right-sidebar-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: #e0e0e0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 768px) {
    .buy-points-btn {
        position: static;
        transform: none;
        margin-top: 1rem;
        width: fit-content;
    }

    .buy-points-btn::before {
        display: none;
    }

    .right-sidebar-accent {
        display: none;
    }
}

.tender-card-v2 {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
}

.meta-row-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #7b1fa2;
}

.title-desc-v2 {
    margin-top: 10px;
    font-size: 14px;
}

.tender-results-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.tender-card-v2 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 15px;
    position: relative;
    font-family: 'Inter', sans-serif;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tender-card-v2:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-percentage-tag {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #fff;
    border: 1px solid #eee;
    padding: 1px 6px;
    font-size: 10px;
    color: #666;
    border-radius: 2px;
}

.meta-row-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #333;
}

.meta-item-v2 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item-v2 i {
    color: #444;
    font-size: 14px;
}

.serial-circle-v2 {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
}

.tid-label-v2 {
    font-weight: 600;
}

.title-desc-v2 {
    font-size: 13px;
    line-height: 1.5;
    color: #222;
}

.highlight-yellow {
    background-color: #ffeb3b;
    padding: 0 2px;
}

.footer-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
    margin-top: 5px;
}

.footer-meta-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.due-date-v2 {
    font-weight: 600;
}

.days-to-go-v2 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.buy-points-ribbon {
    background: linear-gradient(to bottom, #ffb347, #ffcc33);
    color: #111;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-right: 25px;
    min-width: 100px;
}

.buy-points-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: #ff9800;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    border-radius: 0 4px 4px 0;
}

.buy-points-text {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
}

.points-value {
    font-size: 13px;
    display: block;
}

/* Sidebar & Layout */
.sidebar-filter-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: sticky;
    top: 20px;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Modern Pagination Styles */
.modern-pagination-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modern-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item-modern {
    display: inline-block;
}

.page-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #e0e4f0;
    border-radius: 10px;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-link-modern:hover {
    background: #f0f3ff;
    border-color: #00208b;
    color: #00208b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.page-item-modern.active .page-link-modern {
    background: #00208b;
    color: #fff;
    border-color: #00208b;
    box-shadow: 0 4px 12px rgba(67, 94, 190, 0.3);
}

.page-item-modern.disabled .page-link-modern {
    opacity: 0.5;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #eee;
}

.pagination-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;
    color: #888;
    margin-bottom: 5px;
}

.page-nav-text {
    margin: 0 5px;
}

@media (max-width: 576px) {
    .page-nav-text {
        display: none;
    }

    .page-link-modern {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
    }
}

/* Responsive Tender Card Layout */
.tender-card-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tender-card-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tender-left-content {
    width: 70%;
}

.tender-right-panel {
    width: 30%;
    text-align: center;
    border-left: 1px solid #eee;
    padding-left: 10px;
}

.serial-badge-v2 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #00208b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.meta-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.days-left-text {
    font-weight: bold;
    color: #f85c70;
    font-size: 18px;
    margin-bottom: 8px;
}

.tender-amount-text {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
}

.view-tender-link {
    background: #f85c70;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    transition: background 0.2s;
}

.view-tender-link:hover {
    background: #f85c70;
    color: #fff;
}

@media (max-width: 991px) {
    .tender-card-container {
        flex-direction: column;
    }

    .tender-left-content,
    .tender-right-panel {
        width: 100%;
    }

    .tender-right-panel {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
        text-align: left;

    }

    .days-left-text,
    .tender-amount-text {
        margin-bottom: 0;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Tender List Page â€“ Additional Styles
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Sort / Summary bar */
.sort-bar-modern {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.results-count {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.results-badge {
    background-color: #f85c70;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 8px;
    line-height: 1.6;
}

/* Cleaned up Applied Filters box */
.applied-filter-box {
    margin-top: 20px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e0e4ec;
    border-radius: 6px;
}

.applied-filter-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.applied-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: inline-block;
    background-color: #6c757d;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}



/* Meta item inside card */
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #444;
}

.meta-item strong {
    color: #333;
}

/* Title / Description block */
.tender-desc-block {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.tender-desc-block p {
    margin-bottom: 4px;
}

.tender-field-label {
    color: #00208b;
    font-weight: 800;
    font-size: 15px;
    margin-right: 4px;
}

/* Status pill */
.status-pill-wrap {
    margin: 8px 0;
}

.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.status-pill.ongoing {
    background: #28a745;
}

.status-pill.expired {
    background: #6c757d;
}

/* No results */
.no-results-block {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Keyword highlight */
.highlight-blue {
    background: rgba(67, 94, 190, 0.15);
    color: #00208b;
    border-radius: 2px;
    padding: 0 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Sidebar Filter â€“ Refine Search Form
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.sidebar-filter-wrapper {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 10px;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 80px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #00208b;
    margin-bottom: 18px;
    padding-bottom: 10px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-select,
.sidebar-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d0d7e5;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    background: #f8faff;
    outline: none;
    transition: border-color 0.2s;
}

.sidebar-select:focus,
.sidebar-input:focus {
    border-color: #00208b;
    background: #fff;
}

.sidebar-search-btn {
    width: 100%;
    padding: 9px 12px;
    background: linear-gradient(135deg, #00208b, #1a56db);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.2s;
    margin-top: 4px;
}

.sidebar-search-btn:hover {
    opacity: 0.9;
}

.sidebar-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    background: #f5f5f5;
    transition: background 0.2s;
    margin-top: 2px;
}

.sidebar-clear-btn:hover {
    background: #eee;
    color: #333;
}

.custom-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Expired */
.badge-expired {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    color: #fff;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
}

/* Ongoing */
.badge-ongoing {
    background: linear-gradient(135deg, #28a745, #0f7a2f);
    color: #fff;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

/* Hover effect */
.custom-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* About Us Page Styles */
.about-container {
    background-color: #f8faff;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: left;
    margin-bottom: 60px;
}

.about-hero .sub-title {
    color: #435ebe;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e1e2d;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero .description {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    border: 1.5px solid #435ebe;
    color: #435ebe;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #435ebe;
    color: #fff;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(rgb(1 32 139), #1d1e1e);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 24px;
}

.icon-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.icon-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e2d;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive adjustments for About Us Hero & Services */
@media (max-width: 768px) {
    .about-hero {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero .description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .about-container {
        padding: 40px 0;
    }

    .services-grid .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .icon-wrapper {
        margin: 0 auto 20px;
    }
}

/* Our Capabilities Section */
.capabilities-section {
    background-color: #f0f2f9;
    padding: 100px 0;
    overflow-x: hidden;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e1e2d;
    margin-top: 15px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.capability-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.icon-box.purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.icon-box.blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.icon-box.orange {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.capability-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e1e2d;
    margin-bottom: 20px;
}

.capability-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .section-header.centered h2 {
        font-size: 28px;
    }

    .capabilities-section {
        padding: 60px 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capability-card {
        padding: 30px 20px;
    }
}

/* Power of Marketing Section */
.marketing-power-section {
    padding: 100px 0;
    background-color: #fff;
    overflow-x: hidden;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.image-column {
    flex: 1;
}

.hero-label {
    color: #435ebe;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.image-column h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1e1e2d;
    margin-bottom: 20px;
    line-height: 1.1;
}

.line-accent {
    width: 80px;
    height: 3px;
    background-color: #435ebe;
    margin-bottom: 40px;
    opacity: 0.3;
}

.featured-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover {
    transform: scale(1.05);
}

.content-column {
    flex: 1.2;
}

.tabs-container {
    background-color: #f7f7fb;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.tab-sidebar {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-item {
    padding: 15px 25px;
    background-color: #fff;
    border-radius: 12px;
    font-weight: 600;
    color: #1e1e2d;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tab-item.active {
    background-color: #aba8cc;
    color: #fff;
    position: relative;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #aba8cc;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.tab-content {
    flex: 1;
    padding: 20px;
}

.tab-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e2d;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.check-list li i {
    color: #333;
    font-size: 18px;
    margin-top: 3px;
}

.summary-text {
    color: #6c757d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-primary-filled {
    display: inline-block;
    padding: 16px 35px;
    background-color: #5560ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-filled:hover {
    background-color: #435ebe;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(85, 96, 255, 0.3);
}

@media (max-width: 991px) {
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .image-column h2 {
        font-size: 32px;
        text-align: center;
    }

    .hero-label {
        text-align: center;
    }

    .line-accent {
        margin: 0 auto 30px;
    }

    .tabs-container {
        flex-direction: column;
        padding: 15px;
    }

    .tab-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 14px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .tab-item.active::after {
        display: none;
    }

    .tab-content {
        padding: 15px 0 0;
        text-align: center;
    }

    .tab-content h3 {
        font-size: 22px;
    }

    .check-list li {
        justify-content: center;
    }

    .btn-primary-filled {
        width: 100%;
        text-align: center;
    }
}

/* Testimonial Section Enhanced */
.testimonial-section {
    padding: 30px 0;
    background-color: #fcfcff;
    overflow: hidden;
    position: relative;
}

.testimonial-section .container {
    padding: 0 40px;
}

.align-center {
    align-items: center;
}

.testimonial-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 450px;
}

.testimonial-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-person {
    position: absolute;
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.testimonial-person.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.testimonial-content-column {
    flex: 1.2;
    padding-left: 60px;
    position: relative;
}

.quote-marker {
    font-size: 60px;
    color: rgba(67, 94, 190, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.testimonial-meta {
    margin-top: 30px;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.star-rating i {
    color: #ff9d00;
    font-size: 16px;
}

.persona-name {
    font-size: 24px;
    font-weight: 800;
    color: #1e1e2d;
    margin-bottom: 4px;
}

.persona-title {
    font-size: 15px;
    color: #435ebe;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.slider-controls {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots span {
    width: 35px;
    height: 4px;
    border-radius: 2px;
    background-color: #e4e6ef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    background-color: #435ebe;
    width: 60px;
}

@media (max-width: 991px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-image-column {
        height: 300px;
    }

    .testimonial-content-column {
        padding-left: 0;
        text-align: center;
    }

    .quote-marker {
        margin: 0 auto 20px;
    }

    .star-rating,
    .slider-dots,
    .slider-controls {
        justify-content: center;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

/* Services Page Styles */
.services-page {
    padding: 100px 0;
    background-color: #fcfdfe;
    position: relative;
    overflow: hidden;
}

.services-page .decorative-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 1;
}

.services-page .decorative-circle.sun {
    background: radial-gradient(circle at 30% 30%, #ffd666, #ffad33);
    top: -50px;
    left: 15%;
    opacity: 0.6;
    filter: blur(2px);
}

.services-page .decorative-circle.accent-bottom {
    background: radial-gradient(circle at 30% 30%, #ff8566, #ff4d4d);
    bottom: -80px;
    right: 5%;
    width: 150px;
    height: 150px;
    opacity: 0.4;
    filter: blur(1px);
}

.services-page .decorative-waves {
    position: absolute;
    width: 120px;
    height: 80px;
    z-index: 1;
}

.services-page .decorative-waves.top-right {
    top: 50px;
    right: 5%;
}

.services-header {
    margin-bottom: 80px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.services-header .sub-title {
    color: #435ebe;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.services-header h2 span {
    color: #435ebe;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.05rem;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card-new {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(67, 94, 190, 0.12);
}

.card-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 2.2rem;
    transition: all 0.4s ease;
}

.icon-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e3f2fd;
    border-radius: 35% 65% 65% 35% / 40% 41% 59% 60%;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.service-card-new:hover .icon-blob {
    background-color: #435ebe;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1.1);
}

.service-card-new:hover .card-icon-box {
    color: #ffffff;
}

.service-card-new h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card-new p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .services-page {
        padding: 60px 0;
    }
}

/* Experience Section Styles */
.experience-section {
    background-color: #050b1c;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.experience-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.experience-content-side {
    background-color: #050b1c;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 51px 80px;
    position: relative;
    z-index: 2;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.experience-inner {
    max-width: 900px;
    margin-right: 0;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.fire-icon {
    font-size: 24px;
}

.header-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.experience-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
}

.experience-title span {
    color: #5d8aff;
    /* Lighter, more vibrant blue for better contrast */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-column .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    width: 300px;
}

.stat-line {
    width: 60px;
    height: 3px;
    background-color: #435ebe;
    margin-bottom: 20px;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.experience-image-side {
    height: 100%;
    background-color: #f8f9fa;
    /* Light background to hide jagged edges of white-background images */
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.experience-image-wrapper {
    height: 100%;
    min-height: 600px;
}

.experience-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 1199px) {
    .experience-content-side {
        padding: 80px 40px;
    }

    .experience-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {

    .experience-content-side,
    .experience-image-side {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .experience-content-side {
        padding: 60px 20px;
    }

    .experience-title {
        font-size: 2.2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-header {
    margin-bottom: 60px;
    text-align: left;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
}

.faq-header h2 span {
    color: #435ebe;
    display: block;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-column {
    flex: 1;
    min-width: 450px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #f0f4f8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

.faq-item.active .faq-question {
    background-color: #ffffff;
}

.faq-question i {
    font-size: 0.9rem;
    color: #435ebe;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .faq-column {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }
}

/* Pricing Page Styles */
.pricing-page {
    padding: 100px 0;
    position: relative;
    background-color: #fcfdfe;
    overflow: hidden;
}

/* Decorative Background Circles */
.bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circles .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(67, 94, 190, 0.05);
    border-radius: 50%;
}

.circle.c1 {
    width: 300px;
    height: 300px;
}

.circle.c2 {
    width: 500px;
    height: 500px;
}

.circle.c3 {
    width: 700px;
    height: 700px;
}

.circle.c4 {
    width: 900px;
    height: 900px;
}

.circle.c5 {
    width: 1100px;
    height: 1100px;
}

.pricing-page .container {
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .sub-title {
    color: #435ebe;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-header h2 span {
    color: #435ebe;
}

.pricing-header p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.billing-toggle span.active {
    color: #435ebe;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #435ebe;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.premium {
    background-color: #435ebe;
    color: #ffffff;
    border-right: none;
    padding: 60px 40px;
}

.pricing-card .card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card .card-header p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.pricing-card.premium .card-header p {
    color: rgba(255, 255, 255, 0.8);
}

.card-price {
    margin-bottom: 30px;
}

.card-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-right: 2px;
}

.card-price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.card-price .cents {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: top;
}

.card-price .period {
    font-size: 0.9rem;
    display: block;
    font-weight: 600;
    color: #7f8c8d;
}

.card-price .original-price {
    display: block;
    font-size: 1.1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.pricing-card.premium .card-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.card-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.pricing-card.premium .card-divider {
    background-color: rgba(255, 255, 255, 0.1);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.pricing-card.premium .features li i {
    color: #ffffff;
}

.btn-order {
    display: inline-block;
    padding: 12px 35px;
    background-color: #435ebe;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: #2c3e50;
}

.btn-order.white {
    background-color: #ffffff;
    color: #435ebe;
}

.btn-order.white:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Ribbon */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 10px 0;
    background-color: #ffc107;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-header h2 {
        font-size: 2.22rem;
    }

    .billing-toggle {
        font-size: 0.9rem;
    }
}

/* ---------- Register Page ---------- */
.register-section {
    padding: 60px 0 100px;
}

.register-card {
    background: linear-gradient(135deg, #2e86c1 0%, #6c5ce7 45%, #b23a6f 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.register-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}

/* ---------- Card Styling ---------- */
.card {
    border-radius: 14px;
}

.card-header {
    border-radius: 14px 14px 0 0;
}

/* ---------- Form Styling ---------- */
.control-label {
    font-weight: 600;
    color: #333;
}

.control-label span {
    color: red;
}

.form-control {
    height: 45px;
    border-radius: 6px;
}

.select2-container--bootstrap4 .select2-selection {
    min-height: 45px;
    border-radius: 6px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ---------- Section Title ---------- */
.post-ad-title {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.post-ad-title i {
    font-size: 20px;
    color: #f85c70;
}

/* ---------- Mobile Fix ---------- */
@media (max-width: 767px) {
    .post-ad-title {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- OTP Modal ---------- */
.modal input {
    font-size: 18px;
    text-align: center;
}

/* ---------- Register Page ---------- */
.register-section {
    padding: 60px 0 100px;
}

.register-card {
    background: linear-gradient(135deg, #2e86c1 0%, #6c5ce7 45%, #b23a6f 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.register-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.form-control {
    height: 45px;
    border-radius: 6px;
    width: 100% !important;
}

.hero-section {
    max-width: 900px;
    font-family: 'Nunito Sans', sans-serif;
}

.hero-section h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #7b5ce1;
    /* Purple as seen in design */
    margin-bottom: 25px;
}

.hero-desc {
    color: #4b4b4b;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    color: #444;
}

.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 20px;
    height: 20px;
    background: #28a745;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
}

.form-layout {
    display: flex;
}

/* Desktop order (default) */
.hero-col {
    order: 1;
}

.form-col {
    order: 2;
}

/* Mobile: show form first */
@media (max-width: 767px) {
    .register-section {
        padding: 40px 0 60px;
    }

    .hero-col {
        order: 2;
        margin-top: 30px;
    }

    .form-col {
        order: 1;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .form-col {
        padding: 0 15px;
    }
}

.submit-btn {
    background-color: #2775ab;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e5a85;
    transform: translateY(-2px);
}

.otp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.otp-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.otp-header {
    background: #007bff;
    color: white;
    padding: 30px;
    text-align: center;
}

.otp-header h2 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.otp-body {
    padding: 40px;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.verify-btn {
    background: #007bff;
    border: none;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.resend-text {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}

.resend-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.resend-link:hover {
    text-decoration: underline;
}

.form-error {
    background: #ffe6e6;
    color: #d32f2f;
    border: 1px solid #f5c2c2;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* ===== MAIN CARD ===== */
.login-card-main {
    width: 900px;
    height: 520px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transform: scale(0.88);
    animation: zoomIn 0.6s ease forwards;

    /* Add this */
    margin-top: -80px;
    /* move it slightly up */
}



/* ===== LEFT FORM ===== */
.login-left {
    width: 50%;
    padding: 50px 45px;
}

.logo {
    color: #9ca3af;
    font-weight: 600;

}

.login-left h1 {
    font-size: 38px;
    color: #3b82f6;
    line-height: 1.2;
}

.login-left h1 span {
    color: #2563eb;
    font-weight: 700;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 12px;
    color: #9ca3af;
}

.form-group input {
    width: 100%;
    height: 42px;
    border: 1px solid #e5e7eb;
    padding: 0 12px;
    border-radius: 4px;
}

/* Remember */
.remember {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9ca3af;
    margin: 15px 0 25px;
}

/* Buttons */
.btn-login {
    background: #ff2bdc;
    color: #fff;
    border: none;
    padding: 8px 28px;
    border-radius: 3px;
    font-weight: 600;
}

.btn-signup {
    border: 2px solid #3b82f6;
    color: #3b82f6;

    background: transparent;
    margin-left: 10px;
    padding: 8px 28px;
    border-radius: 3px;
    font-weight: 600;
}

/* Social */
.social {
    margin-top: 45px;
    font-size: 12px;
    color: #9ca3af;
}

.social i {
    margin-left: 10px;
}

/* ===== RIGHT DESIGN ===== */
.login-right {
    width: 55%;
    position: relative;
    background: linear-gradient(135deg, #6a11cb, #8e2de2, #c471ed, #f64fdf);
    overflow: hidden;
}

/* Shapes */
.circle {
    position: absolute;
    border-radius: 50%;
}

.circle.one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ff4ecd, #8b5cf6);
    top: -80px;
    left: -80px;
}

.circle.two {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #8b5cf6, #4f46e5);
    bottom: -120px;
    right: -120px;
}

.triangle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    clip-path: polygon(40% 0, 100% 0, 100% 60%);
}

.btn {
    width: 150px;
    /* same width for both */
    padding: 12px 0;
    /* same height */
    background: #ff2bdc;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    /* remove underline for <a> */
    display: inline-block;
    transition: background 0.3s;
    margin-right: 10px;
    /* optional space between buttons */
}

.btn:hover {
    background: #461391;
}

.btn1 {
    width: 150px;
    /* same width for both */
    padding: 6px 0;
    /* same height */
    background: white;
    border: 2px solid #5a19bb;
    color: #5a19bb;

    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    /* remove underline for <a> */
    display: inline-block;
    transition: background 0.3s;
    margin-right: 10px;
    /* optional space between buttons */
}

/* Make card responsive */
@media (max-width: 992px) {
    .login-card-main {
        flex-direction: column;
        /* stack left and right */
        width: 90%;
        /* optional, fit screen */
        height: auto;
        /* allow height to grow */
        /* adjust padding for mobile */
    }

    .login-left,
    .login-right {
        width: 100%;
        /* full width for each */


    }

    .btn1 {
        margin-top: 12px;
        width: 100%;
    }

    .login-right {
        display: none;
        /* optional, adjust height */
    }

    .circle.one,
    .circle.two {
        width: 200px;
        height: 200px;
    }

    .btn {
        width: 100%;
    }
}

.password-box {
    position: relative;
}

.password-box input {
    padding-right: 40px;
    /* space for eye icon */
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    font-size: 18px;
    color: #9ca3af;
    user-select: none;
}

.toggle-password:hover {
    color: #5a19bb;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    /* space for icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #777;
    font-size: 16px;
}

.input-wrapper input:focus {
    border-color: #5a19bb;
}

.password-box .input-wrapper {
    position: relative;
}

.password-box input {
    width: 100%;
    padding: 12px 42px 12px 42px;
    /* space for both icons */
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.password-box .fa-lock {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.password-box input:focus {
    border-color: #5a19bb;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero-v2 {
    position: relative;
    padding: 80px 0 120px;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.blog-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.blog-wave-bg svg {
    width: 100%;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.blog-hero-v2 h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
    margin-right: 677px;
}

.blog-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-filters a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.blog-filters a:hover,
.blog-filters a.active {
    color: #2563eb;
}

.blog-filters a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 0;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card h3:hover {
    color: #2563eb;
}

.blog-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-excerpt {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        gap: 10px;
    }
}

/* ==========================================================================
   Dashboard Sidebar V3 (Modern Premium)
   ========================================================================== */

:root {
    --sidebar-bg: #f5f6fa;
    --sidebar-active-bg: #e8ebf7;
    --sidebar-text: #4a5568;
    --sidebar-active-text: #2d3748;
    --sidebar-primary: #002366;
    /* Match our dark blue */
    --sidebar-muted: #a0aec0;
}

.dashboard-sidebar {
    width: 95%;
    background-color: var(--sidebar-bg);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.sidebar-header {
    margin-bottom: 2rem;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background-color: var(--sidebar-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.sidebar-logo .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--sidebar-active-text);
    letter-spacing: 0.5px;
}

.menu-category {
    margin-bottom: 1.5rem;
}

.category-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sidebar-muted);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    padding-left: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--sidebar-text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-item i {
    font-size: 1.1rem;
    color: var(--sidebar-muted);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-item:hover a {
    background-color: var(--sidebar-active-bg);
    color: var(--sidebar-primary);
}

.menu-item:hover i {
    color: var(--sidebar-primary);
}

.menu-item.active a {
    background-color: var(--sidebar-active-bg);
    color: var(--sidebar-primary);
    font-weight: 700;
}

.menu-item.active i {
    color: var(--sidebar-primary);
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        transform: none !important;
        width: 100% !important;
        position: relative !important;
        margin-bottom: 2rem;
    }

    .dashboard-sidebar.show {
        transform: none !important;
    }
}

/* Profile Page Redesign */
.profile-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.profile-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.profile-header-card {
    background: linear-gradient(135deg, var(--primary-color), #2a3d8a);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-avatar-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.profile-info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.profile-info-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.profile-header-card .profile-info-label {
    color: rgba(255, 255, 255, 0.7);
}

.profile-header-card .profile-info-value {
    color: white;
    font-size: 1.5rem;
}

.pref-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f0f2f9;
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.keyword-tag {
    display: inline-block;
    padding: 3px 12px;
    background: #ff6e8115;
    color: #ff6e81;
    border: 1px solid #ff6e8130;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Profile and Form Redesign Styles */
.profile-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 2rem;
}

.profile-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.profile-section-header h3 {
    font-weight: 700;
    color: #1e1e2d;
    /* Fixed from var to direct color for safety */
    margin: 0;
}

.profile-form-group {
    margin-bottom: 1.5rem;
}

.profile-form-group .control-label {
    font-weight: 600;
    color: #1e1e2d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.profile-form-group .control-label span {
    color: #ff4d63;
    margin-left: 3px;
}

.premium-input {
    border: 2px solid #f0f0f0 !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    background-color: #fbfbfb !important;
}

.premium-input:focus {
    border-color: #435ebe !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(67, 94, 190, 0.1) !important;
    outline: none !important;
}

.premium-select-wrapper {
    position: relative;
}

/* Select2 Custom Styling for Profile Page */
.select2-container--bootstrap4 .select2-selection {
    border: 2px solid #f0f0f0 !important;
    border-radius: 10px !important;
    min-height: 48px !important;
    background-color: #fbfbfb !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #435ebe !important;
    box-shadow: 0 0 0 4px rgba(67, 94, 190, 0.1) !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    background-color: #435ebe !important;
    border: none !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 2px 10px !important;
    margin-top: 5px !important;
}

.profile-btn-submit {
    background: linear-gradient(135deg, #435ebe, #2a3d8a);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 94, 190, 0.3);
}

.profile-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 94, 190, 0.4);
    background: linear-gradient(135deg, #2a3d8a, #435ebe);
}

.bulk-action-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bulk-action-link.select-all {
    color: #435ebe;
}

.bulk-action-link.deselect-all {
    color: #ff4d63;
}

.bulk-action-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.form-section-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 2rem 0;
}

/* Tender Details Redesign Styles */
.detail-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 2rem;
    height: 100%;
}

.detail-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.detail-section-header h4 {
    margin: 0;
    font-weight: 700;
    color: #1e1e2d;
    font-size: 1.1rem;
}

.detail-section-header i {
    color: #435ebe;
    font-size: 1.25rem;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1e1e2d;
}

.detail-value-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: #435ebe;
}

.status-widget {
    background: linear-gradient(135deg, #435ebe, #1a2a6c);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status-days-large {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.status-label-large {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
}

.doc-download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.doc-download-item:hover {
    background: #fff;
    border-color: #435ebe30;
    box-shadow: 0 4px 12px rgba(67, 94, 190, 0.08);
    transform: translateX(5px);
}

.doc-icon {
    width: 40px;
    height: 40px;
    background: #435ebe15;
    color: #435ebe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.doc-info {
    flex: 1;
}

.doc-name {
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

.doc-source {
    font-size: 0.8rem;
    color: #6c757d;
}

.detail-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: #f0f2f8;
    color: #435ebe;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Image Match: Tender Details Styles */
.tender-image-match-container {
    padding: 5.5rem;
    background: #dfdfdf8a;
    font-family: var(--font-family);
    box-shadow: 0px 0px 13px #6c757d;
    border-radius: 20px;
}

.tender-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.tender-meta-left {
    flex: 1;
}

.meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #810e98;
    /* Purple/Pink from image */
    font-weight: 500;
}

.meta-line i {
    font-size: 1.1rem;
}

.meta-label {
    font-weight: 700;
    margin-right: 5px;
}

.meta-value {
    color: #555;
}

.days-left-large {
    text-align: center;
    color: #800000;
    /* Maroon/Red from image */
    min-width: 100px;
}

.days-left-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.days-left-txt {
    font-size: 1.1rem;
    font-weight: 700;
}

.section-data-container {
    border: 1px solid #dfdfdf;
    margin-bottom: 20px;
}

.section-data-head {
    background: #e8e8e8;
    padding: 10px 15px;
    font-weight: 600;
    color: #41515e;
    font-size: 0.95rem;
    border-bottom: 1px solid #dfdfdf;
}

.section-row {
    display: flex;
    border-bottom: 1px solid #efefef;
    padding: 10px 15px;
    align-items: center;
}

.section-row:last-child {
    border-bottom: none;
}

.section-label {
    width: 25%;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.section-value {
    width: 75%;
    color: #555;
    font-size: 0.9rem;
}

.info-help-icon {
    color: #810e98;
    cursor: pointer;
    margin-left: 8px;
    font-size: 1.1rem;
}

/* ════════════════════ ADVANCED SEARCH REDESIGN ════════════════════ */
.adv-search-container {
    padding: 30px 0;
}

.adv-search-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.adv-search-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.adv-section-header {
    background: #fdfdfd;
    padding: 18px 25px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.adv-section-header i {
    font-size: 1.3rem;
    color: #00208b;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.adv-section-header h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: 0.3px;
}

.adv-section-body {
    padding: 30px 25px;
}

.adv-form-group {
    margin-bottom: 25px;
}

.adv-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.adv-label span {
    color: #e53e3e;
    margin-left: 3px;
}

.adv-input,
.adv-select {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.adv-input:focus,
.adv-select:focus {
    border-color: #00208b;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 32, 139, 0.1);
    outline: none;
}

/* Select2 Overrides for Advanced Search */
.adv-section-body .select2-container--default .select2-selection--single {
    background-color: #f8fafc !important;
    border: 2px solid #edf2f7 !important;
    border-radius: 10px !important;
    height: 48px !important;
}

.adv-section-body .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-left: 18px !important;
    color: #2d3748 !important;
}

.adv-section-body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.adv-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 60px;
}

.adv-submit-btn {
    background: linear-gradient(135deg, #00208b 0%, #0040ff 100%);
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 32, 139, 0.25);
    cursor: pointer;
}

.adv-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 32, 139, 0.35);
    filter: brightness(1.1);
}

.adv-input-hint {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-top: 6px;
    display: block;
}

@media (max-width: 768px) {
    .adv-section-body {
        padding: 20px 15px;
    }

    .adv-submit-btn {
        width: 100%;
        justify-content: center;
    }
}