section{
    width: 100%;
    height: auto;
}
.custom-footer {
    position: relative;
   
    background-color: #181818;
    color: #cccccc;
    padding: 40px 0;

   
    height: auto; /* Let content define the height */
}

.footer-bg-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 350px;
    font-weight: bold;
    color: transparent; /* Text color should be transparent */
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    line-height: 1;
    height: 35%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-clip: text; /* Clips the gradient to the text */
    -webkit-background-clip: text; /* Safari compatibility */
    animation: light-sweep 10s infinite; /* Add sweep animation */
    background-size: 200%; /* Extend the gradient for smooth sweeping */
    z-index: -393;
}

/* Keyframes for sweeping motion */
@keyframes light-sweep {
    0% {
        background-position: 200% 0; /* Start the gradient off to the right */
    }
    100% {
        background-position: -200% 0; /* Move the gradient across to the left */
    }
}


.footer-policy-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-policy-links li {
    display: inline;
}

.footer-policy-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: #FF007F;
}



.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 3; /* Above the background text */
}

.footer-left, .footer-center, .footer-right {
    position: relative; /* Ensure child elements are above the background */
    z-index: 4;
}

.footer-left {
    max-width: 33%;
}

.footer-logo {
    width: 520px;
    margin-bottom:0 30px 15px 0px;

    
}

.tagline {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Ensures content stays centered */
    flex-direction: column; /* Stacks elements vertically */
    align-items: center; /* Aligns elements in the center */
    text-align: center; /* Ensures text alignment remains centered */
    flex: 1; /* Allows flexibility for responsiveness */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.footer-links li {
    text-align: left;
  
}

.footer-links a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    z-index: 5;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-right .social-icons {
    display: flex;
    justify-content: center; /* Align icons in the center horizontally */
    gap: 20px; /* Add spacing between icons */
    margin-top: 10px;
}

.social-icon {
    font-size: 50px; /* Increase icon size */
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #FF007F;
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.legal-notices {
    font-size: 14px;
    color: #666666;
}

.subscribe-header {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.subscribe-description {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Input Field */
.input-wrapper {
    position: relative;
    width: 250px;
    margin: 10px auto;
}

.input-box {
    font-size: 16px;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    color: white;
    width: 100%;
    background-color: transparent;
    transition: border-color 0.3s ease-in-out;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF007F;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.input-box:focus {
    border-color: #FF007F;
    outline: none;
}

.input-box:focus + .underline {
    transform: scaleX(1);
}

/* Subscribe Button */
.subscribe-btn {
    background-color: #FF007F;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background-color: #cc0066;
}
.tagline-short {
    display: none; /* Hide full paragraph on small screens */
}

.tagline-full {
    display: block; /* Show short tagline on small screens */
    text-align: center;
    font-size: 14px;
    width: 100%;
}

@media (max-width: 1629px) {
    .custom-footer {
        padding: 40px 20px; /* Adjust padding for smaller screens */
        min-height: auto; /* Allow content to define height */
    }

    .footer-bg-text {
        font-size: 350px; /* Scale down for smaller screens */
        top: -40%;
        height: 40%;
    }

    .footer-logo {
        width: 300px; /* Ensure logo scales proportionally */
    }

    .tagline {
        font-size: 14px; /* Adjust text size */
    }

    .footer-links a {
        font-size: 12px; /* Adjust link font size */
    }

    .social-icon {
        font-size: 25px; /* Adjust icon size */
    }

}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .custom-footer {
        padding: 30px 15px; /* Reduce padding for smaller screens */
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        width: 250px; /* Adjusted for better visibility */
        display: block;
        margin: 0 auto; /* Ensures proper centering */
    }

    .footer-bg-text {
        font-size: 150px; /* Reduce size */
        top: -25%;
        left: 50%;
        height: 30%;
    }

    .tagline {
        max-width: 100%; /* Expands width to fit in 3 lines */
        margin: 0 auto; /* Centers the tagline */
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .social-icon {
        font-size: 30px; /* Adjust size */
    }
    .tagline-full {
        display: none; /* Hide full paragraph on small screens */
    }

    .tagline-short {
        display: block; /* Show short tagline on small screens */
        text-align: center;
        font-size: 14px;
        width: 100%;
    }
}
@media (max-width: 576px) {
    .footer-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        
    }

    .footer-bg-text{
        font-size: 90px; /* Reduce size */
        top: -8%;
        left: 50%;
        height: 30%;
    }
    
    /* ✅ Center the Logo */
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
        text-align: center;
        
    }

    .footer-logo {
        width: 200px; /* ✅ Adjust logo size */
        
        margin: 0 auto; 
        
    }

    /* ✅ Expand Tagline to Fit 3 Lines */
    .tagline {
        font-size: 14px;
        width: 100%; /* Ensures it stays within the container */
        max-width:1000px; /* Prevents excessive stretching */
        text-align: center;
        margin: 0 auto; /* Centers it horizontally */
        line-height: 1.5; /* Adjusts spacing for readability */
        display: block; /* Ensures proper layout */
    }
    

    /* ✅ Ensure Social Icons are Centered */
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px; /* ✅ Adds spacing */
        width: 100%;
    }

    .social-icon {
        font-size: 25px;
    }


    
}

