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

body {
    font-family:JetBrains Mono,monospace; 
    font-size: 24px; 
    font-style: normal;
    background: linear-gradient(135deg, #0a0a0a 0%, #080808 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo .elite {
    color: #ffffff;
}

.logo .nets {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.logo .com {
    color: #ffffff;
}

.logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #00ff00;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    /* background: rgba(0, 255, 136, 0.1); */
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #00ff00;
    /* background: rgba(0, 255, 136, 0.15); */
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    /* border: 1px solid rgba(0, 255, 136, 0.3); */
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cta-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 8px 14px;
    border: 1px solid #00ff00;
    background-color: transparent;
    color: #00ff00;
    text-decoration: none;
    font-size: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn1{
    color: #00ff00;
}
.btn:hover {
    background: linear-gradient(45deg, #00ff00, #00cc66);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, #00ff00, #00cc66);
    color: #000000;
    box-shadow: 0 0 90px rgba(200, 255, 136, 5);
}

.btn-primary:hover {
    background-color: transparent;
    color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-contact {
    border-color: #00FFFF		;
    color: #00FFFF		;
}

.btn-contact:hover {
    background: #404d58	;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.6);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 0%, transparent 80%, rgba(255, 255, 255, 0.05) 100%);
}
.hero-hacker {
    text-align: left;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 0%, transparent 80%, rgba(255, 255, 255, 0.05) 100%);
}
.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero h1 .elite {
    color: #ffffff;
}

.hero h1 .nets {
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.hero h1 .com {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.7rem;
    line-height: 1.75rem;
    /* font-size: 18px; */
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-description {
    color: #999999;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-btn {
    padding: 12px 24px;
    border: 1px solid #00ff00;
    background-color: #00ff00;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.hero-btn.secondary {
    background-color: transparent;
    color: #00ff00;
}

.hero-btn:hover {
    background-color: transparent;
    color: #00ff00;
}

.hero-btn.secondary:hover {
    background-color: #00ff00;
    color: #000000;
}

.hero-btn.primary {
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
}

.hero-btn.secondary {
    background-color: transparent;
    color: #00FFFF;
    border-color: #00FFFF;
}

.hero-btn.secondary:hover {
    background-color: #00FFFF;
    color: #000000;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-size: .875rem;
    line-height: 1.25rem;
   color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}


/* Services Section */
.services {
    padding: 60px 0;
}

.services h2 {
    font-family: Anonymous Pro,monospace;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-description {
    text-align: center;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
}

.service-categories h3 {
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    width: 30px;
    height: 30px;
    color: #00ff00;
    flex-shrink: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    border-color: #00ff00;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}

.category-card:hover::before {
    opacity: 1;
}

.category-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-bottom: 15px;
    align-items: start;
}

.category-icon-large {
     color: #00ff88;
    flex-shrink: 0;
}

.category-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.category-description {
    color: #999999;
    font-size: 1rem;
    margin-bottom: 15px;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333333;
}

.jobs-count {
    color: #cccccc;
    padding:0 8px;
    font-size: 12px;
    border: 1px solid #333333;
    border-radius: 10px;
}

.price-range {
    color: #00ff00;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Specialists Section */
.specialists {
    padding: 10px 0;
}

.specialists h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star-icon {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.specialists-description {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.specialist-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialist-card::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialist-card:hover {
    border-color: #00ff00;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}

.specialist-card:hover::before {
    opacity: 1;
}

.specialist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.specialist-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.specialist-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: #333333; */
}

.specialist-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.specialist-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.rating-badge {
    background: linear-gradient(45deg, #00ff00, #00cc66);
    color: #000000;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.specialist-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: #00dd63;
}
 

.specialist-services {
    color: #cccccc;
    font-size: 0.8rem;
    margin-bottom: 15px;
}
.specialist-services SPAN{
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
}
.specialist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333333;
    gap: 10px;
}

.specialist-footer .hire-btn {
    width: 80%;
    text-decoration: none;
    color:#ffffff";
}

.specialist-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-icon {
    width: 20px;
    height: 20px;
    padding: 20px;
    border: 1px solid #12869f;
    background: transparent;
    color: #12869f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.action-icon:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.action-icon.active {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}
.action-icon a{
    text-decoration: none;
    
}

.hire-btn.active {
    background: linear-gradient(45deg, #00cc66, #00ff88);
    transform: scale(0.98);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

/* Filters Section */
.filters-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-header h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.filter-select {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: monospace;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.filter-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.specialist-bio {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
    margin: 15px 0;
    border-left: 1px solid #00ff88;
    padding-left: 10px;
}

/* Filter Results */
.results-count {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth transitions for filtering */
.specialist-card {
    transition: all 0.3s ease;
}

.specialist-card.filtering {
    opacity: 0.5;
    transform: scale(0.95);
}

/* Price Tier */
.price-tier {
    color: #00ff88;
    font-size: 12px;
    font-weight: bold;
    margin-top: 4px;
}

/* Last Seen */
.last-seen {
    color: #999999;
    font-size: 11px;
    margin-bottom: 8px;
}



/* Project Form Section */
.project-form-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-header p {
    color: #cccccc;
    font-size: 16px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-form {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.sidebar-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.tips-list li::before {
    content: '•';
    color: #00ff88;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.popular-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-1px);
}

.platform-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: #00ff88;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 32px;
    color: #000000;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: monospace;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #00cc66, #00ff88);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    color: #999999;
    font-size: 12px;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    border-color: #00ff88;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.last-seen {
    color: #999999;
    font-size: 11px;
}

.hire-btn {
    background: linear-gradient(45deg, #00ff00, #00cc66);
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.hire-btn:hover {
    background: linear-gradient(45deg, #00cc66, #00ff00);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.view-all-btn {
    display: block;
    margin: 0 auto;
    background-color: transparent;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #00ff00, #00cc66);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

/* Recent Projects */
.recent-projects {
    padding: 60px 0;
}

.recent-projects h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chart-icon {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.projects-description {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 14px;
}

.project-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    border-color: #00ff00;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.project-card:hover::before {
    opacity: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-tag {
    background: linear-gradient(45deg, #2366a0, #267e97);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.project-time {
    color: #999999;
    font-size: 12px;
}

.project-budget {
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.project-budget-label {
    color: #999999;
    font-size: 12px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
    font-size: 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.lovable-credit {
    margin-top: 20px;
    font-size: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

.hero h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stats {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.logo-icon {
    /* animation: pulse 2s infinite; */
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
}

.mobile-cta-buttons {
    display: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    /* Navigation - Desktop */
    .nav {
        gap: 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .categories-grid,
    .specialists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .stats {
        gap: 100px;
    }
}

/* Tablet (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 1024px;
        padding: 0 30px;
    }

    /* Navigation - Tablet */
    .nav {
        gap: 15px;
    }

    .logo {
        font-size: 17px;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }

    .nav-links {
        gap: 18px;
    }

    .cta-buttons {
        gap: 6px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: 700px;
    }

    .categories-grid,
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stats {
        gap: 60px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .btn {
        font-size: 11px;
        padding: 7px 12px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation - Mobile */
    .header {
        padding: 15px 0;
        position: relative;
    }

    .nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .cta-buttons {
        display: none;
    }

    .mobile-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-cta-buttons .btn {
        text-align: center;
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .header {
        position: relative;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .categories-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px;
    }

    .stat {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 0.75rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
    }

    .category-card,
    .specialist-card,
    .project-card {
        padding: 20px;
    }

    .services h2,
    .specialists h2,
    .recent-projects h2 {
        font-size: 1.5rem;
    }

    .services-description,
    .specialists-description,
    .projects-description {
        font-size: 1rem;
    }

    /* Form container responsive */
    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-sidebar {
        order: -1;
    }

    .sidebar-section {
        padding: 20px;
    }

    .platform-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        margin: 0 5px;
    }

    .stat-item .stat-number {
        font-size: 18px;
    }
}
