@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Font */
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
#nav-bar{
    padding: 10px 100px 10px 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-right>a>span{
    padding: 10px 20px 10px 20px;
    background-color: #794097;
    border-radius: 100px;
}
.nav-right>a{
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}
.nav-right>a>span:hover{
    background-color: #7f276a;
}
#book-an-call{
    width: 100%;
    padding: 30px 20vw 30px 20vw;
    display: flex;
    align-items: center;
    gap: 50px;
}
.b-left>img{
    height: 200px;
}
.b-right>h1{
    margin-bottom: 20px;
}
.b-right>p{
    color: #7A7A7A;
}
.sin-date{
    height: 100px;
    width: 150px;
    background-color: #794097;
    color: #fff;
    border-radius: 25px;
}
#calender{
    padding: 5vh 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
#calender>h1{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
#popup-form {
    display: none;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  /* Popup content box */
  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 500px;
    text-align: left;
  }

  /* Close button */
  .close-btn {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
  }
  
#time-slot{
    width: 250px;
    padding: 12px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}
#input-dates{
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
#input-dates>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
#input-dates input{
    width: 250px;
    padding: 12px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}
#input-dates>input[type="submit"]{
    width: 150px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #794097;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
#input-dates>input[type="submit"]:hover{
    background-color: #7f276a;
}
#dates{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.d-box{
    width: 175px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #794097;
    border-radius: 10px;
}
#contact-us{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
#contact-us>h1{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
#contact-form{
    padding: 30px;
    background-color: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 50px ;
}

.name>input{
    width: 250px;
    padding: 8px 5px;
    border-radius: 5px;
    margin-right: 10px;
}
#contact-form>input[type="submit"]{
    width: 150px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #794097;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
#contact-form>input[type="submit"]:hover{
    background-color: #7f276a;
}
#contact-form>input{
    width: 60%;
    padding: 8px 5px;
    border-radius: 5px;
}
#contact-form>textarea{
    width: 60%;
    padding: 8px 5px;
    border-radius: 5px;
}
#contact-left{
    width: 60%;
}
#contact-right{
    width: 40%;
}
#contact-right>img{
    width: 100%;
    height: auto;
}
#community{
    display: flex;
    flex-direction: row;    
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    margin: 60px 0;
}
.com-left>video{
    width: 20vw;
    height:49vh;
    aspect-ratio: 9/16;
}
.com-right{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.com-right>a>span{
    padding: 10px 20px 10px 20px;
    background-color: #794097;
    border-radius: 100px;
}
.com-right>a{
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}
.com-right>a>span:hover{
    background-color: #7f276a;
}
footer{
    height: 27vh;
    background-color: #f2f2f2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.socials{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.socials>div>a>img{
    width: 25px;
}
.links{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.links>a{
    color: #7A7A7A;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
@media only screen and (max-width: 600px){
    #nav-bar{
        padding: 10px;
    }
    #book-an-call{
        padding: 30px 10px;
    }
    #input-dates{
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .b-left>img{
        height: 150px;
    }
    #contact-us{
        flex-direction: column;
    }
    #contact-form{
        margin: 10px 10px;
    }
    #contact-left{
width: 100%;
    }
    .name>input{
        margin-bottom: 7px;
    }
    #contact-form>input{
        width: 250px;
    }
    #contact-form>textarea{
        width: 250px;
    }
    #contact-right{
        width: 100%;
    }
    #community{
        flex-direction: column;
        align-items: center;
        margin: 25px 0;
    }
    .com-left>video{
        width: 95%;
        margin: 10px;
    }
    footer{
        flex-direction: column;
        align-items: center;
        height: 52vh;
    }
}