
    body {
          font-family: 'Poppins', sans-serif;
      }

    /* যদি লোগো বা মেনুতে কাস্টম স্টাইল দিতে চাও */
    .navbar-brand img {
        max-height: 90px;
    }
    .navbar{
        font-size: 14px;
        color:#fff;
        text-transform: uppercase;
    }
    /* Submenu item hover effect */
    .dropdown-menu .dropdown-item:hover {
        background-color: #495057; /* হালকা গা dark-gray কালার */
        color: #fff; /* লেখার কালার সাদা */
        font-size: 14px;
    }
    .dropdown-menu .dropdown-item {
    
        color: black; /* লেখার কালার সাদা */
        font-size: 14px;
    }

    /* About */

    .about-title {
        color: #253B80; /* Custom title color */
        font-weight: bold;
        font-size: 22px;
    }

    .about-description {
        font-weight: 400;
    }

    .about-hr {
        border: 2px solid #253B80; /* Bold hr */
        width: 100%;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .about-image {
        max-width: 100%;
        height: auto;
        max-height: 420px; /* Custom max height */
        object-fit: cover;
        border-radius: 10px;
    }

    .about-btn {
        background-color: #2980B9;
        border: none;
    }

    .about-btn:hover {
        background-color: #1A5276;
    }