
.contact-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.contact-left,
.contact-right {
  flex: 1;
  padding: 60px 40px;
  box-sizing: border-box;
}

.contact-left {
  background: #4f46e5;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-left .info {
  margin-bottom: 30px;
}

.contact-left .info div {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.contact-left .info div::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-left .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-left .social-icons div {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-left .social-icons div:hover {
  transform: scale(1.1);
  background: #fff;
  color: #111;
}

.contact-right {
  background: #fff;
}

.contact-right h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  background: #f9f9f9;
  transition: border-color 0.3s;
}

.contact-right textarea {
  border-radius: 20px;
  resize: none;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #4f46e5;
  background: #fff;
}

.contact-right button {
  width: 100%;
  padding: 14px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background: #372fd2;
}

/* ✅ Responsive for Tablet & Mobile */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    border-radius: 0;
    
    box-shadow: none;
	margin: 30px;
  }

  .contact-left,
  .contact-right {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .contact-right h3 {
    font-size: 20px;
  }

  .contact-left .info div {
    justify-content: center;
  }

  .contact-left .social-icons {
    justify-content: center;
  }
}
