/* =========================================
   BharatAxis Logistics – style.css
   ========================================= */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: #2d2d2d;
  color: #ccc;
  font-size: 13px;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar-left {
  display: flex;
  gap: 14px;
}

.top-bar-left a {
  color: #ccc;
  transition: color 0.2s;
  font-size: 13px;
}

.top-bar-left a:hover {
  color: #fff;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right a {
  color: #f4a824;
}

.top-bar-right a:hover {
  color: #fff;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f4a824;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.logo-circle {
  width: 68px;
  height: 68px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6fc4, #0a3d80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  border: 3px solid #f4a824;
  flex-shrink: 0;
}

.mobile-nav-header {
  display: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c0392b;
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #c0392b;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 200;
  border-top: 3px solid #c0392b;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #c0392b;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* On mobile/tablet, we disable hover triggering */
@media (max-width: 991px) {
  .dropdown:hover .dropdown-menu {
    display: none;
  }
}

/* Get In Touch Button */
.btn-get-touch {
  background: #1a1a1a;
  color: #fff;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-get-touch:hover {
  background: #c0392b;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Transform to X */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* hide non-active slides below */
  transform: translateY(100%);
  transition: transform 0s;
  z-index: 1;
}

/* The active slide sits in place */
.slide.active {
  transform: translateY(0);
  z-index: 3;
}

/* When a new slide enters (slide-up from bottom) */
.slide.enter {
  transform: translateY(100%);
  z-index: 4;
  animation: slideUpIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* When previous active slide exits (slide up out) */
.slide.exit {
  transform: translateY(0);
  z-index: 2;
  animation: slideUpOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideUpIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideUpOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15%);
  }
}

/* Slide background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Dark overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Slide text content */
.slide-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 5;
  color: #fff;
}

.slide-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
  /* Animate from top (fall down) */
  opacity: 0;
  transform: translateY(-40px);
}

.slide.active .slide-subtitle {
  animation: textDropDown 0.7s ease 0.6s forwards;
}

.slide.enter .slide-subtitle {
  animation: textDropDown 0.7s ease 0.6s forwards;
}

.slide-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  /* Animate from top (fall down) */
  opacity: 0;
  transform: translateY(-50px);
}

.slide.active .slide-title {
  animation: textDropDown 0.7s ease 0.85s forwards;
}

.slide.enter .slide-title {
  animation: textDropDown 0.7s ease 0.85s forwards;
}

.slide-title span {
  color: #f4a824;
}

@keyframes textDropDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Arrow Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

/* Thumbnail preview (visible near next btn on hover) */
.slider-thumbnail {
  position: absolute;
  right: 70px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 12px 6px 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}

.slider-next:hover~.slider-thumbnail,
.slider-thumbnail:hover {
  opacity: 1;
  pointer-events: all;
}

.slider-thumbnail img {
  width: 70px;
  height: 44px;
  object-fit: cover;
}

.slider-thumbnail span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.slider-thumbnail i {
  color: #fff;
  font-size: 12px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  background: #f7f7f7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-bar {
  width: 50px;
  height: 4px;
  background: #1a1a1a;
  margin-bottom: 24px;
  position: relative;
}

.section-bar::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 10px;
  height: 4px;
  background: #f4a824;
}

.about-text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
}

.about-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: #fff;
}

.services-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}

.service-card {
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-img {
  overflow: hidden;
  height: 200px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-body {
  padding: 18px 18px 22px;
}

.service-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-body h3 a {
  color: #c0392b;
  transition: color 0.2s;
}

.service-body h3 a:hover {
  color: #1a1a1a;
}

.service-body p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-read-more:hover {
  background: #c0392b;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
  background: #f7f7f7;
}

.why-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.why-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 50px;
}

.why-divider span {
  width: 30px;
  height: 3px;
  background: #888;
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  border: 1px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  border-color: #c0392b;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: #555;
  transition: background 0.3s, color 0.3s;
}

.why-card:hover .why-icon {
  background: #c0392b;
  color: #fff;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   ACCORDION + INDUSTRIES
   ========================================= */
.accordion-industries {
  background: #ededed;
}

.acc-ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #ccc;
  background: #fff;
  margin-bottom: 2px;
}

.acc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.acc-header i {
  color: #555;
}

.acc-icon {
  margin-left: auto;
  font-size: 18px;
  color: #555;
}

.accordion-item.open .acc-header {
  background: #fff;
  color: #333;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  text-align: justify;
  transition: max-height 0.8s ease, padding 0.8s ease;
}

.accordion-item.open .acc-body {
  max-height: 1000px;
  padding: 14px 16px;
}

/* Industries */
.industry-col h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.industry-col p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: #fff;
}

