@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Tiro+Bangla&display=swap');

        * {
            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 {
            position: fixed;
            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;
        }

        @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;
            }

            header .navbar ul li {
                width: 100%;
            }

            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;
            }
        }

        #section-container {
            width: 80%;
            margin: auto;
            /* Adjusted padding for the fixed header */
        }
        #section-container h2{
            color: #003361;
        }

        #about-section::after {
            content: "";
            display: table;
            clear: both;
        }

        #img-container {
            box-sizing: border-box;
            width: 100%;
            float: none;
            text-align: center;
        }

        #img-container-right {
            box-sizing: border-box;
            width: 100%;
            float: none;
            text-align: center;
        }

        #text-container {
            box-sizing: border-box;
            width: 100%;
            float: none;
            padding: 10px 20px;
            text-align: left;
        }

        #text-container-right {
            box-sizing: border-box;
            width: 100%;
            float: none;
            padding: 10px 20px;
            text-align: left;
        }


        #text-container h2,
        #text-container-right h2 {
            margin-top: 0;
            text-align: center;
        }

        @media (min-width: 740px) {
            #img-container {
                width: 49%;
                float: left;
                text-align: left;
            }

            #text-container {
                font-size: 18px;
                width: 49%;
                float: left;
                text-align: left;
            }

            #img-container-right {

                width: 49%;
                float: right;
                text-align: right;

            }

            #text-container-right {
                font-size: 18px;
                width: 49%;
                float: right;
                text-align: left;
            }
        }

        table {
            font-size: 17px;
            background-color: #d2ecf8;
            border-collapse: collapse;
            width: 100%;

            margin: auto;
            color: #424242;

        }

        td,
        th {
            border: 2px solid #fff;
            padding: 8px;
            text-align: center;
        }

        th {
            background-color: #003361;
            color: #fff;
            font-size: 20px;
        }

        .table-cont {
            width: 100%;
            margin-top: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .table-cont h2{
            color: #003361;
        }
        .table-cont h4{
            color: #424242;
            font-family: 'Rajdhani', sans-serif;
        }
        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;
            /* 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%;
            }
        }