/*
 Theme Name: BlueHopper
 Theme URI: https://www.bluehopper.com
 Author: Hardik Savaliya
 Description: Custom high-performance dark theme for BlueHopper with white and blue accents.
 Version: 1.0.0
 License: GNU General Public License v2 or later
 Text Domain: bluehopper
*/






:root {
  --bg-color: #03050a;
  /* True deep black/blue luxury */
  --surface-color: rgba(10, 14, 25, 0.7);
  --surface-hover: rgba(18, 25, 45, 0.9);
  /* --primary-glow: #d4af37; */
  --primary-glow: #0194dc;
  /* Warm luxury gold */
  /* --secondary-glow: #00e5ff; */
  --secondary-glow: #01e7ff;
  /* Tech smart blue */
  --warm-glow: rgba(212, 175, 55, 0.15);
  /* Soft gold ambient */
  --text-primary: #ffffff;
  --text-secondary: #a0aabf;
  --font-main: "Outfit", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
}

/* bootstrap initials */

.text-primary-glow {
  color: #0194dc;
}

.text-secondary-glow {
  color: #01e7ff;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.bg-dark {
  background-color: #03050a;
}

.gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LEFT */
.animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}
.animate-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* RIGHT */
.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease;
}
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* TOP */
.animate-top {
  opacity: 0;
  transform: translateY(-80px);
  transition: all 1s ease;
}
.animate-top.active {
  opacity: 1;
  transform: translateY(0);
}

/* BOTTOM */
.animate-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}
.animate-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*html {*/
/*  scroll-behavior: smooth;*/
/*}*/

/*body {*/
/*  font-family: var(--font-main);*/
/*  background-color: var(--bg-color);*/
/*  color: var(--text-primary);*/
/*  line-height: 1.6;*/
/*  overflow-x: hidden;*/
/*  overflow-y: auto;*/
/*}*/

/* Background Effects */
.bg-glow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  /* overflow-y: auto;/ */
}

.bg-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(
    circle,
    var(--warm-glow) 0%,
    rgba(3, 5, 10, 0) 60%
  );
  top: -20vh;
  right: -20vw;
}

.bg-glow-smart {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.08) 0%,
    rgba(3, 5, 10, 0) 60%
  );
  bottom: -15vh;
  left: -15vw;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  /* font-size: clamp(3rem, 6vw, 5.5rem); */
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

h2 {
  /* font-size: clamp(2rem, 4vw, 3.5rem); */
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  color: #ffffff;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--primary-glow);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--primary-glow);
}

.section-subtitle {
  text-align: center;
  color: white;
  max-width: 600px;
  margin: -2rem auto 4rem;
  font-size: 1.1rem;
}

a {
  text-decoration: none !important;
}

ul {
  margin-bottom: 0;
  padding-left: 0px !important;
}

/* Layout Utilities */
section {
  padding: 4rem 5%;
  position: relative;
  background: #000;
  color: #ffffff;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.first-btn {
  display: inline-block;
  /* margin-top: 20px; */
  padding: 14px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-glow) 0%,
    var(--secondary-glow) 100%
  );
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: var(--transition);
  outline: none;
}

.first-btn:hover {
  box-shadow: 0 0 25px var(--secondary-glow);
  transform: translateY(-3px);
}

.second-btn {
  /* margin-top: 20px; */
  padding: 14px 30px;
  border: 2px solid var(--primary-glow);
  color: var(--primary-glow);
  background: transparent;
  border-radius: 25px;
  transition: var(--transition);
}

.second-btn:hover {
  background: var(--primary-glow);
  color: #fff;
}

.btn-primary {
  background: var(--primary-glow);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: #ffdb58;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary-glow);
  color: var(--primary-glow);
  transform: translateY(-3px);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-text-span {
  color: var(--primary-glow);
}

.secondary-text-span {
  color: var(--secondary-glow);
}

/* ════════════════════════════════
   Top Header Bar
════════════════════════════════ */
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #020306;
  border-bottom: 1px solid var(--secondary-glow);
  z-index: 1002;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.top-socials {
  display: flex;
  gap: 1.5rem;
}

.top-socials a {
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-socials a:hover {
  color: var(--primary-glow);
}

/* ════════════════════════════════
   Navbar
════════════════════════════════ */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #000;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

/* LOGO */

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-icon-img {
  height: 50px;
  width: 150px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .logo-icon-img {
    height: 35px;
    width: 130px;
  }
}

/* NAV LINKS */

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--secondary-glow);
}

.nav-link:focus {
  color: var(--secondary-glow) !important;
}

.dropdown-item:hover {
  background-color: transparent !important;
}

/* QUOTE BUTTON */

.quote-btn {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--primary-glow);
  color: var(--primary-glow);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.quote-btn:hover {
  box-shadow: 0 0 25px var(--secondary-glow);
  background: var(--primary-glow);
  color: #fff;
}

/* DROPDOWN ARROW */

.nav-trigger::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 4px;
}

/* REMOVE BOOTSTRAP DEFAULT ARROW */

.dropdown-toggle::after {
  display: none;
}

/* MAIN DROPDOWN */

.dropdown,
.mega-dropdown {
  padding: 14px 0;
}

.dropdown-menu {
  background-color: #000 !important;
  min-width: 200px;
  border-top: 2px solid var(--secondary-glow) !important;
  border-bottom: 2px solid var(--secondary-glow) !important;
  border-radius: 12px;
  top: 50px;
}

.dropdown-menu li {
  padding: 5px 0;
}

.dropdown-menu.show li:hover {
  color: var(--primary-glow);
  background-color: #000 !important;
}

