.footer-main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Sohne, sans-serif !important;
    margin-top: 4%;
    position: relative;
}

.footer-main-container::after {
    content: '';
    position: absolute;
    left: 30.2%;    
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(229, 229, 229, 0),      
        rgba(229, 229, 229, 0.2),    
        rgba(229, 229, 229, 0.8),    
        rgba(229, 229, 229, 1),      
        rgba(229, 229, 229, 0.8),    
        rgba(229, 229, 229, 0.2),    
        rgba(229, 229, 229, 0)       
    );
}

.footer-side-section {
    flex: 1 1 30%; 
    max-width: 300px;
    position: relative;
    margin-right: 4%;
    margin-left: -2%;
}


.footer-side-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1rem; 
    height: 100%;
    width: 2px;
    background: linear-gradient(
        0deg,
        hsla(0, 0%, 100%, 0),
        hsla(0, 0%, 100%, 0.2) 52.08%,
        hsla(0, 0%, 100%, 0)
    );
    z-index: 1; 
}

.footer-img {
    max-width: 170px;
    height: auto;
    margin-left: 15%;
}

.footer-tagline {
    text-align: center;
    font-family: Sohne, sans-serif !important;
    line-height: 20px;
    font-size: 16px;
    color: #0B1029;
    margin: 2rem 0;
    position: relative;
    opacity: 0.7;
    padding-right: 5%;
    padding-left: 6%;
}

.footer-tagline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%; 
    margin-top: 3rem; 
    height: 2px; 
    background: linear-gradient(
        to right,
        rgba(229, 229, 229, 0),      
        rgba(229, 229, 229, 0.2),
        rgba(229, 229, 229, 0.8),    
        rgba(229, 229, 229, 1),      
        rgba(229, 229, 229, 0.8),    
        rgba(229, 229, 229, 0.2),    
        rgba(229, 229, 229, 0)       
    );
}
.footer-grid {
    flex: 1 1 65%; 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 5rem;
    margin-left: 2%;
}

.footer-column ul {
    font-family: Sohne, sans-serif !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-secondry-container{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
    padding-left: 11%;
    padding-right: 13%;
    margin-top: -1.5%;
}
.footer-text-section{
    display: flex;
    flex-direction: column;
    color:#0B1029;
    font-family: Sohne, sans-serif !important;
    font-size: 12px;
    font-weight: 600;
}
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-heading{
    font-family: Sohne, sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #0B1029;
    margin-bottom: 0.7rem; 
    border-bottom: 1px solid #dadada;
    padding-bottom: 0.7rem;
}
.footer-ul{
    font-family: Sohne, sans-serif !important;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-primary-link{
    font-family: Sohne, sans-serif !important;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-primary-link:hover {
    color: #0B1029;
}
.footer-secondry-link{
    color: #0B102980;
    font-size: 14px;
    font-family: Sohne, sans-serif !important;
    opacity: 0.7;
    font-weight: 600; 
    text-decoration: none; 
}
.footer-secondry-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-main-container {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr; 
    }
    
    .footer-side-section {
        margin-bottom: 2rem;
    }

}