/* ================= FOOTER ================= */
body {
  padding-bottom: 30px;
}

main {
  padding-bottom: 10px;
}

/* ================= FOOTER ================= */

.Footer {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #4671A7 0%, #83A06A 100%);
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 72px;
}

/* ================= EXACT TOP CURVE ================= */

.Footer::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 110px;

  background: white;

  clip-path: path("M0,48 C260,82 470,-20 760,35 C980,78 1180,105 1440,68 L1940,-20 L0,0 Z");

  z-index: 1;
}

/* ================= CONTAINER ================= */

.footer-top,
.footer-line,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* ================= TOP SECTION ================= */

.footer-top {
  width: min(1280px, 92%);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  position: relative;
  z-index: 2;
}

/* ================= LOGO ================= */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 308px;
  height: 71px;
  object-fit: cover;
  padding-top: 14px;
}

/* ================= CENTER ================= */

.footer-center {
  text-align: center;
}

.footer-center h3 {
  font-family: "Nunito", sans-serif;
  font-size: 34px;
  /* line-height: 1; */
  font-weight: 800;

  color: #ffffff;

  margin-bottom: 7px;
}

/* ================= CALL BOX ================= */

.footer-call-box {
  width: 260px;
  height: 62px;

  margin: 0 auto;

  border-radius: 50px;

  background: linear-gradient(90deg, #7BAE33 0%, #1455A0 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.footer-call-box i {
  color: #ffffff;
  font-size: 20px;
}

.footer-call-box span {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;

  color: #ffffff;
}

/* ================= LOCATION ================= */

.footer-location {
  display: flex;
  align-items: center;

  gap: 12px;
}

.footer-location i {
  font-size: 22px;
  color: #ffffff;
}

.footer-location span {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;

  color: #ffffff;
}

/* ================= LINE ================= */

.footer-line {
  width: min(1280px, 92%);
  height: 1px;

  margin: 40px auto 28px;

  background: rgba(255, 255, 255, 0.6);
}

/* ================= BOTTOM ================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

/* ================= COPYRIGHT ================= */

.copyright {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding-left: 30px;
}

.copyright i {
  font-size: 18px;
}

/* ================= DEVELOPED BY ================= */

.developed-by {
  display: flex;
  align-items: center;

  gap: 14px;
}

.developed-by span {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;

  color: #ffffff;
}

.developed-by img {
  width: 112px;
  height: 58px;

  object-fit: contain;
  padding-right: 5px;
}

/* ================= FIXED BAR ================= */

.fixed-footer-bar {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  height: 50px;
  padding: 0 24px;
  background: linear-gradient(90deg, #72973F 0%, #144F9C 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.fixed-footer-bar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ================= FIXED LEFT ================= */

.fixed-footer-left,
.fixed-footer-center {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: unset !important;
  margin: 0;
  text-align: center;
  color: #ffffff;
}

/* ================= RIGHT ================= */

.fixed-footer-right {
  display: flex;
  align-items: center;

  gap: 14px;
}

.fixed-footer-rightcenterpara {
  display: none;
}

/* ================= APPLY BUTTON ================= */

.apply-btn {
  width: 140px;
  height: 30px;
  border-radius: 40px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #144F9C;
  transition: 0.3s ease;
}

.apply-btn:hover {
  transform: translateY(-2px);
}

/* ================= BACK TO TOP ================= */

.back-top {
  width: 40px;
  height: 40px;

  font-size: 16px;

  background: #0A3C7B;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

}

/* =========================================================
   RESPONSIVE FOOTER
   Senior Frontend Optimized Version
========================================================= */

/* =========================
   LARGE TABLET
   1024px and below
========================= */
@media (max-width: 1024px) {

  body {
    padding-bottom: 95px;
  }

  .Footer {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .Footer::before {
    height: 85px;
  }

  /* TOP AREA */
  .footer-top {
    width: min(92%, 900px);

    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 30px;
  }

  .footer-logo img {
    width: 260px;
    height: auto;
  }

  .footer-center h3 {
    font-size: 30px;
    line-height: 1.2;
  }

  .footer-call-box {
    width: 240px;
    height: 56px;
  }

  .footer-call-box span {
    font-size: 18px;
  }

  .footer-location {
    justify-content: center;
  }

  .footer-location span {
    font-size: 18px;
  }

  /* BOTTOM AREA */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 18px;
  }

  .copyright {
    padding-left: 0;
    justify-content: center;

    font-size: 15px;
    line-height: 1.5;

    flex-wrap: wrap;
  }

  .developed-by {
    justify-content: center;
  }

  .developed-by span {
    font-size: 15px;
  }

  /* FIXED BAR */
  .fixed-footer-bar {
    padding: 14px 18px;
    gap: 16px;
    min-height: 78px;
  }

  .fixed-footer-left,
  .fixed-footer-center {
    font-size: 13px;
    line-height: 1.4;
  }

  .apply-btn {
    width: 150px;
    height: 44px;
    font-size: 17px;
  }
}


/* =========================
   TABLET
   768px and below
========================= */
@media (max-width: 768px) {

  body {
    padding-bottom: 120px;
  }

  .Footer {
    padding-top: 62px;
    padding-bottom: 85px;
  }

  .Footer::before {
    height: 68px;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-logo img {
    width: 235px;
  }

  .footer-center h3 {
    font-size: 26px;
  }

  .footer-call-box {
    width: 225px;
    height: 52px;
    gap: 12px;
  }

  .footer-call-box span {
    font-size: 17px;
  }

  .footer-location {
    gap: 10px;
  }

  .footer-location span {
    font-size: 16px;
  }

  .footer-line {
    margin: 28px auto 22px;
  }

  .copyright {
    font-size: 14px;
  }

  .developed-by span {
    font-size: 14px;
  }

  .developed-by img {
    width: 95px;
    height: auto;
  }

  /* FIXED BAR */
  .fixed-footer-bar {
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 7px;

    gap: 14px;

    height: auto;
  }

  .fixed-footer-left p {
    display: none;
  }

  .fixed-footer-left,
  .fixed-footer-center {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .fixed-footer-right {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .apply-btn {
    width: 145px;
    height: 42px;
    font-size: 16px;
  }

  .back-top {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}


/* =========================
   MOBILE
   480px and below
========================= */
@media (max-width: 480px) {

  body {
    padding-bottom: 170px;
  }

  .Footer {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .Footer::before {
    height: 55px;
  }

  .footer-top {
    gap: 22px;
  }

  /* LOGO */
  .footer-logo img {
    width: 200px;
  }

  /* HEADING */
  .footer-center h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  /* CALL BOX */
  .footer-call-box {
    width: 205px;
    height: 48px;

    border-radius: 50px;

    gap: 10px;
  }

  .footer-call-box i {
    font-size: 15px;
  }

  .footer-call-box span {
    font-size: 15px;
  }

  /* LOCATION */
  .footer-location {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;

    gap: 8px;
  }

  .footer-location i {
    font-size: 16px;
  }

  .footer-location span {
    font-size: 14px;
    line-height: 1.4;
  }

  .fixed-footer-rightcenterpara p {
    display: block;
    font-size: 11px;
    color: #ffffff
  }

  /* LINE */
  .footer-line {
    margin: 22px auto 18px;
  }

  /* COPYRIGHT */
  .copyright {
    font-size: 13px;
    line-height: 1.6;
    gap: 4px;
  }

  .copyright i {
    font-size: 13px;
  }

  /* DEVELOPED */
  .developed-by {
    gap: 8px;
    flex-wrap: wrap;
  }

  .developed-by span {
    font-size: 13px;
  }

  .developed-by img {
    width: 85px;
  }

  /* FIXED BAR */
  .fixed-footer-bar {
    padding: 8px 12px;
    gap: 12px;
  }

  .fixed-footer-left,
  .fixed-footer-center {
    font-size: 12px;
    line-height: 1.5;
  }

  .fixed-footer-right {
    gap: 20px;
  }

  .apply-btn {
    width: 135px;
    height: 30px;

    font-size: 15px;
    font-weight: 800;
  }

  .back-top {
    width: 38px;
    height: 38px;
    padding-right: 5px;
    font-size: 14px;
  }
}

.fixed-footer-rightcenterpara p {
  display: none;
}

/* =========================
   MOBILE FIXED FOOTER BAR
========================= */

@media (max-width: 480px) {

  .fixed-footer-bar {
    width: 100%;
    /* min-height: 144px; */

    padding: 4px 10px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    text-align: center;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    background: linear-gradient(90deg, #72973F 0%, #144F9C 100%);
  }

  .fixed-footer-rightcenterpara {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* =========================
     TOP TEXT
  ========================= */

  .fixed-footer-center {
    width: 100%;
    max-width: 340px;

    font-family: "Nunito", sans-serif;
    font-size: 9px;
    line-height: 1.25;
    font-weight: 800;

    color: #ffffff;

    text-align: center;
  }

  .fixed-footer-center p {
    margin: 0;
  }

  /* =========================
     APPLY BUTTON
  ========================= */

  .fixed-footer-right {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
  }

  .apply-btn {
    width: 100px;
    height: 32px;
    padding-bottom: 2px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
  }

  /* =========================
     BOTTOM TEXT
  ========================= */

  .fixed-footer-left {
    width: 100%;
    max-width: 340px;

    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;

    text-align: center;

    color: #ffffff;
  }

  .fixed-footer-left p {
    margin: 0;
  }

  /* =========================
     BACK TO TOP
  ========================= */

  .back-top {
    width: 34px;
    height: 34px;

    flex-shrink: 0;
    padding-left: 4px;
    font-size: 13px;
    margin-left: 0;
  }

  .fixed-footer-rightcenterpara p {
    display: block;
    margin: 0;
    font-size: 11px;
    line-height: 1.25;
    color: #ffffff;
  }

  /* =========================
     BODY SPACING
  ========================= */

  body {
    padding-bottom: 156px;
  }
}
.fixed-footer-left p {
    margin-bottom: 0 !important;
}
a.back-top {  
    color: #fff !important;
    text-decoration: none !important;
}