@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Tiro+Bangla&display=swap');

@font-face {
    font-family: 'Arabic';
    src: url('fonts/A\ Thuluth\ Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    font-family: 'Tiro Bangla', serif;

    margin: 0;
    padding: 0;
}

/* For webkit-based browsers */
/* Width and height for the scrollbar track */
::-webkit-scrollbar {
    width: 12px;
}

/* Color of the scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Color on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

header {
    
    top: 0;
    left: 0;
    right: 0;
    background: #003361;
    box-shadow: 0 5px 5px #1a478b;
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 20px;
    padding: 20px;
    color: #fff;
    display: block;
}

header .navbar ul li a:hover {
    background: #1a478b;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #003361;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within>ul,
header .navbar ul li:hover>ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: none;
}

#menu-bar:checked ~ .navbar {
    display: block;
}

@media (max-width: 991px) {
    header {
        padding: 9px;
    }

    header label {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #003361;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
        overflow-y: auto;
        max-height: 60vh;
        padding: 10px;
    }

    header .navbar ul {
        padding-left: 0;
        margin: 0;
    }

    header .navbar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header .navbar ul li a {
        display: block;
        padding: 10px 20px;
        color: #fff;
        text-decoration: none;
    }

    header .navbar ul li ul {
        position: static;
        display: none;
    }

    header .navbar ul li:hover > ul {
        display: block;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #426cd4;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    #menu-bar:checked~.navbar {
        display: initial;
    }
}



footer {
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #2d2e33;
    width: 100%;
    padding: 60px 10%;
    box-sizing: border-box;
    direction: ltr;
    /* Added */
}

iframe {
    height: 70%;
    width: 90%;
}

ul {
    list-style: none;
}

.footer-col {
    width: 25%;
}

.footer-col p {
    color: #fff;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #f1bc0dd8;
    text-transform: capitalize;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #03b4e0;
    height: 2px;
    width: 40px;
}

ul li:not(:last-child) {
    margin-bottom: 8px;
}

ul li a {
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover {
    color: white;
    padding-left: 2px;
}

.links a {
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover {
    color: #4d4f55;
    background-color: white;
}

.com {
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    background-color: #2d2e33;
    text-align: center;
    padding: 5px;
    width: 100%;

}

@media (max-width: 740px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before {
        all: unset;
    }
}

@media (max-width: 555px) {
    .footer-col {
        width: 100%;
    }
}