
/* footer-start */
.location i.fa.fa-map-marker {
    color: #1ab69d;
    font-size: 20px;
}
.location i.fa.fa-phone {
    color: #1ab69d;
    font-size: 20px;
}
.location i.fa.fa-envelope {
    color: #1ab69d;
    font-size: 20px;
}
.pri-term {
    color: black !important;
}
.logo-light {
    width: 216px !important;
}
.header-right {
    display: flex;
}
/* footer-end */

.submit-button .submit{
        text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;
    color: var(--edu-btn-color);
    background: var(--color-primary);
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: var(--font-secondary);
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Popup Box */
  .popup {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 90%;
    width: 700px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.4s ease-in-out;
  }

  /* Popup Image */
  .popup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  /* Font Awesome Close Button */
  .close-btn {
    position: fixed;
    top: 10%;
    right: 20%;
    background: #cc711600;
    color: #ffffff;
    border: solid 4px #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    }

  .close-btn:hover {
    background: #fff;
    color:#000;
    transform: scale(1.1);
  }

  /* Icon Styling */
  .close-btn i {
    pointer-events: none;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Responsive */
  @media (max-width: 480px) {
    .popup {
      width: 95%;
    }

    .close-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 10%;
    right: 10px;
    }
  }