body {
  font-family: "Poppins", sans-serif;
}
/* Hide scrollbar for all browsers */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* ------------------------------  Brand services brands code   ----------------------------------------- */

/* Custom scrollbar for horizontal scroll */
.brand-button {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.brand-button:hover {
  transform: scale(1.2);
  border-color: #f15a24;
}

/* about us images */
.hover-orange:hover {
  color: #f15a24 !important;
}

/* Services section FAQS */
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.answer.open {
  max-height: 200px; /* enough to show 2-3 lines comfortably */
}

/* Scrolling Buttons of the page */
/* Custom scrollbar hidden for the testimonial container */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Discount 40% */
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrolling-text {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-right-to-left 15s linear infinite;
}

/* ContactUs -> Form icons */
.custom-orange {
  --tw-gradient-from: #f15a24;
  --tw-gradient-to: #f15a24;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.border-custom-orange {
  border-color: #f15a24;
}
.focus-ring-custom-orange:focus {
  --tw-ring-color: #f15a24;
}
/* Icon and text hover color */
.icon-text-group {
  color: #d1d5db; /* Tailwind gray-300 for better contrast on dark bg */
  transition: color 0.3s ease;
  cursor: pointer;
}
.icon-text-group:hover {
  color: #f15a24;
}
/* Darker overlay for background */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  z-index: 0;
}

/* Contact us Page Area form drop down */
.dropdown-container {
    position: relative;
    width: 280px;
  }
  .search-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 0.375rem; /* 6px */
    outline-offset: 2px;
    transition: border-color 0.3s ease;
  }
  .search-input:focus {
    border-color: #f15a24;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.3);
  }
  .options-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 180px;
    margin-top: 4px;
    padding: 0;
    list-style: none;
    overflow-y: auto;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 10;
  }
  .options-list.hidden {
    display: none;
  }
  .option-item {
    padding: 10px 14px;
    cursor: pointer;
    color: #4b5563;
    user-select: none;
  }
  .option-item:hover,
  .option-item.active {
    background-color: #f15a24;
    color: white;
  }