/* ==========================================================================
   Phase 3: Header Redesign (Premium Dark Mode)
   ========================================================================== */

/* 1. Main Header Glassmorphism (Floating Premium Pill) */
header.zq_h3_header-area {
  position: fixed !important;
  top: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 92% !important;
  max-width: 1400px !important;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.4) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 100px !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(127, 174, 66, 0.1) !important;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1) !important;
  padding: 8px 0 !important;
  animation:
    header-entrance 1s ease-out both,
    pill-breathing 5s infinite alternate ease-in-out;
}

@keyframes header-entrance {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes pill-breathing {
  0% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  100% {
    border-color: rgba(127, 174, 66, 0.3);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.5),
      0 0 30px rgba(127, 174, 66, 0.1);
  }
}

header.zq_h3_header-area .container {
  max-width: 100% !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 40px !important;
}

/* 2. Navigation Link Refinement */
.zq_h3_header-menu nav>ul {
  display: flex;
  align-items: center;
  gap: 0 !important;
}

.zq_h3_header-menu nav>ul>li>a {
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px !important;
  padding: 12px 0 !important;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Rolling Text Animation */
.zq_h3_header-menu nav>ul>li>a .fill-text {
  position: relative;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.zq_h3_header-menu nav>ul>li>a .fill-text::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  color: #7fae42;
}

/* Animated Underline Indicator */
.zq_h3_header-menu nav>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #7fae42;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px #7fae42;
}

.zq_h3_header-menu nav>ul>li:hover>a .fill-text,
.zq_h3_header-menu nav>ul>li.active>a .fill-text {
  transform: translateY(-100%);
}

.zq_h3_header-menu nav>ul>li:hover>a::before,
.zq_h3_header-menu nav>ul>li.active>a::before {
  width: 100%;
}

/* 3. Mega Menu & Dropdowns (Glassmorphism) */
.zq_h3_header-menu nav>ul>li.megamenu_parent {
  position: static !important;
}

.zq_h3_header-menu .mega_menu {
  background: rgba(15, 15, 15, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(127, 174, 66, 0.2) !important;
  border-radius: 16px !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(127, 174, 66, 0.05) !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  z-index: 9999 !important;
  top: 100% !important;
  margin-top: 0 !important;
  padding: 30px 20px 20px !important;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  transform-origin: top center;
  pointer-events: none;
}

/* Regular Submenus */
.zq_h3_header-menu nav ul li .submenu {
  background: rgba(15, 15, 15, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(127, 174, 66, 0.2) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 250px !important;
  margin-top: 0 !important;
  padding: 15px !important;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease !important;
  transform-origin: top center;
  pointer-events: none;
  z-index: 9999 !important;
}

.zq_h3_header-menu .mega_menu.show,
.zq_h3_header-menu nav ul li .submenu.show,
.zq_h3_header-menu nav ul li:hover .mega_menu,
.zq_h3_header-menu nav ul li:hover .submenu {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Invisible bridge to close the gap between link and menu */
.zq_h3_header-menu .mega_menu::before,
.zq_h3_header-menu nav ul li .submenu::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 50px;
  background: transparent;
  z-index: -1;
}

/* Dropdown Menu Item Styling */
.zq_h3_header-menu nav ul li .submenu li,
.zq_h3_header-menu .mega_menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.zq_h3_header-menu nav ul li .submenu li:last-child,
.zq_h3_header-menu .mega_menu li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.zq_h3_header-menu nav ul li .submenu li a,
.zq_h3_header-menu .mega_menu a {
  color: #e0e0e0 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  padding: 8px 0 !important;
  display: inline-block;
  transition: all 0.3s ease !important;
  background: transparent !important;
}

.zq_h3_header-menu nav ul li .submenu li a:hover,
.zq_h3_header-menu .mega_menu a:hover {
  color: #7fae42 !important;
  transform: translateX(6px);
  text-shadow: 0 0 15px rgba(127, 174, 66, 0.4) !important;
}

/* Mega Menu Headings & Text */
.category-name h4 a {
  color: #7fae42 !important;
  font-family: "Outfit", sans-serif;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 10px;
  display: inline-block;
  transition:
    color 0.3s ease-in-out,
    text-shadow 0.3s ease-in-out !important;
}

.category-name h4 a:hover {
  color: #9acd32 !important;
  text-shadow: 0 0 10px rgba(127, 174, 66, 0.5) !important;
}

.megamenu_items {
  border-bottom: 1px solid #333;
}

.megamenu_items li p {
  color: #a2a2a2 !important;
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 15px;
}

.megamenu_items li a {
  color: #f2f2f2 !important;
  font-size: 15px !important;
}

.megamenu_items li a:hover {
  color: #7fae42 !important;
  transform: translateX(4px);
}

.megamenu_items li {
  transition: transform 0.3s ease;
}

/* 4. Mobile Menu Overlay Dark Mode */
.zq_mobile_menu {
  background: rgba(7, 7, 7, 0.95) !important;
  backdrop-filter: blur(20px) !important;
}

.zq_mobile_menu .menu-navbar ul li a .fill-text {
  color: #f2f2f2 !important;
}

.zq_mobile_menu .menu-navbar ul li a:hover .fill-text {
  color: #7fae42 !important;
}

.zq_mobile_menu .mobile-menu-header .close-menu {
  color: #f2f2f2 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50%;
}

.zq_mobile_menu .mobile-menu-header .close-menu:hover {
  background: #7fae42 !important;
}

/* Ultra-Interactive Contact Button (Desktop) */
.zq_h3_header-action .zq_theme-btn {
  background: #7fae42 !important;
  color: #000000 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s ease !important;
}

.zq_h3_header-action .zq_theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.zq_h3_header-action .zq_theme-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(127, 174, 66, 0.6) !important;
}

.zq_h3_header-action .zq_theme-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.zq_h3_header-action .zq_theme-btn svg {
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.zq_h3_header-action .zq_theme-btn:hover svg {
  transform: translate(4px, -4px) scale(1.2);
}

/* ==========================================================================
   Extracted Inline CSS (From header.php)
   ========================================================================== */
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  /* Darkened overlay for dark mode */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.form-popup-content {
  background: #111111;
  /* Changed to dark mode surface */
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  animation: popupFade 0.25s ease;
}

.form-popup.success .form-popup-content {
  border-top: 5px solid #7fae42;
  /* Brand green */
}

.form-popup.error .form-popup-content {
  border-top: 5px solid #ff4a4a;
  /* Error red */
}

.form-popup-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.form-popup-content p {
  margin: 0;
  font-size: 16px;
  color: #f2f2f2;
  /* Dark mode text */
  line-height: 1.6;
}

.new_popUp .branches_side_inputs label {
  font-size: 18px;
  color: #7fae42;
  font-weight: bold;
}

.new_popUp .form_info label {
  color: #a2a2a2;
  font-weight: normal;
  font-size: 14px;
}

.new_popUp .form_info label a {
  font-size: 18px;
  color: #7fae42;
  font-weight: bold;
}

.new_popUp .services-checkboxes label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a2a2a2;
  margin-right: 1rem;
  font-weight: normal;
  font-size: 14px;
}

.form-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  cursor: pointer;
  color: #a2a2a2;
}

