/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body */
.copyright-body {
    background: #828385;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Container */
.copyright-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    text-align: left;
}

/* Content Box */
.copyright-content {
    max-width: 900px;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Titles */
.copyright-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.copyright-subtitle {
    font-size: 24px;
    margin: 20px 0 10px;
}

.copyright-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.copyright-footer {
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

/* Animated Background */
.copyright-bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Common Shape */
.copyright-shape {
    position: absolute;
    display: block;
    animation: float 12s infinite linear;
    opacity: 0.7;
}

/* Circle */
.copyright-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Star */
.copyright-star {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 24px solid rgba(255, 255, 255, 0.4);
}

.copyright-star::after {
    content: '';
    position: absolute;
    top: 7px;
    left: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid rgba(255, 255, 255, 0.4);
}

/* Random positions and colors */
.copyright-shape:nth-child(1) { left: 10%; top: 80%; background: rgba(255,0,0,0.4); animation-duration: 14s; }
.copyright-shape:nth-child(2) { left: 30%; top: 90%; background: rgba(0,255,0,0.3); animation-duration: 18s; }
.copyright-shape:nth-child(3) { left: 50%; top: 85%; background: rgba(0,0,255,0.3); animation-duration: 16s; }
.copyright-shape:nth-child(4) { left: 70%; top: 95%; background: rgba(255,255,0,0.4); animation-duration: 19s; }
.copyright-shape:nth-child(5) { left: 85%; top: 80%; background: rgba(255,0,255,0.3); animation-duration: 17s; }

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50vh) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .copyright-content {
        padding: 20px;
    }
    .copyright-title {
        font-size: 28px;
    }
    .copyright-subtitle {
        font-size: 20px;
    }
    .copyright-text {
        font-size: 14px;
    }
}


footer {
    position: relative; /* ya sticky, ya fixed */
    z-index: 10; /* background se upar */
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* footer se pehle, par background ke upar */
    display: none; /* sirf menu active hone par show karna */
}