.dropdown-item {
  color: white;
  padding: 8px 20px;
  background: transparent;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--secondary-glow);
}

/* SUBMENU */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 0;
  background: #000;

  border-top: 2px solid var(--secondary-glow);
  border-bottom: 2px solid var(--secondary-glow);
  border-radius: 12px;
}

/* SHOW SUBMENU ON HOVER */

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-dp-menu {
  display: block;
}

/* ════════════════════════════════
   MEGA MENU
════════════════════════════════ */

.mega-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-33%);
  background: #000;

  display: flex;
  gap: 60px;
  padding: 30px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;

  border-top: 2px solid var(--secondary-glow);
  border-bottom: 2px solid var(--secondary-glow);

  border-radius: 30px;
}

.nav-trigger {
  padding: 30px 0;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* MEGA ITEMS */

.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  width: 135px;
  color: #333;
  text-decoration: none;
}

.mega-item img {
  width: 150px;
  height: 80px;
  margin-bottom: 8px;
  object-fit: cover;

  box-shadow: 0px 0px 20px var(--secondary-glow);
}

/* MOBILE BUTTON */

.mobile-btn {
  display: none;

  background: none;
  border: none;

  font-size: 20px;
  cursor: pointer;

  color: var(--primary-glow);

  border: 2px solid var(--primary-glow);
  border-radius: 5px;

  padding: 1px 5px 3px;
  margin-right: 10px;
}

/* ════════════════════════════════
   MOBILE
════════════════════════════════ */

@media (max-width: 1024px) {
  /* --- 1. Header & Button --- */
  .top-header {
    display: none;
  }

  .navbar {
    padding: 13px;
  }

  .mobile-btn {
    display: block;
    font-size: 22px;
  }

  /* --- 2. Main Navigation Overlay --- */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease-in-out;
    overflow-y: auto;
    padding-bottom: 80px;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #222;
  }

  .nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    width: 100%;
    color: #fff;
  }

  /* --- 3. Dropdowns & Submenus --- */
  /* Hidden state reset */
  .dropdown-menu,
  .mega-menu {
    display: none !important; /* Managed by JS .show */
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #111 !important; /* Slightly lighter for depth */
    border: none !important;
    border-left: 3px solid var(--primary-glow) !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* Display when .show class is added via JS */
  .dropdown.show > .dropdown-menu,
  .submenu.show > .dropdown-menu,
  .mega-dropdown.show .mega-menu {
    display: block !important;
  }

  /* Mega Menu Specific Mobile Layout */
  .mega-dropdown.show .mega-menu {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 20px !important;
  }

  .mega-item {
    flex-direction: row !important;
    align-items: center;
    text-align: left;
    gap: 15px;
    width: 100%;
    padding: 8px 0;
  }

  .mega-item img {
    display: none; /* Recommended for cleaner mobile UI */
  }

  /* Nested Submenu Distinctions */
  .submenu .dropdown-menu {
    background: #1a1a1a !important; /* Even lighter for 3rd level */
    margin-left: 10px !important;
  }

  .dropdown-item {
    padding: 12px 30px !important;
  }

  /* --- 4. Font Awesome Icon Rotation --- */
  .nav-trigger i,
  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .show > a .fa-chevron-down,
  .show > a .fa-chevron-right {
    transform: rotate(180deg);
  }
}

/* ════════════════════════════════
   Hero Carousel Section
════════════════════════════════ */

.lighting-hero {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

/* SWIPER */

.lightingHeroSwiper {
  width: 100%;
  height: 100%;
}

.lightingHeroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* IMAGE */

.lighting-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6s linear;
}

/* zoom animation */

.lightingHeroSwiper .swiper-slide-active .lighting-hero-img {
  transform: scale(1);
}

/* overlay */

.lighting-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.45)
  );
}

/* NAVIGATION */

.lightingHeroSwiper .swiper-button-prev,
.lightingHeroSwiper .swiper-button-next {
  color: white;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.lightingHeroSwiper .swiper-button-prev::after,
.lightingHeroSwiper .swiper-button-next::after {
  font-size: 18px;
}

/* DOTS */

.lightingHeroSwiper .swiper-pagination {
  bottom: 25px !important;
}

.lightingHeroSwiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.lightingHeroSwiper .swiper-pagination-bullet-active {
  background: var(--secondary-glow);
  opacity: 1;
  transform: scale(1.2);
}

/* LAPTOP */

@media (max-width: 1200px) {
  .lighting-hero {
    height: 70vh;
  }
}

/* TABLET */

@media (max-width: 992px) {
  .lighting-hero {
    height: 65vh;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .lighting-hero {
    height: 45vh;
  }

  .lightingHeroSwiper .swiper-button-prev,
  .lightingHeroSwiper .swiper-button-next {
    display: none;
  }

  .lightingHeroSwiper .swiper-pagination {
    bottom: 15px !important;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .lighting-hero {
    height: 35vh;
  }

  .lighting-hero-img {
    object-position: center;
  }

  .lightingHeroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* ════════════════════════════════
   About Section
════════════════════════════════ */

.about-section {
  background: #0a0a0a;
}

/* image */

.about-image img {
  width: 100%;
  height: 550px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0px 0px 20px var(--secondary-glow);
}

/* text */

.about-content h2 {
  margin-bottom: 20px;
}

.about-text {
  color: #b8b8b8;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* features */

.feature-item {
  background: #111;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #ddd;
}

/* mobile heading */

.mobile-h2 {
  display: none;
  margin-bottom: 20px;
}

/* responsive */

@media (max-width: 991px) {
  .about-image img {
    height: auto;
  }

  .about-content h2 {
    display: none;
  }

  .mobile-h2 {
    display: block;
  }
}

/* Button Glow Pulse logic */
.btn.cta-glow {
  position: relative;
  /* overflow: hidden; */
}

.btn.cta-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(45deg);
  animation: buttonShine 4s infinite linear;
  pointer-events: none;
}

@keyframes buttonShine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Navigation Arrows and Dots */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary-glow);
  color: var(--bg-color);
  border-color: var(--primary-glow);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.prev-btn {
  left: 3%;
}

.next-btn {
  right: 3%;
}

.slider-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .dot {
    display: none;
  }
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: transparent;
  border-color: var(--primary-glow);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.dot.active::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--primary-glow);
  border-radius: 50%;
}

/* ════════════════════════════════
   Floating Particles wrapper
════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow:
    0 0 8px #fff,
    0 0 15px var(--primary-glow);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(0);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
    transform: translateY(-30px) scale(1);
  }

  80% {
    opacity: 0.4;
    transform: translateY(-120px) scale(1);
  }

  100% {
    transform: translateY(-150px) scale(0);
    opacity: 0;
  }
}

/* ════════════════════════════════
   Generic Cards used in Services & Porfolio
════════════════════════════════ */

.card {
  background: var(--surface-color);
  border: var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  background: var(--surface-hover);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
  box-shadow: 0px 0px 20px var(--secondary-glow);
}

.card:hover .card-img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(
    to top,
    var(--bg-color) 0%,
    rgba(3, 5, 10, 0) 100%
  ); */
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  color: var(--primary-glow);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 0.8rem;
  color: var(--secondary-glow);
}

