/* =====================================
   MUTUAL FUND PAGE
===================================== */

.mutual-hero {
  background: #f3f3f3;
  padding: 70px 0 80px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.mutual-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.mutual-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--heading);
}

.mutual-form-card {
  background: var(--white);
  border: 1px solid rgba(31, 95, 174, 0.18);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 620px;
}

.mutual-form-title {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.3;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.mutual-form-text {
  font-size: 1rem;
  color: var(--heading);
  line-height: 1.7;
}

.form-control-pill {
  border-radius: 999px;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.btn-pill {
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 1rem;
  border-width: 2px;
}

.mutual-gif-card {
  background: #fff;
  border-radius: 16px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.mutual-gif-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 480px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
  .mutual-gif-card {
    min-height: 470px;
  }
}

@media (max-width: 991.98px) {
  .mutual-hero {
    min-height: auto;
    padding: 60px 0 70px;
  }

  .mutual-form-card {
    max-width: 100%;
  }

  .mutual-gif-card {
    min-height: 420px;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .mutual-hero {
    padding: 48px 0 56px;
  }

  .mutual-title {
    font-size: 2.2rem;
  }

  .mutual-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .mutual-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .mutual-form-title {
    font-size: 1.4rem;
    max-width: 100%;
  }

  .mutual-gif-card {
    min-height: 320px;
    padding: 14px;
    border-radius: 14px;
  }

  .mutual-gif-card img {
    max-height: 300px;
  }
}

/* =====================================
   LOAN ELIGIBILITY (FIXED POSITION)
===================================== */

.eligibility-card {
  position: relative; /* IMPORTANT */
  height: 280px;
  width: 310px;
  background: url("../images/card-corner-bg.png") no-repeat top left;
  background-size: cover;
  overflow: hidden;
}

/* ICON inside curve */
.eligibility-icon {
  position: absolute;
  padding: 2px;
  border: 2px solid var(--white);
  border-radius: 5px;
  top: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* RIGHT SIDE CONTENT */
.eligibility-content {
  position: absolute;
  right: 20px;
  top: 70px;
  text-align: right;
  max-width: 65%;
  padding: 0 10px;
}

/* TITLE */
.eligibility-title {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
}

/* DESCRIPTION */
.eligibility-text {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================================
   ADVANTAGES SECTION
===================================== */

.mutual-advantages-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.advantage-card {
  background: #fff;
  border: 1px solid rgba(31, 95, 174, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 210px;
  min-height: 126px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 16px;
}

.advantage-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: #000;
  max-width: 150px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991.98px) {
  .advantage-card {
    max-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .mutual-advantages-title {
    font-size: 2rem;
  }

  .advantage-card {
    min-height: 120px;
    padding: 22px 16px 18px;
  }

  .advantage-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .advantage-title {
    font-size: 0.95rem;
  }
}

/* =====================================
   INVESTMENT PROCESS SECTION
===================================== */

.investment-process-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.process-image-box {
  background: #fff;
  border-radius: 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.process-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 380px;
}

.process-subtitle {
  font-size: 1rem;
  color: var(--heading);
}

.process-step-card {
  background: #fff;
  border: 1px solid rgba(31, 95, 174, 0.18);
  border-left: 6px solid var(--primary);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
}

.process-step-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 2px;
  flex-shrink: 0;
}

.process-step-title {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.process-step-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--heading);
}

/* Responsive */
@media (max-width: 991.98px) {
  .process-image-box {
    min-height: 360px;
    max-width: 420px;
  }

  .process-step-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .investment-process-title {
    font-size: 2rem;
  }

  .process-image-box {
    min-height: 300px;
    padding: 14px;
  }

  .process-image-box img {
    max-height: 260px;
  }

  .process-step-card {
    padding: 14px 16px;
  }

  .process-step-title {
    font-size: 1.05rem;
  }

  .process-step-text {
    font-size: 0.93rem;
  }
}

/* =====================================
   GOAL PLANNER CTA SECTION
===================================== */

.goal-planner {
  background: var(--primary);
  padding-top: 70px;
  padding-bottom: 70px;
}

.goal-planner-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.goal-planner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.goal-planner-btn {
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1rem;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.goal-planner-btn:hover,
.goal-planner-btn:focus {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Responsive */
@media (max-width: 767.98px) {
  .goal-planner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .goal-planner-title {
    font-size: 2rem;
  }

  .goal-planner-subtitle {
    font-size: 0.95rem;
  }

  .goal-planner-btn {
    min-width: 100%;
  }
}

/* =====================================
   PMS FIT SECTION
===================================== */

.pms-fit-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.pms-fit-subtitle {
  color: var(--heading);
  font-size: 1rem;
}

.pms-fit-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  min-height: 62px;
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.pms-fit-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.pms-fit-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 767.98px) {
  .pms-fit-title {
    font-size: 2rem;
  }

  .pms-fit-subtitle {
    font-size: 0.95rem;
  }

  .pms-fit-card {
    padding: 10px 14px;
    min-height: 58px;
    gap: 12px;
  }

  .pms-fit-icon {
    width: 30px;
    height: 30px;
  }

  .pms-fit-card-title {
    font-size: 1rem;
  }
}
