* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fafb;
}

/* ===== IMPROVED NAVBAR ===== */
.navbar {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-Us a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
}

.about-Us a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-box input {
  border: none;
  background: transparent;
  color: white;
  padding: 10px 18px;
  width: 220px;
  outline: none;
  font-size: 0.95rem;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-box button {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.search-box button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.auth-buttons {
  display: flex;
  gap: 12px;
}

.auth-buttons .btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.sign-in {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.sign-in:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.log-in {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.log-in:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 🌟 Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #f9fafb, #eef4ff);
  color: #111;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #121212;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #333;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-btn {
  padding: 12px 28px;
  border: 2px solid #667eea;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  color: #667eea;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #667eea;
  color: white;
  transform: scale(1.05);
}

/* 🌐 Toggle Section */
.toggle-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 20px;
}

.toggle-container {
  display: flex;
  width: 100%;
  max-width: 500px;
  border: 2px solid #667eea;
  border-radius: 30px;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  color: #667eea;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #667eea;
  color: white;
}

.toggle-btn:hover {
  background: #764ba2;
  color: white;
}

/* 🧭 Categories Section */
.categories {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
}

.categories h2 {
  font-size: 2rem;
  color: #121212;
  margin-bottom: 30px;
}

.slider-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 180px;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: #121212;
  transition: transform 0.3s ease, background 0.3s;
}

.slide:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #667eea;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  background: #764ba2;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 5px; }
.next { right: 5px; }

/* 💬 Testimonials Section */
.testimonials {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #eef4ff, #f9fafb);
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #121212;
}

.testimonial-box {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.testimonial-box span {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #667eea;
}

/* ===== IMPROVED MODAL (LANDSCAPE WIDTH) ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  width: 95%;
  max-width: 700px;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: rgba(0,0,0,0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(0,0,0,0.2);
  transform: rotate(90deg);
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
  font-size: 1.8rem;
}

input, select, textarea {
  width: 100%;
  margin: 8px 0 14px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

input:focus, select:focus, textarea:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 8px 0;
  color: #555;
}

/* ===== TWO COLUMN LAYOUT FOR STEP 2 ===== */
#signupStep2 #devFields,
#signupStep2 #clientFields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

#signupStep2 textarea {
  grid-column: 1 / -1;
}

/* ===== IMPROVED BUTTONS ===== */
.btn-primary, .btn-secondary, .generate-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: #f5f5f5;
  color: #333;
  border: 2px solid #ddd;
}

.btn-secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.generate-btn {
  background: transparent;
  color: #667eea;
  font-size: 14px;
  border: none;
  padding: 8px 16px;
}

.generate-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

/* ===== STEP INDICATOR ===== */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.dot {
  width: 14px;
  height: 14px;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

/* ===== FORM STEPS ===== */
.signup-step.hidden {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: auto;
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-right {
    gap: 15px;
    flex-wrap: wrap;
  }

  .search-box input {
    width: 150px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  #signupStep2 #devFields,
  #signupStep2 #clientFields {
    grid-template-columns: 1fr;
  }

  .form-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .form-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .auth-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}

/* ===== FEATURED DEVELOPERS SECTION ===== */
.featured-developers {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f9fafb 0%, #eef4ff 100%);
  text-align: center;
}

.featured-developers h2 {
  font-size: 2.5rem;
  color: #121212;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.developer-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.developer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.developer-card:hover::before {
  transform: scaleX(1);
}

.developer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
}

.dev-avatar {
  position: relative;
  margin-bottom: 20px;
}

.dev-avatar img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid #667eea;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.developer-card:hover .dev-avatar img {
  transform: scale(1.05);
  border-color: #764ba2;
}

