.header-wrapper {
    border-bottom: 1px solid #C7E3E3;

   background: linear-gradient(
        to right,
        #4472C4 0%,
        #527ac0 35%,
        #8e9aae 70%,
        #eef4f6 100%
    );

    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.05);

    padding: 0;    
}

.slogo-text-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.slogo img {
    max-height: 80px;
}

.slogo {
    margin-right: 30px; /* Adjust this to control logo-text gap */
    padding-left: 20px;
}

.slogo-text {
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    color: black;
}

.slogo-text strong {
    font-size: 1rem;
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.slogo-text span {
    font-size: 1.1rem;
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.right-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px; /* Controls space between emblem and Swachh logos */
}

.slogo1 img,
.swachh-slogo {
    max-height: 80px;
    padding-right: 20px;
}

/* Optional captions */
.emblem-caption,
.sw-caption {
    font-size: 0.75rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .slogo-text-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;                
    }

    .slogo {
        margin-right: 10;
        margin-bottom: 5px;
    }
                
    .slogo img,
    .slogo1 img,
    .swachh-slogo {
        max-height: 50px;
        padding-right: 5px;
    }

    .slogo-text strong,
    .slogo-text span {
        font-size: 0.9rem;
    }

    .emblem-caption,
    .sw-caption {
        font-size: 0.6rem;
    }

    /* ✅ Updated: make right-logos block and center them */
    .right-logos {
        display: flex !important;
        justify-content: center !important;
        align-items: cenrter;
        flex-wrap: wrap;
        width: 100%;
        padding-left: 60px;
        margin: 0;
        text-align: center;
        gap: 0px; /* 🔧 adjust gap between logos here */                
    }

    .right-logos > div {
        margin: 0 0px; /* 🔧 Adjust this value to increase/decrease gap */
    }
}

/* Optional class to control right spacing on desktop */
.me-custom {
margin-right: 15px;
}