.form-popup-close:hover {
  color: #fff;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form_group_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form_group_btn .form_group_1 {
  width: auto;
  margin: 0;
}

.form_group_btn .form_info label {
  font-size: 16px;
}

/* ==========================================================================
   Phase 4: Hero Section Redesign (Open & Premium)
   ========================================================================== */
.zq_h3_hero-area {
  z-index: 1;
  background: #030303 !important;
}

/* Refined Background Logo (Subtle & Premium) */
.zq_h3_hero-i-bg-logo {
  display: block !important;
  opacity: 0.03 !important;
  /* Extremely subtle */
  filter: grayscale(1) invert(1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Remove legacy background colors causing the green box */
.zq_h3_hero-single {
  background-color: transparent !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Make Vanta Waves the star of the background */
#vantawaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2 !important;
  /* Above parent background */
  opacity: 0.35 !important;
  /* Reduced for elegance */
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Elegant Multi-Orb Mesh Gradient Background */
.zq_h3_hero-area::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 30%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle,
      rgba(127, 174, 66, 0.25) 0%,
      /* Increased opacity */
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  /* Mesh behind waves */
  filter: blur(120px);
  animation: orb-breathe 10s infinite alternate ease-in-out;
}

.zq_h3_hero-area::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 20%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle,
      rgba(127, 174, 66, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  /* Mesh layer */
  filter: blur(100px);
  animation: orb-float-alt 15s infinite alternate ease-in-out;
}

/* Third Orb for depth */
.zq_h3_hero-area .extra-orb {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle,
      rgba(127, 174, 66, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  /* Mesh layer */
  filter: blur(110px);
  animation: orb-float 12s infinite alternate ease-in-out;
}

/* Noise Texture Overlay for that premium grainy feel */
.zq_h3_hero-area .noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
  /* Noise on top */
}

@keyframes orb-breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: translate(-45%, -45%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(100px, -50px) rotate(10deg);
  }
}

@keyframes orb-float-alt {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 60px) scale(1.2);
  }
}

/* Remove the ugly card, make it open and airy */
.zq_h3_hero-content {
  position: relative;
  z-index: 10;
  /* Content on top */
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.zq_h3_hero-content:hover {
  transform: none;
  box-shadow: none;
}

.zq_h3_hero-content h1 {
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-size: clamp(3rem, 6vw, 5.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 30px !important;
  color: #ffffff !important;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.zq_h3_hero-content p {
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  color: #e0e0e0 !important;
  line-height: 1.7 !important;
  max-width: 800px;
  margin: 0 auto !important;
  font-weight: 300 !important;
  letter-spacing: 0.5px;
}

/* Interactive Floating Social Media Icons */
.floating_socialmedia {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.inner_floating .banner-social {
  position: absolute;
  pointer-events: auto;
  animation: float-around 10s infinite alternate ease-in-out;
  width: 65px !important;
  height: 65px !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.inner_floating .banner-social img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  border-radius: 50%;
  /* filter: grayscale(1) opacity(0.8); */
  transition: all 0.3s ease;
}

.inner_floating .banner-social:hover {
  animation-play-state: paused;
  z-index: 100;
  background: rgba(127, 174, 66, 0.15);
  border-color: #7fae42;
  /* transform: scale(1.15) !important; */
  box-shadow: 0 0 30px rgba(127, 174, 66, 0.4);
}

.inner_floating .banner-social:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

/* Staggering the floats */
.inner_floating .bhnc-icn {
  animation-delay: 0s;
  animation-duration: 12s;
}

.inner_floating .fb-icn {
  animation-delay: -2s;
  animation-duration: 15s;
}

.inner_floating .lnkdn-icn {
  animation-delay: -4s;
  animation-duration: 11s;
}

.inner_floating .ins-icn {
  animation-delay: -1s;
  animation-duration: 14s;
}

.inner_floating .tktk-icn {
  animation-delay: -6s;
  animation-duration: 13s;
}

.inner_floating .yt-icn {
  animation-delay: -3s;
  animation-duration: 16s;
}

.inner_floating .pnt-icn {
  animation-delay: -5s;
  animation-duration: 10s;
}

.inner_floating .drbl-icn {
  animation-delay: -7s;
  animation-duration: 18s;
}

.inner_floating .wtsp-icn {
  animation-delay: -1.5s;
  animation-duration: 12.5s;
}

.inner_floating .x-icn {
  animation-delay: -4.5s;
  animation-duration: 15.5s;
}

.inner_floating .snp-icn {
  animation-delay: -2.5s;
  animation-duration: 11.5s;
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -40px) rotate(10deg);
  }

  66% {
    transform: translate(-25px, 35px) rotate(-5deg);
  }

  100% {
    transform: translate(-35px, -20px) rotate(5deg);
  }
}

/* ==========================================================================
   Phase 5.2: Premium 2-Row Bento Mosaic (Services Overhaul)
   ========================================================================== */

#services-bento-section {
  position: relative;
  background: #030303;
  overflow: hidden;
  z-index: 1;
}

.services-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 24px;
  perspective: 2000px;
  margin-top: 20px;
}

.mosaic-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.mosaic-item.item-wide {
  grid-column: span 2;
}

.mosaic-item .glass-card {
  height: 100%;
  padding: 45px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.mosaic-item .service-number {
  position: absolute;
  top: 25px;
  right: 35px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(127, 174, 66, 0.05);
  transition: color 0.5s ease;
}

.mosaic-item .service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: rgba(127, 174, 66, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mosaic-item .service-icon img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(127, 174, 66, 0.2));
}

.mosaic-item h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.3;
}

.mosaic-item p {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  max-width: 300px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.full-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}

.service-link-btn {
  margin-top: 25px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #7fae42;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  position: relative;
  z-index: 11;
}

/* Hover State & Active State */
.mosaic-item:hover,
.mosaic-item.active {
  z-index: 10;
}

.mosaic-item:hover .glass-card,
.mosaic-item.active .glass-card {
  background: rgba(127, 174, 66, 0.05);
  border: 1px solid rgba(127, 174, 66, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.mosaic-item:hover .service-icon,
.mosaic-item.active .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(127, 174, 66, 0.15);
}

.mosaic-item:hover h4,
.mosaic-item.active h4 {
  color: #7fae42;
}

.mosaic-item:hover p,
.mosaic-item.active p {
  color: rgba(255, 255, 255, 0.9);
}

.mosaic-item:hover .service-number,
.mosaic-item.active .service-number {
  color: rgba(127, 174, 66, 0.15);
}

.mosaic-item:hover .service-link-btn,
.mosaic-item.active .service-link-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Mouse Glow Effect (Liquid Light) */
#services-bento-section .mouse-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(127, 174, 66, 0.15) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  border-radius: 50%;
}

