.elementor-143 .elementor-element.elementor-element-afabc1f{--display:flex;}.elementor-143 .elementor-element.elementor-element-109cb42{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-143 .elementor-element.elementor-element-1fb14c3{--display:flex;}.elementor-143 .elementor-element.elementor-element-24a8276{padding:0px 0px 15px 0px;}/* Start custom CSS for html, class: .elementor-element-91149b0 *//* Full-Width Hero Header */
.full-header-banner {
  width: 100vw;
  height: 75vh;
  background: linear-gradient(135deg, #0cc0df 0%, #001b36 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-bottom: 8px solid #ff1fa9;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 31, 169, 0.35), transparent 70%);
  animation: pulse-bg 7s infinite alternate;
  z-index: 1;
}

.banner-container {
  z-index: 2;
  max-width: 1200px;
  padding: 40px 20px;
}

.banner-content {
  animation: fadeUp 1.2s ease-out;
}

/* ---- TEXT ---- */
.full-header-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.full-header-banner h1 span {
  display: block;
  color: #ff1fa9;
  font-weight: 600;
  text-shadow: 0 0 12px #ff1fa9;
  transition: all 0.4s ease;
}

/* Hover effect on text */
.full-header-banner h1:hover span {
  color: #0cc0df;
  text-shadow: 0 0 20px #0cc0df;
}

.full-header-banner h1:hover {
  color: #ff1fa9;
  text-shadow: 0 0 25px #ff1fa9;
}

/* Paragraph hover */
.full-header-banner p {
  font-size: 1.15rem;
  color: #e9e9e9;
  margin-bottom: 2rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.4s ease, transform 0.4s ease;
}

.full-header-banner p:hover {
  color: #fff;
  transform: scale(1.03);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* ---- BUTTONS ---- */
.banner-buttons a {
  display: inline-block;
  margin: 10px 12px;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.call-btn {
  background: linear-gradient(90deg, #ff1fa9, #ff68c7);
  color: white;
  box-shadow: 0 0 20px rgba(255, 31, 169, 0.6);
}

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 31, 169, 1);
  background: linear-gradient(90deg, #ff68c7, #ff1fa9);
}

.learn-btn {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.learn-btn:hover {
  background: white;
  color: #0cc0df;
  box-shadow: 0 0 20px white;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-bg {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .full-header-banner {
    height: 90vh;
    padding: 40px 10px;
  }

  .full-header-banner h1 {
    font-size: 2rem;
  }

  .full-header-banner p {
    font-size: 1rem;
  }
}/* End custom CSS */