.partner-img{
    width: 100%!important;
}
.partnership-btn a img{
    max-height: 60px;
}
.partnership-btn a:hover img{
    filter: drop-shadow(0px 0px 2px #fffb00);
}
.partnership-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: url(../images/partnership/bg.jpg) center/cover no-repeat;
}

/* Header Styling */
.partnership-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 3%;
    position: relative;
}

.logo-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.partnership-logo {
    width: 100%;
    height: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 3%;
}

.close-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Brands Container */
.brands-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.brand-logo {
    margin-bottom: 15px;
    text-align: center;
    height: 140px;
    align-content: center;
}

.brand-image {
    max-width: 100%;
    height: auto;
}

.brand-button {
    width: 100%;
    text-align: center;
}

.btn-brand {
    background: #ff6d00;
    border-radius: 50px;

    color: #fff;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 30px;
    min-width: 150px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-brand:hover {
   filter: brightness(1.1);
   box-shadow: 0px 2px 8px 0px #000000;
   transform: translateY(-1px);
   color: #fff;
}
.partnership-container h1{
    color: #ff6d00;
    font-weight: 700;
    font-size: 33px;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .partnership-header {
        margin-bottom: 20px;
    }
    
    .logo-container {
        max-width: 400px;
    }
    
    .row.mt-5 {
        margin-top: 2rem !important;
    }
}

@media (max-width: 767px) {

    .partnership-container {
        padding: 15px;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .logo-container {
        max-width: 300px;
    }
    
    .close-icon {
        width: 30px;
        height: 30px;
    }
    
    .row.mt-5 {
        margin-top: 1rem !important;
    }
    

    
    .brand-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .partnership-container {
        padding: 10px;
    }
    
    .logo-container {
        max-width: 250px;
    }
    
    .partnership-header {
        margin-bottom: 15px;
        padding-top: 40px;
    }
    
    .brand-logo {
        margin-bottom: 10px;
    }
    
    .btn-brand {
        padding: 6px 20px;
        min-width: 120px;
        font-size: 14px;
    }
}