

Global styles
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #142092;
  color: #333;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 80px 20px;
  background-image: url('background1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #333;
}

/* Left side - info */
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #191a83;
  color: #ffffff;
  padding: 40px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.info-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.info-list i {
  color: #ffd700;
  margin-right: 10px;
}

/* Social icons */
.social-icons a {
  color: #e0d7d7;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

/* Right side - form */
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  color: #6a11cb;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 5px rgba(106, 17, 203, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a0fbf, #1f63d0);
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    width: 100%;
  }
}
