body{
    overflow-x: hidden;
}
main {
  margin-top: 0; /* adjust value as needed */
}


@media (max-width: 767px) {
  .collapse {
    transition: height 0.35s ease, opacity 0.25s ease;
    overflow: hidden;
  }

  .mobile-slot {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    box-sizing: border-box;
  }
  
  .row {
    max-width: 100%;
  }

  .row > * {
    min-width: 0;
  }

}
/*Contact part*/

.company-contact{
    /*padding: 30px 0;*/
    text-align: center;

}

/* ===============================
  CUSTOMER LOGO MARQUEE
=============================== */

 .logo-section {
  padding: 120px 0;          /* FIXED spacing */
  background: #fff;
}

.slider {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}
  /* Smooth manual scrolling */
  scroll-behavior: smooth;

  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 40px;
  width: max-content;

  /* IMPORTANT: remove auto animation */
  animation: none;
}


/* Mobile */
@media (max-width: 767px) {
  .slider-track img {
    height: 60px;
    max-width: 160px;
  }
}

.office-login-btn {
    display: flex !important;
    flex-direction: row !important; /* Forces items into a horizontal row */
    align-items: center !important;   /* Centers them vertically */
    gap: 8px !important;              /* Adds space between flag and text */
    text-decoration: none;
    color: #ffffff;
}

/* Force the flag image to stay small and inline */
.office-login-btn img {
    display: inline-block !important;
    width: 24px !important;
    height: auto !important;
    margin: 0 !important;
}



/* car/plane/ship icon*/
.category-section {
  display: flex;
  flex-direction: column; /* 👈 one item per line */
  align-items: center;    /* center under text (optional) */
  gap: 8px;               /* spacing between lines */
}

/* default */
.category-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 500;
  color: #242f67;
  transition: color 0.3s ease;
}

.category-item i {
  color: #d94c5c;
  transition: color 0.3s ease;
}

/* 👇 WHEN CARD IS HOVERED */
.service-card:hover .category-item,
.service-card:hover .category-item span,
.service-card:hover .category-item i {
  color: #ffffff;
}



.service-btn-lg {
  display: inline-block;
  padding: 20px 44px;      /* bigger but not heavy */
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  background-color: #242f67;
  border-radius: 1000px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn-lg:hover {
  background-color: #e64555;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.10);
}

/* Scroll To Top Btn */

#scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 40px; /* higher than chat box */
  z-index: 10000; /* above everything */
}


#scroll-to-top img {
  width: 40px;   /* make smaller */
  height: auto;
  cursor: pointer;
  opacity: 1;
}

#scroll-to-top img:hover {
  opacity: 1;
}


/* Chat Button */
#chat-btn img {
    width: 40px;
    height: 40px;
}


#chat-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;              /* make sure it’s anchored */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #ff5757;
  cursor: pointer;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}    /* click goes to button */

#chat-btn:hover {
  transform: scale(1.08);
  transition: 0.2s ease;
}


/* Chat Widget */ 
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;

  width: 320px;
  max-width: calc(100vw - 40px);

  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .chat-widget {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    right: 20px;
  }
}

/* Header */
.chat-header {
  background: #1f2f63;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-title img {
  width: 28px;
  height: 28px;
}

.close-btn {
  position: absolute;
  top: 8px;
  left: 140px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Status */
.chat-status {
  padding: 6px 12px;
  font-size: 12px;
  color: green;
  border-bottom: 1px solid #eee;
}

/* Body */
.chat-body {
  height: 260px;
  padding: 10px;
  overflow-y: auto;
  background: #f8f9fa;
}

/* Messages */
.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  width: fit-content;        /* 👈 key line */
}

.message.support {
  background: #e9ecef;
  align-self: flex-start;
}

.message.user {
  background: #1f2f63;
  color: white;
  margin-left: auto;
}


/* Input + send row */
.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.chat-input-row .send-btn {
  margin-top: 0; /* remove old margin */
}







