 @font-face {
            font-family: 'Arabic';
            src: url('fonts/A\ Thuluth\ Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        :root {
            --primary-color: #003361;
            --secondary-color: #03b4e0;
            --accent-color: #00c853;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #636e72;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tiro Bangla', serif;
            overflow-x: hidden;
            background: var(--light-bg);
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 5%;
            transition: all 0.4s ease;
            z-index: 1000;
            background: rgba(0, 51, 97, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .logo img {
            width: 250px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        #menu-bar {
            display: none;
        }

        label[for="menu-bar"] {
            display: none;
            cursor: pointer;
        }

        label[for="menu-bar"] img {
            width: 35px;
            filter: brightness(0) invert(1);
        }

        .navbar ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .navbar ul li {
            position: relative;
        }

        .navbar ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 15px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .navbar ul li a:hover {
            background: rgba(3, 180, 224, 0.2);
            color: #d2ecf8;
        }

        /* Dropdown Menu */
        .navbar ul li ul {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(0, 51, 97, 0.98);
            backdrop-filter: blur(10px);
            min-width: 200px;
            padding: 10px 0;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            flex-direction: column;
        }

        .navbar ul li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .navbar ul li ul li {
            width: 100%;
        }

        .navbar ul li ul li a {
            padding: 12px 20px;
        }

        /* Nested Dropdown */
        .navbar ul li ul li ul {
            right: 100%;
            top: 0;
            margin-right: 10px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("..1/bsm-gate-closed.jpg") no-repeat fixed center/cover;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            margin-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(3, 180, 224, 0.1) 0%, transparent 70%);
            animation: heroGlow 3s ease-in-out infinite alternate;
        }

        @keyframes heroGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .hero .ar {
            color: rgb(0, 192, 0);
            margin-bottom: 20px;
            font-family: "Arabic", sans-serif;
            font-size: 2.5rem;
            text-shadow: 0 4px 15px rgba(0, 192, 0, 0.4);
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            color: #03b4e0;
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 0 4px 15px rgba(3, 180, 224, 0.5);
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content */
        .page-content {
            width: 90%;
            max-width: 1400px;
            margin: 60px auto;
            padding: 40px 0;
        }

        .cont-body {
            margin-bottom: 60px;
        }

        .wrapper {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .wrapper.active {
            opacity: 1;
            transform: translateY(0);
        }

        .wrapper:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(-10px);
        }

        .wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .wrapper:hover img {
            transform: scale(1.1);
        }

        .text-box-ar {
            padding: 45px;
            direction: rtl;
            font-family: "Amiri", serif;
        }

        .text-box-ar h3 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: flex-end;
        }

        .text-box-ar p {
            color: var(--text-dark);
            font-size: 1.2rem;
            line-height: 2;
            margin-bottom: 20px;
            text-align: justify;
        }

        .text-box-ar b {
            color: var(--primary-color);
            font-size: 1.3rem;
            display: block;
            margin: 20px 0 10px;
        }

        .text-box-ar ul {
            list-style: none;
            margin: 20px 0;
            padding-right: 20px;
        }

        .text-box-ar ul li {
            padding: 12px 0;
            padding-right: 30px;
            position: relative;
            color: var(--text-dark);
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .text-box-ar ul li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .ar-point {
            background: linear-gradient(135deg, #e3f2fd, #e1f5fe);
            border-right: 5px solid var(--secondary-color);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
        }

        .img-right {
            overflow: hidden;
        }

        /* Footer */
        footer {
            font-family: 'Rajdhani', sans-serif;
            display: flex;
            flex-wrap: wrap;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 60px 5%;
            margin-top: 80px;
        }

        .footer-col {
            width: 25%;
            padding: 0 15px;
        }

        .footer-col img {
            width: 300px;
            margin-bottom: 15px;
        }

        .footer-col p {
            color: #bdbdbd;
            line-height: 1.8;
        }

        .footer-col h4 {
            position: relative;
            margin-bottom: 30px;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--secondary-color);
        }
        .footer-col iframe{
             width: 100%;
             height: 100%;
        }

        .footer-col h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            height: 3px;
            width: 50px;
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li:not(:last-child) {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            display: block;
            font-size: 1rem;
            color: #bdbdbd;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: white;
            padding-left: 8px;
        }

        .links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 45px;
            width: 45px;
            color: white;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            margin: 0 8px 8px 0;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(3, 180, 224, 0.3);
        }

        .links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(3, 180, 224, 0.5);
        }

        .com {
            font-family: 'Rajdhani', sans-serif;
            color: #fff;
            background: #0a0e27;
            text-align: center;
            padding: 20px;
        }

        .com img {
            width: 9%;
            vertical-align: middle;
            margin-right: 8px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            header {
                padding: 15px 20px;
            }

            label[for="menu-bar"] {
                display: block;
            }

            .navbar {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 300px;
                height: calc(100vh - 80px);
                background: rgba(0, 51, 97, 0.98);
                backdrop-filter: blur(10px);
                transition: right 0.4s ease;
                overflow-y: auto;
                padding: 20px;
            }

            #menu-bar:checked ~ .navbar {
                right: 0;
            }

            .navbar ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .navbar ul li {
                width: 100%;
            }

            .navbar ul li a {
                width: 100%;
                padding: 15px 20px;
            }

            .navbar ul li ul {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                box-shadow: none;
                background: rgba(3, 180, 224, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .navbar ul li:hover > ul {
                max-height: 500px;
            }

            .navbar ul li ul li ul {
                right: auto;
                margin-right: 0;
                margin-right: 20px;
            }

            .hero {
                min-height: 50vh;
                margin-top: 80px;
            }

            .hero .ar {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .wrapper img {
                height: 300px;
            }

            .text-box-ar {
                padding: 30px;
            }

            .text-box-ar h3 {
                font-size: 1.6rem;
            }

            .text-box-ar p {
                font-size: 1.1rem;
            }

            .footer-col {
                width: 50%;
                margin-bottom: 30px;
            }
            .com img {
            width: 20%;
            vertical-align: middle;
            margin-right: 8px;
        }
        }

        @media (max-width: 600px) {
            .hero .ar {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 1.4rem;
            }

            .wrapper img {
                height: 250px;
            }

            .text-box-ar {
                padding: 25px;
            }

            .text-box-ar h3 {
                font-size: 1.4rem;
            }

            .text-box-ar p,
            .text-box-ar ul li {
                font-size: 1rem;
            }

            .footer-col {
                width: 100%;
            }
        }