*{
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

body{
    min-height: 100vh;
    width: 100%;
    /* background-image: url(GYM.avif); */
    /* background-image: url(./images/background.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    
    
    /* background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(BAckground-img.jpg); */
}

 /* Preloader Styles */
 #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner Styles */
.preloader-icon {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

/* Loading Text Styles */
.loading-text {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    animation: pulse 2.5s linear infinite;
    font-family: var(--main-font);
}

/* Keyframe Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide main content initially */
#main-content {
    background-image: url(./images/background.jpg);
    display: none;
    
}

/* Transition for Loaded State */
body.loaded #preloader {
    display: none;
}

body.loaded #main-content {
    display: block;
}

.nav{
    padding: 0px 20px 0px  20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 10px;
}

.nav h1{
    font-weight: 900;
}

.login{
   margin: 4px;
    display: flex;
    align-items: center;
}

 button{
    font-size: 15px;
    margin: 10px;
    padding: 14px 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: green;
    color: white;
    font-weight: 600;
    text-align: center;
}

.main {
    text-align: center;
    position: relative;
    top: 0px;
    line-height: 25px;
}
.main p{
    font-size: 30px;
    letter-spacing: -0.5px;
    color: rgb(111, 110, 110);
}

.main h1{
    font-size: 65px;
}



.main h1 span{
    color: green;
    
}
form button{
    margin: 0 auto;
}

#btn {
    font-size: 20px;
    padding: 20px 40px;
    margin-top: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.faq-box #resp{
    display: none;
}

@media (max-width:667px) {

    

    .nav{
      font-size: 20px;
    }
    
    .nav h1{
        font-weight: 800;
    }
    .main p{
        display: none;
    }
    .main h1{
       top: 120px;
       line-height: 60px;
    }
    #btn{
        left: 20%;
    }
    .faq-box #resp{
        display: block;
    }
    .faq-box p{
        display: none;
    }
    .main h1{
       font-size: 50px;
    }
    .faq-box{
        margin-top: 0px;
        padding-top: 0px;
    }  
   
}

/* footer */

ul {
    margin: 0px;
    padding: 0px;
}
footer{
    position: fixed;
    bottom: 0px;
    width: 100%;
    margin-left: -8px;
    padding: 0;
  
}
.row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.copyright-area{
  background: #202020;
  padding: 10px 0;
 
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
  
}

.faq-box {
    background-color: #f4f4f4;
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    margin-top: 70px;
    max-width: 70%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.faq-box h2 {
    font-size: 24px;
    color: green;
}
.faq-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


@media (max-width:768px) {
    .footer-menu li a {
        font-size: 9px;
        color: #878787;
      }
      .copyright-text p {
        margin: 0;
        font-size: 11px;
        color: #878787;
      }
      .row{
      
        gap: 5px;
    }
}
