/* Web Development Page Specific Styles */
/* .web-dev-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
      } */

.web-dev-hero .section-title {
  color: #f59e0b;
}

.web-dev-hero .section-title::after {
  background-color: #f59e0b;
}

.services-overview {
  padding: 100px 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
  background: blue;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
  background: blue;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.service-features i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 14px;
}

/* Technology Stack Section */
.tech-stack {
  padding: 100px 0;
  background: white;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.tech-category h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark);
  text-align: center;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.tech-item:hover i {
  color: white;
}

.tech-item span {
  font-weight: 600;
  font-size: 16px;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: #f8fafc;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
}

.btn-startYourProject{
  background-color: orange;
  
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  color: white;
}

.portfolio-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.portfolio-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.portfolio-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.portfolio-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: white;
  color: var(--primary);
}

/* Process Section */
/* Process Section - Matching Expertise Cards */
.process .service-card {
  padding: 30px;
  text-align: center;
}

.process .step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: blue;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.process p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .process .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.btn-outline-first {
  margin-top: 2.5rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.pricing-features i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 16px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.processContainer {
  /* display: flex; */
  background-color: red;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
}

/* Interactive Card Animations */
.interactive-card {
  cursor: pointer;
}

.interactive-card:hover .service-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  20%,
  60%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }

  .tech-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .process-step {
    flex-direction: column !important;
    text-align: center;
  }

  .process-step:nth-child(even) .step-content {
    text-align: center;
  }

  .step-number {
    margin: 0 0 20px 0;
  }

  .portfolio-filter {
    justify-content: center;
  }

  .filter-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .tech-icons {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    font-size: 32px;
  }

  .price {
    font-size: 36px;
  }
}
