* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(31,61,111,255);
}

.menu{
    display: none;
}

nav{
    position: fixed;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vw 8vw;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
}


nav img{
    width: 120px;
    cursor: pointer;
}

#menu-btn{
    margin-bottom: -15px;
    height: 40px;
    width: auto;
    display: none;
}

#menu-txt{
    height: 40px;
    width: auto;
    display: flex;
}

#menu-close{
    display: none;
}

nav .navigation{
    display: flex;
}

nav .navigation ul{
    display: flex;
    justify-content: flex-end;
    align-items: left;
    /*padding-top: 50px;*/
}

nav .navigation ul li{
    display: inline-block;
    position: relative;
    list-style: none;
    margin-left: 30px;
}

nav .navigation ul li a{
    display: block;
    text-decoration: none;
    color: #1f3d6f;
    text-align:left;
    font-size: 25px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navigation ul li ul.dropdown a {
    text-align: left;
}

nav .navigation ul li a:hover{
    color: #f29414;
}

nav .navigation ul li ul.dropdown li{
    display: block;
    
}

nav .navigation ul li ul.dropdown{
    width: 100%;
    position: absolute;
    background-color: #fff;
    z-index: 999;
    display: none;
}

nav .navigation ul li ul.dropdown a:hover{
    color: #f29414;
}

nav .navigation ul li:hover ul.dropdown{
    display: block; 
    width: 180%;
    margin-left: -25px;
}

#home{
    background-image: linear-gradient(rgba(9, 5, 54,0.3), rgba(5, 4, 46, 0.7)), url("./Images/img1.avif");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#home h2{
    color: #ffffff;
    font-size: 3rem;
    letter-spacing: 1px;
    text-shadow: 10px solid #1f3d6f;
}

#home p{
    width: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 25px;
}

#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
}

#home .btn{
    margin-top: 30px;
}

#home a.blue{
    color: #ffffff;
    background: #1f3d6f;
    transition: 0.5s;
}

#home a.blue:hover{
    color: #1f3d6f;
    background: #fff;
}

#services{
    padding: 5vw 8vw 0 8vw;
    text-align: center;
}

#services .ser-base{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#services .ser-box{
    background-color: #f9f9ff;
    text-align: start;
    padding: 50px;
}

#services .ser-box i{
    font-size: 2.3rem;
    color: #1f3d6f;
}

#services .ser-box h3{
    font-size: 1.7rem;
    font-weight: 600;
    color: #1f3d6f;
    padding: 13px 0 7px 0;
}

#services .ser-box p{
    font-size: 1.3rem;
    font-weight: 400;
    color: #1f3d6f;
    text-align: justify;
}

#team{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#team h1{
    
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.box{
    width: 250px;
    height: 250px;
    background-color: #e7eefa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    position: relative;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar{
    width: 50%;
    height: 4px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    background-color: #333;
    border-radius: 0 0 10px 10px;
}

.details{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.details strong{
    text-align: center;
}

.details img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.details p{
    font-size: 0.8rem;
    color: #7a7a7a;
    margin: 5px 0;
    text-align: center;
}

.bttn{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bttn a{
    height: 45px;
    width: 45px;
    border-radius: 10px;
    font-size: 25px;
    line-height: 45px;
    color: #333;
    margin-top: 25px;
}

.bttn a i{
    padding-left: 12px;
}


.box:hover{
    transform: scale(1.01);
    transition: all ease 0.1s;
}

.contact-col{
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
    margin-bottom: 30px;
    padding-left: 110px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #1f3d6f;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
    font-size: 18px;
    text-align: left;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col{
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
    margin-bottom: 30px;
    padding-left: 110px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #1f3d6f;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
    font-size: 18px;
    text-align: left;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

#contact{
    margin-top: 20px;
    margin-bottom: 20px;
}

#contact h1{
    text-align: center;
    font-size: 70px;
}


/*--------SATI--------*/

#sati{
    /*background: linear-gradient(rgba(6, 0, 39, 0.7), rgba(6, 0, 39, 0.7)),
    url(./Images/Sati.jpeg);*/
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

#sati h1{
    padding-top: 140px;
    text-align: center;
    font-size: 50px;
    padding-right: 30px;
    /*color: #fff;*/
}

#sati img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 950px;
    border-radius: 25px;
    /*box-shadow: 4px 4px 50px #000000;*/
}

#sati h3{
    font-size: 35px;
    text-align: justify;
    padding-left: 10%;
    /*color: #fff;*/
}

#sati p{
    font-size: 23px;
    text-align: justify;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5px;
    /*color: #fff;*/
}

#about_sati{
    padding-top: 100px;
}

#about_sati h4{
    font-size: 35px;
    padding-left: 10%;
}

