/* Filter Css */
.form-select-lg {
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    background-color: var(--White);
    border: 1px solid var(--Line);
    border-radius: 16px;
    color: var(--Text);
    overflow: hidden;
    height: 54px;
    margin-bottom: 0;
}
.filter-actions {
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-actions .tf-btn {
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-actions .bg-color-primary {
    background: linear-gradient(135deg, #f8913d 0%, #f8913d 100%) !important;
    box-shadow: 0 4px 15px rgba(248, 145, 61, 0.4);
}

.filter-actions .bg-color-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(248, 145, 61, 0.6) !important;
}

.filter-actions .style-border {
    border: 2px solid #e2e8f0 !important;
    color: #4a5568 !important;
    background: white !important;
}

.filter-actions .style-border:hover {
    border-color: #f8913d !important;
    color: #f8913d !important;
    background: rgba(248, 145, 61, 0.05) !important;
    transform: translateY(-2px);
}
/* End Filter Css */

.hero-section {
    background: linear-gradient(135deg, #f1913d 0%, #d6741c 50%, #8b3f00 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: asset('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="asset(%23grain)"/></svg>');
    opacity: 0.3;
}

.search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.project-content {
    padding: 25px;
}

.project-title a:hover {
    color: #3498db !important;
}

.featured-projects-section {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #e74c3c 100%);
    position: relative;
    overflow: hidden;
}

.featured-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: asset('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="asset(%23grain)"/></svg>');
    opacity: 0.2;
}

.featured-project-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.featured-project-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.bg-primary {
    background-color: #2c3e50 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #f8913d 0%, #f8913d 100%);
    border-color: #f8913d;
    background: linear-gradient(135deg, #f8913d 0%, #f8913d 100%);
    border-color: #f8913d;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    border-radius: 14px;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-control:focus,
.form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.pagination .page-link {
    color: #3498db;
}

.pagination .page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
}
.tf-container .row > * {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .project-image {
        height: 200px;
    }
}