/*Heda na footer ila usifute, acha ujinga huu apa chukua*/


/* --------------- */
/* HEDA */
/* --------------- */

        :root {
            --primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
            --hover-color: #3498db;
            --text-primary: #2d3436;
            --animation-timing: 0.3s;
            /* Apple-style corner radius variables */
            --apple-radius-xs: 6px;
            --apple-radius-sm: 8px;
            --apple-radius: 12px;
            --apple-radius-md: 16px;
            --apple-radius-lg: 20px;
            --apple-radius-xl: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; */
        }

        body {
            font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 200vh;
            /* background: var(--primary-gradient); */
        }

        /* Header */
        .hedaheader {
            font-family: 'Ubuntu';
            background-color: rgba(255, 255, 255, 0.98);
            padding: 15px;
            position: fixed;
            width: calc(100% - 30px);
            top: 12px;
            left: 15px;
            right: 20px;
            z-index: 1000;
            border-radius: var(--apple-radius-xl);
            backdrop-filter: blur(10px);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px rgba(0.2, 0.2, 0.2, 0.4);
            font-family: 'Ubuntu', sans-serif;
        }

        .hedaheader.scrolled {
                top: 0;
                left: 0;
                right: 0;
                border-radius: 0;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                background-color: rgba(254, 250, 223, 0.5);
        }

        .hedaheader.scrolled-up {
            top: 10px;
            left: 10px;
            right: 15px;
            border-radius: var(--apple-radius-lg);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.544);
        }

        .hedanav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Brand - Responsive font weight and gradient visibility */
        .hedabrand {
            font-size: 24px;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #2d3436; /* Fallback for browsers without gradient support */
            background: linear-gradient(135deg, #333333 0%, #555555 30%, #777777 70%, #999999 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            /* Enhanced gradient support */
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
            display: inline-block;
            /* Force gradient rendering */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Additional gradient support */
            background-image: linear-gradient(135deg, #333333 0%, #555555 30%, #777777 70%, #999999 100%);
            background-size: 100%;
            background-repeat: repeat;
        }
        
        /* Bold on large screens */
        @media (min-width: 901px) {
            .hedabrand {
                font-weight: 700;
                background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 30%, #4a4a4a 70%, #6a6a6a 100%);
                background-image: linear-gradient(135deg, #2d3436 0%, #1a1a1a 30%, #4a4a4a 70%, #6a6a6a 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
                /* Enhanced gradient support */
                -webkit-box-decoration-break: clone;
                box-decoration-break: clone;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                background-size: 100%;
                background-repeat: repeat;
            }
        }
        
        /* Regular on small screens */
        @media (max-width: 900px) {
            .hedabrand {
                font-weight: 400;
                background: linear-gradient(135deg, #333333 0%, #555555 30%, #777777 70%, #999999 100%);
                background-image: linear-gradient(135deg, #333333 0%, #555555 30%, #777777 70%, #999999 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
                /* Enhanced gradient support */
                -webkit-box-decoration-break: clone;
                box-decoration-break: clone;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                background-size: 100%;
                background-repeat: repeat;
            }
        }


        .hedabrand:hover {
            /* Pale yellow gray gradient on hover */
            background: linear-gradient(135deg, #f5e469 0%, #f9ed90 25%, #fbf0b3 50%, #bfbab0 75%, #a8a4a0 100%);
            background-image: linear-gradient(135deg, #f4e46b 0%, #f4ecae 25%, #d4d0b8 50%, #bfbab0 75%, #a8a4a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            /* Enhanced gradient support */
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-size: 100%;
            background-repeat: repeat;
        }

        /* Navigation */
        .hedanavlist {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 32px;
        }

        /* Navigation Links */
        .hedanavlist > li > a {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            text-decoration: none;
            transition: opacity 0.2s ease;
            white-space: nowrap;
            border-radius: var(--apple-radius);
            padding: 8px 12px;
        }

        /* Navigation Links Hover */
        .hedanavlist > li > a:hover {
            opacity: 0.7;
            background: rgba(0, 0, 0, 0.04);
        }

        /* Dropdown */
        .hedahasdropdown {
            position: relative;
        }

        .hedahasdropdown > a {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .hedadropdownarrow {
            width: 6px;
            height: 6px;
            border-right: 1.2px solid var(--text-primary);
            border-bottom: 1.2px solid var(--text-primary);
            transform: rotate(45deg);
            transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
            margin-top: -2px;
        }

        .hedahasdropdown:hover .hedadropdownarrow {
            transform: rotate(225deg);
            margin-top: 2px;
        }

        /* Dropdown Menu */
        .hedadropdown {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-radius: var(--apple-radius-md);
            padding: 12px;
            min-width: 800px;
            max-width: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 12px;
        }

        .hedahasdropdown:hover .hedadropdown {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 8px);
        }

        /* Dropdown Preview Image */
        .hedadropdownpreview {
            width: 180px;
            height: 200px;
            border-radius: var(--apple-radius);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--pale-yellow);
        }
        
        .hedadropdownpreview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
        }

        .hedahasdropdown:hover .hedadropdownpreview {
            width: 180px;
            height: 200px;
            border-radius: var(--apple-radius);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--pale-yellow);
        }
        
        .hedadropdownpreview img {
            transform: scale(1.05);
        }

        /* Dropdown Preview Video */
        .hedadropdownpreview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--apple-radius);
            transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
            pointer-events: none;
        }
        
        .hedahasdropdown:hover .hedadropdownpreview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
        }

        .hedahasdropdown:hover .hedadropdownpreview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--apple-radius);
            transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
            pointer-events: none;
        }
        
        .hedahasdropdown:hover .hedadropdownpreview video {
            transform: scale(1.02);
        }

        .hedadropdownitems {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .hedadropdown li {
            list-style: none;
        }

        .hedadropdown a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: var(--apple-radius);
            text-decoration: none;
            transition: background 0.2s ease;
            min-height: 48px;
        }

        .hedadropdown a:hover {
            background: #fff3bf; /* Pale yellow hover background */
        }

        .hedadropdownicon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: var(--apple-radius);
            background: rgba(0, 0, 0, 0.04);
        }

        .hedadropdownicon svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-primary);
            fill: none;
            stroke-width: 1.5;
        }

        .hedadropdowncontent {
            flex: 1;
        }

        .hedadropdowntitle {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .hedadropdowndesc {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: -0.01em;
            margin-top: 2px;
        }

        /* Donate Button */
        .hedadonatebtn {
            background-color: #fff3bf;
            color: #1f2937;
            border: none;
            padding: 10px 20px;
            border-radius: var(--apple-radius-md);
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
            text-align: center;
            display: inline-block;
            text-decoration: none;
                }

        .hedadonatebtn:hover {
                transform: translateY(-2px);
                transform: scale(1.1);
                box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
        }

        /* Hamburger */
        .hedahamburger {
            display: none;
            width: 24px;
            height: 24px;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            border-radius: var(--apple-radius);
        }

        .hedahamburger span {
            width: 100%;
            height: 1.5px;
            background: var(--text-primary);
            transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
            border-radius: var(--apple-radius-xs);
        }

        .hedahamburger.hedaactive span:first-child {
            transform: translateY(6.5px) rotate(45deg);
        }

        .hedahamburger.hedaactive span:nth-child(2) {
            opacity: 0;
        }

        .hedahamburger.hedaactive span:last-child {
            transform: translateY(-6.5px) rotate(-45deg);
        }

        /* Overlay */
        .hedaoverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hedaoverlay.hedaactive {
            display: block;
            opacity: 1;
        }

        /* Mobile Styles */
        @media (max-width: 900px) {
            .hedaheader {
                background: rgba(255, 255, 255, 0.92);
            }

            .hedahamburger {
                display: flex;
            }

            .hedanavlist {
                position: fixed;
                top: 44px;
                right: -100%;
                width: 100%;
                max-width: 380px;
                height: calc(100vh - 44px);
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: saturate(180%) blur(20px);
                -webkit-backdrop-filter: saturate(180%) blur(20px);
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 24px 20px;
                transition: right 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
                overflow-y: auto;
                box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
                border-radius: var(--apple-radius-lg) 0 0 0;
            }

            .hedanavlist.hedaactive {
                right: 0;
            }

            .hedanavlist > li {
                opacity: 0;
                transform: translateX(20px);
                border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
                width: 100%;
                text-align: left;
            }

            .hedanavlist > li:last-child {
                border-bottom: none;
                margin-top: 16px;
            }

            .hedanavlist.hedaactive > li {
                opacity: 1;
                transform: translateX(0);
                transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
            }

            .hedanavlist.hedaactive > li:nth-child(1) { transition-delay: 0.05s; }
            .hedanavlist.hedaactive > li:nth-child(2) { transition-delay: 0.1s; }
            .hedanavlist.hedaactive > li:nth-child(3) { transition-delay: 0.15s; }
            .hedanavlist.hedaactive > li:nth-child(4) { transition-delay: 0.2s; }
            .hedanavlist.hedaactive > li:nth-child(5) { transition-delay: 0.25s; }
            .hedanavlist.hedaactive > li:nth-child(6) { transition-delay: 0.3s; }
            .hedanavlist.hedaactive > li:nth-child(7) { transition-delay: 0.35s; }

            .hedanavlist > li > a {
                font-size: 19px;
                font-weight: 500;
                padding: 16px 0;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                border-radius: var(--apple-radius);
                width: 100%;
            }

            .hedanavlist > li > a:hover {
                background: transparent;
                opacity: 0.7;
            }

            .hedadropdownarrow {
                margin-left: auto;
                margin-right: 4px;
            }

            .hedahasdropdown > a {
                justify-content: space-between;
            }

            .hedadropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                background: rgba(0, 0, 0, 0.02);
                margin: 8px 0 16px 0;
                padding: 12px;
                display: none;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
                /* Fix positioning in mobile */
                left: 0;
                right: 0;
                width: 100%;
                min-width: unset;
                border-radius: var(--apple-radius);
            }

            .hedadropdownpreview {
                display: none;
            }

            .hedadropdownitems {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .hedahasdropdown.hedaactive .hedadropdown {
                display: flex;
                max-height: 500px;
            }

            .hedahasdropdown.hedaactive .hedadropdownarrow {
                transform: rotate(225deg);
                margin-top: 2px;
            }

            .hedadropdown a {
                padding: 12px 8px;
                margin: 4px 0;
                border-radius: var(--apple-radius);
            }

            .hedadropdownicon {
                width: 36px;
                height: 36px;
            }

            .hedadropdownicon svg {
                width: 22px;
                height: 22px;
            }

            .hedadropdowntitle {
                font-size: 17px;
            }

            .hedadropdowndesc {
                font-size: 14px;
            }

            .hedadonatebtn {
                background-color: #fff3bf;
                color: #1f2937;
                border: none;
                padding: 10px 20px;
                border-radius: var(--apple-radius-md);
                font-weight: bold;
                font-size: 14px;
                cursor: pointer;
                transition: transform 0.3s, box-shadow 0.3s;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
                text-align: center;
                display: inline-block;
                text-decoration: none;
                width: 100%;
                justify-content: center;
                align-items: center;
            }
            
            .hedadonatebtn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
            }
        }

        @media (max-width: 1100px) and (min-width: 901px) {
            .hedanavlist {
                gap: 24px;
            }
        }

        @media (max-width: 1024px) and (min-width: 901px) {
            .hedanavlist {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .hedanavlist {
                padding: 20px 16px;
            }
        }







/* -------------- */
/* FOOOTER */
/* --------------- */



:root {
    --primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
    --hover-color: #3498db;
    --text-primary: #2d3436;
    --animation-timing: 0.3s;
}

footer {
    background: var(--primary-gradient);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    font-family: Ubuntu;

}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--animation-timing) cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hover-color);
    transition: width var(--animation-timing) ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

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