.chat-footer input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.send-btn {
  background: #1f2f63;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 9px;   /* move down */
}


/* ===== CHAT CONTACT BUTTONS ===== */
.contact-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.contact-links a {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.contact-line { background: #06C755; }
.contact-whatsapp { background: #25D366; }
.contact-zalo { background: #0068FF; }

/*chat */

.quick-contact {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.quick-contact button {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.quick-contact button:nth-child(1) { background: #06C755; }
.quick-contact button:nth-child(2) { background: #25D366; }
.quick-contact button:nth-child(3) { background: #0068FF; }

.chat-contact-img {
  width: 120px;
  margin-top: 6px;
  border-radius: 10px;
  cursor: pointer;
}

.chat-footer {
  display: flex;
  flex-direction: column;   /* 👈 THIS is the key */
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #eee;
}

/* input row */
.chat-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* remove old margin */
.send-btn {
  margin-top: 0 !important;
}
/* Contact card title */
.contact-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;          /* 👈 stronger bold */
  color: #222;               /* 👈 clearer contrast */
  letter-spacing: 0.5px;     /* 👈 more readable */
  text-transform: uppercase;/* 👈 cleaner look */
}


/*chat end*/

/* UL alignment */
.consul-column {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* normal links */
.consul-column li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

/* button list item */
.btn-li {
  margin-top: 12px;
}

/* hover */
.small-btn:hover {
  background: #ffffff;
}

.navy-box {
  background: #1f275c;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  width: fit-content;
  font-weight: 600;
}

.service-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.service-card:hover {
  background-color: #1f275c;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(230, 69, 85, 0.35);
}

.carousel-inner{
    align-items: center;
}
/* text + icon turn white */
.service-card:hover h4,
.service-card:hover p,
.service-card:hover i {
  color: #fff !important;
}




/* ===== CONSULTANCY CONTAINER ===== */
.container_consul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;                 /* space between columns */
  margin-top: 40px;
  padding: 30px 20px;        /* left / right spacing */
}

/* List column */
.consul-column {
  list-style: none;
  
  margin: 0;
  padding-left: 70px;
}

/* List items */
.consul-column li {
  margin-bottom: 12px;       /* space between links */
}

/* Links */
.consul-column li a {
  text-decoration: none;
  color: #242f67;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 70px;
}

.consul-column li a:hover {
  color: #e64555;
  text-decoration: underline;
}

.consul-column li strong{

  text-decoration: none;
 
  color: #242f67;
  font-size: 25px;
  line-height: 1.5;
  padding-left: 70px;
}
/* Button spacing fix */
.service-children {
  margin-top: 30px;
 
}

/* consultancy*/

.ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ie-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pink-btn {
  background: #d94c5c;
  color: white;
  text-decoration: none;
  padding: 10px 26px;
  border-radius: 25px;
  width: fit-content;
  font-weight: 600;
  margin-top: 10px;
 margin-left: 15px;}

.pink-btn:hover {
  opacity: 0.9;
}

.ie-col ul {
    text-align: left;
    line-height: 2;
    margin-left: 0;
    padding-left: 20px;
}


/* testimonial start */

 .testimonial-card {
  padding: 24px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.testimonial-card.interpreter {
  border-left: 4px solid #1f2f63;
}

.avatar-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #adb5bd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.avatar-box.interpreter {
  background: #1f2f63;
}



/* Interpreter Testimony – Premium Style */
.interpreter-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 14px;
  background: #242f67;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.interpreter-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #fff;
}

.quote-mark {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 3rem;
  color: #d6d9e5;
  font-family: serif;
  line-height: 1;
}

.interpreter-meta {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #fff;
}

.interpreter-meta span {
  display: block;
  margin-top: 2px;
}





/* DOT STYLE */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #242f67;
  opacity: .3;
}

.carousel-indicators .active {
  opacity: 1;
}


/* testimonial end */



@media (max-width: 767px) {
  .collapse {
    scroll-margin-top: 90px; /* height of header */
  }
}

/* DESKTOP: hide mobile accordion slots */
@media (min-width: 768px) {
  .mobile-slot {
    display: none !important;
  }
}



/* STATS SECTION */
.stats-section {
  padding: 30px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-item {
  padding: 10px 5px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #010203;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #f25f70;
}
.divider {
    border: none;
    border-top: 2px solid #0b0b0b;
    max-width: 80%;
    margin: 3rem auto;
}

/* TABLET */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 36px;
  }
}/* STATS SECTION */





/* ===== STAFF LOGIN MODAL (NEW UI) ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* CARD */
.modal-content {
  background: #ffffff;
  width: 360px;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: scaleIn 0.3s ease;
}

@media (max-width: 767px) {
  .location-info {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 14px;
  }
}


/* ANIMATION */
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}

.close:hover {
  color: #e64555;
}

/* AVATAR */
.imgcontainer {
  text-align: center;
  margin-bottom: 15px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f25f70;
}

/* FORM */
/*.container {*/
/*  padding: 0;*/
/*}*/

.container label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.container input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 6px 0 14px;
  font-size: 14px;
  transition: 0.2s;
}

.container input:focus {
  outline: none;
  border-color: #f25f70;
  box-shadow: 0 0 0 3px rgba(242, 95, 112, 0.15);
}

/* LOGIN BUTTON */
.container button[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, #f25f70, #e64555);
  border: none;
  padding: 12px;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.container button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(242, 95, 112, 0.45);
}

/* FOOTER AREA */
.container:last-child {
  background: transparent !important;
 /* text-align: center;*/
  margin-top: 16px;
}

.cancelbtn {
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  cursor: pointer;
}

.cancelbtn:hover {
  color: #e64555;
}

.psw {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.psw a {
  color: #f25f70;
  text-decoration: none;
}

/* TABLET VERSION */
@media (max-width: 1024px) {
    .location-row-image {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
        margin: 40px 20px;
    }

    .location-image img {
        width: 200px;
        height: auto;
    }

    .location-info-image p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}




 /* image slide */
.carousel-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
    box-sizing: border-box;
}

.carousel-slider {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
}

.carousel-track {
    display: flex;
    gap: 30px; /* Increased gap for a cleaner landscape look */
    width: max-content;
    animation: scrollContacts 40s linear infinite; /* 40s is smoother for larger images */
}

.carousel-card {
    flex-shrink: 0;
}

.carousel-card img {
    /* ⬇️ IDEAL LANDSCAPE DIMENSIONS ⬇️ */
    width: 400px;           /* Standardized width */
    height: 280px;          /* Forced height for perfect uniformity */
    object-fit: cover;      /* Prevents stretching; crops slightly if needed */
    
    border-radius: 12px;    /* Slightly rounder corners for a modern look */
    border: 1px solid #ddd;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to make cards "pop" */
.carousel-card img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #003366;
}
/* Pause the animation on hover so users can see details */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scrollContacts {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.csr-marquee-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
}

.csr-slider {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.csr-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollCsr 35s linear infinite;
}

.csr-card {
    width: 380px; /* Slightly narrower to fit text better */
    flex-shrink: 0;
    text-align: center;
}

.csr-card img {
    width: 100%;
    height: 250px; /* Ideal landscape height */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.csr-caption {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: 'Arial', sans-serif;
    padding: 0 10px;
    line-height: 1.4;
}

/* Pause on Hover */
.csr-marquee-section:hover .csr-track {
    animation-play-state: paused;
}

@keyframes scrollCsr {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =====================================================
   FULL WIDTH FOOTER
   ===================================================== */

footer.site-footer {
    width: 100% !important;
    max-width: 100% !important;

    position: relative;
    left: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;

    margin-top: 0 !important;
    padding: 0 !important;

    background-color: #242f67 !important;
    box-sizing: border-box;
}

/* Footer content */
footer.site-footer .footer-inner {
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 50px 5% !important;
    box-sizing: border-box;
}

/* Footer row */
footer.site-footer .row {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Footer columns */
footer.site-footer .row > div {
    padding-left: 25px;
    padding-right: 25px;
}

/* Copyright */
footer.site-footer .footer-copyright {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    box-sizing: border-box;
    text-align: center;
    background: rgba(0, 0, 0, 0.18);
}

/* Footer links */
footer.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

footer.site-footer a:hover {
    color: #e64555;
}

/*<!-- Lightweight CSS Styles -->*/
            /* Hide native scrollbars */
            #customerSlider::-webkit-scrollbar {
              display: none;
            }

            .scroll-smooth-custom {
              scroll-behavior: smooth;
            }

            /* Subtle hover effect on arrows */
            .slider-hover-container .opacity-hover-btn {
              opacity: 0.3;
              transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
            }

            .slider-hover-container:hover .opacity-hover-btn,
            .opacity-hover-btn:focus {
              opacity: 0.9;
            }

            .opacity-hover-btn:hover {
              opacity: 1 !important;
              background-color: #242f67 !important;
              border-color: #242f67 !important;
            }

            .opacity-hover-btn:hover i {
              color: #ffffff !important;
            }

            /* Logo Styling */
            .slider-track img {
              height: 55px;
              width: 120px;
              object-fit: contain;
              filter: grayscale(40%);
              opacity: 0.8;
              transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
              flex-shrink: 0;
            }

            .slider-track img:hover {
              filter: grayscale(0%);
              opacity: 1;
              transform: scale(1.06);
            }

            @media (max-width: 767px) {

              /* Always keep arrows visible on mobile/touch screens */
              .opacity-hover-btn {
                opacity: 0.85 !important;
                width: 32px !important;
                height: 32px !important;
              }
            }
          

              .company-card {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
                position: relative;
                overflow: hidden;
              }

              .company-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(135deg, #1f2f63, #d94c5c);
                opacity: 0;
                transition: opacity 0.3s ease;
              }

              .company-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 25px -5px rgba(31, 47, 99, 0.08), 0 10px 10px -5px rgba(31, 47, 99, 0.04);
                border-color: #cbd5e1;
              }

              .company-card:hover::before {
                opacity: 1;
              }

              .company-card .icon-wrapper {
                width: 64px;
                height: 64px;
                margin: 0 auto 1.25rem;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f8fafc;
                border-radius: 50%;
                font-size: 1.75rem;
                transition: transform 0.3s ease, background-color 0.3s ease;
                box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
              }

              .company-card:hover .icon-wrapper {
                transform: scale(1.1) rotate(5deg);
                background: #f1f5f9;
              }

              .company-card h5 {
                color: #1f2f63;
                font-size: 1.15rem;
                margin-bottom: 0.75rem;
                letter-spacing: -0.01em;
              }

              .company-card p {
                color: #64748b;
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 0;
              }

              .company-text {
                color: #475569;
                font-size: 1.05rem;
                max-width: 750px;
                margin: 3rem auto 0;
                font-weight: 500;
              }

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    footer.site-footer {
        width: 100% !important;
        max-width: 100% !important;
        left: auto;
        margin-left: 0 !important;
    }

    footer.site-footer .footer-inner {
        width: 100% !important;
        max-width: 100%;
        padding: 40px 20px !important;
        box-sizing: border-box;
    }

    footer.site-footer .row > div {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 25px;
    }
}

/* =========================================
   ENGLISH INDEX - FOOTER
   ========================================= */

body.index-en .site-footer {
    color: #ffffff !important;
}

body.index-en .site-footer h5 {
    color: #ffffff !important;
}

body.index-en .site-footer p {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.index-en .site-footer a {
    color: #ffffff !important;
}

body.index-en .site-footer i {
    color: #ffffff !important;
}

body.index-en .site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.index-en .site-footer .footer-copyright a {
    color: #ffffff !important;
}