.elementor-410 .elementor-element.elementor-element-ec9c9c4{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-410 .elementor-element.elementor-element-ec9c9c4.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-410 .elementor-element.elementor-element-63737c0{width:var( --container-widget-width, 102.353% );max-width:102.353%;--container-widget-width:102.353%;--container-widget-flex-grow:0;}.elementor-410 .elementor-element.elementor-element-63737c0.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-410 .elementor-element.elementor-element-ec9c9c4{--width:98.667%;}}/* Start custom CSS for html, class: .elementor-element-63737c0 *//* Font Import (Optional: Add to HTML head) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(to right, #e7f0ff, #fdfdfd);
  padding: 80px 20px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.contact-container:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
}

.contact-container h2 {
  text-align: center;
  font-size: 32px;
  color: #202124;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-container p {
  text-align: center;
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 40px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #37474f;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: #4dabf7;
  outline: none;
  box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 124, 240, 0.2);
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-container h2 {
    font-size: 24px;
  }

  .contact-form button {
    font-size: 15px;
  }
}/* End custom CSS */