@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Josefin+Sans:ital,wght@1,300&family=Jost:ital,wght@0,300;0,400;1,200&family=Poppins:wght@100;300;400;500;600&family=Roboto:wght@300;500;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-decoration: none;
    transition: all 1s;
}

html {
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;

}

:root {
    --main-color: rgb(30, 141, 141);
    --secondary-color: rgb(93, 250, 250);
    --heading-color: rgb(2, 67, 67);
    --text-color: rgb(38, 65, 65);
    --pera-color: rgb(84, 85, 85);
    --white: rgb(250, 251, 251);
    --shadow: rgb(234, 238, 238);
    --bg: rgb(172, 235, 235);
    --bg2:rgb(223, 252, 252);
}

/* css for header ---------------------------------- */
.header-container {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 9rem;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
}
.logo-cover{
    padding: 0.3rem;
    width: 20rem;
    /*height:9rem;*/
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
   width:100%;
   height: 90%;
}


.navbar ul {
    display: flex;
    gap: 2.5rem;
    width: 50rem;
    justify-content: center;
    z-index: 9999;

}

.navbar ul li {
    font-size: 1.8rem;
}

.navbar ul li a {
    color: var(--main-color);
}

.navbar ul li a:hover {
    color: brown;
}

.log {
    display: flex;
    gap: 2.5rem;
    width: 20rem;
    justify-content: center;

}

.log i {
    color: var(--main-color);
    font-size: 2rem;
}

.bar {
    display: none;
    text-align: center;
    font-size: 2rem;
    color: var(--main-color);
}

/* header css ends-------------------------------- */
.hero-container {
    /* position: absolute;
    top: 9rem; */
    position: relative;
    width: 100vw;
    /*height: calc(100vh - 90px);*/
    height: auto;
    background: url(images/bgs.jpg) rgba(99, 231, 218, 0.9);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: -1;
   
}

.text {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    letter-spacing: 0.2rem;
    
    padding: 10rem;
}
.text h1{
    font-size: 4rem;
    color: var(--white);
}
.text p{
    height:15rem;
    margin-top: 3rem;
    line-height:3rem;
    font-size: 1.8rem;
}


.btn {
    width: 10.2rem;
    height: 4rem;
    background-color: rgb(211, 243, 243);
    border: none;
    border-radius: 1rem;
    margin-top: 1rem;
}

/* css for about sectin --------------------- */
.about-container {
    /* position: absolute;
    top: 100vh; */
    width: 100vw;
    /*height: calc(100vh - 90px);*/
    height: auto;
    display: flex;
    flex-direction: column;
    background-color:var(--bg2);
}

