body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    width: 100%;
    height: auto;
    background-color: bisque;
    position: fixed;
    top: 0;
    z-index: 1;
}
header div{
    float: left;
    justify-content: space-between;
    align-items: center;
}
header .logo{
   margin-left: 200px;
   padding-right: 20px;
}
header .logo:hover{
    box-shadow: 5px 10px 30px rgba(130, 147, 255, 0.5);
    transition: all 0.5s ease-in 0.1s;
    outline: none;
    border-radius: 10%;
}
header .nav{
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 200px;
}
header .nav ul{
    list-style: none;
}
header .nav ul li{
    float: left;
    padding-right: 40px;
    padding-top: 10px;
}

header .nav ul li a{
    text-decoration: none;
    color: rgb(255, 44, 6);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}
header .nav ul li a:hover{
    color: #7f97ff;
}


.iconarea{
    position: fixed;
    top: 700px;
    left: 0;
    transform: translateY(-50%);
    background-color: #f9f9ff;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    padding: 5px 0px;
    z-index: 1;
    border-radius: 20%;
}
.iconarea :hover{
    background-color:#000000;
    transition: all .5s ease-in-out;
}

.iconarea a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #000000;
}
.iconarea a:hover{
    color: red;
    font-size: 20px;
    transition: all .3s ease-in-out;
}


.sec1 img{
    margin-top: 100px;
    max-width: 100%;
    height: auto;
}
.sec1 h1{
    color: #7f97ff;
}
.sec1 h1:hover{
    color: red;
    background-color: bisque;
}



/*Section 1 start */
.section1{
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
}
.yt{
    width: 50%;
    height: auto;
    background-color: #8393ff;
    text-align: center;
}
.fb{
    width: 50%;
    height: auto;
    background-color: bisque;
    text-align: center;
}

/*Section 1 end */



/*Section 2 start */
.section2{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: 10px;
}
.yt1{
    width: 50%;
    height: auto;
    background-color: #8393ff;
    text-align: center;
}
.yt1 iframe{
    width: 500px;
    height: 300px;
}
.yt1 img{
    width: 500px;
    height: 300px;
}

.fb1{
    width: 50%;
    height: auto;
    background-color: bisque;
    text-align: center;
}
.fb1 iframe{
    width: 500px;
    height: 300px;
}

/*Section 2 end */






/* Footer start */
footer{
    background-color: rgba(23, 25, 41, 0.8);
    width: 100%;
    height: auto;
    color: white;
    position: absolute;
    margin-top: 15%;
}
.foot{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 80px;
}
.f1 p{
    color: whitesmoke;
    opacity: 0.7;
}
.f1 input{
    font-size: 15px;
    outline: none;
    border: none;
    padding: 10px 150px 10px 10px ;

}
.f1 button{
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 10px ;
    color: white;
    background-color: #7f97ff;
    cursor: pointer;
}
.f1 a i{
    font-size: 25px;
    cursor: pointer;
    padding: 2px 5px;
    color: white;
}
.foot .f1 i:hover {
    color: #8393ff;
}
/* Footer end */




/* Responsive CSS for Mobile Devices */
/* Device view */ 
@media (min-width:1024px){
    .iconarea{
        display: flex;
        flex-direction: column;
        width: 30px;
        left: 1350px;
    }
}


/* Smaller tablets and large phones (landscape view) */
@media only screen and (max-width: 991px) {

    header {
        position: relative;
        height: auto;
    }

    header .logo {
        margin-left: 0;
        
    }
    header .nav {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 0;
    }

    header .nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
        justify-content: space-between;
        
    }

    header .nav ul li{
        font-weight: normal;
        float: left;
        padding: 2px ;
        list-style: none;
        border: 1px solid black;
    }
    header .nav ul li 

    





    footer {
        height: auto;
        margin-top: 20px;
        padding: 50px 0;
    }

    .foot {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }

    .f1 input {
        width: 80%;
        padding: 10px;
    }

    .f1 button {
        margin-top: 10px;
        margin-left: 150px;
    }

}



/* Mobile devices (portrait and smaller screens) */
@media only screen and (max-width: 600px) {

    body {
        font-size: 14px;
    }

    header .logo {
        margin-left: 10px;
    }

    header .nav ul li a {
        font-size: 15px;
        padding: 5px;
    }
    header .nav{
        position: relative;
    }
    header .nav ul li {
        padding: 5px;
        border: 2px solid #7f97ff;
    }
    header .nav ul li:hover{
        background-color: rgba(0, 0, 0, 0.2);
    }
    .sec1 img{
        margin-top: 10px;
    }
    .section2{
        display: flex;
        flex-direction: row;
        
    }
    .yt1{
        width: 50%;
        height: auto;
        background-color: #8393ff;
        text-align: center;
    }
    .yt1 iframe {
        width: 200px;
        height: 150px;
    }
    .yt1 img{
        width: 200px;
        height: 150px;
    }
    
    .fb1{
        width: 50%;
        height: auto;
        background-color: bisque;
        text-align: center;
    }
    .fb1 iframe{
        width: 200px;
        height: 150px;
    }
    




    footer {
        font-size: 14px;
    }

    .f1 a i {
        font-size: 20px;
    }
}