.contact-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-info p {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-info i {
  color: #c0392b;
}

.contact-info a:hover {
  color: #c0392b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c0392b;
}

.contact-form textarea {
  resize: vertical;
}

.btn-submit {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #c0392b;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #1c1c1c;
  color: #aaa;
  padding: 55px 0 0;
}

/* 3-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* Column title */
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Underline bar after title */
.footer-col-bar {
  width: 42px;
  height: 3px;
  background: #555;
  margin-bottom: 24px;
}

/* ---- Contact Column ---- */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-icon-box {
  min-width: 38px;
  height: 38px;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #bbb;
  flex-shrink: 0;
}

.footer-contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.footer-contact-item p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-item a {
  color: #999;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-sub {
  font-size: 12px !important;
  color: #777 !important;
}

/* ---- Arrow Link Lists ---- */
.footer-arrow-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Custom Links: items have bottom border/divider */
.footer-arrow-links li {
  border-bottom: 1px solid #2e2e2e;
}

.footer-arrow-links.no-divider li {
  border-bottom: none;
}

.footer-arrow-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 13.5px;
  color: #999;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-arrow-links li a i {
  font-size: 12px;
  color: #666;
  transition: color 0.2s;
}

.footer-arrow-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-arrow-links li a:hover i {
  color: #f4a824;
}

/* No-divider (Our Services): tighter padding */
.footer-arrow-links.no-divider li a {
  padding: 7px 0;
}

/* ---- Bottom Bar ---- */
.footer-bottom-bar {
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-inner>span {
  font-size: 13px;
  color: #777;
}

.footer-dev {
  font-size: 13px;
  color: #777;
}

.footer-dev strong {
  color: #aaa;
  font-weight: 600;
}

.footer-scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  font-size: 13px;
  transition: background 0.2s;
}

.footer-scroll-top:hover {
  background: #c0392b;
}

/* =========================================
   SCROLL ANIMATION
   ========================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {

  .about-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .acc-ind-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
    order: 3;
    margin-left: 15px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -280px;
    /* Sidebar width */
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 20px 0;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    gap: 0;
    align-items: stretch;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(280px);
  }

  /* Logo inside mobile menu */
  .mobile-nav-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-nav-header .logo img {
    height: 50px;
    width: 50px;
  }

  .menu-close {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .menu-close:hover {
    background: #c0392b;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f8f8f8;
  }

  .nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
    /* Hide hover underline on mobile sidebar */
  }

  /* Dropdown on mobile */
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: #fdfdfd;
    padding-left: 20px;
    min-width: 100%;
    border-top: none;
    border-left: 3px solid #c0392b;
  }

  .dropdown-menu li a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown>.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .btn-get-touch {
    display: none;
    /* Hide in navbar on mobile */
  }

  .hero {
    height: 380px;
  }

  .slide-content {
    left: 20px;
    bottom: 40px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-subtitle {
    font-size: 14px;
  }

  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .top-bar {
    justify-content: space-between;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 26px;
  }
}

/* Hide top bar contact text on small mobile screens */
@media (max-width: 576px) {

  .top-bar-right span a,
  .top-bar-right span {
    font-size: 0;
  }

  /* Ensure icons inside links are still visible and clickable */
  .top-bar-right span a i,
  .top-bar-right span i {
    font-size: 16px;
    margin-right: 0;
    pointer-events: auto;
  }

  .top-bar-right {
    gap: 25px;
  }
}