@media (max-width: 767px) {
  .card-title {
    font-size: 1.5rem;
  }
}

/* Smart controller card glow override */
.card.smart-card:hover {
  /* border-color: rgba(0, 229, 255, 0.4); */
  /* box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(0, 229, 255, 0.15); */
}

/* .card.smart-card .card-link {
  color: var(--secondary-glow);
} */

/* ════════════════════════════════
   Project Gallery (Filterable)
════════════════════════════════ */
.gallery-section {
  padding: 100px 20px;
  background: #05070d;
}

.gallery-title {
  text-align: center;
  font-size: 48px;
  color: #fff;
  margin-bottom: 40px;
}

.gallery-title span {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-glow);
  color: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0px 0px 20px var(--secondary-glow) !important;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.gallery-overlay h4 {
  color: var(--primary-glow);
  margin-bottom: 6px;
  text-shadow: 0 0 10px #fff;
}

.gallery-item.hide {
  display: none;
}

.gallery-dropdown {
  display: none;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-dropdown select {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #0c1222;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-filters {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .gallery-dropdown {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 38px;
  }
}

/* ════════════════════════════════
   Video Showcase
════════════════════════════════ */

.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px var(--secondary-glow);
}

.video-showcase h2,
.video-showcase p {
  padding: 10px;
}

/* ════════════════════════════════
   Before After Section
════════════════════════════════ */

.before-after-section {
  overflow: hidden;
}

.subtitle {
  color: var(--text-secondary);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  border-radius: 10px;
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before,
.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.after {
  clip-path: inset(0 0 0 50%);
}

.handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
  z-index: 5;
}

.handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  cursor: ew-resize;
}

.label {
  position: absolute;
  top: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--primary-glow);
  border-radius: 5px;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.ba-slider,
.ba-slider * {
  user-select: none;
}

/* Responsive heights */

@media (max-width: 992px) {
  .ba-slider {
    height: 65vh;
  }
}

@media (max-width: 576px) {
  .ba-slider {
    height: 45vh;
  }
}

/* ════════════════════════════════
   Smart Lighting
════════════════════════════════ */

.smart-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.smart-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.smart-features li::before {
  content: "✓";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--secondary-glow);
  color: var(--secondary-glow);
  border-radius: 50%;
  font-size: 0.8rem;
}

.smart-image-wrap img {
  border: var(--border-subtle);
  box-shadow: 0 0 20px var(--secondary-glow);
}

.glow-tech {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
}

/* ════════════════════════════════
   Why Choose Us
════════════════════════════════ */

.reason-card {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 15px;
  border: var(--border-subtle);
  border-color: var(--primary-glow);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-glow);
}

.reason-card-p {
  color: var(--text-secondary);
}

.reason-icon {
  font-size: 2.5rem;
  color: #ffffff;
  display: inline-block;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  margin-bottom: 10px;
}

.reason-card:hover .reason-icon {
  color: var(--secondary-glow);
}

/* ════════════════════════════════
   Testimonials
════════════════════════════════ */
.testimonials {
  background: #080b15;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testi-card {
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 20px;
  border: var(--border-subtle);
}

.stars {
  color: gold;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.testi-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  height: 120px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .testi-card {
    padding: 1rem;
  }
}

/* ════════════════════════════════
   talk to your light section
════════════════════════════════ */

.talk-to-light {
  padding: 100px 20px;
  background: #05070d;
  text-align: center;
}

.talk-container {
  max-width: 1400px;
  margin: auto;
}

