/* ===============================
   🎨 Hype Tribe Media – Custom Styles & Brand Colors
   =============================== */

/* =======================================
   🔹 Brand Palette
   ======================================= */

/* --- Primary Brand Color: Energy Orange (#f15626) --- */
.htm-accent,
.text-accent {
  color: #f15626 !important;
}
.bg-accent {
  background-color: #f15626 !important;
}
.border-accent {
  border-color: #f15626 !important;
}
.hover-accent:hover {
  color: #f15626 !important;
}
.hover-bg-accent:hover {
  background-color: #f15626 !important;
}

/* --- Secondary Brand Color: Digital Blue (#46bded) --- */
.htm-digital,
.text-digital {
  color: #46bded !important;
}
.bg-digital {
  background-color: #46bded !important;
}
.border-digital {
  border-color: #46bded !important;
}
.hover-digital:hover {
  color: #46bded !important;
}
.hover-bg-digital:hover {
  background-color: #46bded !important;
}

/* --- Highlight Color: Neon Lime (#d5df33) --- */
.htm-highlight,
.text-highlight {
  color: #d5df33 !important;
}
.bg-highlight {
  background-color: #d5df33 !important;
}
.border-highlight {
  border-color: #d5df33 !important;
}
.hover-highlight:hover {
  color: #d5df33 !important;
}
.hover-bg-highlight:hover {
  background-color: #d5df33 !important;
}

/* --- Gradient Brand Combo (Orange → Blue → Lime) --- */
.bg-hype-gradient {
  background: linear-gradient(
    90deg,
    #f15626 0%,
    #46bded 50%,
    #d5df33 100%
  ) !important;
  color: #fff !important;
}
.text-hype-gradient {
  background: linear-gradient(90deg, #f15626, #46bded, #d5df33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.border-hype-gradient {
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #f15626, #46bded, #d5df33) 1;
}

/* =======================================
   💡 Service Cards (HTM Custom Section)
   ======================================= */

.htm-card {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s ease;
  background-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- Outline Colors by Brand --- */
.htm-orange {
  border-color: #f15626;
}
.htm-blue {
  border-color: #46bded;
}
.htm-lime {
  border-color: #d5df33;
}

/* --- Hover Fill + White Border + Black Text --- */
.htm-orange:hover {
  background-color: #f15626;
  border-color: #fff;
  color: #000;
  box-shadow: 4px 4px 0 0 var(--white-smoke);

  /* box-shadow: 4px 4px 0 0 var(--white-smoke); */
}
.htm-blue:hover {
  background-color: #46bded;
  border-color: #fff;
  color: #000;

  box-shadow: 4px 4px 0 0 var(--white-smoke);
}
.htm-lime:hover {
  background-color: #d5df33;
  border-color: #fff;
  color: #000;
  box-shadow: 4px 4px 0 0 var(--white-smoke);
}

/* --- Typography Color Change --- */
.htm-card h3,
.htm-card p,
.htm-card a {
  transition: all 0.3s ease;
}
.htm-card:hover h3,
.htm-card:hover p,
.htm-card:hover a {
  color: #000 !important;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .htm-card {
    min-height: 380px;
    padding: 25px 20px;
  }
}

/* =======================================
   ✨ Utility Enhancements
   ======================================= */

/* Gradient Text Utility */
.text-gradient {
  background: linear-gradient(90deg, #f15626, #46bded, #d5df33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle Card Hover Lift */
.card-hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth Transitions Global */
a,
button,
h3,
p,
div {
  transition: all 0.3s ease;
}

.aximo-iconbox-wrap {
  height: 600px; /* Fixed height */
  overflow: hidden;
}

/* video css style */
/* ===============================
   Fullscreen Video Section
================================ */
.aximo-fullscreen-video {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aximo-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.9);
}

/* Optional dark overlay (like Apple-style depth) */
.aximo-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(10, 10, 10, 0.25);*/
  z-index: 2;
}

/* Add smooth fade-in animation */
.aximo-fullscreen-video {
  animation: fadeInVideo 1.5s ease forwards;
}

@keyframes fadeInVideo {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Make sure it looks great on mobile */
@media (max-width: 768px) {
  .aximo-bg-video {
    object-fit: cover;
    filter: brightness(0.8);
  }
}

.aximo-accordion-item.open {
  box-shadow: 3px 3px 0 0 var(--white-smoke);
  color: #000;
}

/* Make sure the heading also turns black when open */
.aximo-accordion-item.open .aximo-accordion-header h4 {
  color: #000 !important;
}

/* Optional: Keep other accordions visually distinct */
.htm-orange.open {
  background-color: #f15626;
  color: #000;
}
.htm-blue.open {
  background-color: #46bded;
  color: #000;
}
.htm-lime.open {
  background-color: #d5df33;
  color: #000;
}

/* Force h4 inside all open items to turn black */
.htm-orange.open .aximo-accordion-header h4,
.htm-digital.open .aximo-accordion-header h4,
.htm-highlight.open .aximo-accordion-header h4 {
  color: #000 !important;
}

.aximo-accordion-header::before {
  filter: brightness(0) invert(93%) sepia(10%) saturate(240%) hue-rotate(10deg)
    brightness(104%) contrast(97%);
}

.aximo-icon img {
  filter: brightness(0) invert(93%) sepia(10%) saturate(240%) hue-rotate(10deg)
    brightness(104%) contrast(97%);
  transition: all 0.3s ease;
}

.aximo-icon:hover img {
  filter: brightness(0); /* black on hover */
}

.inner-service p {
  color: var(--white-smoke);
}

.aximo-user-interface {
  color: var(--white-smoke);
}

aximo-contact-info-box {
  background-color: #f15626;
  border-color: #fff;
  color: #000;
  box-shadow: 4px 4px 0 0 var(--white-smoke);
}