.about-container .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 7rem;
    background-color: var(--bg2);
    color:var(--main-color);
}
.content{
    padding: 4rem;
    width: 100vw;
    /*height: calc(100vh - 160px);*/
    height: auto;
    display: flex;
    justify-content: space-around;
}
.content .about-img{
    width: 40%;
    height: 100%;
}
.content .about-img img{
    width: 100%;
    height: 90%;
}
.content .about-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    width: 40%;
    height: 100%;
    word-wrap: wrap;
    letter-spacing: .2rem;
}
.content .about-text h3{
    font-size: 2rem;
    color: var(--text-color);
}
.content .about-text p{
    font-size: 1.5rem;
    color: var(--pera-color);
    line-height: 2.5rem;
}
.content .about-text .btnn{
    width: 10.2rem;
    height: 3.5rem;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 1rem;
    border: none;
}
/* css for service section -------------------------- */
.service-container{
    /* position:absolute;
    top:200vh; */
    width: 100vw;
    /*height: calc(100vh - 160px);*/
    height: auto;
    background-color: var(--bg);
}
.service-container .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 7rem;
    background-color: var(--bg);
    color:var(--main-color);
}
.service-container .classes{
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.classes .classes-card{
    width: 300px;
    height: 400px;
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px var(--heading-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.classes-card img{
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.classes-card h2{
    color: var(--secondary-color);
    font-size: 1.7rem;
}

.classes-card p{
    color: var(--bg);
    font-size: 1.4rem;
    
}
.classes-card a{
    color: var(--heading-color);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    width: 110px;
    background-color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}
/* css for packages section --------------------------- */
.packages-container{
   
    width: 100vw;
    /*height: calc(100vh - 160px);*/
    height: auto;
    background-color: var(--bg);  
}
.contact-container{
   
    width: 100vw;
    /*height: calc(100vh - 160px);*/
    height: auto;
    background-color: var(--main-color);  
}
.contact-container  .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 7rem;
    background-color: var(--main-color);
    color:var(--bg);

}


.contact-container .contact-content{
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

}

.contact-container .contact-content .form{
    width: 40%;
    height: fit-content;   
}
.form form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--white);
    padding: 2rem;
    background:transparent;
    border-radius: 20px;
}
.form form input{
    background-color: transparent;
    outline: none;
    border: 0.3rem solid var(--heading-color);
    border-radius: 15px;
    padding: 1rem;
    color: var(--white);
}
.form form label{
    font-size: 1.5rem;
    color: var(--white);
}
.form form button{
    background-color: var(--bg);
    width: 40rem;
    margin-left: 100px;
    height: 35px;
    border-radius: 15px;
    color: var(--main-color);
    border: none;
}
.footer-container {
    width: 100vw;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: var(--white);
}
.footer-container .footer-content{
    width: 100vw;
    display:flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    height: max-content;
    word-wrap: wrap;
    letter-spacing:.2rem;
    padding: 1rem;
}
.address{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    height: max-content;
    word-wrap: wrap;
    letter-spacing:.2rem;
    padding: 1rem;
}
.quick-links, .top-products{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    height: max-content;
    word-wrap: wrap;
    letter-spacing:.2rem;
    padding: 1rem;
    font-size: 2rem;
    color: var(--white);
    gap: 2rem;
}
.quick-links a, .top-products a{
    color: var(--white);
}
.socialmedia{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    height: max-content;
    word-wrap: wrap;
    letter-spacing:.2rem;
    padding: 1rem;
    font-size: 2rem;
    
    gap: 2rem;
}
.socialmedia a{
    color: var(--white);
}
.copywrite{
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    width: 100vw;
    height: max-content;
    word-wrap: wrap;
    letter-spacing:.2rem;
    padding: 1rem; 
    background-color:black;

}
.icon{
    position: fixed;
    top: 30%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: max-content;
    letter-spacing:.2rem;
    background-color: transparent;
    z-index: 999;
}
.icon a {
    font-size: 5rem;
    color:green;
    text-align: center;
    border-radius: 20px;
    align-items: center;
    background-color: white;
}
.icon .ic1{
    width:50px;
    text-align:right; 
    background-color:green;
    height: max-content;
}
.icon .ic2{
    width:50px;
    text-align:right; 
    background-color:green;
    height: max-content;
}
.icon .ic3{
    width:50px;
    text-align:right; 
    background-color:green;
    height: max-content;
}
.icon .ic4{
    width:50px;
    text-align:right; 
    background-color:green;
    height: max-content;
}

/* media query ------------------------------------- */

@media screen and (max-width:500px) {
    html {
        font-size: 48%;
    }

    /* css for header ----------------------- */
    .header-container {
        position: static;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 9rem;
        right: 0;
        background-color: var(--main-color);
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        gap: 8rem;
        width: 100vw;
        height: 100vh;
        align-items: center;
    }

    .navbar ul li {
        font-size: 3rem;
    }

    .navbar ul li a {
        color: var(--text-color);
    }

    .bar {
        display: block;
    }

    /* css for hero section ----------------------------------- */
    .hero-container{
        width: 100%;
    }
    .content {
        display: flex
;
        flex-direction: column;
        justify-content: space-around;
    }
    .content .about-img{
        width:100%;
        height:100%;
    }
   .content .about-text {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
     width: 100%; 
    height: 100%;
    word-wrap: wrap;
    letter-spacing: .2rem;
}
.contact-container .contact-content .form {
    width: 80%;
    height: fit-content;
}

    .text {
        padding: 2rem;
        width: 100vw;
        height: 50rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5rem;

    }
    .ragistration-container {
    display: flex
;
    align-items: center;
    flex-direction: column;
    position: absolute;
    /* top: 10%; */
    width: 100vw;
    height: auto;
    background-color: rgb(167, 165, 165);
}
.form form {
    width: 80vw;
    display: flex
;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--white);
    padding: 2rem;
    border-radius: 20px;
    background-color: white;
}

    .control form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 95vw;
        height: 30rem;
        background-color: var(--main-color);
        opacity: 0.8;
        border-radius: 1rem;
    }

    .control form input {
        padding: 0.1rem;
        background-color: rgb(211, 243, 243);
        border: 0.2rem solid var(--secondary-color);
        border-radius: 1rem;
        color: rgb(200, 199, 199);
        outline: none;
    }

}