@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* background-color: #f2f2f2; */
    text-decoration: none;
}
.nav-bar {
    position: fixed;
    top: 0px;
    height: 80px;
    width: 100%;
    z-index: 9999;
    /* border-bottom: 1px solid; */
    background-color: white;
    border-color: #ececec;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 .5px .5px 0 rgba(0, 0, 0, 0.19);
}

.logo {
    position: relative;
    margin-top: 20px;
    margin-left: 100px;
    width: 200px;
    height: 50px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.hover-login{
    width: 100px;
    padding: 5px;
    background-color: white; 
    border: 2px solid #000000;
    cursor: pointer;
    border-radius: 6px;
    height: 40px;
}

.hover-login:hover{
    background-color: #241d1e;
    color: white;
    border: 0px;
}

.hover-reg{
    width: 100px;
    padding: 5px;
    text-align: center; 
    background-color: rgb(218, 66, 66);
    cursor: pointer; 
    border: 0px; 
    border-radius: 6px;
    height: 41px;
    color: white;
}

.hover-reg:hover{
    background-color: #241d1e;
    color: white;
    border: 0px;
}

/* body */
.banner-img{
    margin-top: 10%;
}
.Registration-form{
    margin-top: 20%;
}
.main-class{
    margin-top: 100px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container-1 {
    max-width: 400px;
    margin: 50px auto;
    /* background-color: #fff; */
    border-radius: 8px;
    padding: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.list-nav-dsign {
    text-decoration: none;
    color: rgb(37, 45, 53);;
    font-size: 18px;
}

h2 {
    text-align: center;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    padding-left: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-container input:focus {
    border-color: dodgerblue;
}

.input-container i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #999;
}

.register-btn {
    width: 100%;
    padding: 10px;
    background-color: #1d1d75;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.register-btn:hover {
    background-color: #d45259;
}

/* footer */
/* tost */
.toast {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d1d75;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: opacity 0.5s ease-in-out;
    z-index: 99999999999999999999999999999999999999999999999999;
}

.hide {
    opacity: 0;
    pointer-events: none;
}

/* Touch us */
.contact-section {
    /* background-color: #1e293b; */
    padding: 30px;
    max-width: 400px;
    margin: 50px auto;
    border-radius: 8px;
    color: white;
  }
  
  .contact-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: -50%;
  }
  
  .contact-details {
    font-size: 16px;
  }
  
  .contact-item {
    margin-bottom: 20px;
  }
  
  .contact-label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .contact-number,
  .contact-email {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .contact-hours {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;
  }
  
  .whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .social-media {
    margin-top: 20px;
  }
  
  .social-label {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }

  .sub-list{
    margin-top: 40%;
  }

  .sub-list ul li{
    list-style: none;
    font-size: large;
  }
  .sub-list h4{
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-left: 12%;
  }

  .white-icon {
    filter: invert(1);
  }

  /* nav bar res */
  .navbar-responsive {
    flex: auto;
    flex-direction: row;
    justify-content: end;
  }
  
  @media (max-width: 992px) {
    .navbar-responsive {
        flex: auto;
        flex-direction: column;
        /* justify-content: end;
        position: fixed;
        background-color: beige;
        padding: 10px;
        width: 150px; */
    }
  }

  .loaderBtn {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #555;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    z-index: 99998;
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 40px 0;
}



.popup-box {
    background: #ffffff;
    width: 95%;
    max-width: 1000px;
    max-height: 85vh;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.25);
    overflow-y: auto;
    position: relative;
    animation: popupOpen .2s ease-out;
}



/* close icon */
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #3a3a3a;
}

.popup-close:hover {
    color: #000;
}

@keyframes popupOpen {
    from { opacity: 0; transform: scale(0.93); }
    to { opacity: 1; transform: scale(1); }
}

/* .popup-box::-webkit-scrollbar {
    width: 6px;
} */
.popup-box::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}
body.modal-open {
  overflow: hidden;
}


.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* .modal {
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  z-index: 9999;
} */

.modal-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}


