* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  width: 100%;
  overflow: hidden;
}

/* ---------------- MAIN UPPER LAYOUT ---------------- */
.footer-upper-layout {
  display: flex;
  width: 100%;
  color: white;
}

/* ---------------- LEFT PANEL ---------------- */
.footer-left-layout {
  width: 25%;
  padding: 40px 30px;
  background: #ee1b22;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-left-layout img {
  width: 140px;
}

.footer-left-layout ul li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;

  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-left-layout ul li img {
  margin-top: 3px;
}

.footer-left-layout button {
  background: #1c3f94;
  border: none;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  font-family: Poppins;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
}

/* ---------------- RIGHT PANEL ---------------- */
.footer-right-layout {
  width: 75%;
  display: flex;
  flex-direction: column;
  background: #1c3f94;
}

/* -------- TOP RIGHT BAR -------- */
.footer-right-layout-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-right-layout-upper h5 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
.right-layout-upper-img{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

}

.right-layout-upper-img img,
.footer-right-layout-upper-img img {
  width: 34px;
  height: auto;
  cursor: pointer;
  transition: 0.2s;
}

.right-layout-upper-img img:hover,
.footer-right-layout-upper-img img:hover {
  transform: scale(1.1);
}

/* -------- BOTTOM RIGHT BAR -------- */
.footer-right-layout-lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 45px;
}

.footer-right-layout-lower h5 {
  font-family: Poppins;
  font-size: 22px;
  margin-bottom: 10px;
  padding-left: 30px;
}


/* new start */
.footer-right-layout-lower ul li a{
  list-style: none;
  display: inline-block; /* helps hover padding effect */
  font-family: Poppins;
  font-size: 15px;
  text-decoration: none !important;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* HOVER EFFECT */
.footer-right-layout-lower ul li a:hover {
  color: #ffd966;          /* highlight color (change if needed) */
  transform: translateX(5px);
}
.footer-right-layout-lower ul li {
  list-style: none;
  padding: 7px 0;
  font-family: Poppins;
  font-size: 15px;
  text-decoration: none !important;
  color: white;
}


/* new start end */
/* new start */
.footer-bottom-layout ul li a{
  list-style: none;
  display: inline-block; /* helps hover padding effect */
  font-family: Poppins;
  font-size: 15px;
  text-decoration: none !important;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* HOVER EFFECT */
.footer-bottom-layout ul li a:hover {
  color: #ffd966;          /* highlight color (change if needed) */
  transform: translateX(5px);
}
.footer-bottom-layout ul li {
  list-style: none;
  padding: 7px 0;
  font-family: Poppins;
  font-size: 15px;
  text-decoration: none !important;
  color: white;
}

/* Mobile (default) */
.lower {
  text-align: center;
  margin-bottom: 30px !important;
}

.lower p {
  margin: 5px 0;
 
}

/* Desktop only */
@media (min-width: 992px) {
  .lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .lower p {
    margin: 0px;
   
  }
}


/* new start end */
/* ---------------- BOTTOM FOOTER ---------------- */
/* 🎯 FIXED – EVERYTHING CENTERED PERFECTLY */
.footer-bottom-layout {
  background: #133380;
  padding: 22px 0;
  color: #f9f9f6cc;
  text-align: center;
  font-family: Poppins;
}

/* Center the list items */
.footer-bottom-layout ul {
  display: flex;
  /* flex-direction: column;    */
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 0;
  margin: 0px 0 10px 0;
}

.footer-bottom-layout ul li {
  list-style: none;
  font-size: 15px;
  /* width: 100%; */
  text-align: center;
}

.footer-bottom-layout p {
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

/* ---------------- RESPONSIVE FOOTER ---------------- */

/* ====== TABLETS (max-width: 992px) ====== */
@media (max-width: 1200px) {

  .footer-upper-layout {
    flex-direction: column;
  }

  .footer-left-layout {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-left-layout ul li {
    justify-content: center;
  }

  .footer-right-layout {
    width: 100%;
  }

  .footer-right-layout-upper {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding: 25px 20px;
  }

  .footer-right-layout-lower {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-right-layout-lower h5 {
    padding-left: 0;
  }
    .footer-bottom-layout ul{
    flex-direction: column;
  }
}

/* ====== MOBILE (max-width: 768px) ====== */
@media (max-width: 768px) {

.footer-right-layout-upper > div,
  .footer-right-layout-lower > div,
  .footer-left-layout {
    width: 100%;
  }

  .footer-right-layout-upper,
  .footer-right-layout-lower,
  .footer-left-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left-layout ul,
  .footer-right-layout-lower ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .footer-left-layout ul li,
  .footer-right-layout-lower ul li {
    text-align: center;
  }

  .right-layout-upper-img {
    justify-content: center;
    width: 100%;
  }
    .footer-bottom-layout ul{
    flex-direction: column;
       gap: 10px;
  }
  
}

/* ====== SMALL MOBILE (max-width: 576px) ====== */
@media (max-width: 576px) {

  .footer-right-layout-upper > div,
  .footer-right-layout-lower > div,
  .footer-left-layout {
    width: 100%;
  }

  .footer-right-layout-upper,
  .footer-right-layout-lower,
  .footer-left-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left-layout ul,
  .footer-right-layout-lower ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .footer-left-layout ul li,
  .footer-right-layout-lower ul li {
    text-align: center;
  }

  .right-layout-upper-img {
    justify-content: center;
    width: 100%;
  }
    .footer-bottom-layout ul{
    flex-direction: column;
       gap: 10px;
  }
}

/* ====== EXTRA SMALL (max-width: 350px) ====== */
@media (max-width: 350px) {
    /* flex-direction: column;    */

  .footer-left-layout img {
    width: 170px;
  }

  .footer-right-layout-upper h5,
  .footer-right-layout-lower h5 {
    font-size: 16px;
  }


  .footer-right-layout-lower ul li {
    font-size: 13px;
  }

  .right-layout-upper-img img {
    width: 22px;
  }
  .footer-bottom-layout ul{
    flex-direction: column;
    gap: 6px;
  }
}
