/* Subscribe Page */
.subscribe-hero {
  background: linear-gradient(135deg, pink, pink);
  padding: 90px 0;
  color: #fff;
}
.subscribe-hero h1 {
  font-size: 42px;
  font-weight: 700;
}
.subscribe-hero h1 span {
  color: #ffeb3b;
}
.subscribe-hero .sub-text {
  font-size: 18px;
  margin-top: 15px;
  opacity: 0.92;
  max-width: 720px;
  margin: auto;
}

.subscribe-box {
  background: #f5f8ff;
  padding: 80px 0;
}
.subscribe-card {
  background: #ffffff;
  padding: 55px 40px;
  border-radius: 12px;
  max-width: 650px;
  margin: auto;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.subscribe-card h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #2e2e2e;
}
.subscribe-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: 2px solid #e0e6ff;
  border-radius: 8px;
  font-size: 16px;
}
.subscribe-form input:focus {
  border-color: pink;
  outline: none;
}
.subscribe-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, pink, pink);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  transition: 0.3s;
}
.subscribe-form button:hover {
  transform: scale(1.03);
}

.subscribe-card small {
  display: block;
  margin-top: 22px;
  color: #555;
}
.subscribe-card small i {
  color: #4b8df8;
  margin-right: 6px;
}
