.aa {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
}

.bb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc {
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 64, 255, 0.85),
      rgba(0, 64, 255, 0.65));

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

}

.hero-subtitle {
  color: white;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 50px);
}

.hero-title {
  color: white;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.contact-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 32px;
  color: red;
    display: inline-block;
  border-bottom: 2px dotted red;
  margin-bottom: 15px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #000000;
  margin-bottom: 20px;
  
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-box span {
  font-size: 22px;
  margin-right: 10px;
}

.contact-form {
  background: #d2ddddb8;
  
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
    display: inline-block;
  border-bottom: 2px dotted red;
  margin-bottom: 15px;
  color: red;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #1e3cff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #152bd4;
}

.success-msg {
  display: none;
  color: green;
  margin-top: 10px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}













.footer {
  background: radial-gradient(circle at top, #1e1b4b, #020617);
  color: #c7d2fe;
  padding: 70px 20px 0;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer-brand p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 14px 25px;
  background: #2563eb;
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 15px;
  cursor: pointer;
}

.footer-links ul li:hover {
  color: #fff;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    margin-top: 10px;
  }
}