/* Website Development Page Styles */

/* Web Hero Section */
.web-hero {
  background-color: var(--sada);
  padding: 170px 0 70px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.specialization.section{
	  background-color: var(--dark);
}
.web-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1448px;
  margin: 0 auto;
  padding: 0;
}

.web-hero-content {
  flex: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--dark);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  left: unset;
  bottom: unset;
  width: fit-content;
  height: fit-content;
}

.hero-badge .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.hero-badge .icon svg {
  width: 14px;
  height: 14px;
}

.web-hero h1 {
  font-size: 50px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.web-hero h1 span {
  font-weight: 400;
  color: var(--text-light);
}

.web-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 45px;
}

.hero-feature-badge {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid #f3f4f6;
}

.hero-feature-badge .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.hero-feature-badge .icon svg {
  width: 16px;
  height: 16px;
}

.text-green {
  color: #10b981;
}

.text-blue {
  color: #3b82f6;
}

.text-purple {
  color: #8b5cf6;
}

.btn-hero-outline {
  display: inline-block;
  padding: 10px 30px;
  color: var(--primary);
  background: var(--sada);
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: var(--primary);
  color: var(--sada);
}

/* Grid layout */
.web-hero-grid {
  display: flex;
  gap: 20px;
}

.grid-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid-col.col-down {
  transform: translateY(30px);
}

.grid-item {
  width: 160px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.grid-item.item-img {
  height: 160px;
}

.grid-item.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-item.item-card {
  height: 160px;
  flex-direction: column;
  text-align: center;
}

.icon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  color: #1a1e2d;
}

.icon-inner svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.card-blue {
  background-color: #e0e7ff;
}

.card-yellow {
  background-color: #fef3c7;
}

.card-green {
  background-color: #d1fae5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-inner {
  width: 100%;
}

.trend-icon {
  margin-bottom: auto;
  color: #ef4444;
  margin-bottom: 15px;
}

.trend-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ef4444;
}

.card-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 5px;
  font-weight: 600;
}

.card-value {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .web-hero-container {
    gap: 30px;
  }

  .grid-item {
    width: 140px;
  }

  .grid-item.item-img,
  .grid-item.item-card {
    height: 140px;
  }
}

@media (max-width: 991px) {
.spec-card h3 {
    font-size: 1.4rem;
}
.specialization-grid {
    gap: 20px;
}
  .web-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .web-hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    justify-content: center;
  }

  .web-hero-grid {
    margin-top: 30px;
    justify-content: center;
  }

  .grid-col.col-down {
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .web-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .web-hero-grid {
    flex-direction: column;
    align-items: center;
  }

  .grid-col {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
}