/* ==================== Subscribe Section ==================== */
.subscribe {
  background-color: #ffffff; /* Deep blue background like your brand */
  color: #fff;
  text-align: center;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.subscribe-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  color: #0d2f3f;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.subscribe h2 {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0d2f3f;
}

.subscribe p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.subscribe-form label {
  display: none;
}

.subscribe-form input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  transition: 0.3s;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: #0d2f3f;
  box-shadow: 0 0 6px rgba(13, 47, 63, 0.3);
}

.subscribe-form button {
  background-color: #0d2f3f;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #146b8c;
  transform: translateY(-2px);
}
