/* =========================
   CONTACT PAGE HEADER
========================= */
.contact-header {
  position: relative;
  padding: 110px 0 90px;
  background: rgba(13,71,255,0.18);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.contact-shape {
  position: absolute;
  z-index: 0;
}

/* Blue glow */
.contact-shape-one {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,71,255,0.18), transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -260px;
}

/* Teal angled panel */
.contact-shape-two {
  width: 520px;
  height: 300px;
  background: linear-gradient(
    135deg,
   rgba(13,71,255,0.08),
    rgba(13,71,255,0.02)
  );
  transform: rotate(-10deg);
  bottom: -160px;
  left: -180px;
  border-radius: 50px;
}

/* Keep content above shapes */
.contact-header .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TEXT CONTENT
========================= */
.contact-badge {
  display: inline-block;
  background: rgba(13,71,255,0.1);
  color: #0d47ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0a1f44;
  margin: 22px 0 18px;
  line-height: 1.2;
}

.contact-title span {
  color: #0d47ff;
}

.contact-subtitle {
  max-width: 620px;
  font-size: 1.05rem;
  color: #5f6f85;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   BREADCRUMB
========================= */
.contact-breadcrumb {
  font-size: 0.95rem;
  color: #5f6f85;
}

.contact-breadcrumb a {
  color: #0d47ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-breadcrumb span {
  margin: 0 6px;
}

/* =========================
   RIGHT INFO CARDS
========================= */
.contact-visual {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.contact-card {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(13,71,255,0.15);
}

.contact-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d47ff;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #5f6f85;
  margin: 0;
}

.contact-card.secondary {
  margin-top: 60px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .contact-header {
    padding: 90px 0 70px;
    text-align: center;
  }

  .contact-title {
    font-size: 2.3rem;
  }

  .contact-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .contact-header {
    padding: 70px 0 60px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }
}
/* =========================
   CONTACT INFO SECTION
========================= */
.contact-info-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef5ff 50%,
    #f2fbf9 100%
  );
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.contact-shape {
  position: absolute;
  z-index: 0;
}

/* Blue circle */
.shape-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13,71,255,0.15), transparent 70%);
  border-radius: 50%;
  top: -260px;
  left: -240px;
}

/* Teal blob */
.shape-two {
  width: 420px;
  height: 260px;
  background: linear-gradient(
    135deg,
    rgba(56,191,167,0.2),
    rgba(56,191,167,0.05)
  );
  border-radius: 60% 40% 50% 50%;
  bottom: -120px;
  right: -180px;
}

/* =========================
   CONTENT ABOVE SHAPES
========================= */
.contact-info-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1f44;
}

/* =========================
   CONTACT BOX
========================= */
.contact-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 25px 55px rgba(13,71,255,0.08);
  transition: all 0.35s ease;
}

.contact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(13,71,255,0.15);
}

/* Icon */
.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0d47ff, #38bfa7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* Text */
.contact-box h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 0.95rem;
  color: #5f6f85;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .contact-info-section {
    padding: 80px 0;
  }

  .contact-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1.9rem;
  }

  .contact-box {
    padding: 30px 20px;
  }
}
/* =========================
   SUPPORT SECTION
========================= */
.support-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef4ff 45%,
    #f1fbf9 100%
  );
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.support-shape {
  position: absolute;
  z-index: 0;
}

/* Blue diagonal glow */
.shape-a {
  width: 620px;
  height: 320px;
  background: linear-gradient(
    135deg,
    rgba(13,71,255,0.18),
    rgba(13,71,255,0.02)
  );
  transform: rotate(-8deg);
  top: -180px;
  right: -260px;
  border-radius: 60px;
}

/* Teal soft blob */
.shape-b {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(56,191,167,0.22),
    transparent 70%
  );
  border-radius: 50%;
  bottom: -220px;
  left: -200px;
}

/* =========================
   CONTENT ABOVE SHAPES
========================= */
.support-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.support-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a1f44;
}

.support-title span {
  color: #0d47ff; /* yellow accent like your design */
}

/* =========================
   FORM WRAPPER
========================= */
.support-form {
  max-width: 900px;
  margin: auto;
}

/* Inputs */
.support-form input,
.support-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e3e9f3;
  background: #ffffff;
  font-size: 0.95rem;
  color: #0a1f44;
  outline: none;
  transition: all 0.3s ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #7a8ca6;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: #0d47ff;
  box-shadow: 0 12px 30px rgba(13,71,255,0.12);
}

/* =========================
   BUTTON
========================= */
.support-btn {
  margin-top: 15px;
  padding: 14px 40px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #38bfa7, #0d47ff);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(13,71,255,0.25);
  transition: all 0.35s ease;
}

.support-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 55px rgba(13,71,255,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .support-section {
    padding: 90px 0;
  }

  .support-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 575px) {
  .support-section {
    padding: 70px 0;
  }

  .support-title {
    font-size: 2rem;
  }
}
