/* Modern Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a8ca1e 0%, #8fb01a 100%);
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-description {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #a8ca1e 0%, #8fb01a 100%);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cccccc;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.footer-links li a:hover {
    color: #a8ca1e;
    padding-left: 5px;
    text-decoration: none;
}

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

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: #a8ca1e;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact li span,
.footer-contact li a {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-contact li a:hover {
    color: #a8ca1e;
    text-decoration: none;
}

.footer-social {
    margin-top: 25px;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social .social-icons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons li a:hover {
    background-color: #a8ca1e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 202, 30, 0.4);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #999999;
    font-size: 14px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.copyright-text strong {
    color: #a8ca1e;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -12px;
    color: #666666;
}

.footer-bottom-links li a {
    color: #999999;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom-links li a:hover {
    color: #a8ca1e;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom-content .row>div {
        text-align: center !important;
    }
}

















