
    @media (max-width: 991px) { /* Adjust the breakpoint as needed */
        .logo-mgi {
            display: none;
        }
    }
    .additional-nav {
        display: flex;
        gap: 16px;
        align-items: center;
    }
    .search-bar {
        position: relative;
        max-width: 300px;
    }
    .search-input {
        width: 100%;
        padding: 10px 16px;
        border-radius: 30px;
        border: 1px solid #ddd;
    }
    .search-bar button {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        color: #ffffff;
        padding: 6px 10px;
        cursor: pointer;
    }
    .btn-main {
        background-color: #007bff;
        color: #ffffff;
        padding: 8px 16px;
        border: none;
        border-radius: 30px;
        display: flex;
        align-items: center;
    }
    .contact-list li {
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .contact-list li i {
        margin-right: 8px;
        font-size: 18px;
        color: #007bff; /* Icon color */
    }
    .contact-list a {
        text-decoration: none;
        color: #007bff;
    }
    .contact-list a:hover {
        text-decoration: underline;
    }
    .logo img {
        max-width: 215px !important;
    }
    .cus_top_Header{
        padding:10px 0px;
    }
    .csu_code{
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        padding:10px;
        background-color: #fff;
        font-weight: 600;
        color:#074366;
    }
    .first-container{
        bottom:17% !important;
    }
    @media screen and (max-width: 768px){
        .cus_top_Header{
            padding:10px 0px;
        }
        .logo img{
            max-width:90% !important;
        }
        .contact-list li {
            display: flex
            ;
            align-items: center;
            font-size: 10.5px !important;
        }
    }

    .marquee-container {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      position: relative;
      padding: 10px 0;
      background: #f8f9fa;
    }

    .marquee-content {
      display: inline-block;
      animation: marquee 25s linear infinite;
      font-size: 14px;
      color: #333;
    }
    
    .marquee-content a {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }

    @keyframes marquee {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .marquee-content {
                font-size: 14px;
                animation-duration: 25s;
            }
        }

        @media (max-width: 480px) {
            .marquee-content {
                font-size: 12px;
                animation-duration: 25s;
            }
        }

        .blog-two__item {
            height: auto; /* or min-height */
            min-height: 440px; /* fallback */
        }

        @media (max-width: 767px) {
            .blog-two__item {
                min-height: auto;
            }
        }