.singwave-services {
  margin: 100px 0;
  padding: 60px 20px;
  background: #121212;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.container1 {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  background: linear-gradient(to right, #d33b6e, #65a4d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card {
  background: #1e1e1e;
  border-left: 5px solid #d33b6e;
  padding: 30px 20px;
  margin-bottom: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-badge {
  display: inline-block;
  background: #65a4d9;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card i {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #b5cb44;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Desktop: switch to 2-column grid */
@media (min-width: 768px) {
  .container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .section-title {
    grid-column: 1 / -1;
  }

  .service-card {
    margin-bottom: 0;
  }
}






.contact-section {
  background: #1c1c1c;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container1 {
  max-width: 900px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #65a4d9;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

label {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 500;
}

input, textarea {
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #2b2b2b;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #65a4d9;
  outline: none;
}

.submit-btn {
  padding: 14px 24px;
  background: linear-gradient(45deg, #d33b6e, #65a4d9);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
  .form-group {
    flex: 1 1 100%;
  }
}


.contact-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  text-align: right;
  padding: 20px;
}

.contact-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-subtitle {
  margin-bottom: 30px;
  color: #ccc;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form .submit-btn {
  background-color: #65a4d9;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-right {
    text-align: center;
    margin-top: 30px;
  }
}
