/* ===========================
   CONTACT PAGE STYLES
=========================== */

/* Hero Section */
.contact-hero {
  background: url("../images/anim5.gif") center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  position: relative;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3,5,27,0.7);
}
.contact-hero h1{
  position: relative;
  z-index: 1;
  font-size: 4rem;
} .contact-hero p {
  position: relative;
  z-index: 1;
}

/* ===============================
   CONTACT SECTION STYLES
=============================== */

/* General Layout */
.contact-section {
  background: #f8fbff;
  padding: 80px 0;
}

/* Contact Icon */
.contact-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Text Side */
.contact-section h2 {
  color: #002b5b;
}
.contact-section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: #09031d;
  border-radius: 15px;
  padding: 30px 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 85%;
  max-width: 450px; /* makes the form narrower */
  min-height: 480px; /* controls height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Input Styles */
.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #007bff;
  padding: 10px 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 6px rgba(0, 86, 179, 0.3);
}

/* Button */
.contact-form button {
  background-color: #0056b3;
  border: none;
  font-weight: 600;
}
.contact-form button:hover {
  background-color: #003c82;
}
.anm{
  width:150px;
  height:150px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left: 25px;

}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-height: 400px;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
  }
}
