:root {
    --primary-color: #075388;
    --primary-dark: #053961;
    --text-color: #ffffff;
    --text-muted: #e0e0e0;
    --accent-color: #d2b48c;
    --hover-color: #d2b48c;
    --glow-color: rgba(210, 180, 140, 0.15);
}

/* Base styles */
#Footer {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", 
    "Noto Sans", "Liberation Sans", Arial, sans-serif;
    position: relative;
}

#Footer footer {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, #075388 0%, #042d4e 100%);
    color: var(--text-color);
    padding: 60px 0 30px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Background lighting effects */
/* #Footer footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at top right, var(--glow-color) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

#Footer footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at bottom left, var(--glow-color) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate ease-in-out;
} */

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Logo */
.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

/* Column spacing */
.footer-column {
    margin-bottom: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Headings */
.footer-links h4 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent-color);
}

.footer-links:hover h4::after {
    width: 60px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #d2b48c;
    transition: width 0.4s ease;
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.footer-links ul li:hover::before {
    color: #d2b48c;
    transform: scale(1.2);
}

.footer-links ul li a:hover {
    color: #d2b48c;
}

.footer-links ul li:hover a::after {
    width: 100%;
}

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

.social-icons a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icons a::after {
    display: none !important;
    content: none !important;
}

.social-icons i, .social-icons svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    fill: white;
}

/* Updated hover styles for social media icons */
.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: var(--hover-color);
    text-decoration: none;
}

/* Platform-specific hover colors */
.social-icons a[aria-label="Facebook"]:hover {
    background-color: #4267B2;
}

.social-icons a[aria-label="Twitter"]:hover {
    background-color: #000000;
}

.social-icons a[aria-label="Instagram"]:hover {
    background-color: #C13584;
}

.social-icons a[aria-label="LinkedIn"]:hover {
    background-color: #0077B5;
}

.social-icons a:hover i, .social-icons a:hover svg {
    transform: scale(1.2);
    color: white;
    fill: white;
}

/* Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.01), rgba(255,255,255,0.2), rgba(255,255,255,0.01));
    margin: 25px 0 30px;
    position: relative;
}

.footer-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--accent-color);
    filter: blur(1px);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { opacity: 0.3; width: 100px; }
    50% { opacity: 0.7; width: 150px; }
    100% { opacity: 0.3; width: 100px; }
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.footer-copyright p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.5s ease;
}

.footer-copyright:hover p::after {
    width: 70%;
}

/* Additional content */
.footer-about {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating particles effect */
.floating-particle {
    position: absolute;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(20px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-column {
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }
    
    .social-icons {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-links ul li {
        padding-left: 0;
    }
    
    .footer-links ul li::before {
        display: none;
    }
    
    .footer-about {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid var(--accent-color);
        padding-left: 0;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-column {
        padding: 0 10px;
    }
}