/* ===== FOOTER MODERN DESIGN ===== */
.footer-modern {
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    overflow: hidden;
}

/* Decorative Wave */
.footer-modern .footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
}

.footer-modern .footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer Container */
.footer-modern .footer-container {
    position: relative;
    z-index: 2;
}

/* Headings */
.footer-modern h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* About Section */
.footer-modern .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-modern .footer-contact i {
    margin-right: 10px;
}

/* Service Cards */
.footer-modern .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-modern .service-cards .card {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.footer-modern .service-cards .card:hover {
    background: rgba(255,255,255,0.3);
}

/* Newsletter Form */
.footer-modern .newsletter-form {
    display: flex;
    margin-top: 15px;
}

.footer-modern .newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    margin-right: 5px;
}

.footer-modern .newsletter-form button {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background-color: #111;
    color: #ff7a00;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.footer-modern .newsletter-form button:hover {
    background-color: #222;
    color: #fff;
}

/* Social Icons */
.footer-modern .footer-social a {
    display: inline-block;
    background: #fff;
    color: #ff7a00;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-modern .footer-social a:hover {
    background: #222;
    color: #ffd700;
}

/* Footer Bottom */
.footer-modern .footer-bottom {
    background: rgba(0,0,0,0.2);
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

.footer-modern .footer-bottom a {
    color: #fff;
    font-weight: bold;
}

.footer-modern .footer-bottom a:hover {
    color: #ffd700;
}
/* Footer Copyright */
.footer-copyright {
    background: #1A1A1A; /* Dark black background */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-copyright::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6A5B, #FF8E72, transparent);
    animation: slide 3s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-copyright p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Optional: Hover effect on strong text */
.footer-copyright strong:hover {
    color: #FF8E72;
    transition: color 0.3s ease;
}
