.elementor-2397 .elementor-element.elementor-element-90b75c6{--display:flex;}.elementor-2397 .elementor-element.elementor-element-fb59eb1{--display:flex;}.elementor-2397 .elementor-element.elementor-element-d013945{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6239ece *//* Hero Section Wrapper with Card Layout */
/* Outer Card Layout */
.outer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1100px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid #e0f7f7;
}

.hero-section {
  text-align: center;
  margin: 40px auto;
  max-width: 950px;
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 12px 28px rgba(0, 128, 128, 0.15);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative Gradient Border Effect */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, teal, #00c6c6, #008080, #009688);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Trust Badge */
.trust-badge {
  display: inline-block;
  background: #e6f9f7;
  color: teal;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 128, 128, 0.15);
}

/* Title + Highlight */
.hero-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.3;
}
.hero-title span {
  color: teal;
}

/* Subtitle */
.hero-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Dropdown Section (inside card) */
.select-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.select-boxes div {
  text-align: left;
}
.select-boxes label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.select-boxes select {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 12px;
  border: 2px solid teal;
  outline: none;
  background: #f9fdfd;
  color: #333;
  transition: 0.3s;
  min-width: 240px;
  height: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  appearance: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-boxes select:focus {
  border-color: #00796b;
  box-shadow: 0 0 10px rgba(0, 150, 136, 0.25);
}

/* Options */
.select-boxes select option {
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
}/* End custom CSS */