.custom-footer {
      position: relative; /* بدلاً من الثابت */
      margin-top: 30px; /* المسافة بينه وبين العنصر اللي فوقه */
      background: linear-gradient(180deg, #1e3a8a, #415c96, #dbeafe);
      /* background-color: #1e3a8a; */
      color: #ffffff;
      padding: 60px 20px 30px;
    }

    .custom-footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
    }

    .custom-footer-col {
      flex: 1 1 250px;
      min-width: 250px;
    }

    .custom-footer-col h3 {
      color: #ffffff;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .custom-footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .custom-footer-col ul li {
      margin-bottom: 10px;
      color: #ffffff;
    }

    .custom-footer-col ul li i {
      color: #ffffff;
      margin-left: 8px;
    }

    .custom-footer-col a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .custom-footer-col a:hover {
      color: #fefbfb;
    }

    .custom-footer-social-icons {
      margin-top: 10px;
    }

    .custom-footer-social-icons a {
      color: #ffffff;
      margin-left: 10px;
      font-size: 18px;
      transition: color 0.3s, transform 0.3s;
    }

    .custom-footer-social-icons a:hover {
      color: #ffffff;
      transform: scale(1.2);
    }

    .custom-footer-map-box {
      height: 200px;
      border-radius: 10px;
      margin-top: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      font-size: 16px;
    }

    .custom-footer-bottom {
      text-align: center;
      padding-top: 5px;
      font-size: 16px;
      color: #000000;
      background-color: #fff7f7;
      border-top: 4px solid #ccc;
      margin-top: 10px;
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .custom-footer-container {
        flex-direction: column;
        text-align: center;
      }

      .custom-footer-col {
        margin-bottom: 30px;
      }

.custom-footer-bottom {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  color: #030300;
  border-top: 1px solid #ccc;
  margin-top: 5px;
  background-color: aliceblue;
}}

