/* ================================
   Web Development Hero Section
================================ */

.webdev-hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    /* linear-gradient(135deg, rgba(3, 12, 38, 0.65), rgba(0, 55, 120, 0.42)), */
    url("/assets/services/web_development.png");
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.webdev-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 145, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52));
  z-index: 1;
}

.webdev-hero-section .container {
  position: relative;
  z-index: 2;
}

.webdev-hero-content {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.webdev-hero-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
}

.webdev-hero-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.08;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.3rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.webdev-hero-subtitle {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.webdev-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.webdev-hero-btn-primary,
.webdev-hero-btn-secondary {
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.webdev-hero-btn-primary {
  background: #900C3F;
  border: 1px solid #900C3F;
  color: #ffffff;
}

.webdev-hero-btn-primary:hover {
  background: #720932;
  border-color: #720932;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(144, 12, 63, 0.35);
}

.webdev-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.webdev-hero-btn-secondary:hover {
  background: #ffffff;
  color: #900C3F;
  transform: translateY(-3px);
}

.webdev-hero-highlights {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.webdev-hero-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 600;
}

.webdev-hero-item i {
  color: #ffffff;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 767.98px) {
  .webdev-hero-section {
    min-height: auto;
    padding-top: 7rem !important;
    padding-bottom: 5rem !important;
    background-position: center;
  }

  .webdev-hero-title {
    font-size: 2.2rem;
    line-height: 1.18;
    max-width: 340px;
  }

  .webdev-hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 340px;
  }

  .webdev-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .webdev-hero-btn-primary,
  .webdev-hero-btn-secondary {
    width: 100%;
  }

  .webdev-hero-highlights {
    flex-direction: column;
    align-items: center;
  }

  .webdev-hero-item {
    width: 100%;
    max-width: 330px;
    justify-content: center;
  }
}


/* ================================
   Web Development Details/Overview Section
================================ */

.webdev-overview-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f8 100%);
  overflow: hidden;
}

.webdev-overview-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(144, 12, 63, 0.055);
  top: -140px;
  left: -120px;
}

.webdev-overview-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(144, 12, 63, 0.045);
  bottom: -120px;
  right: -100px;
}

.webdev-overview-section .container {
  position: relative;
  z-index: 2;
}

/* Image */
.webdev-overview-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.webdev-overview-image {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.webdev-overview-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 12, 38, 0.25), rgba(144, 12, 63, 0.25));
  pointer-events: none;
}

.webdev-image-badge {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.92);
  color: #900C3F;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.webdev-image-badge i {
  font-size: 1.1rem;
}

/* Content */
.webdev-overview-content {
  max-width: 680px;
}

.webdev-section-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(144, 12, 63, 0.09);
  color: #900C3F;
  font-weight: 800;
  font-size: 0.9rem;
}

.webdev-overview-content h2 {
  color: #900C3F;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 1.4rem;
}

.webdev-overview-content p {
  color: #333333;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.webdev-overview-content .webdev-lead {
  font-size: 1.08rem;
  color: #222222;
}

/* Feature Grid */
.webdev-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 2rem 0;
}

.webdev-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(144, 12, 63, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.045);
  color: #111111;
  font-weight: 700;
}

.webdev-feature-item i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(144, 12, 63, 0.09);
  color: #900C3F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Buttons */
.webdev-overview-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.webdev-primary-btn,
.webdev-secondary-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.webdev-primary-btn {
  background: #900C3F;
  color: #ffffff;
  border: 1px solid #900C3F;
}

.webdev-primary-btn:hover {
  background: #720932;
  border-color: #720932;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(144, 12, 63, 0.28);
}

.webdev-secondary-btn {
  background: transparent;
  color: #900C3F;
  border: 1px solid #900C3F;
}

.webdev-secondary-btn:hover {
  background: #900C3F;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 991.98px) {
  .webdev-overview-section {
    padding: 4.5rem 0;
  }

  .webdev-overview-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .webdev-feature-grid {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .webdev-overview-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .webdev-overview-section {
    padding: 4rem 0;
  }

  .webdev-overview-image {
    min-height: 300px;
    border-radius: 22px;
  }

  .webdev-overview-image-wrapper {
    border-radius: 22px;
  }

  .webdev-image-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    justify-content: center;
    font-size: 0.9rem;
  }

  .webdev-feature-grid {
    grid-template-columns: 1fr;
  }

  .webdev-overview-actions {
    flex-direction: column;
  }

  .webdev-primary-btn,
  .webdev-secondary-btn {
    width: 100%;
  }
}




/* ================================
   Web Development Tech Stack
================================ */

.webdev-stack-section {
  padding: 6rem 0;
  background: #ffffff;
}

.webdev-stack-title {
  max-width: 820px;
  margin: 0 auto 1rem;
  color: #900C3F;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
}

.webdev-stack-subtitle {
  max-width: 780px;
  margin: 0 auto 3rem;
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.8;
}

.webdev-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.webdev-stack-card {
  padding: 2rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f8 100%);
  border: 1px solid rgba(144, 12, 63, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.065);
  transition: all 0.3s ease;
}

.webdev-stack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.webdev-stack-card i {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.2rem;
  border-radius: 20px;
  background: rgba(144, 12, 63, 0.09);
  color: #900C3F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.webdev-stack-card h5 {
  color: #111111;
  font-weight: 850;
  margin-bottom: 0.7rem;
}

.webdev-stack-card p {
  color: #555555;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .webdev-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .webdev-stack-section {
    padding: 4rem 0;
  }

  .webdev-stack-grid {
    grid-template-columns: 1fr;
  }
}



/* ================================
   Web Development CTA Section
================================ */

.webdev-cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f8 100%);
  overflow: hidden;
}

.webdev-cta-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(144, 12, 63, 0.07);
  top: -160px;
  left: -120px;
}

.webdev-cta-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(144, 12, 63, 0.06);
  bottom: -150px;
  right: -120px;
}

.webdev-cta-section .container {
  position: relative;
  z-index: 2;
}

.webdev-cta-box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  border-radius: 32px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 10, 30, 0.94), rgba(144, 12, 63, 0.95)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%);
  box-shadow: 0 28px 70px rgba(144, 12, 63, 0.25);
}

.webdev-cta-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -90px;
}

.webdev-cta-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -110px;
  left: -80px;
}

.webdev-cta-box > * {
  position: relative;
  z-index: 2;
}

.webdev-cta-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
}

.webdev-cta-box h3 {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 900;
}

.webdev-cta-box p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

.webdev-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.webdev-cta-primary-btn,
.webdev-cta-secondary-btn {
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.webdev-cta-primary-btn {
  background: #ffffff;
  color: #900C3F;
  border: 1px solid #ffffff;
}

.webdev-cta-primary-btn:hover {
  background: #f4f4f4;
  color: #720932;
  border-color: #f4f4f4;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.webdev-cta-secondary-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.webdev-cta-secondary-btn:hover {
  background: #ffffff;
  color: #900C3F;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 576px) {
  .webdev-cta-section {
    padding: 4rem 0;
  }

  .webdev-cta-box {
    padding: 3rem 1.5rem;
    border-radius: 24px;
  }

  .webdev-cta-box h3 {
    font-size: 2rem;
  }

  .webdev-cta-box p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .webdev-cta-actions {
    flex-direction: column;
  }

  .webdev-cta-primary-btn,
  .webdev-cta-secondary-btn {
    width: 100%;
  }
}