/* Responsive Overrides */
@media (max-width: 1400px) {
  .mosaic-item h4 {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .services-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .mosaic-item.item-wide {
    grid-column: span 2;
  }

  .mosaic-item .glass-card {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .services-mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-item.item-wide {
    grid-column: span 1;
  }

  .mosaic-item .glass-card {
    padding: 35px;
    min-height: 300px;
  }

  .mosaic-item .service-number {
    font-size: 42px;
  }
}

/* ///////////////////////////////////////////////////////////
   Phase 5.3: Specialized Services Title Redesign
/////////////////////////////////////////////////////////// */

#services-bento-section .zq_h3_section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(127, 174, 66, 0.8);
  margin-bottom: 15px;
}

#services-bento-section .zq_h3_section-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #7fae42;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 15px #7fae42;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#services-bento-section .zq_h3_section-title {
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

#services-bento-section .zq_h3_section-title .text-gradient {
  background: linear-gradient(90deg, #fff 0%, #7fae42 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#services-bento-section .zq_h3_section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #7fae42;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(127, 174, 66, 0.4);
}

/* ///////////////////////////////////////////////////////////
   Phase 5.4: Ultra-Animated Service Cards
/////////////////////////////////////////////////////////// */

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 3;
}

.mosaic-item:hover .glass-card::before,
.mosaic-item.active .glass-card::before {
  animation: shine-sweep 0.8s ease-in-out forwards;
}

@keyframes shine-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.mosaic-item .glass-card {
  transition:
    background 0.4s ease,
    border 0.4s ease,
    box-shadow 0.4s ease !important;
}

/* Floating Animation for icons in idle state */
.mosaic-item .service-icon {
  animation: icon-float 4s infinite alternate ease-in-out;
}

@keyframes icon-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Magnetic Link Button Refinement */
.service-link-btn {
  position: relative;
  padding-bottom: 5px;
}

.service-link-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #7fae42;
  transition: width 0.3s ease;
}

.mosaic-item:hover .service-link-btn::after,
.mosaic-item.active .service-link-btn::after {
  width: 100%;
}

/* ///////////////////////////////////////////////////////////
   Phase 6: Cinematic Portfolio Showcase
/////////////////////////////////////////////////////////// */

.portfolio-cinematic-section {
  position: relative;
  width: 100%;
  background: #030303;
  overflow: hidden;
  /* Height will be handled by GSAP (scroll length) */
}

.portfolio-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-horizontal-container {
  display: flex;
  height: 80vh;
  padding: 0 10vw;
  gap: 5vw;
  will-change: transform;
}

.portfolio-project-card {
  position: relative;
  flex: 0 0 75vw;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #111;
  transform-origin: center;
}

.project-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.portfolio-project-card:hover .project-image-wrap img {
  transform: scale(1.05);
}

.project-glass-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
  z-index: 10;
}

.portfolio-project-card:hover .project-glass-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.project-num {
  font-size: 14px;
  font-weight: 700;
  color: #7fae42;
  font-family: "Bricolage Grotesque", sans-serif;
}

.project-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.project-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.1;
}

.project-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #7fae42;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Custom Scroll Cursor */
.portfolio-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: #7fae42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.portfolio-cursor span {
  color: #000;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.portfolio-cinematic-section:hover .portfolio-cursor {
  transform: translate(-50%, -50%) scale(1);
}

/* Progress Bar */
.portfolio-scroll-progress {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #7fae42;
  transition: width 0.1s linear;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .portfolio-project-card {
    flex: 0 0 85vw;
  }

  .project-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .portfolio-project-card {
    flex: 0 0 90vw;
    height: 60vh;
  }

  .project-glass-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }

  .project-title {
    font-size: 24px;
  }

  .project-desc {
    display: none;
  }
}

/* Brand Section Enhancements */
.zq_h3_brand-area {
  background: #030303;
  padding: 100px 0;
}

.zq_h3_brand-area .zq_h3_section-title {
  color: #fff;
  text-align: center;
}

.zq_h3_brand-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.zq_h3_brand-item img {
  max-width: 140px;
  /* filter: grayscale(1) brightness(2);
    opacity: 0.6; */
  transition: all 0.4s ease;
}

.zq_h3_brand-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(127, 174, 66, 0.2);
  transform: translateY(-5px);
}

.zq_h3_brand-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ///////////////////////////////////////////////////////////
   Phase 7: Strategic About & Interactive Statistics
/////////////////////////////////////////////////////////// */

.zq_h3_choose-area {
  background: #030303;
  position: relative;
  overflow: hidden;
}

.zq_h3_choose-area .zq_h3_section-title {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
}

.zq_h3_choose-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.8;
}

.zq_h3_choose-content-item-info h4 {
  color: #7fae42;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.zq_h3_choose-content-admin {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.zq_h3_choose-content-admin h4 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.zq_h3_choose-content-admin h4 span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Strategic About Us - Premium Image Composition */
.zq_h3_choose-img-composition {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 40px;
  /* Increased padding to prevent cropping */
  margin-left: 20px;
}

.zq_h3_choose-img-main {
  width: 85%;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.img-organic-1 {
  width: 100%;
  height: auto;
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%) contrast(110%);
}

.zq_h3_choose-img-composition:hover .img-organic-1 {
  border-radius: 40% 60% 30% 70% / 50% 40% 70% 60%;
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.02);
}

.zq_h3_choose-img-small {
  position: absolute;
  bottom: -10px;
  left: 0;
  /* Moved from -20px to 0 to stop left cropping */
  width: 50%;
  z-index: 3;
  animation: float-slow 8s infinite ease-in-out;
}

.img-organic-2 {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 6px solid #030303;
  /* Seamless integration with dark background */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

.zq_h3_choose-img-composition:hover .img-organic-2 {
  transform: scale(1.05) translateX(10px);
}

.img-composition-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,
      rgba(127, 174, 66, 0.08) 0%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@media (max-width: 991px) {
  .zq_h3_choose-img-composition {
    margin-left: 0;
    margin-top: 60px;
    justify-content: center;
  }

  .zq_h3_choose-img-main {
    width: 90%;
  }

  .zq_h3_choose-img-small {
    width: 45%;
    bottom: -10px;
    left: 10%;
  }
}

/* Stats Section */
.stats-glass-section {
  background: #030303;
  padding: 100px 0;
  position: relative;
}

.stats-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 1;
  transition: all 0.5s ease;
} */

/* .stat-card:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
} */

.stat-card .stat-content {
  position: relative;
  z-index: 2;
}

.stat-card:nth-child(1) {
  background-image: url('../webImages/stat_1.jpg');
}

.stat-card:nth-child(2) {
  background-image: url('../webImages/stat_2.jpg');
}

.stat-card:nth-child(3) {
  background-image: url('../webImages/stat_3.jpg');
}

.stat-card:nth-child(4) {
  background-image: url('../webImages/stat_4.jpg');
}

.stat-card:hover {
  border-color: rgba(127, 174, 66, 0.5);
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.stat-card .counter {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #7fae42 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card .symbol {
  font-size: 40px;
  font-weight: 400;
  color: #7fae42;
  margin-left: 5px;
}

.stat-card h6 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}