.talk-title span {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GIF */

.talk-gif img {
  width: 100%;
  max-width: 100vw;
  /* border-radius: 16px; */
  display: block;
  margin: auto;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  object-fit: contain;
}

/* Tablet */

@media (max-width: 1024px) {
  .talk-title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .talk-to-light {
    padding: 70px 16px;
  }

  .talk-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* ════════════════════════════════
   finance section
════════════════════════════════ */
/* finance section minimal css */

.finance-section {
  background: #000;
}

.finance-image {
  background: url("https://www.bluehopper.com/wp-content/uploads/2024/01/coins-stack-with-light-bulb-jar-scaled.jpg")
    center/cover no-repeat;
  min-height: 350px;
  position: relative;
}

.finance-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
}

.finance-overlay {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.finance-btn:hover {
  transform: translateY(-2px);
}

/* ════════════════════════════════
   meshtek section
════════════════════════════════ */
/* meshtek section minimal css */

.meshtek-section {
  background: #000;
}

.meshtek-image img {
  border-radius: 25px;
  box-shadow: 0 0 20px var(--secondary-glow);
}

.meshtek-gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.meshtek-btn-primary {
  background: #1f8fd3;
  color: #fff;
}

.meshtek-btn-primary:hover {
  background: #0e6eb5;
}

/* ════════════════════════════════
   award tech section
════════════════════════════════ */
/* award tech minimal css */

.award-tech-section {
  background: #000;
  color: #fff;
}

.award-gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.award-gallery img {
  border-radius: 25px;
  box-shadow: 0 0 20px var(--secondary-glow);
}

.award-logo img {
  height: 120px;
  opacity: 0.85;
}

/* ════════════════════════════════
   footer
════════════════════════════════ */
.footer {
  background: #000;
  padding: 70px 20px 40px;
  color: #fff;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-address {
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer-email,
.footer-phone {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: var(--primary-glow);
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--primary-glow);
}

/* Social Icons */

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
}

.fb {
  background: #3b5998;
}
.ig {
  background: #e4405f;
}
.li {
  background: #0077b5;
}
.x {
  background: #000;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================
   Signature Lighting Showcase (NEW)
   ========================================================== */
.signature-showcase {
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center !important;
  color: white;
}

.section-subtitle {
  opacity: 0.7;
  margin-bottom: 60px;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.sig-item {
  width: 320px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.sig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sig-item:hover img {
  transform: scale(1.1);
}

.sig-item:hover {
  box-shadow: 0px 0px 20px var(--secondary-glow);
}

/* .title-h2 {
  text-align: center !important;
  width: 100%;
  font-weight: 800 !important;
} */

.sig-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  font-size: 14px;
}

/* TOP MOVES LEFT → RIGHT */
.carousel-top .carousel-track {
  animation: scrollRight 40s linear infinite;
}

/* BOTTOM MOVES RIGHT → LEFT */
.carousel-bottom .carousel-track {
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* responsive */

@media (max-width: 768px) {
  .sig-item {
    width: 250px;
    height: 170px;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }

  .hero-desc {
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  .grid-2,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-wrapper {
    padding: 2.5rem;
  }

  .smart-content h2,
  .smart-content h2::after {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .gallery-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.8rem;
    border-radius: 8px;
  }

  section {
    padding: 3rem 5%;
  }

  .card-img {
    height: 220px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  /* Timeline refinement for tablet/mobile */
  .process-timeline::before {
    display: none;
  }

  .step {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .process-timeline {
    flex-direction: column;
    gap: 0;
  }
}

.navbar.scrolled {
  top: 0;
}

@media (max-width: 768px) {
  .navbar {
    padding: 5px 5px 5px 10px;
    top: 0;
  }

  .navbar.scrolled {
    padding: 10px;
  }

  .nav-links.open {
    clip-path: circle(150% at 100% 0);
  }

  /* .mobile-btn {
    display: block;
  } */

  /* ════════════════════════════════
   Hero adjust
════════════════════════════════ */
  .hero-slide {
    padding-top: 15vh;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn {
    text-align: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
  }

  .slider-dots {
    bottom: 10%;
  }

  .slider-btn {
    display: none;
    /* Hide arrows on small mobile, rely on swipe */
  }

  /* Grid adjusts */
  .card-grid,
  .reason-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }

  /* Utilities */
  h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  section {
    padding: 2rem 5%;
  }

  .contact-wrapper {
    padding: 1.5rem;
  }

  /* Smart lighting adjust */
  .smart-features li {
    font-size: 0.95rem;
    align-items: start;
    display: grid;
    grid-template-columns: 0.2fr 1.5fr 1.7fr;
    justify-content: start;
  }

  .smart-features li::before {
    margin-top: 3px;
    flex-shrink: 0;
  }
}

/* ════════════════════════════════
   LIGHTBOX image preview
════════════════════════════════ */
.image-lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 30px;

  z-index: 9999;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0px 0px 10px var(--secondary-glow);
}

.popup-title {
  position: absolute;
  bottom: 2%;
  font-size: 3rem;
  color: white;
  text-shadow: 0 10px 30px var(--primary-glow);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--primary-glow);
  transition: var(--transition);
}

@media (max-width: 767px) {
  .image-lightbox {
    height: 300px;
    width: 80vw;
  }

  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    color: white;
    cursor: pointer;
  }

  .popup-title {
    font-size: 2rem;
  }
}

@media (max-width: 550px) {
  .image-lightbox {
    height: 200px;
    width: 80vw;
  }

  .popup-title {
    font-size: 1rem;
  }
}

.sig-item img,
.gallery-item img {
  cursor: pointer;
}

body.lightbox-open > *:not(#imageLightbox) {
  filter: blur(25px);
  transition: filter 0.3s ease;
}

/* ════════════════════════════════
   application sepecific carousel
════════════════════════════════ */

/* ── Section ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 72px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Top content ── */
.hero-top {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-bottom: 64px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-line {
  width: 28px;
  height: 1px;
  background: var(--primary-glow);
  display: block;
}
.hero-overline-text {
  color: var(--primary-glow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-heading {
  color: var(--text-primary);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-heading .gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-para {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 28px;
}

.hero-cta {
  background: linear-gradient(
    135deg,
    var(--primary-glow) 0%,
    var(--secondary-glow) 100%
  );
  color: #03050a;
  border: none;
  border-radius: 50px;
  padding: 13px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);

  font-family: var(--font-main);
}
.hero-cta:hover {
  box-shadow: 0px 0px 20px var(--secondary-glow);
  transform: translateY(-2px);
}

/* ── Carousels wrapper ── */
.carousels-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Carousel block ── */
.carousel-block {
  display: flex;
  flex-direction: column;
}

/* ── Heading row ── */
.carousel-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.carousel-heading-text h2 {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.carousel-heading-text p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 2px;
}
.carousel-accent-line {
  flex: 1;
  height: 1px;
  display: block;
}

/* ── Swiper ── */

.swiper {
  width: 100%;
  padding-top: 40px;
}

.swiper-slide {
  height: auto;
  width: 100%;
}

/* ── Slide card ── */
.slide-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.slide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);

  transition:
    transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.4s ease;
}
.slide-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
  box-shadow: 0px 0px 20px var(--secondary-glow);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 5, 10, 0.65) 0%, transparent 60%);
  transition: background 0.4s ease;
}
.slide-card:hover .slide-overlay {
  background: linear-gradient(to top, rgba(3, 5, 10, 0.45) 0%, transparent 65%);
}
.slide-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  font-family: var(--font-main);
}

/* ── Controls row ── */
.swiper-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.swiper-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 14, 25, 0.7);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.swiper-nav-btn svg {
  display: block;
}
.swiper-nav-btn:hover {
  background: rgba(18, 25, 45, 0.9);
}
.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* ── Inline pagination ── */
.inline-pagination {
  flex: 1;
  display: flex !important;
  align-items: center;
  gap: 6px;
  position: static !important;
  bottom: auto !important;
}
.inline-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: all 0.35s ease;
  margin: 0 !important;
  cursor: pointer;
}
.inline-pagination.gold .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--secondary-glow);
  box-shadow: 0 0 6px var(--secondary-glow);
}
.inline-pagination.cyan .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary-glow);
  box-shadow: 0 0 6px var(--primary-glow);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero-section {
    padding: 44px 16px 60px;
  }
  .swiper-slide {
    height: 170px;
  }
  .carousel-accent-line {
    display: none;
  }

  .slide-card img {
    height: 170px;
  }
}

