.footerContainer {

    width: 100vw;
    background: linear-gradient(90deg, #16171D 0%, #5C5C5C 100%);
    color: white;
    z-index: 4;
    position: relative;
    padding-top: 3%;
}

.footerWrapper {
    height: auto; /* Adjusted to accommodate content height */
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footerLeft {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   
}

.footerleftTop {
    display: flex;
 
    align-items: center;
}

.footerLogoText {
    color: #FF7700;
}

.footerleftBottom p {
    margin-left: 52px;
    text-align: center;
    margin-top: -52px;
}

.footerRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
}

.footerRightTop {
    display: flex;
    align-items: center;
    justify-content: center; /* Center items horizontally */
    gap: 10px; /* Adjust spacing between image and text */
}

.EnterEmailText {

    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between image and text */
}

.EnterEmailDescription {
    
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Adjust the gap between heading and paragraph */
}

.EnterEmailDescription h4 {
    margin: 0;
    /* Remove default margin */
    font-size: 16px;
    /* Adjust font size as needed */
}

.EnterEmailDescription p {
    margin: 0;
    /* Remove default margin */
    font-size: 14px;
    /* Adjust font size as needed */
    line-height: 1.2;
    /* Adjust line-height for tighter spacing */
}

.EnterEmailInput {
    display: flex;
    align-items: center;
    gap: 3px;
}

.emailInputBox {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    gap: 10px;
    background-color: transparent;
    width: 277px;
    height: 52px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 6px;
    flex-grow: 1;
}

.footerRightCenter {
    display: flex;
    gap: 4px;
    align-items: center;
}

.footerRightBottom ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.footerRightBottom ul li {
    position: relative;
    padding-left: 40px;
    font-size: 12px;
}

.footerRightBottom ul li::before {
    content: url('../Assets/Footer/arrow.png');
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* New styles for the footerBottom */
.footerBottom {
    width: 100%;
    background: linear-gradient(90deg, #16171D 0%, #5C5C5C 100%);
    /* Optional: Adjust to match footer background */
    text-align: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerBottom p {
    margin: 0;
    color: #757575;
    font-size: 14px;
    /* Adjust as needed */
}

.socialIcons {
    width: 90%;
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: flex-end;
}

.socialIcons img {
    width: 40px; /* Adjust icon size */
}




.footerMatLogo{
    width: 241px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .footerWrapper {
        flex-direction: column;
        width: 90%;
    }

    .footerLeft,
    .footerRight {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .footerRightTop {
        flex-direction: column;
        align-items: center;
    }

    .EnterEmailInput {
        flex-direction: column;
    }

    .emailInputBox {
        width: 100%;
        margin-bottom: 10px;
    }

    .footerRightBottom ul {
        flex-direction: column;
    }

    .footerRightBottom ul li {
        padding-left: 0;
        text-align: center;
    }

    .footerRightBottom ul li::before {
        padding-right: 30%;
        margin-right: 40px;
        transform: translate(-50%, -50%);
    }
}


@media (max-width: 480px) {

    .footerleftBottom p{
        margin-left: 19px;
        text-align: justify;
    }
.footerMatLogo{
        margin-left: -37px;

}
}