/* Main Footer Styles */
.site-footer {
    background-color: #031b2f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.footer-column h4 {
    color: #f7941d;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f7941d;
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 80px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-logo {
    max-width: 180px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Quick Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f7941d;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f7941d;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info li i {
    color: #f7941d;
    font-size: 1rem;
    margin-top: 3px;
}

.contact-info li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #f7941d;
}

/* Full-width Footer Bottom */
.footer-bottom-full {
    width: 100%;
    background: linear-gradient(135deg, rgba(2, 14, 26, 0.9) 0%, rgba(3, 27, 47, 0.95) 100%);
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(247, 148, 29, 0.2);
}

.footer-bottom-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            #f7941d,
            #ffcc00,
            #f7941d,
            transparent);
    background-size: 200% 100%;
    animation: gradientFlow 4s linear infinite;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Copyright Text */
.copyright-text {
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.copyright-symbol {
    font-size: 1.1em;
    animation: bounce 2s infinite;
}

.copyright-year {
    color: #f7941d;
    font-weight: 600;
}

.copyright-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.powered-by {
    display: inline-flex;
    gap: 5px;
}

.powered-text {
    color: #f7941d;
    font-weight: 600;
}

.solutions-text {
    font-weight: 700;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    z-index: -1;
    animation: pulse 3s infinite;
}

/* Social Colors */
.fb {
    background: rgba(59, 89, 152, 0.3);
}

.in {
    background: rgba(0, 119, 181, 0.3);
}

.ig {
    background: rgba(228, 64, 95, 0.3);
}

.tw {
    background: rgba(29, 161, 242, 0.3);
}

.yt {
    background: rgba(255, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes gradientFlow {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .copyright-text {
        flex-direction: column;
        gap: 5px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}