 body {
     color: rgb(0, 0, 0);
  /* font-family: 'Comic Sans MS', cursive, sans-serif; */
 }

 .contact-header {
     padding: 100px 0 50px;
     text-align: center;
     background: url('https://images.unsplash.com/photo-1581093588401-2c85d90d2c01') no-repeat center center/cover;
 }

 .contact-header h1 {
     font-size: 3rem;
     font-weight: bold;
 }

 .form-control {
     color: rgb(0, 0, 0);
     border: 1px solid #444;
 }

 .form-control::placeholder {
     color: #8f8f8f;
 }

 .form-section {
     padding: 60px 0;
 }

 .contact-info i {
     font-size: 1.5rem;
     margin-right: 10px;
 }


 .btn-send {
     background-color: transparent;
     border: 1px solid rgb(29, 27, 27);
     color: rgb(6, 6, 6);
     padding: 10px 30px;
 }

 .map-responsive iframe {
     width: 100%;
     height: 250px;
     border: none;
 }

 /* Hero Section */
 .hero {
     height: 20vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: rgb(6, 6, 6);
     margin-top: 20vh;
 }

 .hero-content {
     max-width: 800px;
     padding: 0 20px;
 }

 .hero h1 {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .hero p {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 
:root {
  --primary-color: #04699D;
  --secondary-color: #EF8635;
  --accent-color: #7EB5EE;
  --dark-color: #52482C;
  --light-color: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out;
}

.contact-header h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-header h1::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 5px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--dark-color);
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

.form-section {
  border-radius: 20px;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-color) 0%, #035a87 100%);
  color: white;
  height: 100%;
  border-radius: 15px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.15;
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  z-index: 2;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 1.1rem;
  z-index: 2;
  position: relative;
}

.contact-info i {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-right: 15px;
  min-width: 25px;
  margin-top: 3px;
}

.map-responsive {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  height: 300px;
  position: relative;
  z-index: 2;
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.form-container h4 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.form-container h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: all 0.3s;
  background: var(--light-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(126, 181, 238, 0.25);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-send {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(239, 134, 53, 0.3);
}

.btn-send:hover {
  background: #e07a2a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(239, 134, 53, 0.4);
}

.btn-send i {
  margin-left: 8px;
}


.success-message {
  background: rgba(212, 237, 218, 0.9);
  color: #155724;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
  display: none;
  font-size: 1.1rem;
  border-left: 5px solid #28a745;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-header h1 {
    font-size: 2.8rem;
  }

  .contact-info,
  .form-container {
    padding: 30px;
  }

  .contact-info {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
.contact-info {
  background: linear-gradient(135deg, var(--primary-color) 0%, #035a87 100%);
  color: white;
  height: 100%;
  border-radius: 15px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.contact-info p{
display:flex;
flex-direction:column;
}
  .contact-header h1 {
    font-size: 2.2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .col-md-6 {
    padding: 25px;
  }
}