.footer-section li {
    margin: 1rem 0;
    transition: all var(--animation-timing) ease;
    position: relative;
}

.footer-section a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--animation-timing) ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transform: translateX(-10px);
    transition: all var(--animation-timing) ease;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-color);
}

.footer-section a:hover {
    color: var(--hover-color);
    transform: translateX(10px);
}


/*❌❌❌❌❌BEWARE OF SOSHOO❌❌❌❌*/


/* Responsive Base Styles */
.pu-social-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pu-social-container {
    --pu-animation-timing: 0.3s;
    --pu-fb-color: #3b5998;
    --pu-twitter-color: #1da1f2;
    --pu-linkedin-color: #0077b5;
    --pu-discord-color: #7289da;
    --pu-whatsapp-color: #25D366;
    --pu-email-color: #864842;
    --pu-youtube-color: #ea4335;
    --pu-background: #ffffff;
    --pu-text-color: #2e2e2e;

    /* Responsive Variables */
    --pu-icon-size-desktop: 50px;
    --pu-icon-size-tablet: 40px;
    --pu-icon-size-mobile: 35px;
    --pu-icon-font-size-desktop: 1.5rem;
    --pu-icon-font-size-mobile: 1.2rem;
}

.pu-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 1rem;
}

.pu-social-links a {
    width: var(--pu-icon-size-desktop);
    height: var(--pu-icon-size-desktop);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pu-background);
    color: var(--pu-text-color);
    font-size: var(--pu-icon-font-size-desktop);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--pu-animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    text-decoration: none !important;
    border-bottom: none !important;
}

