.container {
  max-width: 1200px;
  width: 100%;
  margin: 150px auto;
}

.contact-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;

  transition: transform 0.5s ease;
}


.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  background: linear-gradient(135deg, #2a07a8 0%, #2536b8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -150px;
  right: -150px;
}

.contact-info::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -100px;
  left: -100px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  background: white;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #2a0daa;
  border-radius: 2px;
}

.contact-info .section-title::after {
  background: white;
}

.info-item {
display: flex;
margin-top: 25px;
margin-bottom: 25px;
align-items: flex-start;
position: relative;
z-index: 2;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-content p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  margin-top: 40px;
  gap: 15px;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: white;
  color: #2a0daa;
  transform: translateY(-5px);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 95%;
  padding: 15px 20px;
  border: 2px solid #eaeaea;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #2a0daa;
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 187, 45, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn {
  background: #2a0daa;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgb(37 52 184);
}

.btn:hover {
  background: #e6a41e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(253, 187, 45, 0.4);
}

.btn i {
  font-size: 1.2rem;
}

.map-container {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  background: #eaeaea;
  position: relative;
  z-index: 2;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.decoration {
  position: absolute;
  z-index: 1;
}

.decoration.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: 30%;
  right: 10%;
}

.decoration.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 80px solid rgba(255, 255, 255, 0.08);
  bottom: 20%;
  left: 5%;
  transform: rotate(25deg);
}

@media (max-width: 768px) {
  .contact-card {
      flex-direction: column;
  }
  
  .contact-info, .contact-form {
      padding: 30px;
  }
  
  .section-title {
      font-size: 2rem;
  }
}


svg{
  width: 25px;
  height: 25px;
}