:root {
    --dark-bg: #0f0f1a;
    --dark-card: #1a1a2e;
    --dark-card-hover: #22223a;
    --text-light: #e2e2e2;
    --text-muted: #8a8a9c;
}

.cta-box-btn {
    margin-top: 20px;
}

.btn-highlighted {
    display: inline-block;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #404040;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-highlighted:hover::before {
    left: 100%;
}

.btn-highlighted:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-highlighted:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Phone icon animation */
.btn-highlighted::after {
    content: '📞';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-highlighted:hover::after {
    transform: scale(1.2) rotate(12deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .btn-highlighted {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
.our-projects {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-default {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-default:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    color: white;
}

.project-nav {
    margin: 50px 0 30px;
}

.project-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.project-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.project-nav ul li a:hover,
.project-nav ul li a.active-btn {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.project-item {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    background: var(--dark-card-hover);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.project-item-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-item-image img {
    transform: scale(1.05);
}

.project-item-content {
    padding: 25px;
}

.project-item-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-item-content h2 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item-content h2 a:hover {
    color: var(--primary-color);
}

.project-item-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.project-item-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-item:hover .project-item-btn {
    opacity: 1;
    transform: translateY(0);
}

.project-item-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-item-btn a:hover {
    background: var(--primary-dark);
    transform: rotate(45deg);
}

.project-item-btn i {
    color: white;
    font-size: 16px;
}

.section-footer-text {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.satisfy-client-images {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.satisfy-client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 -10px;
    border: 3px solid var(--dark-card);
    transition: transform 0.3s ease;
}

.satisfy-client-image:hover {
    transform: translateY(-5px);
    z-index: 1;
}

.satisfy-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-footer-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.section-footer-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.section-footer-text a:hover {
    text-decoration: underline;
}

/* Animation classes */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .project-nav ul {
        gap: 10px;
    }
    
    .project-nav ul li a {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}


.mobile-filter-toggle {
    margin-bottom: 15px;
    position: sticky;
    top: 15px;
    z-index: 100;
}

.mobile-filter-btn {
    width: 100%;
    padding: 12px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-filter-btn:hover {
    border-color: #a9761f;
}

.mobile-filter-btn .filter-icon {
    transition: transform 0.3s ease;
}

.mobile-filter-btn.active .filter-icon {
    transform: rotate(180deg);
}

/* Filter Form Wrapper - Mobile Styles */
@media (max-width: 991.98px) {
    .filter-form-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .filter-form-wrapper.active {
        opacity: 1;
        visibility: visible;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 85%;
        max-width: 350px;
        background: white;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001; /* Ensure it's above the overlay */
    }

    .filter-form-wrapper.active .filters-sidebar {
        transform: translateX(0);
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e2e8f0;
    }

    .filter-header h3 {
        margin: 0;
        font-size: 1.25rem;
        color: #1e293b;
    }

    .filter-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .close-filters {
        background: none;
        border: none;
        color: #64748b;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-filters:hover {
        color: #1e293b;
    }

    .close-filters svg {
        width: 20px;
        height: 20px;
    }

    .clear-filters {
        background: none;
        border: none;
        color: #ef4444;
        font-size: 0.875rem;
        cursor: pointer;
        padding: 5px 10px;
    }

    .clear-filters:hover {
        text-decoration: underline;
    }

    .filter-groups-container {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding-right: 10px;
    }

    .mobile-filter-actions {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 15px 0;
        border-top: 1px solid #e2e8f0;
        margin-top: 20px;
    }

    .apply-filters-btn {
        width: 100%;
        padding: 12px;
        background: #a9761f;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .apply-filters-btn:hover {
        background: #8f631a;
    }

    /* Filter groups styling */
    .filter-group {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f1f5f9;
    }

    .filter-group:last-child {
        border-bottom: none;
    }

    .filter-group h4 {
        margin: 0 0 12px 0;
        font-size: 1rem;
        color: #334155;
        font-weight: 600;
    }

    .price-inputs {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .price-inputs input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-size: 0.875rem;
    }

    .price-inputs span {
        color: #64748b;
    }

    .filter-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .filter-option {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 8px 0;
    }

    .filter-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #a9761f;
    }

    .filter-option span {
        font-size: 0.9375rem;
        color: #475569;
    }
}

/* Desktop Styles (unchanged) */
@media (min-width: 992px) {
    .mobile-filter-toggle,
    .close-filters,
    .mobile-filter-actions {
        display: none !important;
    }

    .filter-form-wrapper {
        position: static !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .filters-sidebar {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .filter-header h3 {
        margin: 0;
        font-size: 1.5rem;
        color: #1e293b;
    }

    .clear-filters {
        background: none;
        border: none;
        color: #ef4444;
        font-size: 0.875rem;
        cursor: pointer;
        padding: 5px 10px;
    }

    .clear-filters:hover {
        text-decoration: underline;
    }

    .filter-groups-container {
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
    }
}

/* Remove the problematic rule that hides the sidebar */
@media (max-width: 991.98px) {
    /* Remove or comment out this rule that was causing the blank overlay */
    /* .col-lg-3 .filters-sidebar:not(.mobile-active) {
        display: none;
    } */
    
    /* Instead, ensure the sidebar is visible when the wrapper is active */
    .filter-form-wrapper:not(.active) .filters-sidebar {
        transform: translateX(-100%);
    }
    
    .filter-form-wrapper.active .filters-sidebar {
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-default, .btn-outline {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Primary Button - Rich gradient */
.btn-default {
    background: linear-gradient(135deg, #a9761f 0%, #d4a746 100%);
    color: white;
    border: none;
    box-shadow: 
        0 8px 25px rgba(169, 118, 31, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-default:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(169, 118, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #8f631a 0%, #c0953a 100%);
}

.btn-default:active {
    transform: translateY(-1px);
}

/* Outline Button - Sophisticated contrast */
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #a9761f;
    border: 2px solid rgba(169, 118, 31, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(169, 118, 31, 0.05);
    border-color: #a9761f;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(169, 118, 31, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Add subtle shine effect on primary */
.btn-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.btn-default:hover::before {
    left: 100%;
}

/* Optional arrow icons */
.btn-default::after {
    content: '→';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-default:hover::after {
    transform: translateX(4px);
}

.btn-outline::after {
    content: '↗';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-outline:hover::after {
    transform: translate(2px, -2px);
}