/* ════════════════════════════════
   CLIENTS SECTION
════════════════════════════════ */
.clients-section {
  background: #03050a;
  font-family: "Outfit", sans-serif;
  padding: 80px 24px 88px;
  position: relative;
  overflow: hidden;
}
.clients-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.clients-divider {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 72px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-glow),
    var(--secondary-glow),
    transparent
  );
  position: relative;
  z-index: 1;
}
.clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
}
.clients-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.c-line {
  width: 28px;
  height: 1px;
  background: var(--primary-glow);
  display: block;
}
.c-overline-text {
  color: var(--primary-glow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.clients-heading {
  color: #ffffff;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.clients-heading-gradient {
  background: linear-gradient(
    90deg,
    var(--primary-glow),
    var(--secondary-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.clients-sub {
  color: #a0aabf;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
}

/* Stats */
.clients-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: rgba(10, 14, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  row-gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.stat-number {
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-plus {
  color: var(--secondary-glow);
  font-size: 0.65em;
  vertical-align: super;
}
.stat-label {
  color: var(--secondary-glow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin: 0 8px;
}

/* Marquee */
.marquee-track {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  z-index: 1;
}
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, #03050a, transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(-90deg, #03050a, transparent);
}
.marquee-inner {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 0;
}
.marquee-left {
  animation: scrollLeft 28s linear infinite;
}
.marquee-right {
  animation: scrollRight 32s linear infinite;
}
.marquee-track:hover .marquee-left,
.marquee-track:hover .marquee-right {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Logo card */
.logo-item {
  flex-shrink: 0;
}
.logo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 14, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  min-width: 100px;
}
.logo-card:hover {
  background: rgba(18, 25, 45, 0.85);
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}
.logo-card--cyan:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.08);
}
.logo-icon {
  font-size: 18px;
  color: #d4af37;
  line-height: 1;
  flex-shrink: 0;
}
.logo-card--cyan .logo-icon {
  color: #00e5ff;
}
.logo-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: "Outfit", sans-serif;
}

/* Bottom CTA */
.clients-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.clients-cta-text {
  color: #a0aabf;
  font-size: 14px;
}
.clients-cta-btn {
  background: transparent;
  color: var(--primary-glow);
  border: 1px solid var(--primary-glow);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Outfit", sans-serif;
}
.clients-cta-btn:hover {
  background: var(--secondary-glow);
  color: #000;
  border-color: var(--primary-glow);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 16px 72px;
  }
  .clients-stats {
    padding: 24px 20px;
  }
  .stat-divider {
    height: 32px;
    margin: 0 4px;
  }
}
@media (max-width: 500px) {
  .clients-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
  }
  .stat-divider {
    display: none;
  }
  .marquee-fade {
    width: 60px;
  }
}

/* ════════════════════════════════
  showcase of blueroot App disclose section home pagw
════════════════════════════════ */
.about-app {
  background: #000;
}

.l-left video {
  object-fit: cover;
  height: 650px;
}

.app-btn {
  border-color: var(--secondary-glow);
}

@media (max-width: 767px) {
  .l-left video {
    height: 400px;
  }
}

/* ════════════════════════════════
   CTA Section
════════════════════════════════ */
/* CTA Section */

.cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, #020306, #0a0f18);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.cta-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Text */

.cta-text h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.cta-text p {
  color: var(--text-secondary);
  max-width: 650px;
  margin: auto;
  margin-top: 15px;
}

/* Buttons */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Primary */

.cta-btn.primary {
  background: var(--primary-glow);
  color: #000;
}

/* Secondary */

.cta-btn.secondary {
  border: 1px solid var(--primary-glow);
  color: var(--primary-glow);
}

/* Hover */

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Mobile */

@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 1.8rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* Scroll To Top Button */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary-glow);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Hover Effect */
#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Mobile */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
  }
}
/* ================================
   FAQ SECTION
================================ */
/* FAQ Section */

