.elementor-1110 .elementor-element.elementor-element-8554059{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1110 .elementor-element.elementor-element-ffd114c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-1110 .elementor-element.elementor-element-3a42ed52{--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-1110 .elementor-element.elementor-element-3a42ed52:not(.elementor-motion-effects-element-type-background), .elementor-1110 .elementor-element.elementor-element-3a42ed52 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#081913;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1110 .elementor-element.elementor-element-84e8e3c{text-align:center;}.elementor-1110 .elementor-element.elementor-element-84e8e3c .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:15px;font-weight:500;color:#F5E49C;}/* Start custom CSS for html, class: .elementor-element-ffd114c *//* Background Section */
.contact-section {
  background: #F5E49C; /* Updated background */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* Form Card */
.contact-container {
  background: #ffffff;
  padding: 40px 35px;
  max-width: 650px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Heading */
.contact-title {
  font-family: Georgia, serif;
  font-size: 26px;
  text-align: center;
  margin: 5px 0 15px 0;
  color: #001602; /* Updated content color */
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Form Fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'Poppins', sans-serif;
  padding: 14px 15px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
  line-height: 1.4;
  box-sizing: border-box;
  outline: none;
  transition: 0.3s ease;
  color: #001602; /* Updated text color */
}

/* Placeholder Color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #001602;
  opacity: 0.6;
}

.contact-form textarea {
  resize: none;
  height: auto;
}

/* Focus State */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #001602;
  box-shadow: 0 0 8px rgba(0, 22, 2, 0.4);
}

/* Dropdown Option Fix */
.contact-form select option {
  font-size: 15px;
  color: #001602;
}

/* Phone Fields */
.phone-container {
  display: flex;
  gap: 12px;
}

.phone-container select {
  flex: 1.2;
  height: 52px !important;
}

.phone-container input {
  flex: 2;
}

/* Submit Button */
.contact-form button {
  background: #001602;
  color: #F5E49C;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 30px;
  border: 2px solid #001602;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.contact-form button:hover {
  background: transparent;
  color: #001602;
  border: 2px solid #001602;
  transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 28px 18px;
  }

  .phone-container {
    flex-direction: column;
  }

  .contact-title {
    font-size: 22px;
    white-space: normal;
  }
}/* End custom CSS */