.nav-pills .nav-link {
            border-radius: 10px;
            font-weight: 600;
            color: #555;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .nav-pills .nav-link.active {
            background-color: #003366;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .nav-pills .nav-link.active:hover {
            background-color: #003366;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .nav-pills .nav-link:hover {
            background-color: #e9ecef;
        }

        .about-section img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.4s ease;
            object-fit: cover;
        }

        .about-section img:hover {
            transform: scale(1.02);
        }

        .facility-list li {
            margin-bottom: 10px;
            font-size: 1rem;
            color: #333;
        }

        .facility-list i {
            color: #091e3e;
        }
