
.web-dev-section {
  padding: 60px 20px;
}

.web-dev-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Page Title */
.web-dev-section .page-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8B0000;
  text-align: center;
}

/* Intro Text */
.web-dev-section .intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

/* Features Grid */
.web-dev-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.web-dev-section .feature-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.web-dev-section .feature-box:hover {
  transform: translateY(-5px);
}

.web-dev-section .feature-box h3 {
  color: #8B0000;
  margin-bottom: 10px;
}

/* Why Choose Us */
.web-dev-section .why-us {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.web-dev-section .why-us h2 {
  text-align: center;
  color: #8B0000;
  margin-bottom: 20px;
}

.web-dev-section .why-us ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.web-dev-section .why-us ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #d32f2f;
}

/* Process Section */
.web-dev-section .process-section {
  background-color: #fff0f0;
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.web-dev-section .process-section h2 {
  text-align: center;
  color: #8B0000;
  margin-bottom: 20px;
}

.web-dev-section .process-section ol {
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.web-dev-section .process-section li {
  margin-bottom: 10px;
}

/* Call to Action */
.web-dev-section .cta-box {
  text-align: center;
  background-color: #8B0000;
  color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
}

.web-dev-section .cta-box h2 {
  margin-bottom: 15px;
  color: white;
}

.web-dev-section .btn-primary {
  display: inline-block;
  margin-top: 20px;
  background-color: #fff;
  color: #8B0000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.web-dev-section .btn-primary:hover {
  background-color: #ffe5e5;
}


.web-dev-section .faq-section {
  margin-top: 60px;
}

.web-dev-section .faq-title {
  text-align: center;
  font-size: 2rem;
  color: #8B0000;
  margin-bottom: 30px;
}

.web-dev-section .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.web-dev-section .faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #8B0000;
  color: #fff;
  border: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.web-dev-section .faq-question:hover {
  background-color: #a00000;
}

.web-dev-section .faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: #fff5f5;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 6px 6px;
}

.web-dev-section .faq-answer p {
  margin: 0;
}


/* Image Gallery */
.web-dev-section .image-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.web-dev-section .image-gallery img {
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.web-dev-section .image-gallery img:hover {
  transform: scale(1.05);
}