

  /* Overlay */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgb(109 109 109 / 30%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal {
    background: url('../images/ComingSoonImages/BACKGROUND.svg');
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 1210px;
    height: 630px;
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
  }

  /* .text-section{
    width: 10px;
    height: 10px;
  } */
  /* Close button */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
  }
  .close-btn:hover {
    color: black;
  }

  .modal-img {
    width: 440px;
    max-width: 40%;
    margin-left: 20px;
  }

  .modal-cancel{
    width: 28px;
    transition: filter 0.3s ease;
  cursor: pointer;
  margin-top: 6px;
  }
  .modal-cancel:hover {
    filter: brightness(105%) saturate(100%) invert(27%) sepia(96%) saturate(4371%) hue-rotate(352deg) brightness(110%) contrast(95%);
  }

.text-section h1 {
  font-size: 6.3rem;
  font-weight: 800;
  background: linear-gradient(180deg, #105F9B 0%, #298DD9 57%, #104872 100%);
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0;
  line-height: 0.8;
}
  .text-section h4 {
    font-weight: 600;
    font-size: 60px;
    text-align: center;
    color: #252F4A;
    margin: 0;
    
  }
  .text-section p {
    font-weight: 600;
    font-size: 46px;
    color: #252F4A;
    margin: 0;
    text-align: center;
  }

  @media (max-width: 1300px) {
    .modal {
        width: 900px;
        height: auto;
        padding: 30px 20px;
        text-align: center;
    }
    .text-section h1 {
        font-size: 4.5rem;
    }
    .text-section h4 {
        font-size: 48px;
    }
    .text-section p {
        font-size: 36px;
    }
  }

  @media (max-width: 1024px) {
  .modal {
        width: 500px;
        height: auto;
        padding: 30px 20px;
        text-align: center;
    }
    .modal-cancel{
    width: 40px !important;
  }
    .text-section h1 {
        font-size: 2.4rem;
    }
    .text-section h4 {
        font-size: 26px;
    }
    .text-section p {
        font-size: 22px;
    }
  }

@media (max-width: 600px) {
  .modal {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    gap: 15px;
    width: 355px;
  }
  .modal-img {
    width: 40%;
    max-width: 300px;
    margin: 0 auto;
  }
  .modal-cancel{
    width: 30px !important;
  }
  .text-section h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .text-section h4 {
    font-size: 22px;
  }
  .text-section p {
    font-size: 18px;
  }
}

@media (max-width: 424px) {
  .modal {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    gap: 15px;
    width: 250px;
  }
  .modal-img {
    width: 40%;
    max-width: 300px;
    margin: 0 auto;
  }
  .modal-cancel{
    width: 30px !important;
  }
  .text-section h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .text-section h4 {
    font-size: 22px;
  }
  .text-section p {
    font-size: 18px;
  }
}