.pu-social-links a::after {
    content: attr(data-profile);
    position: absolute;
    bottom: -35px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--pu-animation-timing) ease;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    /* background: rgba(0,0,0,0.7); */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
}

/* Hover Effects */
.pu-social-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
    animation: pu-shimmer 2s infinite;
}

@keyframes pu-shimmer {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }

    100% {
        filter: brightness(1);
    }
}

.pu-social-links a:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pu-social-links a i {
    transition: transform var(--pu-animation-timing) ease;
    position: relative;
    z-index: 1;
}

.pu-social-links a:hover i {
    transform: scale(1.2);
}

.pu-social-links.pu-has-hovered a:not(:hover) {
    opacity: 0.5;
    transform: scale(0.95);
    color: #837d4a;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .pu-social-links {
        gap: 0.75rem;
    }

    .pu-social-links a {
        width: var(--pu-icon-size-tablet);
        height: var(--pu-icon-size-tablet);
        font-size: 1.3rem;
    }

    .pu-social-links a::after {
        font-size: 0.7rem;
        bottom: -30px;
        padding: 2px 6px;
    }
}

@media screen and (max-width: 480px) {
    .pu-social-links {
        gap: 0.5rem;
    }

    .pu-social-links a {
        width: var(--pu-icon-size-mobile);
        height: var(--pu-icon-size-mobile);
        font-size: var(--pu-icon-font-size-mobile);
    }

    .pu-social-links a::after {
        font-size: 0.6rem;
        bottom: -25px;
        padding: 2px 5px;
    }

    /* On very small screens, adjust hover behavior */
    .pu-social-links a:hover {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Colored Icons */
.pu-social-links a:hover .fa-facebook,
.pu-social-links a:hover[data-profile*="facebook"]::after {
    color: var(--pu-fb-color);
}

.pu-social-links a:hover .fa-twitter,
.pu-social-links a:hover[data-profile*="twitter"]::after {
    color: var(--pu-twitter-color);
}

.pu-social-links a:hover .fa-instagram,
.pu-social-links a:hover[data-profile*="instagram"]::after {
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.pu-social-links a:hover .fa-linkedin,
.pu-social-links a:hover[data-profile*="linkedin"]::after {
    color: var(--pu-linkedin-color);
}

.pu-social-links a:hover .fa-discord,
.pu-social-links a:hover[data-profile*="discord"]::after {
    color: var(--pu-discord-color);
}

.pu-social-links a:hover .fa-whatsapp,
.pu-social-links a:hover[data-profile*="whatsapp"]::after {
    color: var(--pu-whatsapp-color);
}

.pu-social-links a:hover .fa-envelope,
.pu-social-links a:hover[data-profile*="gmail"]::after {
    color: var(--pu-email-color);
}

.pu-social-links a:hover .fa-youtube,
.pu-social-links a:hover[data-profile*="youtube"]::after {
    color: var(--pu-youtube-color);
}


.copyright {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    animation: pulse 15s infinite;
}






@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 300px;
        margin: 0.5rem;
        animation: slideIn var(--animation-timing) ease-out forwards;
        opacity: 0;
    }

    @keyframes slideIn {
        from {
            transform: translateY(30px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .footer-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .footer-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-section:nth-child(3) {
        animation-delay: 0.3s;
    }

    .footer-section:nth-child(4) {
        animation-delay: 0.4s;
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.footer-content:hover .footer-section:not(:hover) {
    filter: brightness(0.95);
    transform: scale(0.98);
}

.footer-section {
    scrollbar-width: thin;
    scrollbar-color: var(--hover-color) transparent;
}

.footer-section::-webkit-scrollbar {
    width: 6px;
}

.footer-section::-webkit-scrollbar-track {
    background: transparent;
}

.footer-section::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
    border-radius: 3px;
}


/* Mwisho wa heda na footer*/