body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner img {
  width: 100%;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: right;
  color: white;
}

.banner-text h1 {
  font-size: 36px;
  font-weight: 900;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;   /* 👈 control overall width */
  margin: 40px auto;   /* 👈 centers the box */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* optional nice shadow */
  border-radius: 8px; /* optional rounded corners */
}


/* Left Side - Form */
.contact-form {
  background: #0047ff;
  color: white;
  padding: 40px;
  width: 50%;
  box-sizing: border-box;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  padding: 8px;
  color: white;
  font-size: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
  background: white;
  color: #0047ff;
  font-weight: bold;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e6e6e6;
}

.contact-form button {
  background: white;
  color: #0047ff;
  font-weight: bold;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #0047ff;
  color: white;
  transform: scale(1.05); /* slight zoom */
  box-shadow: 0 4px 12px rgba(0, 71, 255, 0.4);
}


/* Right Side - Info */
.contact-info {
  background: white;
  padding: 40px;
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.contact-info h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.contact-info ul li::before {
  content: "•";
  color: #0047ff;
  position: absolute;
  left: 0;
}

/* Footer */
.footer {
  margin-top: 50px;
}

.footer-top {
  background: #0047ff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-left h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.footer-center {
  display: flex;
  gap: 30px;
}

.footer-center a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-center a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right .social-icon {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-right .social-icon:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-bottom {
  background: black;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}
