body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f0f3f8;
  color: #222;
}

.header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0041ff, #00c6ff);
  color: white;
}

.header h1 {
  margin: 0;
  font-size: 42px;
  letter-spacing: 1px;
}

.header p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

.contact-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form-box {
  flex: 1;
  min-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease;
}

.contact-form-box h2 {
  margin-top: 0;
  font-size: 28px;
  color: #0041ff;
}

input, textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #0041ff;
  box-shadow: 0 0 8px rgba(0,64,255,0.3);
}

button {
  width: 100%;
  padding: 15px;
  background: #0041ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #002db3;
}

/* Dropdown Search */
.select-box {
  position: relative;
}

.service-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 10;
}

.service-dropdown div {
  padding: 10px;
  cursor: pointer;
}

.service-dropdown div:hover {
  background: #e6f0ff;
}

/* Services Grid */
.services-panel {
  flex: 1.2;
  min-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: slideUp 1s ease;
}

.services-panel h2 {
  margin-top: 0;
  color: #0041ff;
}

.service-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.service-item {
  padding: 12px;
  background: #f8faff;
  border-radius: 10px;
  border: 1px solid #d8e6ff;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.4s;
}

.service-item:hover {
  background: #e6f0ff;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,64,255,0.2);
}

/* animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
