
        body {
            font-family: Arial, sans-serif;
            overflow-x: hidden;
            /* Prevent horizontal overflow */
        }

        .header img {
            max-height: 80px;
        }


        .carousel-item img {
            height: 477px;
            object-fit: cover;
        }

        .container .row .col-md-4 .bg-secondary {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            width: 100%;
        }

        .card {
            width: 180px;
            height: 250px;
            margin: auto;
        }

        .card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            margin: auto;
        }

        .card-title,
        .card-text {
            text-align: center;
        }

        .marquee-container {
            background-color: orange;
            padding: 1rem;
            display: flex;
            font-size: large;
            font-weight: 600;
            align-items: center;
            justify-content: center;
            height: 40px;
            color: white;
        }

        .container-fluid {
            overflow-x: hidden;
        }

        .row {
            margin-right: 0;
            /* Remove default right margin */
            margin-left: 0;
            /* Remove default left margin */
        }

        .col-md-1,
        .col-md-2,
        .col-md-4,
        .col-md-7 {
            padding-right: 0;
            /* Remove default right padding */
            padding-left: 0;
            /* Remove default left padding */
        }

        .slider_wrapper {
            width: 100%;
            overflow: hidden;
            margin: auto;
        }

        .social-marquee {
            background-color: lightblue;
            padding: 1rem;
            margin: 20px 0;
            height: 200px;
            overflow: hidden;
        }

        .social-marquee a {
            color: darkblue;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            display: block;
            text-align: center;
            padding: 10px;
        }

        .social-marquee a:hover {
            text-decoration: underline;
        }

        .social-header {
            background-color: darkblue;
            color: white;
            text-align: center;
            padding: 0.5rem 0;
            font-size: 1.2em;
            margin-bottom: 0.5rem;
        }

         .footer {
       position: relative;
       bottom: 0;
       width: 100%;
       background-color: #3b4566;
       color: white;
       padding: 15px 0;
       z-index: 100; /* Ensure it stays above other content */
       }
        .footer a {
            color: #e6e7ec;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer .footer-section {
            margin-bottom: 20px;
        }

        .footer .footer-section h5 {
            margin-bottom: 10px;
            color: #FF0000;
        }

        .footer .social-media a {
            color: white;
            font-size: 24px;
            margin-right: 15px;
        }

        .footer .social-media a:hover {
            color: #00ADEF;
        }

        .footer .last-updated,
        .footer .total-visitors {
            margin-bottom: 10px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .slider_wrapper {
            overflow: hidden;
        }

        .slider_active {
            display: flex;
            animation: scroll 20s linear infinite;
            padding-bottom: 20px;
            /* To prevent jumping when animation restarts */
        }

        .slider_active:hover {
            animation-play-state: paused;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
           background-color: white;
        }
        .header-logo {
            
        }
        .header-title {
            text-align: center;
        }.navbar-nav .nav-item .nav-link{
            color: white;
        }
    