#about_sati p{
    font-size: 23px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: justify;
    padding-top: 5px;
}

#wwtf{
    padding-top: 20px;
}

#wwtf h4{
    font-size: 35px;
    padding-left: 10%;
}

#wwtf p{
    font-size: 23px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: justify;
    padding-top: 5px;
}

.movie {
    width: 28%;
    background: #e7eefa;
    box-shadow: 0 0 18px 1px #333;
    border-radius: 15px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

#references{
    justify-content: space-between;
    padding: 0 10% 0 10%;
    display: flex;
}


#references h1{
    text-align: center;
    padding: 50px 0 50px 0;
    color: #000;
}

.movie img{
    width: 280px;
    align-content: center;
    border-radius: 10px;
}

#director p{
    font-size: 23px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: right;
    margin-top: -25px;
}

footer{
    background-color: #333;
    padding-top: 20px;
    padding-bottom: 20px;
}

#thanks p{
    color: #fff;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 18px;
    text-align: center;
}


@media (max-width: 800px) {
    nav{
        padding: 15px 20px;
        width: 100%;
    }
    nav img{
        width: 100px;
    }
    .menu{
        display: block;
    }
    nav .navigation ul{
        position: absolute;
        top: 0;
        width: 220px;
        right: -220px;
        height: 100vh;
        background: rgba(17, 20, 104, 0.45);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    nav .navigation ul.active{
        right: 0;
    }
    nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }
    nav .navigation ul li a{
        color: #fff;
    }
    #menu-btn{
        display: initial;
    }
    #menu-close{
        display: initial;
        font-size: 1.6rem;
        color: #fff;
        padding: 30px 0 20px 20px;
    }
    #home h2{
        font-size: 27px;
    }
    #home p{
        width: 90%;
        font-size: 20px;
    }
    #services .ser-box h3{
        font-size: 1.5rem;
    }
    #services .ser-box p{
        font-size: 1.1rem;
    }
    
    nav .navigation ul li ul.dropdown{
        width: 20%;
        position: static;
        height: 0%;
        background: rgba(17, 20, 104, 0.45);
    }

    .box{
        flex-grow: 0.7;
        width: 200px;
    }


    .contact-col{
        display: flex;
    }
    
    .contact-col div{
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .contact-col div .fa{
        font-size: 28px;
        color: #1f3d6f;
        margin: 10px;
        margin-right: 0px;
    }
    
    .contact-col div p{
        padding: 0;
        font-size: 18px;
        text-align: left;
    }
    
    .contact-col div h5{
        font-size: 20px;
        margin-bottom: 5px;
        color: #555;
        font-weight: 400;
    }
    
    .contact-col{
        display: flex;
        flex-direction: column;
        flex-basis: 48%;
        margin-bottom: 30px;
        padding-left: 10px;
    }
    
    .contact-col div{
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .contact-col div .fa{
        font-size: 23px;
        color: #1f3d6f;
        margin: 10px;
        margin-right: 10px;
    }
    
    .contact-col div p{
        padding: 0;
        font-size: 13px;
        text-align: left;
    }
    
    .contact-col div h5{
        font-size: 18px;
    }
    
    #contact{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    #contact h1{
        text-align: center;
        font-size: 40px;
    }


    /*-----SATI-----*/
    #sati img{
        width: 370px;
        border-radius: 25px;
    }
    
    #about_sati{
        margin-top: -200px;
        padding-top: 0px;
    }
    
    #about_sati h4{
        font-size: 23px;
        padding-left: 10%;
    }
    
    #about_sati p{
        font-size: 17px;
    }
    
    #wwtf{
        padding-top: 20px;
    }
    
    #wwtf h4{
        font-size: 23px;
        padding-left: 10%;
    }
    
    #wwtf p{
        font-size: 17px;
    }
    
    #director p{
        font-size: 17px;
    }
    
    footer{
        background-color: #333;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    #thanks p{
        color: #fff;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 13px;
        text-align: center;
    }
    #wwtf #dir_contact p{
        text-align: left;
    }
    .movie {
        flex-basis: 30%;
        background: #fff3f3;
        border-radius: 10px;
        margin-bottom: 5%;
        padding: 20px 12px;
        box-sizing: border-box;
    }

    .movie {
        width: 100%;
        background: #e7eefa;
        box-shadow: 0 0 18px 1px #333;
        border-radius: 15px;
        margin-bottom: 5%;
        padding: 20px 12px;
        box-sizing: border-box;
        margin-top: 10%;
    }
    
    #references{        
        display: grid;
    }
    
    
    #references h1{
        text-align: center;
        padding: 50px 0 50px 0;
        color: #000;
        font-size: 23px;
    }
    
    .movie img{
        width: 280px;
        align-content: center;
        border-radius: 10px;
    }
}