#below-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  /* padding: 3rem 2rem; */
  /* padding: calc(120px + var(--spacing-3xl)) 0 var(--spacing-3xl); */
  text-align: center;
  position: relative;
  overflow: hidden;
}

#below-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

#below-header > * {
  position: relative;
  z-index: 2;
}

#below-header h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.45);
}

#below-header p {
  font-size: 1.3rem;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

/* About Section Styles */
.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.about-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: #ddd;
}

.about-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #ccc;
}

.about-tagline {
  font-size: 1.1rem;
  color: #999;
  font-style: italic;
}

.services-container {
  background: rgba(124, 58, 237, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.services-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
}

.service-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-item p {
  color: #ccc;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.skill-category {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}
.skill-category:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}
.skill-category h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.skill-list {
  list-style: none;
}
.skill-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.skill-list li:last-child {
  border-bottom: none;
}
.project {
  background: rgba(26, 26, 26, 0.9);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}
.project:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}
.project h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.project p {
  color: #ccc;
  margin-bottom: 1rem;
}
.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.tech-tag {
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.testimonials {
  background: rgba(26, 26, 26, 0.5);
  padding: 3rem;
  border-radius: 15px;
  margin-top: 3rem;
}
.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #ddd;
}
.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Section Styles */
.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.contact-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.contact-info {
  margin: 1rem 0;
}
.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
}

.contact-cta .btn {
  font-size: 1.2rem;
  padding: 15px 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.stat-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
  transition: left 0.5s ease;
}
.stat-card:hover::before {
  left: 100%;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}
.stat-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
  animation: countUp 2s ease-out;
}
.stat-label {
  color: #ccc;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease-out;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.availability-badge {
  background: linear-gradient(45deg, #00ff00, #00cc00);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
  padding: 2rem;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}

@media (max-width: 768px) {
  #below-header h1 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}
