/* IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu&display=swap');

/* HEADER */

* {
    margin: 0;
}

body {
    /* background: url(); */
    background-color: burlywood;
}

header {
    background-color: #00b5ff;
    height: 75px;
}

#logo {
    width: auto;
    height: 75px;
}

#logo:hover {
    filter: drop-shadow(2px 4px 4px black);
}

#Eng {
    color: gold;
    font-family: 'Times New Roman', Times, serif;
    margin: -60px 88px;
    text-shadow: 3px 0px 0px black;
}

#Eng:hover {
    color: #00b5ff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    font-weight: normal;
}

#Ur {
    color: gold;
    margin: 5px 8px;
    font-family: 'Noto Nastaliq Urdu', serif;
    flex-direction: row-reverse;
    display: flex;
    font-size: 28px;
    text-shadow: -3px 2px 0px black;
}

#Ur:hover {
    color: #00b5ff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    font-weight: normal;
}

/* DROP DOWN MENU */

nav {
    margin: 12px 169px;
}

nav ul {
    /* background-color: #a901ff; */
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    float: left;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: green;
    border: 1px solid white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

nav li a {
    text-decoration: none;
    color: gold;
    display: block;
}

nav li a:hover {
    background-color: chocolate;
}

nav li ul li {
    display: none;
}

nav li:hover ul li {
    display: block;
}

/* SECTION 1 */

#sec-1 {
    background-color: whitesmoke;
    width: 990px;
    margin: 14% 12%;
    margin-bottom: 15px;
    padding: 1% 1%;
    border-radius: 20px;
}

.heading {
    font-family: 'Times New Roman', Times, serif;
    color: #05a394;
    font-size: 28px;
}

.para {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #00a1ff;
}

.list-para {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #a901ff;
    list-style: inside;
}

/* SECTION 2 */

#container {
    display: grid;
    grid-template-columns: 100px 100px 100px;
    grid-column-gap: 225px;
    margin: 0px 180px;
}

.Block {
    height: 150px;
    width: 300px;
    margin: 25px 25px;
    background-color: bisque;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.Block h3 {
    font-size: 24px;
    font-weight: normal;
}

.Block h5 {
    font-size: 18px;
    font-weight: normal;
}

#container div h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 32px;
    text-decoration: underline;
    color: green;
}

#container div li {
    list-style: none;
}

#container div li a {
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    color: black;
    font-size: 16px;
}

#container div li a:hover {
    color: brown;
}

/* FOOTER */

footer {
    background: linear-gradient(blue, blueviolet);
}

footer>span {
    color: whitesmoke;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100px;
    font-family: ui-monospace;
    font-weight: bold;
    font-size: xx-large;
}