.faq-section {
  background: #020408;
}

.faq-section .accordion-item {
  background: rgba(10, 14, 25, 0.6);
  border: 1px solid rgba(1, 148, 220, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.faq-section .accordion-button {
  background: transparent;
  color: white;
  font-weight: 600;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary-glow);
  background: transparent;
}

.faq-section .accordion-body {
  color: var(--text-secondary);
}

.faq-icon {
  font-size: 20px;
  color: white;
}

/* ════════════════════════════════
   Breadcrumb
════════════════════════════════ */

.bc-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}

/* BACKGROUND IMAGE */

.bc-hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1800&q=90&fit=crop");
  background-size: cover;
  background-position: center;

  transform: scale(1.1);
  animation: bgZoom 3s ease forwards;
}

@keyframes bgZoom {
  to {
    transform: scale(1);
  }
}

/* OVERLAY */

.bc-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );

  z-index: 4;
}

/* GRID */

.bc-hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  z-index: 2;
}

/* IMAGE PANELS */

.bc-panels {
  position: absolute;
  inset: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  z-index: 3;
}

.bc-panel {
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1800&q=90&fit=crop");
  background-size: cover;

  opacity: 0;
  transform: scale(1.05);

  animation: panelReveal 0.8s ease forwards;
}

.bc-panel:nth-child(1) {
  background-position: 0% center;
  animation-delay: 0.1s;
}

.bc-panel:nth-child(2) {
  background-position: 33% center;
  animation-delay: 0.25s;
}

.bc-panel:nth-child(3) {
  background-position: 66% center;
  animation-delay: 0.4s;
}

.bc-panel:nth-child(4) {
  background-position: 100% center;
  animation-delay: 0.55s;
}

@keyframes panelReveal {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* CONTENT */

.bc-content {
  position: relative;
  z-index: 5;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;

  opacity: 0;
  transform: translateY(30px);

  animation: contentFade 1s ease 0.9s forwards;

  padding: 30px;

  background: var(--surface-color);
  border: var(--border-subtle);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 40px rgba(1, 148, 220, 0.35);
}

@keyframes contentFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TAG */

.bc-tag {
  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(1, 148, 220, 0.15);
  border: 1px solid rgba(1, 148, 220, 0.4);

  border-radius: 50px;

  padding: 6px 16px;

  color: var(--secondary-glow);

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bc-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--secondary-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-glow);
}

/* TITLE */

.bc-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: -7px;
}

/* BREADCRUMB */

.bc-trail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.bc-trail a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
}

.bc-trail a:hover {
  color: var(--secondary-glow);
}

.bc-sep {
  margin: 0 10px;
  color: #666;
}

.bc-active {
  color: var(--secondary-glow);
  font-weight: 600;
}

/* BOTTOM LINE */

.bc-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-glow),
    var(--secondary-glow),
    transparent
  );
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .bc-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .bc-hero {
    height: 420px;
  }

  .bc-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .bc-hero {
    height: 320px;
  }

  .bc-content {
    padding: 14px 16px;
    gap: 10px;
    max-width: 85%;
    backdrop-filter: blur(6px);
  }

  .bc-tag {
    font-size: 9px;
    padding: 4px 10px;
    letter-spacing: 1.5px;
  }

  .bc-title {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .bc-trail a,
  .bc-active {
    font-size: 11px;
  }

  .bc-sep {
    margin: 0 6px;
  }
}

/* ════════════════════════════════
   product about section , product page
════════════════════════════════ */

.about-us-section {
  padding: 100px 5%;
  overflow: hidden;
}

.about-us-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* content */

.about-us-content {
  flex: 1;
}

.sec-title span {
  color: var(--secondary-glow);
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.sec-title h2 {
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* list */

.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.about-list i {
  color: var(--primary-glow);
  margin-right: 12px;
  font-size: 18px;
}

/* images */

.about-images {
  flex: 1;
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 0 25px var(--primary-glow);
  border: var(--border-subtle);
  transition: var(--transition);
}

.img-main:hover {
  transform: scale(1.03);
}

.img-main img {
  object-fit: cover;
  height: 100%;
}

.img-second {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 45%;
  border-radius: 0px;
  box-shadow: 0 0 25px var(--primary-glow);
  border: var(--border-subtle);
  transition: var(--transition);
}

.img-second:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--primary-glow);
}

.img-third {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 45%;
  border-radius: 0px;
  box-shadow: 0 0 25px var(--primary-glow);
  border: var(--border-subtle);
  transition: var(--transition);
}

.img-third:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--primary-glow);
}

/* responsive */

@media (max-width: 1024px) {
  .about-us-section {
    padding: 50px 5%;
  }

  .about-us-wrapper {
    flex-direction: column;
  }

  .img-main {
    width: 100%;
  }

  .img-second {
    position: relative;
    width: 70%;
    margin-top: 20px;
    left: 0;
    bottom: 0;
    display: none;
  }

  .img-third {
    display: none;
  }

  .sec-title {
    text-align: left;
  }

  .sec-title h2 {
    font-size: 32px;
    text-align: left;
  }
}

