.elementor-4746 .elementor-element.elementor-element-0edd200{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:100;}.elementor-4746 .elementor-element.elementor-element-0edd200:not(.elementor-motion-effects-element-type-background), .elementor-4746 .elementor-element.elementor-element-0edd200 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-4746 .elementor-element.elementor-element-b12c7c2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4746 .elementor-element.elementor-element-2f27d70{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:100;}.elementor-4746 .elementor-element.elementor-element-68163fb{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:100;}.elementor-4746 .elementor-element.elementor-element-68163fb:not(.elementor-motion-effects-element-type-background), .elementor-4746 .elementor-element.elementor-element-68163fb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4d1c3d2 *//* IMPORT FONT (closest match) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');

.hero-section {
  background: linear-gradient(135deg, #0d2b52, #0b2545);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-container {
  max-width: 850px;
  margin: auto;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.1);
  color: #ffb020;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Title */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #f5a623;
  font-weight: 600;
}

/* Subtext */
.hero-subtext {
  font-size: 16px;
  color: #c9d4e3;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
   border: 1px solid rgba(255,255,255,0.4);
  background: #F59E0B;
  color: #000;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ffb84d;
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 20px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */