.elementor-3894 .elementor-element.elementor-element-085e5d2{--display:flex;}.elementor-3894 .elementor-element.elementor-element-085e5d2.e-con{--flex-grow:0;--flex-shrink:0;}.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-3894 .elementor-element.elementor-element-cf6c451{text-align:center;}.elementor-3894 .elementor-element.elementor-element-cf6c451 .elementor-heading-title{font-family:"Hanken Grotesk", Sans-serif;font-size:54px;font-weight:600;}@media(min-width:768px){.elementor-3894 .elementor-element.elementor-element-085e5d2{--width:97.782%;}}/* Start custom CSS for html, class: .elementor-element-864d2db *//* SECTION */
.contact-form-sec {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.form-box {
  max-width: 1150px;
  margin: auto;
  background: #123d5a;
  padding: 40px 45px;
  border-radius: 30px;
}

.form-box h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* ROW */
.row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.row input,
.row select,
textarea {
  width: 100%;
  background: #2b556f;
  border: 1px solid #6d8797;
  border-radius: 10px;
  padding: 18px 20px;
  color: #fff !important;
  font-size: 14px;
  outline: none;
}

/* PLACEHOLDER */
.row input::placeholder,
textarea::placeholder {
  color: #a8b6c0;
}

/* TEXTAREA */
textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 15px;
}

/* FOCUS */
.row input:focus,
.row select:focus,
textarea:focus {
  border: 1px solid #ffffff;
  box-shadow: none;
}

/* SELECT OPTIONS */
select option {
  background: #2b556f;
  color: #fff;
}

/* CHECKBOX */
.checkbox-wrap {
  color: #a8b6c0;
  font-size: 14px;
}

/* BUTTON */
button {
  float: right;
  background: #ef2b2b;
  color: white;
  border: none;
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* POPUP BACKDROP */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  width: 320px;
  animation: popupScale 0.3s ease-in-out;
}

.check-icon {
  font-size: 50px;
  color: #2ecc71;
  margin-bottom: 10px;
}

.popup-content h3 {
  margin: 10px 0;
  color: #123d5a;
}

.popup-content p {
  color: #555;
  font-size: 14px;
}

/* ANIMATION */
@keyframes popupScale {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .form-box h2 {
    font-size: 38px;
  }

  button {
    width: 100%;
    float: none;
  }
}
/* LOADER */
.loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #ef2b2b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* DISABLED BUTTON */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}/* End custom CSS */