:root {
    --yellow: #e6cf6f;
    --red: #b31921;
    --green: #8bc440;
    --black: #000;
    --white: #fff;
}

/* * footer section start */ 

.dark-theme-footer {
    background-color: #21252927;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #adb5bd;
    padding-top: 60px;
    position: relative;
}


.footer-widget-title {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid var(--rose); 
  display: inline-block;
}

.footer-about-us .footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-about-us .read-more-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-about-us .read-more-link:hover {
    text-decoration: underline;
}

.footer-social-icons {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social-icons li a {
    color: #adb5bd;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social-icons li a:hover {
    color: var(--green);
}

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

.footer-links-list-dark li {
    margin-bottom: 10px;
}

.footer-links-list-dark a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links-list-dark a:hover {
    color: var(--rose);
}

.footer-links-list-dark a i.fa-chevron-right {
    /* Icon before link text */
    font-size: 0.6em;
    margin-right: 8px;
    opacity: 0.7;
}


.contact-info-list-dark {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.contact-info-list-dark li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list-dark i {
    color: var(--white);
    /* Yellow icon color */
    margin-right: 10px;
    font-size: 1em;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.payment-icons-footer img {
    height: 22px;
    /* Adjust as needed */
    margin-right: 6px;
    margin-bottom: 6px;
    background-color: white;
    /* If icons are transparent and need white bg */
    border-radius: 3px;
    padding: 2px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Light border */
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer-bottom-bar .copyright-text-dark {
    color: #adb5bd;
}

.footer-bottom-bar .copyright-text-dark a {
    color: var(--rose);
    text-decoration: none;
}

.footer-bottom-bar .copyright-text-dark a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    /* Center on mobile stack */
}

.footer-bottom-links li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom-links li a:hover {
    color: var(--rose);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {

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

    .footer-widget-title {
        text-align: start;
    }

    .footer-about-us,
    .footer-links-list-dark,
    .contact-info-list-dark,
    .payment-icons-footer {
        text-align: start;
    }

    .footer-social-icons,
    .footer-links-list-dark a,
    .contact-info-list-dark li {
        justify-content: start;
    }

    .footer-links-list-dark a i.fa-chevron-right {
        display: none;
        /* Hide chevrons if centered */
    }

    .footer-bottom-bar .text-md-start,
    .footer-bottom-bar .text-md-end {
        text-align: start !important;
    }

    .footer-bottom-bar .col-md-6 {
        margin-bottom: 10px;
    }
}

.footer-links-list-dark li {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.footer-links-list-dark li a {
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: all 0.4s ease;
  color: #fff;
}

.footer-links-list-dark li a i {
  margin-right: 8px;
  transition: all 0.4s ease;
  position: relative;
  left: 0;
}

.footer-links-list-dark li:hover a {
  padding-left: 10px; /* Moves text to left */
  color: var(--rose);
}

.footer-links-list-dark li:hover a i {
  left: -5px; /* Moves icon left */
  color: var(--rose);
}