.dev-rating {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.dev-details {
  flex: 1;
  width: 100%;
  margin-bottom: 20px;
}

.dev-details h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.dev-skills {
  font-size: 0.95rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.dev-experience {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.dev-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #666;
  margin-top: 12px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.dev-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dev-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.btn-view,
.btn-hire {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-view {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
}

.btn-view:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-hire {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-hire:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.loading-spinner {
  grid-column: 1 / -1;
  padding: 80px 20px;
  color: #667eea;
  font-size: 1.2rem;
  font-weight: 600;
}

.view-all-container {
  margin-top: 50px;
}

.btn-view-all {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Responsive for Featured Developers */
@media (max-width: 1024px) {
  .developers-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-developers {
    padding: 60px 15px;
  }

  .featured-developers h2 {
    font-size: 2rem;
  }

  .developers-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .developer-card {
    padding: 25px 20px;
  }

  .dev-avatar img {
    width: 90px;
    height: 90px;
  }
  
  .dev-details h3 {
    font-size: 1.2rem;
  }

  .dev-actions {
    flex-direction: column;
  }

  .btn-view,
  .btn-hire {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .developers-grid {
    grid-template-columns: 1fr;
  }

  .featured-developers h2 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1px;
}

.nav-center {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 6px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.sign-in {
  background: #fff;
  color: #667eea;
}

.sign-in:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.log-in {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.log-in:hover {
  background: #fff;
  color: #667eea;
}

/* ===== HERO MAIN SECTION ===== */
.hero-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 80px 10% 60px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 1.4s ease;
}

.hero-btn {
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-btn.primary {
  background: #fff;
  color: #667eea;
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.6s ease;
}

.hero-stat-item h3 {
  font-size: 3rem;
  margin-bottom: 5px;
}

.hero-stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 10%;
  background: #f9fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #222;
  margin-bottom: 5px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.image-placeholder span {
  font-size: 5rem;
  margin-bottom: 20px;
}

.image-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 80px 10%;
  background: #fff;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.mission-box:hover {
  transform: translateY(-10px);
}

.mission-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mission-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 100px 10%;
  background: #f9fafc;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.process-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 40px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.tab-btn.active {
  background: #667eea;
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tab-btn:hover {
  transform: translateY(-3px);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.step-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
}

.step-item h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 15px;
}

.step-item p {
  color: #666;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 10%;
  background: #fff;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 50px auto 0;
}

.service-box {
  background: #f9fafc;
  padding: 50px 40px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.service-box.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  transform: scale(1.05);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-box.featured:hover {
  transform: scale(1.08);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-header h3 {
  font-size: 1.8rem;
  color: #222;
}

.service-box.featured .service-header h3 {
  color: #fff;
}

.service-badge {
  background: #667eea;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-badge.premium {
  background: #ffd700;
  color: #333;
}

.service-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-box.featured .service-description {
  color: rgba(255, 255, 255, 0.95);
}

.service-benefits h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #222;
}

.service-box.featured .service-benefits h4 {
  color: #fff;
}

.service-benefits ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-benefits ul li {
  padding: 8px 0;
  color: #666;
  font-size: 0.95rem;
}

.service-box.featured .service-benefits ul li {
  color: rgba(255, 255, 255, 0.9);
}

.service-cta {
  width: 100%;
  padding: 15px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 30px;
}

.service-cta:hover {
  background: #667eea;
  color: #fff;
}

.service-cta.primary {
  background: #fff;
  color: #667eea;
  border-color: #fff;
}

.service-cta.primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ===== WHO WE SERVE SECTION ===== */
.who-we-serve {
  padding: 100px 10%;
  background: #f9fafc;
}

.who-we-serve h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 60px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.serve-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.serve-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid #667eea;
}

.serve-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.serve-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

.serve-card p {
  color: #666;
  line-height: 1.7;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 100px 10%;
  background: #fff;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 30px;
}

.why-item h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 15px;
}

.why-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 100px 10%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 20px 40px;
  border: 3px solid #fff;
  background: #fff;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

.cta-btn.clients {
  color: #667eea;
}

.cta-btn.developers {
  color: #764ba2;
}

.cta-icon {
  font-size: 2.5rem;
}

.cta-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: #222;
  color: #fff;
  padding: 60px 10% 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #667eea;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p {
  color: #aaa;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #aaa;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #333;
}

.modal-content h2 {
  color: #222;
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
}

.modal-content input:focus,
.modal-content select:focus {
  border-color: #667eea;
  outline: none;
}

.modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #555;
  font-size: 0.9rem;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #5568d3;
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: #f5f5f5;
  color: #333;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.3s;
}

.dot.active {
  background: #667eea;
  transform: scale(1.3);
}

.signup-step.hidden {
  display: none;
}

.form-buttons {
  display: flex;
  gap: 10px;
}

#devFields.hidden,
#clientFields.hidden {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-content,
  .mission-content,
  .services-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .nav-center {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .steps-grid,
  .serve-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .about-text h2,
  .how-it-works h2,
  .services-section h2,
  .who-we-serve h2,
  .why-choose h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .service-box,
  .mission-box {
    padding: 30px 25px;
  }
}
