
        body {
            margin: 0;
            padding-top: 70px;
            background-color: #f4f4f9;
            font-family: 'Soin Sans Pro';
            color: #333;
        }

        .header {
            background-color: #212529;
            color: #ffffff;
            padding: 10px 15px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            margin: 0;
            font-size: 2rem;
        }

        .header nav {
            display: flex;
            gap: 20px;
        }

        .navbar-nav {
            display: flex;
            gap: 15px;
        }

        .nav-link {
            color: #ffffff !important;
            padding: 5px 10px;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #ffce00 !important;
        }

        .bg-section {
            position: relative;
            width: 100%;
            height: 100vh;
         background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ffffff;
        }

        .text-container h1 {
            font-family: 'Rama Gothic';
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .underline {
            width: 300px;
            height: 4px;
            background-color: #ffffff;
            margin: 0 auto;
        }

        .aqilla {
            padding: 20px;
            margin-top: 20px;
        }

        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card img {
            height: 180px;
            width: 100%;
            object-fit: contain;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            transition: transform 0.3s ease;
        }

        .card:hover img {
            transform: scale(1.05);
        }

        .card-body {
            padding: 15px;
            text-align: center;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
        }

        .card-text {
            font-size: 0.9rem;
            color: #555;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .btn-info {
            background-color: #ffce00;
            border-color: #ffce00;
            color: #333;
        }

        .btn-info:hover {
            background-color: #e6b800;
            border-color: #e6b800;
        }

        .footer {
            background-color: #212529;
            color: #ffffff;
            text-align: center;
            font-size: 0.9rem;
            padding: 15px 0;
            width: 100%;
            margin-top: 20px;
        }

        .logo {
            width: 50px;
            height: auto;
        }

        @media (max-width: 576px) {
            .text-container h1 {
                font-size: 2rem;
            }

            .text-container p {
                font-size: 1rem;
            }
        }
  