.smm-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
  color: white;
  min-height: 300px; /* Adjust based on content */
}

.smm-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Adjust transparency */
}

.smm-content {
  position: relative;
  z-index: 1;
}

.smm-content h4 {
  color: #0b2953;
}

.smm-services {
  padding: 60px 20px;
  background: #f4f4f4;
}
.smm-services h2{
    text-align: center;
}

.smm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.smm-card {
  background: white;
  padding: 20px;
  max-width: 300px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.smm-card img {
  height: 80%;
  width: 100%;
}
.smm-cta {
  background: #0b2953;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
  .quote-btn {
    display: inline-block;
    background-color: #FEBE10;
    color: #fff;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .quote-btn:hover {
    background-color: #e6a900;
    color: #000;
  }

  .smm-process {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.smm-process h2 {
  margin-bottom: 40px;
  font-size: 2em;
  color: #0b2953;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #FEBE10;
}