/* ════════════════════════════════
   product showcase section in product page
════════════════════════════════ */

.product-showcase {
  /* padding: 120px 20px; */
  background: var(--bg-color);
}

.product-showcase .showcase-item p {
  position: absolute;
  bottom: -15px;
  color: var(--text-primary);
  font-size: 15px;
  padding: 5px 0;
  font-weight: 600;
  z-index: 10;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.product-showcase .showcase-item:hover p {
  background-color: var(--primary-glow);
  transition: var(--transition);
}

.showcase-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: var(--border-subtle);
  background: var(--surface-color);
  transition: var(--transition);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Hover Effects */

.showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: 0px 0px 20px var(--secondary-glow);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

/* Glow border */

.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 0px var(--primary-glow);
  transition: var(--transition);
}

.showcase-item:hover::after {
  box-shadow: 0 0 25px var(--primary-glow);
}

/* Responsive */

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════
   showcase of blueroot app in product page
════════════════════════════════ */

.app-showcase {
  /* padding:120px 20px; */
  background: var(--bg-color);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.app-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-align: left;
}

.app-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.app-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: var(--primary-glow);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.app-btn:hover {
  box-shadow: 0 0 25px var(--secondary-glow);
  transform: translateY(-3px);
}

.app-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
  .app-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-content h2 {
    font-size: 36px;
  }
}

/* ════════════════════════════════
   product showcase section for product page
════════════════════════════════ */

.products-showcase {
  /* padding:120px 20px; */
  background: var(--bg-color);
}

.productSwiper .swiper-wrapper {
  padding: 20px 0;
}

.product-card {
  background: var(--surface-color);
  border: var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  color: var(--primary-glow);
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 5px var(--secondary-glow);
}

@media (max-width: 767px) {
  .product-card img {
    height: 260px;
  }
}

/* ════════════════════════════════
   why bluehopper products stands out
════════════════════════════════ */

.features-section {
  /* padding:120px 20px; */
  background: var(--bg-color);
  text-align: center;
}

.features-title {
  color: var(--text-primary);
  font-size: 32px;
  margin-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
}

.features-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.features-section .feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.features-section .feature-item i {
  font-size: 50px;
  color: var(--primary-glow);
}

.features-section .feature-item p {
  color: var(--text-primary);
  font-size: 18px;
}

/* responsive */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════
   certificate winning section
════════════════════════════════ */

.certificate-section {
  /* padding:100px 20px; */
  background: var(--bg-color);
  text-align: center;
}

.certificate-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
}

.certificate-title span {
  display: block;
  font-weight: 500;
}

/* frame container */

.certificate-frame {
  display: inline-block;
  padding: 15px;
  background: linear-gradient(145deg, #caa43b, #f6e27a, #b98b2d);
  border-radius: 6px;
  /* box-shadow: 0 0 40px var(--secondary-glow); */
}

/* image */

.certificate-frame img {
  width: 100%;
  max-width: 900px;
  display: block;
  border: 10px solid #d8b85a;
  border-radius: 4px;
}

/* ════════════════════════════════
   contact section
════════════════════════════════ */

.contact-section {
  /* padding:120px 20px; */
  background: var(--bg-color);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-header h2 {
  font-size: 42px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-header p {
  color: var(--text-secondary);
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* FORM GRID */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.full {
  grid-column: span 2;
}

/* INPUT GROUP */

.input-group {
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid var(--text-secondary);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  outline: none;
}

.input-group select option {
  background: var(--bg-color);
  color: var(--text-primary);
}

/* LABEL */

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 14px;
  pointer-events: none;
  background: var(--bg-color);
  padding: 0 6px;
  transition: var(--transition);
}

/* FLOATING EFFECT */

.input-group input:focus + label,
.input-group input:valid + label,
.input-group select:focus + label,
.input-group select:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--primary-glow);
}

/* FOCUS BORDER */

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 0 1px var(--primary-glow);
}

/* BUTTON */

.submit-btn {
  margin-top: 40px;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--primary-glow),
    var(--secondary-glow)
  );

  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 148, 220, 0.5);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: span 1;
  }

  .contact-header h2 {
    font-size: 32px;
  }
}

/* ════════════════════════════════
   parallax-banner
════════════════════════════════ */

.parallax-banner {
  background-image: url("https://www.bluehopper.com/wp-content/uploads/2025/05/R-2-2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  height: 450px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  /* margin: 50px 0; */
}

/* overlay */

.banner-overlay {
  background: rgba(54, 54, 54, 0.65);

  width: 100%;
  height: 100%;
  padding: 120px 20px;

  display: flex;
  justify-content: center;
}

/* content */

.banner-content {
  max-width: 900px;
  text-align: center;
}

/* text */

.banner-content p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 25px;
}

/* ════════════════════════════════
   5 produts SECTION STYLE
════════════════════════════════ */

.products-showcase {
  padding: 100px 20px;
  background: var(--bg-color);
}

.products-wrapper {
  max-width: 1200px;
  margin: auto;
}

.products-heading {
  text-align: center;
  margin-bottom: 60px;
}

