/* Designed and developed by Aditya Panigrahi */

/* Modern Footer Styles */

.footer-section {
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(240, 248, 255, 0.5) 30%,
        rgba(245, 250, 255, 0.4) 60%,
        rgba(235, 245, 255, 0.3) 85%,
        rgba(255, 255, 255, 0.2) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #333333;
    padding: 60px;
    border-radius: 20px 20px 0 0;
    margin-top: 10px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-section .container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: -20px;
    position: relative;
    z-index: 2;
    max-width: 100% !important;
    width: 100% !important;
}

/* .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 10%, transparent 100%);
} */

/* .footer-brand-section {
    margin-bottom: 40px;
} */

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand-description {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(63, 106, 217, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 106, 217, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(63, 106, 217, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(63, 106, 217, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-column-title {
    color: #333333;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-2));
    border-radius: 2px;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-2));
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-link:hover {
    color: var(--primary-blue);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555555;
    font-size: 15px;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: var(--primary-blue);
    font-size: 16px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #b8c5d1 50%, transparent 100%);
    /* margin: 40px 0 30px; */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}

.footer-policy-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-policy-link {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-policy-link:hover {
    color: var(--primary-blue);
}

.footer-policy-link:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px;
        margin-top: 40px;
        border-radius: 20px 20px 0 0;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-brand-description {
        max-width: 100%;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-policy-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px;
    }
    
    .footer-column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
}
