/* Footer Styles */
footer.new_footer {
    background: linear-gradient(135deg, #030217 0%, #001934 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}



footer.new_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00a8ff, transparent);
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: hsl(0, 0%, 100%);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #023752;
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00a8ff;
}

.footer-col ul li a:hover {
    color: #85baff;
    padding-left: 15px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 20px;
    border-left: 3px solid #023752;
    padding-left: 15px;
    margin-top: 10px;
}

/* Footer Contact Section */
.footer_contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid #2d3748;
    align-items: start;
}

.site_footer {
    text-align: left;
}

.site_footer img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.site_footer img:hover {
    transform: scale(1.1);
}

.site_footer h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.site_title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.site_title p {
    color: #cbd5e0;
    margin: 0;
    font-size: 14px;
}

.site_title span {
    background: #0b2849;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.site_title span:hover {
    background: #0095e0;
    transform: translateY(-2px);
}

.social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social a:hover {
    background: #001D3D;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 41, 61, 0.3);
}

/* Address Styles */
.address {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    transition: all 0.3s ease;
}

.address:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 168, 255, 0.3);
}

.address img {
    width: 30px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

.address p {
    color: #cbd5e0;
    margin: 0;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
}

/* Contact Info Styles */
.contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact div {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact div:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 168, 255, 0.3);
}

.contact p {
    color: #5888a0;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #00a8ff;
}

/* Footer Bottom */
.footer_bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #3c3b4769;
}

.copyright span{
    color: #999;
    font-size: 12px;
}

.copyright ul{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}

.copyright ul li a{
    color: #999;
    text-transform: uppercase;
}

.copyright ul li a:hover{
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer.new_footer {
        padding: 40px 0 20px;
    }
    
    .footer_grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer_contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .site_footer {
        text-align: center;
    }
    
    .site_title {
        justify-content: center;
    }
    
    .social {
        justify-content: center;
    }
    
    .address {
        padding: 15px;
    }
    
    .contact div {
        padding: 15px;
        text-align: center;
    }

    .copyright{
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .copyright ul{
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-col h3 {
        font-size: 16px;
    }
    
    .footer-col ul li a {
        font-size: 14px;
    }
    
    .site_footer h3 {
        font-size: 20px;
    }
    
    .contact a {
        font-size: 14px;
    }
}

/* Animation for scroll reveal */
.footer-col,
.site_footer,
.address,
.contact div {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }
.footer-col:nth-child(5) { animation-delay: 0.5s; }
.site_footer { animation-delay: 0.6s; }
.address:nth-child(2) { animation-delay: 0.7s; }
.address:nth-child(3) { animation-delay: 0.8s; }
.contact { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for entire footer columns */
.footer-col {
    transition: transform 0.3s ease;
}

.footer-col:hover {
    transform: translateY(-5px);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.copyright p{
    color: #fff;
}