/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.page-banner {
    background-color: white;
    padding: 60px 30px;
    text-align: left; /* Align left by default */
}

.wrapper {
    width: 80%;
    width: 100%;
    /* margin: 0 auto; */ /* Center the wrapper */
    display: flex;
    justify-content: center; /* Align left initially */
    align-items: center;
}

.block {
    display: flex;
    flex-direction: column;
}

.logo-block {
    width: 100%;
    margin: 0 0 50px;
    text-align: center;
}

.logo-circle {
    width: 180px;
    height: 180px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-circle img {
    width: 80% !important;
    height: auto !important;
}

.logo-block h1 {
    color: black;
    margin-top: 20px;
    font-size: 35px;
    padding-left: 0px;
}

.image-block {
    width: 50%;
    align-items: center;
}

.image-block img {
    width: 400px;
    height: 165px;
    object-fit: cover;
    position: relative;
    line-height: 0px;
}

.image-wrapper.bnr img{
    height:auto !important;
}


/* Wrapper for images */
.image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.image-wrapper a {
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #dddddd9e;
    margin-bottom:25px;
    position: relative; /* Changed to relative for proper hover effect */
    box-shadow: 0 0 2px #DDD;
    line-height: 0px;
}

/* Hover background for images */
.image-wrapper a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(221 221 221 / 30%); /* Hover effect */
    opacity: 0; /* Start invisible */
    transition: opacity 0.3s ease; /* Smooth transition */
}

.image-wrapper a:hover::after {
    opacity: 1; /* Show on hover */
}

/* Icon styling */
.icon-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    background-color: #939191e6;
    border-radius: 50%;
    border: 1px solid #939191e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(320deg);
}

.icon-wrapper i {
    color: #fff;
    font-size: 12px;
}

.page-banner {
    height: 100%;
    display: flex;
    align-items: baseline;
    justify-content: left; /* Align center for larger screens */
}

@media screen and (min-width: 1700px) {
    .wrapper {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center; /* Align left initially */
        align-items: center;
    }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        width: 90%;
        justify-content: center; /* Center in smaller screens */
    }

    .page-banner {
        background-color: white;
        padding: 50px 10px;
        text-align: center; /* Align left by default */
        width: 100%;
        justify-content: center;
    }
    
    .logo-block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .image-block {
        width: 100%;
        align-items: center;
    }

    .image-block img {
        margin-bottom: 30px;
    }

    .logo-block h1 {
        margin-top: 30px;
        padding-left: 0px;
        padding-bottom: 30px;
    }
 
    .image-block img {
        width:100%;
    }

    .image-wrapper a{
        width:100%;
    }

    .image-block img {
        width: 100%;
        height: 120px;
        margin: 0px;
    }
        
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-block h1 { 
        font-size: 26px;
    }    

    .page-banner { 
        padding: 30px 10px; 
    }
    
    .icon-wrapper {
        top: 10px;
        right: 10px;
    }
    
    
}
