.elementor-527 .elementor-element.elementor-element-4825f147{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5adf3d3 *//* SECTION BACKGROUND */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  padding: 80px 20px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* MAIN CARD */
.contact-container {
  max-width: 880px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

/* TITLE */
.contact-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.contact-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #e02b3f, #ff5a5f);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* INTRO TEXT */
.contact-intro {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* CONTENT BLOCK */
.contact-block {
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: 10px;
  background: #fafbfc;
  border: 1px solid #f1f1f1;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* LEFT ACCENT LINE (ANIMATED) */
.contact-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #e02b3f, #ff5a5f);
  transition: width 0.25s ease;
}

/* HOVER EFFECT */
.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-block:hover::before {
  width: 6px;
}

/* HEADINGS */
.contact-block h3 {
  color: #e02b3f;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* TEXT */
.contact-block p {
  color: #333;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* LINKS */
.contact-block a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* LINK UNDERLINE ANIMATION */
.contact-block a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #1a73e8;
  transition: width 0.25s ease;
}

.contact-block a:hover::after {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    padding: 35px 22px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-intro {
    font-size: 15px;
  }
}/* End custom CSS */
/* Start custom CSS */.contact-section {
  background-color: #f0f4f8;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  /* Main text color */
  color: #222; /* Default text color for entire section */
}

.contact-section h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
  color: #1E90FF; /* Dodger Blue for main heading */
}

.contact-section h3 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #FF6347; /* Tomato color for subheadings */
}

.contact-section p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333333; /* Dark gray for paragraph text */
}

.contact-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-section li {
  margin-bottom: 10px;
}

.contact-section a {
  color: #007BFF; /* Blue links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: #FF4500; /* Orange-Red on hover */
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

@media(max-width: 768px) {
  .contact-section {
    padding: 20px 10px;
  }
  .contact-section h2 {
    font-size: 1.5em;
  }
  .btn {
    padding: 12px 24px;
    font-size: 1em;
  }
}/* End custom CSS */