/* .stat-card .stat-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 100px;
  color: rgba(127, 174, 66, 0.05);
  z-index: 0;
  transform: rotate(-15deg);
} */

@media (max-width: 991px) {
  .stats-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-mosaic-grid {
    grid-template-columns: 1fr;
  }
}

/* Global Utilities */
.text-gradient {
  background: linear-gradient(90deg, #fff 0%, #7fae42 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}
.get-quote{
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background: rgba(127, 174, 66, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(127, 174, 66, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fae42;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  opacity: 1;
  visibility: visible;
  text-decoration: none;
}

.get-quote::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    padding: 8px 16px;
    background: rgba(127, 174, 66, 0.95);
    color: #000;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 5px 15px rgba(127, 174, 66, 0.3);
}

.get-quote:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.get-quote.active{
    bottom: 30px;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #7fae42;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(127, 174, 66, 0.3);
  text-decoration: none !important;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.scroll-to-top:hover {
  background: #fff;
  transform: translateY(-5px);
}

#services-bento-section,
.portfolio-cinematic-section,
#about-strategic-section,
.stats-glass-section {
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.zq_h3_section-title {
  color: #ffffff !important;
}

.zq_h3_choose-content p,
.zq_h3_choose-content-item-info p {
  color: rgba(255,
      255,
      255,
      0.85) !important;
  /* Increased from 0.7 for readability */
}

/* Ensure Hero Text is above Vanta/Backgrounds */
.zq_h3_hero-content {
  position: relative;
  z-index: 100;
}

/* Improved visibility for elements awaiting GSAP */
.mosaic-item,
.portfolio-project-card,
.stat-card,
.zq_h3_section-title,
.zq_h3_section-subtitle {
  opacity: 0.9;
  /* Increased base opacity */
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.portfolio-sticky-wrapper {
  background: #030303;
  z-index: 5;
  overflow: hidden;
  /* Contain the horizontal slider */
}

/* ///////////////////////////////////////////////////////////
   Phase 9: Innovative 3D Perspective Wall
/////////////////////////////////////////////////////////// */

.clients-logos-section {
  padding: 150px 0;
  background: #030303;
  position: relative;
  overflow: hidden;
  perspective: 2000px;
  /* Essential for 3D */
}

.clients-3d-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.logo-wall-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  transform-style: preserve-3d;
  transform: rotateX(15deg) rotateY(-10deg);
  transition: transform 0.1s ease-out;
}

.zq_h3_brand-item {
  width: 180px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  backdrop-filter: blur(5px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.zq_h3_brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(1) brightness(0.7) contrast(1.2);
    opacity: 0.5; */
  transition: all 0.5s ease;
  transform: translateZ(0px);
}

.zq_h3_brand-item:hover {
  background: rgba(127, 174, 66, 0.08);
  border-color: rgba(127, 174, 66, 0.3);
  transform: translateZ(50px) scale(1.1);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(127, 174, 66, 0.2);
  z-index: 10;
}

.zq_h3_brand-item:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
  transform: translateZ(20px);
}

/* Floating Animation */
@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.logo-wall-wrapper .zq_h3_brand-item:nth-child(odd) {
  animation: logoFloat 6s ease-in-out infinite;
}

.logo-wall-wrapper .zq_h3_brand-item:nth-child(even) {
  animation: logoFloat 8s ease-in-out infinite reverse;
  margin-top: 40px;
  /* Offset for dynamic look */
}

/* ///////////////////////////////////////////////////////////
   Phase 10: E-Products Feature Matrix (Enhanced with Images)
/////////////////////////////////////////////////////////// */

.e-products-section {
  padding: 120px 0;
  background: #030303;
  position: relative;
  overflow: hidden;
}

.product-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(127, 174, 66, 0.4);
  transform: translateX(10px);
}

.product-card.active {
  background: rgba(127, 174, 66, 0.05);
  border-color: #7fae42;
}

.product-icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(127, 174, 66, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fae42;
  font-size: 18px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrap {
  background: #7fae42;
  color: #000;
}

.product-card h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.product-card p {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

/* Image Collage Side */
.product-visual-area {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-img {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.img-1 {
  width: 300px !important;
  height: 400px !important;
  top: 0;
  left: 10%;
  z-index: 3;
  transform: rotate(-5deg);
}

.img-2 {
  width: 250px !important;
  height: 350px !important;
  top: 20%;
  right: 5%;
  z-index: 2;
  transform: rotate(8deg);
}

.img-3 {
  width: 280px !important;
  height: 200px !important;
  bottom: 5%;
  left: 20%;
  z-index: 4;
  transform: rotate(3deg);
}

.product-visual-area:hover .collage-img {
  transform: rotate(0) translateY(-20px) scale(1.02);
}

.product-visual-area:hover .img-1 {
  transform: translate(-20px, -20px);
}

.product-visual-area:hover .img-2 {
  transform: translate(20px, 20px);
}

.product-visual-area:hover .img-3 {
  transform: translate(0, 30px);
}

@media (max-width: 991px) {
  .product-visual-area {
    height: 400px;
    margin-top: 50px;
  }

  .img-1 {
    width: 200px;
    height: 280px;
  }

  .img-2 {
    width: 180px;
    height: 240px;
  }

  .img-3 {
    width: 220px;
    height: 160px;
  }
}

.text-gradient {
  background: linear-gradient(90deg, #7fae42, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ///////////////////////////////////////////////////////////
   Phase 11: Contact Section (Micro-Redesign of Original)
/////////////////////////////////////////////////////////// */

.zq_contact-area {
  background: #030303;
  padding: 120px 0;
  position: relative;
}

.zq_contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-shot-img {
  height: 300px;
  margin-left: auto;
}

.contact-shot-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.zq_contact-content .zq_h3_section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
}

.zq_contact-content .zq_h3_section-subtitle {
  color: #7fae42;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.zq_h3_section-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Original Contact Items Refined */
.zq_contact-call {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.zq_contact-call:hover {
  background: rgba(127, 174, 66, 0.05);
  border-color: rgba(127, 174, 66, 0.3);
}

.zq_contact-call-icon {
  width: 45px;
  height: 45px;
  background: #080808;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
}

.zq_contact-call-info a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

/* Original Form Container Refined */


.zq_contact-form-btn {
  background: #7fae42 !important;
  color: #030303 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 22px 40px !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 10px 30px rgba(127, 174, 66, 0.3) !important;
  font-size: 18px !important;
}

.zq_contact-form-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2) !important;
}

.zq_contact-form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.zq_contact-form-btn:hover {
  background: #030303 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
}

.zq_contact-form-btn:hover::before {
  left: 100%;
}

@media (max-width: 991px) {
  .zq_contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .zq_contact-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zq_contact-content {
    padding-right: 0;
  }

  .zq_contact-form-wrap {
    padding: 30px;
  }
}

/* ///////////////////////////////////////////////////////////
   Phase 12: Innovative Bento Testimonial Wall
/////////////////////////////////////////////////////////// */

.zq_h5_testimonial-area {
  background: #030303;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

/* Force Center Title */
.zq_h5_testimonial-area .zq_h3_section-title {
  font-size: 56px;
  margin: 0 auto;
}

.zq_h5_testimonial-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(127, 174, 66, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 24px;
}

.testimonial-bento-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.4;
  filter: grayscale(1);
}

.testimonial-bento-item:hover,
.testimonial-bento-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(127, 174, 66, 0.5);
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.02);
}

.testimonial-bento-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(127, 174, 66, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-bento-item:hover::after,
.testimonial-bento-item.active::after {
  opacity: 1;
}

/* Specific Bento Sizes */
.bento-large {
  grid-column: span 8;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 4;
  grid-row: span 2;
}

.bento-small {
  grid-column: span 4;
  grid-row: span 1;
}

.bento-wide {
  grid-column: span 8;
  grid-row: span 1;
}

.testimonial-bento-img {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  overflow: hidden;
}

.bento-large .testimonial-bento-img {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(127, 174, 66, 0.1), transparent);
  border-color: rgba(127, 174, 66, 0.2);
}

.testimonial-bento-item:hover .testimonial-bento-img,
.testimonial-bento-item.active .testimonial-bento-img {
  border-color: #7fae42;
}

.testimonial-bento-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.testimonial-bento-item:hover .testimonial-bento-img img,
.testimonial-bento-item.active .testimonial-bento-img img {
  opacity: 1;
}

.testimonial-bento-text {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  max-width: 80%;
  transition: all 0.5s ease;
}

.bento-large .testimonial-bento-text {
  font-size: 26px;
  line-height: 1.4;
}

.testimonial-bento-author h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #7fae42;
  margin: 0;
}

.testimonial-bento-author p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.bento-quote-icon {
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 180px;
  color: rgba(127, 174, 66, 0.03);
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1;
  pointer-events: none;
}

/* Scroll to Top Refinement */
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: rgba(127, 174, 66, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(127, 174, 66, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fae42;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover,
.get-quote:hover {
  background: #7fae42;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(127, 174, 66, 0.3);
}

@media (max-width: 1199px) {
  .testimonial-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .testimonial-bento-img{
    position: relative;
    top: 0;
    right: 0;
  }

  .testimonial-bento-text{
    max-width: 100%;
  }

  .testimonial-bento-item{
    justify-content: center;
  }
  
  .bento-large,
  .bento-medium,
  .bento-small,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .testimonial-bento-grid {
    grid-template-columns: 1fr;
  }

}

/* View All Button - PREMIUM REDESIGN */
.testimonial-btn-wrap {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 80px !important;
  position: relative;
  z-index: 10;
}

.zq_btn-view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding: 20px 50px !important;
  background: #7fae42 !important;
  border: 2px solid #7fae42 !important;
  border-radius: 100px !important;
  color: #000 !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1) !important;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(127, 174, 66, 0.2) !important;
}

.zq_btn-view-all:hover {
  background: transparent !important;
  color: #fff !important;
  box-shadow: 0 15px 40px rgba(127, 174, 66, 0.3) !important;
  transform: translateY(-5px) !important;
}

.zq_btn-view-all i {
  font-size: 20px !important;
  transition: transform 0.5s ease !important;
}

.zq_btn-view-all:hover i {
  transform: translateX(8px) !important;
}

/* ///////////////////////////////////////////////////////////
   Phase 13: Digital Marketing & SEO (Accordion Redesign)
/////////////////////////////////////////////////////////// */

.zq_h2_choose-area {
  background: #030303;
  padding: 100px 0;
  position: relative;
}

.zq_h2_choose-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Refined Image (Smaller + Floating) */
.zq_choose-image-container {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.zq_choose-image-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(127, 174, 66, 0.2);
  border-radius: 40px;
  z-index: 0;
  animation: float-around 8s infinite alternate ease-in-out;
}

.zq_h2_choose-img {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zq_h2_choose-img img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.zq_h2_choose-img:hover img {
  transform: scale(1.1);
}

/* Premium Accordion Styling */
.zq_marketing-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zq_accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.zq_accordion-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(127, 174, 66, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zq_accordion-header {
  padding: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.zq_accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.zq_accordion-icon {
  width: 50px;
  height: 50px;
  background: rgba(127, 174, 66, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fae42;
  font-size: 20px;
  transition: all 0.4s ease;
}

.zq_accordion-item.active .zq_accordion-icon {
  background: #7fae42;
  color: #000;
  box-shadow: 0 0 20px rgba(127, 174, 66, 0.4);
}

.zq_accordion-header h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.zq_accordion-item.active .zq_accordion-header h3 {
  color: #7fae42;
}

.zq_accordion-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.zq_accordion-item.active .zq_accordion-arrow {
  transform: rotate(180deg);
  color: #7fae42;
}

.zq_accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  padding: 0 30px;
}

.zq_accordion-item.active .zq_accordion-content {
  max-height: 1000px;
  padding-bottom: 30px;
}

.innerPanel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.feature-list li::before {
  content: "ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢";
  position: absolute;
  left: 0;
  color: #7fae42;
}

.accordion_social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_social li {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.accordion_social li:hover {
  background: #7fae42;
  color: #000;
  transform: translateY(-5px);
}

/* ==========================================================================
   Phase 14: Global Footer Refinement
   ========================================================================== */

/* Locations Grid (Compact) */
.zq_locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.zq_location-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.zq_location-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(127, 174, 66, 0.2);
  transform: translateY(-3px);
}

.zq_location-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.zq_location-box-header img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.zq_location-box-header span {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.zq_location-box-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 12px;
}

.zq_location-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zq_location-meta a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zq_location-meta a i {
  color: #7fae42;
  font-size: 12px;
}

.zq_location-meta a:hover {
  color: #7fae42;
}

@media (max-width: 991px) {
  .zq_locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .zq_locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .zq_h2_choose-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .zq_choose-image-container {
    max-width: 400px;
    order: 2;
  }
}

/* Modified in css/style.css */
.zq_footer-top {
  background: #030303;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.zq_footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../webImages/global_footer_bg.jpg") no-repeat center center;
  background-size: cover !important;
  background-attachment: fixed !important;
  z-index: 0;
  pointer-events: none;
}

.zq_footer-top .container {
  position: relative;
  z-index: 1;
}

.zq_footer-bottom {
  padding: 15px 0;
  background: #8cc63f;
}

.zq_footer-copyright p {
  font-size: 14px;
  color: #fff !important;
}

/* ==========================================================================
   Phase 16: Inner Page Breadcrumb Area (Premium Redesign)
   ========================================================================== */
.zq_breadcrumb-area.redesign-inner-banner {
  background: #030303;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Subtle Ambient Glows */
.banner-glow-1,
.banner-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.banner-glow-1 {
  background: radial-gradient(circle, #7fae42, transparent);
  top: -20%;
  right: -10%;
  animation: glow-float 20s infinite alternate;
}

.banner-glow-2 {
  background: radial-gradient(circle, #0F2923, transparent);
  bottom: -20%;
  left: -10%;
  animation: glow-float 25s infinite alternate-reverse;
}

.banner-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  z-index: 2;
  pointer-events: none;
}

@keyframes glow-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.1);
  }
}

.zq_breadcrumb-area .container {
  position: relative;
  z-index: 5;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 8px 20px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  width: fit-content;
}

.breadcrumb-item {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #7fae42;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

.breadcrumb-item.active {
  color: #7fae42;
}

.zq_breadcrumb-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -3px;
}

.zq_breadcrumb-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 650px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .zq_breadcrumb-area.redesign-inner-banner {
    min-height: 350px;
    padding: 160px 0 60px;
    text-align: center;
  }

  .breadcrumb-list {
    margin: 0 auto 25px;
  }

  .zq_breadcrumb-subtitle {
    margin: 0 auto;
  }
}

/* Products Page Redesign */
.products-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
      rgba(127, 174, 66, 0.15),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(127, 174, 66, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(127, 174, 66, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrapper {
  background: #7fae42;
  transform: scale(1.1) rotate(5deg);
}

.product-card:hover .product-icon-wrapper i {
  color: #fff !important;
}

.product-icon-wrapper img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.product-info h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.product-info p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.premium-dropcap {
  float: left;
  font-size: 5rem;
  line-height: 0.8;
  margin: 5px 25px 0 0;
  color: #7fae42;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-shadow: 0 0 30px rgba(127, 174, 66, 0.4);
}

/* Reset zq_section-area inside product-card to avoid double border/padding */
.product-card .zq_section-area {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
  margin: 0 !important;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7fae42;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover {
  gap: 18px;
}

.product-link:hover svg {
  transform: translateX(5px);
}

.product-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(127, 174, 66, 0.1);
  color: #7fae42;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.products-intro-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-intro-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.products-intro-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .products-intro-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio & Tabs - High Specificity Overrides */
.products-section .tab-links {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 30px !important;
  margin-bottom: 50px !important;
  flex-wrap: wrap !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 8px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative !important;
  z-index: 10 !important;
  border-bottom: none !important;
  overflow: visible !important;
}

.products-section .tab-link::after,
.products-section .tab-link::before {
  display: none !important;
}

.products-section .tab-link {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 12px 25px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  text-align: left !important;
  position: relative !important;
}

.products-section .tab-link i {
  font-size: 18px !important;
  opacity: 0.8 !important;
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  position: static !important;
  transform: none !important;
  color: inherit !important;
}

.products-section .tab-link span {
  display: inline-block !important;
  margin: 0 !important;
  color: inherit !important;
  opacity: 1 !important;
  position: static !important;
  font-weight: 600 !important;
}

.products-section .tab-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.products-section .tab-link.active {
  background: var(--zq-gradient-primary) !important;
  color: #fff !important;
  box-shadow: 0px 0px 20px 5px rgba(127, 174, 66, 0.3) !important;
}


.zq_inner_project-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.zq_inner_project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.zq_inner_project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zq_inner_project-item:hover .zq_inner_project-img img {
  transform: scale(1.1);
}

.zq_inner_project-content {
  padding: 25px;
}

.zq_inner_project-content-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.zq_inner_project-content-title {
  margin-bottom: 0;
}

.zq_inner_project-content-title a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
  line-height: 1.3;
  display: block;
}

.zq_inner_project-content-title a:hover {
  color: var(--zq-primary);
}

.zq_inner_project-content-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.zq_inner_project-item:hover .zq_inner_project-content-btn {
  background: var(--zq-primary);
  transform: rotate(-45deg);
}

.zq_inner_project-item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .products-section .tab-links {
    border-radius: 30px !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 10px !important;
    gap: 5px !important;
  }

  .products-section .tab-link {
    padding: 8px 15px !important;
    font-size: 13px !important;
  }
}

/* Reversing 'Explore More' buttons in content areas */
.zq_h3_choose-content-bottom .zq_theme-btn,
.zq_h4_choose-content-bottom .zq_theme-btn {
  background: #7fae42 !important;
  color: #000 !important;
  border: 2px solid #7fae42 !important;
  transition: all 0.4s ease !important;
}

.zq_h3_choose-content-bottom .zq_theme-btn:hover,
.zq_h4_choose-content-bottom .zq_theme-btn:hover {
  background: transparent !important;
  color: #7fae42 !important;
}

.zq_h3_choose-content-bottom .zq_theme-btn::before,
.zq_h3_choose-content-bottom .zq_theme-btn::after,
.zq_h4_choose-content-bottom .zq_theme-btn::before,
.zq_h4_choose-content-bottom .zq_theme-btn::after {
  display: none !important;
}


/* ///////////////////////////////////////////////////////////
   Phase 11: Premium Contact Form Redesign
/////////////////////////////////////////////////////////// */

.zq_contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 40px !important;
  padding: 30px !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6) !important;
}

.zq_contact-form h3 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: 32px !important;
  color: #fff !important;
  margin-bottom: 40px !important;
}

.zq_contact-form input[type='text'],
.zq_contact-form input[type='email'],
.zq_contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 0 25px !important;
  height: 60px !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  margin-bottom: 20px !important;
}

.zq_contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.zq_contact-form input:focus,
.zq_contact-form textarea:focus {
  background: rgba(127, 174, 66, 0.05) !important;
  border-color: rgba(127, 174, 66, 0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(127, 174, 66, 0.1) !important;
}

.zq_contact-form .nice-select {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  height: 60px !important;
  line-height: 58px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  width: 100% !important;
  margin-bottom: 20px !important;
  font-family: 'Outfit', sans-serif !important;
}

.zq_contact-form .nice-select .list {
  background: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
  padding: 10px 0 !important;
}

.zq_contact-form .nice-select .option {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 10px 25px !important;
  font-size: 15px !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.zq_contact-form .nice-select .option:hover,
.zq_contact-form .nice-select .option.selected.focus {
  background: transparent !important;
  color: #7fae42 !important;
}

/* Phone Input (intlTelInput) Refinements */
.iti {
  width: 100% !important;
  margin-bottom: 20px !important;
}

.iti input {
  margin-bottom: 0 !important;
  padding-left: 60px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  height: 60px !important;
  color: #fff !important;
}

.iti__flag-container {
  padding: 2px !important;
}

.iti__selected-flag {
  background: transparent !important;
  padding-left: 20px !important;
  box-shadow: none !important;
  border: none !important;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent !important;
}

.iti__country-list {
  background: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
  color: #fff !important;
}

.iti__country {
  padding: 10px 15px !important;
}

.iti__country:hover {
  background: transparent !important;
  color: #7fae42 !important;
}

.zq_contact-form label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.services-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px !important;
  margin: 15px 0;
}

.services-checkboxes label {
  position: relative;
  padding: 6px 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 100px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  user-select: none !important;
}

.services-checkboxes label:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(127, 174, 66, 0.3) !important;
  color: #fff !important;
}

.services-checkboxes input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.services-checkboxes label:has(input:checked) {
  background: #7fae42 !important;
  border-color: #7fae42 !important;
  color: #000 !important;
  font-weight: 700 !important;
  box-shadow: 0px 0px 25px 5px rgba(127, 174, 66, 0.4) !important;
  transform: translateY(-2px);
}

.form_info label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 20px;
}

.form_info label a {
  color: #7fae42 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(127, 174, 66, 0.3);
  transition: all 0.3s ease;
}

.form_info label a:hover {
  border-bottom-color: #7fae42;
  color: #fff !important;
}

@media (max-width: 768px) {
  .zq_contact-form {
    padding: 30px;
  }

  .services-checkboxes label {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }
}

/* Refinements for Form Labels and External Plugins */
.services-label-wrap label {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.services-label-wrap label span {
  color: #ff4a4a !important;
      font-weight: 800;
}

.whatsapp-link {
  color: #7fae42 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.whatsapp-link:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* intlTelInput Premium Integration */
.intl-tel-input {
  width: 100% !important;
}

.intl-tel-input input {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 60px !important;
  line-height: 56px !important;
}

.intl-tel-input .selected-flag {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px 0 0 20px !important;
  padding-left: 15px !important;
  height: 60px;
}

.intl-tel-input .country-list {
  background: #111 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  margin-top: 10px !important;
  padding: 10px !important;
}

.intl-tel-input .country-list .country {
  padding: 10px 15px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.intl-tel-input .country-list .country:hover {
  background: rgba(127, 174, 66, 0.1) !important;
}

.intl-tel-input .country-list .country.highlight {
  background: rgba(127, 174, 66, 0.2) !important;
}

/* ///////////////////////////////////////////////////////////
   Phase 13: FAQ Image & Container Refinement
/////////////////////////////////////////////////////////// */

.zq_choose-image-container {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zq_h2_choose-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.zq_h2_choose-img img {
  max-width: 100%;
  max-height: 750px;
  object-fit: contain;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.zq_choose-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(127, 174, 66, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Phase 15: Global Dark Theme For Inner Pages
   ========================================================================== */

body {
  background-color: #030303 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Base Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff !important;
}

/* Common Inner Page Wrappers */
.products-section,
.zq_service_details-area,
.zq_inner_faq-area,
.zq_service_details_2-area,
.zq_about-area,
.zq_contact-area {
  background-color: transparent !important;
  /* Let body bg show through */
}

/* Generic text classes from old theme */
.zq_section-title,
.zq_section-subtitle,
.zq_breadcrumb-title,
.h2,
.h3,
.h4 {
  color: #ffffff !important;
}

.zq_section-text,
p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Lists and inner text */
.zq_service_details_2-list li,
.feature-list li {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Apply Glassmorphism to old cards (like in about.php) */
.innerpage_new .product-card,
.products-section .product-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px;
}

/* Custom Accordion overrides for Inner Pages */
.custom-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #7fae42 !important;
  background: rgba(127, 174, 66, 0.05) !important;
}

.custom-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   Phase 17: "Show All" Testimonial Grid (About Page)
   ========================================================================== */

.testimonial-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.testimonial-all-grid .testimonial-bento-item {
  /* Override the fixed heights from the Bento version to let content dictate height */
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  height: 100%;
  padding-top: 130px;
  /* Ensure space at top for absolute image */
}

.testimonial-all-grid .testimonial-bento-text {
  max-width: 100%;
}

/* Global Utility Overrides */
.text-primary {
  color: #7fae42 !important;
}

/* ==========================================================================
   Phase 21: Careers / HR Form Redesign
   ========================================================================== */

.hr-form .product-card {
  overflow: visible !important;
  z-index: 1;
}

.hr-form .product-card:hover,
.hr-form .product-card:focus-within {
  z-index: 10;
}

/* Input Fields */
.hr-form input[type="text"],
.hr-form input[type="email"],
.hr-form input[type="date"],
.hr-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  padding: 16px 20px;
  width: 100%;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
}

.hr-form input::placeholder,
.hr-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hr-form input:focus,
.hr-form textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #7fae42;
  box-shadow: 0 0 15px rgba(127, 174, 66, 0.2);
  outline: none;
}

/* Nice Select Dropdowns Dark Mode Override */
.hr-form .nice-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  height: 56px;
  line-height: 54px;
  padding-left: 20px;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.hr-form .nice-select:focus,
.hr-form .nice-select.open {
  border-color: #7fae42;
  box-shadow: 0 0 15px rgba(127, 174, 66, 0.2);
}

.hr-form .nice-select .current {
  color: rgba(255, 255, 255, 0.7);
}

.hr-form .nice-select .list {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
}

.hr-form .nice-select .option {
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.hr-form .nice-select .option:hover,
.hr-form .nice-select .option.focus,
.hr-form .nice-select .option.selected.focus {
  background: rgba(127, 174, 66, 0.1);
  color: #7fae42;
}

/* Pill Checkboxes for Social Media */
.social-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-checkbox {
  position: relative;
}

.pill-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.pill-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  /* Pill shape */
  color: rgba(255, 255, 255, 0.7);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.pill-checkbox input[type="checkbox"]:checked+label {
  background: rgba(127, 174, 66, 0.15);
  border-color: #7fae42;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(127, 174, 66, 0.15);
  transform: translateY(-2px);
}

.pill-checkbox:hover label {
  border-color: rgba(127, 174, 66, 0.5);
}

/* Premium Dropzone */
.premium-dropzone .file-upload-box {
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.premium-dropzone .file-upload-box:hover {
  background: rgba(127, 174, 66, 0.05);
  border-color: #7fae42;
}

.premium-dropzone .file-upload-input {
  display: none;
}

.premium-dropzone .upload-icon {
  transition: transform 0.3s ease;
}

.premium-dropzone .file-upload-box:hover .upload-icon {
  transform: translateY(-5px);
}

/* ==========================================================================
   Phase 22: Portfolio Cards Redesign
   ========================================================================== */

.products-section .tab-content .row {
  row-gap: 35px;
}

.zq_inner_project-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  height: 100% !important;
}

.zq_inner_project-item:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 174, 66, 0.5) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(127, 174, 66, 0.15) !important;
}

.zq_inner_project-content {
  padding: 30px 25px !important;
}

.zq_inner_project-content-title a {
  font-family: 'Outfit', sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}

.zq_inner_project-item:hover .zq_inner_project-content-title a {
  background: linear-gradient(90deg, #7fae42, #a8d56a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.zq_inner_project-content-btn {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  font-size: 18px !important;
}

.zq_inner_project-item p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 0 !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

/* ==========================================================================
   Phase 23: Mega Menu Scroll Fix
   ========================================================================== */

.zq_h3_header-menu .mega_menu {
  max-height: 75vh !important;
  overflow-y: auto !important;
  padding-bottom: 20px !important;
}

/* Premium Custom Scrollbar for Mega Menu */
.zq_h3_header-menu .mega_menu::-webkit-scrollbar {
  width: 6px;
}

.zq_h3_header-menu .mega_menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.zq_h3_header-menu .mega_menu::-webkit-scrollbar-thumb {
  background: rgba(127, 174, 66, 0.5);
  border-radius: 10px;
}

.zq_h3_header-menu .mega_menu::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 174, 66, 0.8);
}

/* ==========================================================================
   Phase 24: Inner Pages Premium Text Blocks (AI, Services, etc.)
   ========================================================================== */

.zq_service_details-area .zq_section-area {
  max-width: 1100px;
  margin: 1rem auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border-radius: 30px;
  padding: 60px 80px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  position: relative;
  text-align: left !important;
  overflow: hidden;
}

/* Subtle corner glow accent */
.zq_service_details-area .zq_section-area::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(127, 174, 66, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.zq_service_details-area .zq_section-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(127, 174, 66, 0.6), transparent);
  z-index: 1;
}

.zq_service_details-area .zq_section-area h2,
.zq_service_details-area .zq_section-area h3 {
  position: relative;
  z-index: 2;
  text-align: left !important;
  margin-bottom: 30px !important;
  color: #fff !important;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}

.zq_service_details-area .zq_section-text {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

/* Commented out to prevent conflict with premium-dropcap span 
.zq_service_details-area .zq_section-text:first-of-type::first-letter {
  font-size: 65px;
  float: left;
  line-height: 0.7;
  padding-right: 18px;
  padding-top: 10px;
  color: #7fae42;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(127, 174, 66, 0.3);
}
*/

@media (max-width: 768px) {
  .zq_service_details-area .zq_section-area {
    padding: 40px 30px !important;
    border-radius: 20px;
  }

  .zq_service_details-area .zq_section-text {
    font-size: 16px !important;
    text-align: left !important;
  }
}



/* ==========================================================================
   Phase 25: Premium Process & CTA Components
   Redesigning standard lists and boxes into high-end editorial components
   ========================================================================== */

/* Premium Process Section */
.premium-process-wrap {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  width: 100%;
}

.premium-process-title {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: 36px !important;
  margin-bottom: 45px !important;
  color: #fff !important;
  letter-spacing: -1px;
}

.premium-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 24px !important;
  padding: 35px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 25px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(20px) !important;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(127, 174, 66, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(127, 174, 66, 0.4) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

.process-card:hover::before {
  opacity: 1;
}

.process-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #7fae42;
  background: rgba(127, 174, 66, 0.1);
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(127, 174, 66, 0.2);
  transition: all 0.4s ease;
}

.process-card:hover .process-number {
  background: #7fae42;
  color: #000;
  transform: rotate(-10deg) scale(1.1);
}

.process-info strong,
.process-content h5 {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 22px !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.5px;
}

.process-info p,
.process-content p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

/* Premium CTA Section */
.premium-cta-box {
  background: linear-gradient(135deg, #0d2a1a 0%, #050505 100%) !important;
  border-radius: 40px !important;
  padding: 100px 60px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 100px !important;
  margin-bottom: 40px !important;
  border: 1px solid rgba(127, 174, 66, 0.15) !important;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6) !important;
}

.premium-cta-box::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(127, 174, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 850px !important;
  margin: 0 auto !important;
}

.cta-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: 48px !important;
  color: #fff !important;
  margin-bottom: 30px !important;
  letter-spacing: -2px !important;
  line-height: 1.1 !important;
}

.cta-content p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 20px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8 !important;
  margin-bottom: 45px !important;
}

.premium-cta-box .zq_theme-btn {
  background: #7fae42 !important;
  color: #000 !important;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 900 !important;
  padding: 22px 50px !important;
  border-radius: 100px !important;
  font-size: 20px !important;
  text-transform: none !important;
  box-shadow: 0 15px 40px rgba(127, 174, 66, 0.4) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-block !important;
  line-height: .6;
}

.premium-cta-box .zq_theme-btn:hover {
  transform: translateY(-5px) scale(1.02) !important;
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 991px) {
  .premium-process-grid {
    grid-template-columns: 1fr !important;
  }

  .premium-cta-box {
    padding: 80px 30px !important;
    border-radius: 30px !important;
  }

  .cta-content h3 {
    font-size: 36px !important;
  }

  .cta-content p {
    font-size: 18px !important;
  }
}

/* Modernizing Legacy Inner Page Elements */
.innerpage_new ul li {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-left: 4px solid #7fae42 !important;
  padding: 20px 25px !important;
  margin-bottom: 15px !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 17px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px);
  list-style: none !important;
  position: relative;
  overflow: hidden;
}

.innerpage_new ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(127, 174, 66, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.innerpage_new ul li:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(127, 174, 66, 0.3) !important;
  transform: translateX(10px) !important;
  color: #fff !important;
}

.innerpage_new ul li:hover::before {
  opacity: 1;
}

.innerpage_new .tech-box,
.innerpage_new .highlight-box {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-left: 4px solid #7fae42 !important;
  padding: 35px !important;
  border-radius: 24px !important;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease !important;
  margin-bottom: 30px !important;
}

.innerpage_new .tech-box:hover,
.innerpage_new .highlight-box:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(127, 174, 66, 0.4) !important;
  transform: translateY(-5px) !important;
}

.innerpage_new .tech-box h3,
.innerpage_new .highlight-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 20px !important;
  font-size: 24px !important;
}

.innerpage_new .circle-box {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  margin: 50px 0 !important;
}

.innerpage_new .circle {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(127, 174, 66, 0.2) !important;
  border-radius: 0 !important;
  padding: 0 0 0 25px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'Outfit', sans-serif !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  backdrop-filter: none !important;
}

.innerpage_new .circle strong {
  color: #7fae42 !important;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  display: block !important;
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
}


.innerpage_new .circle:hover {
  border-left-color: rgba(127, 174, 66, 1) !important;
  padding-left: 35px !important;
  background: rgba(127, 174, 66, 0.03) !important;
}

.innerpage_new .highlight {
  background: rgba(127, 174, 66, 0.08) !important;
  border: 1px solid rgba(127, 174, 66, 0.2) !important;
  padding: 30px !important;
  border-radius: 20px !important;
  margin: 30px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px);
}

.innerpage_new .highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(127, 174, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.innerpage_new .highlight p {
  color: #fff !important;
  font-size: 19px !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.innerpage_new .highlight p strong {
  color: #7fae42 !important;
}

.form-popup .product-card {
  height: auto;
}

.form-popup #closeFormPopup1 {
  justify-content: center;
}

.accordion-button::after {
  filter: invert(1);
}

.our_reviews img.img-fluid{
  height: auto !important;
}
.zq_footer-widget-social a {
  background: #7fae42 !important;
  color: #ffffff !important;
  border-color: #7fae42 !important;
} 

.zq_footer-widget-social a:hover {
  color: #1a1a1a !important;
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.zq_footer-widget-social a:hover .newicn {
  filter: invert(1) !important;
}

@media (max-width: 500px) {
  .product-matrix-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.red-alert {
    color: red;
    font-weight: 800;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    display: none;
}