/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero Section Styling */
.hero-section {
  background-color: #000;
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Hero Image Styling */
.hero-img {
  max-width: 100%;
  height: auto;
}

/* Typography Adjustments */
.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.hero-section p {
  font-size: 1.1rem;
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-section p,
  .hero-section a {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}
/* General section styling */
.uiux-section {
  background-color: #f8f9fc;
}

/* Section title and subtitle */
.section-title {
  font-size: 2rem;
  color: #111;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Card styling */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icons above titles */
.icon-wrap img {
  /* background-color: #ffe5e5; */
  padding: 10px;
  border-radius: 50%;
      margin-top: -63px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .card-body {
    padding: 1rem 0.5rem;
  }
}
.design-offerings {
  background-color: #f9fafc;
}

.offering-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
}

.offering-icon img {
  /* background-color: #ffeef0; */
  padding: 10px;
  border-radius: 50%;
}

/* Typography */
.design-offerings h2 {
  font-size: 1.75rem;
}

.design-offerings p {
  font-size: 1rem;
}

/* Responsive spacing */
@media (max-width: 767.98px) {
  .offering-card {
    padding: 1.5rem 1rem;
  }
}
.design-process {
  background-color: #fff;
}

.process-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #e60023;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: #555;
}
@media (max-width: 576px) {
  .process-card {
    padding: 20px 15px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-desc {
    font-size: 13px;
  }
}
.work-showcase {
  background-color: #f9f9f9;
}

.showcase-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
}

.showcase-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.showcase-label {
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
@media (max-width: 576px) {
  .showcase-img {
    width: 80px;
    height: 80px;
  }

  .showcase-label {
    font-size: 14px;
  }
}
.cta-banner {
  background: url('/ui-ux-development/ui-ux-services/Assests/fb62d2480c499e8d12dad4600daae454b9d38d47.jpg') center center/cover no-repeat;
  padding: 80px 20px;
  min-height: 300px;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55); /* Dark overlay */
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.9;
}
@media (max-width: 576px) {
  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