.products-heading h2 {
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.products-heading span {
  color: var(--primary-glow);
}

.products-heading p {
  color: var(--text-secondary);
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* =============================
CARD STYLE
============================= */

.product-card-box {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
}

.product-card-box:hover {
  border: 1px solid var(--primary-glow);
}

.product-card-box:hover .product-card-title {
  color: var(--primary-glow);
}

/* image */

.product-card-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* content */

.product-card-content {
  padding: 22px;
}

.product-card-title {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 14px;
  height: 60px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* button */

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary-glow);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.product-card-btn:hover {
  gap: 12px;
  color: var(--secondary-glow);
}

/* swiper spacing */

.products-swiper-container {
  padding-bottom: 40px;
}

/* responsive */

@media (max-width: 768px) {
  .products-heading h2 {
    font-size: 30px;
  }
}

/* Breadcrumb with video */

/* HERO SECTION */

.breadcrumb-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* VIDEO BACKGROUND */

.breadcrumb-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* DARK OVERLAY */

.breadcrumb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

/* CONTENT */

.breadcrumb-content {
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
}

/* TAG */

.breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.9;
  text-transform: uppercase;
}

.breadcrumb-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-glow);
  border-radius: 50%;
}

/* TITLE */

.breadcrumb-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-glow);
}

/* BREADCRUMB */

.breadcrumb-trail {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  list-style: none;
  margin-top: 10px;
}

.breadcrumb-trail a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb-trail a:hover {
  color: var(--primary-glow);
}

.breadcrumb-active,
.breadcrumb-item.active {
  color: var(--primary-glow) !important;
  font-weight: 500;
}

.breadcrumb-sep {
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .breadcrumb-content {
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1024px) {
  .breadcrumb-hero {
    height: 60vh;
  }
}

@media (max-width: 550px) {
  .breadcrumb-hero {
    height: 40vh;
    margin-top: -1px;
  }

  .breadcrumb-title {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .breadcrumb-content {
    padding: 10px;
  }

  .breadcrumb-tag {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .breadcrumb-trail {
    font-size: 12px;
    gap: 5px;
  }
}

/* ********************************************************
      blueroot app page start 
      ********************************************************** */

/*-----------
     FEATURES SECTION 
     -------------*/

.blueroot-features-section {
  position: relative;
}

/* FEATURE BOX */

.blueroot-features-box {
  padding: 20px;
  transition: 0.3s ease;
}

.blueroot-features-box:hover {
  transform: translateY(-6px);
}

/* ICON */

.blueroot-features-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

/* TITLE */

.blueroot-features-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* TEXT */

.blueroot-features-text {
  font-size: 14px;
  color: #b0b8c1;
  line-height: 1.6;
}

.group:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* HOVER EFFECT (GROUP HOVER) */
.group:hover .blueroot-features-icon {
  color: var(--secondary-glow);
  transform: scale(1.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .blueroot-features-icon {
    font-size: 34px;
  }

  .blueroot-features-title {
    font-size: 14px;
  }

  .blueroot-features-text {
    font-size: 13px;
  }
}

/*-----------
     iphone image carousel SECTION 
     -------------*/
/* --- APP SECTION STYLES --- */
.app-section {
  /* padding: 80px 0; */
  position: relative;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* --- SWIPER 360 SPIN STYLES --- */
.swiper-container-wrapper {
  position: relative;
  perspective: 1500px; /* Depth for 3D spin */
}

.app-swiper {
  width: 100%;
  max-width: 320px;
  margin: auto;
  overflow: visible !important; /* Allow spin to go "outside" container */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.app-screen {
  width: 100%;
  max-width: 350px;
  border-radius: 35px;
  background: #000;
  height: 600px !important;
  object-fit: contain;
}

/* Floor Reflection */
.app-swiper::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(1, 148, 220, 0.3) 0%,
    transparent 70%
  );
  filter: blur(10px);
}

@media (max-width: 767px) {
  .app-screen {
    height: 350px !important;
  }
}

@media (min-width: 768px) {
  .blueroot-next-btn {
    margin-right: -50px;
  }
  .blueroot-prev-btn {
    margin-left: -50px;
  }
}

/*---------------
 custom control 
--------------- */
/* Section main background */
.custom-control-section {
  background: #000; /* pure black */
  position: relative;
  overflow: hidden;
}

/* Inner shaded box */
.custom-control-wrapper {
  background: rgba(255, 255, 255, 0.03); /* subtle layer */
  border-radius: 20px;
  border: 1px solid var(--primary-glow);
  box-shadow: 0 0 20px var(--secondary-glow);
}

/* Image styling */
.custom-img {
  max-width: 90%;
  border-radius: 12px;
}


/*---------------
 advance feature  blueroot app page
--------------- */
/* Section background */
.advance-feature {
  background: #000;
}

/* Inner card */
.advance-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid var(--primary-glow);
  box-shadow: 0 0 20px var(--secondary-glow);
}

/* Image styling */
.feature-img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}



/* --------------------
360 degree image caorusel slider
----------------------- */


/* ================= SECTION ================= */

.round-slider-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 1rem 0;
}

/* heading */
.round-slider-banner-content {
  position: absolute;
  top: 2%;
  text-align: center;
  z-index: 2;
  display: none;
}

/* ================= SLIDER ================= */

.round-slider {
  position: relative;
  width: 180px;
  height: 330px;
  transform-style: preserve-3d;
  cursor: pointer;
}

.round-slider__item {
  position: absolute;
  inset: 0;
  transform:
    rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(var(--radius));
}

.round-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* ================= RESPONSIVE ================= */

@media (max-width:1024px) {
   
.round-slider-banner {
  perspective: 400px;
} 

.round-slider {
  width: 140px;
  height: 240px;
} 
}

@media (max-width: 768px) {

.round-slider-banner {
  perspective: 380px;
}   

.round-slider {
  width: 100px;
  height: 200px;
}
}