:root {
  --primary-color: #f57c00;
  --primary-color-light: #f57c0067;
  --secondary-color: #1565c0;
  --dark: #1a1a2e;
  --dark2: #111111;
  --gray-bg: #ededed;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

.fade-up-delay-5 {
  transition-delay: 0.5s;
}

.fade-up-delay-6 {
  transition-delay: 0.6s;
}

.fade-up-delay-7 {
  transition-delay: 0.7s;
}

.fade-up-delay-8 {
  transition-delay: 0.8s;
}

.background-primary {
  background: #fff2e3 !important;
}

.background-secondary {
  background: #eaf3ff !important;
}

.background-gray {
  background: var(--gray-bg) !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.border-dashed {
  border: 1px dashed #cbd5e1 !important;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.top-header-section {
  padding: 2px 0;
  background-color: var(--secondary-color);
  color: #fff;
}

.top-header-section .top-social {
  display: inline-block;
  vertical-align: middle;
}

.top-header-section a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.top-header-section .top-social a {
  cursor: pointer;
  display: inline-block;
  margin: 2px 5px;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-header-section {
    display: none;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  background: #ffffff;
  padding: 0;
  /* position: sticky; */
  /* top: 0; */
  z-index: 1000;
}

.navbar .navbar-brand {
  width: 150px;
  padding: 0;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.navbar .brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 2.5px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .brand-icon i {
  color: var(--primary-color);
  font-size: 1rem;
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar .nav-link {
  color: #000000 !important;
  font-size: 16px;
  padding: 0 1rem !important;
  transition: color 0.2s;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--secondary-color) !important;
}

/* ===== DROPDOWN & RESPONSIVE ===== */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 10px 0;
}

.navbar .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 24px;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  color: var(--primary-color);
  background-color: rgba(245, 124, 0, 0.1);
}

@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 0.5rem 2rem !important;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
    background: transparent;
    margin-left: 1rem;
    padding-top: 0;
  }
}

/* ===== HERO SLIDER ===== */
#heroCarousel .carousel-inner {
  min-height: 700px;
  max-height: 100vh;
}

#heroCarousel .carousel-item {
  height: auto;
}

.hero-img {
  width: 100%;
  min-height: 700px;
  max-height: 100vh;
  height: auto;
  object-fit: cover;
  display: block;
  line-height: 0;
}

@media (max-width: 1536px) {
  .hero-img {
    height: auto;
    min-height: auto;
    max-height: auto;
  }

  #heroCarousel .carousel-inner {
    min-height: auto;
    max-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 100% !important;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 16px;
  background-size: 60%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 16px;
  background-size: 60%;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  background: var(--primary-color-light);
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 18px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.section-title-white {
  color: #fff;
}

.section-title-whtml {
  scroll-behavior: smooth;
}

/* Add scroll margin to account for sticky tab bar */
#features,
#demo,
#pricing,
#buy {
  scroll-margin-top: 100px;
}

/* ============ INNER PAGE HERO ============ */
.inner-hero-section {
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(21, 101, 192, 0.9)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&q=80") center center / cover no-repeat;
  padding: 100px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.inner-hero-section h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.inner-hero-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.inner-hero-section .breadcrumb-item a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.inner-hero-section .breadcrumb-item a:hover {
  color: var(--primary-color);
}

.inner-hero-section .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.inner-hero-section .breadcrumb-item+.breadcrumb-item::before {
  color: #aaa;
}

/* ===== ABOUT ===== */

.about-us {
  background: #ffffff;
  /* background: #f9f5f0; */
  padding: 60px 0;
}

.about-us .about-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.about-us .about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}

.about-us .about-checklist li i {
  color: var(--secondary-color);
  padding: 5px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.about-us .about-img-placeholder {
  /* border-radius: 16px; */
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us .about-img-placeholder i {
  font-size: 4rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .about-us .about-img-placeholder img {
    width: 90%;
  }
}


/* =====WHITE LABEL ABOUT ===== */

.white-label-about-us {
  background: #ffffff;
  /* background: #f9f5f0; */
  padding: 40px 0;
}

.white-label-about-us .about-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.white-label-about-us .about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}

.white-label-about-us .about-checklist li i {
  color: var(--secondary-color);
  padding: 5px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.white-label-about-us .about-img-placeholder {
  /* border-radius: 16px; */
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-label-about-us .about-img-placeholder i {
  font-size: 4rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .white-label-about-us .about-img-placeholder img {
    width: 90%;
  }
}


/* --- Read More Button --- */
.btn-pink {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  color: #fff !important;
  border: none;
  border-radius: 40px;
  padding: 12px 32px !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1;
}

.btn-pink::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-pink:hover {
  transform: translateY(-5px);
  color: #fff !important;
}

.btn-pink:hover::after {
  transform: translateX(6px);
}

.btn-pink:active {
  transform: translateY(2px);
  box-shadow: 0 5px 10px rgba(255, 65, 108, 0.3);
}

/* ===== BUTTON STYLES ===== */
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-outline-secondary {
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

/* Primary Button */
.btn-primary {
  background-color: var(--primary-color);
  color: #fff !important;
  border: 2px solid var(--primary-color);
  box-shadow: 0 6px 15px rgba(245, 124, 0, 0.25);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.15);
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff !important;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 6px 15px rgba(21, 101, 192, 0.25);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.15);
}

/* Outline Primary Button */
.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(245, 124, 0, 0.3);
}

/* Outline Secondary Button */
.btn-outline-secondary {
  background-color: transparent;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color);
}

.btn-outline-secondary:active,
.btn-outline-secondary:focus,
.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(21, 101, 192, 0.3);
}

/* ============ COMPACT VMV (Homepage Short Version) ============ */
.vmv-compact-section {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.vmv-compact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.vmv-compact-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
}

.vmv-compact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.vmv-compact-icon.vision {
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-color);
}

.vmv-compact-icon.mission {
  background: rgba(21, 101, 192, 0.1);
  color: var(--secondary-color);
}

.vmv-compact-icon.values {
  background: rgba(13, 169, 110, 0.1);
  color: #0da96e;
}

.vmv-compact-card:hover .vmv-compact-icon.vision {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.vmv-compact-card:hover .vmv-compact-icon.mission {
  background: var(--secondary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.vmv-compact-card:hover .vmv-compact-icon.values {
  background: #0da96e;
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.vmv-compact-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.vmv-compact-body p {
  font-size: 0.88rem;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

.vmv-compact-divider {
  width: 1px;
  height: 60px;
  background: #e8e8e8;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vmv-compact-grid {
    flex-direction: column;
    gap: 0;
  }

  .vmv-compact-divider {
    width: 80%;
    height: 1px;
    margin: 5px 0;
  }

  .vmv-compact-card {
    padding: 15px 20px;
    width: 100%;
  }
}

/* ============ VISION, MISSION, VALUE ============ */
.vmv-section {
  padding: 60px 0;
  background: rgba(21, 101, 192, 0.1);
  position: relative;
  overflow: hidden;
}

.vmv-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(245, 123, 0, 0.497) 0%, rgba(255, 255, 255, 0) 70%); */
  border-radius: 50%;
}

.vmv-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(21, 101, 192, 0.06) 0%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.vmv-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 45px 35px;
  height: 100%;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  overflow: hidden;
}

.vmv-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.vision-card .card-glow {
  background: radial-gradient(circle at top left,
      rgba(245, 124, 0, 0.1),
      transparent 70%);
}

.mission-card .card-glow {
  background: radial-gradient(circle at top left,
      rgba(21, 101, 192, 0.1),
      transparent 70%);
}

.value-card .card-glow {
  background: radial-gradient(circle at top left,
      rgba(13, 169, 110, 0.1),
      transparent 70%);
}

.vmv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.vmv-card:hover .card-glow {
  opacity: 1;
}

.vmv-card .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.vision-card .icon-wrap {
  background: linear-gradient(135deg,
      rgba(245, 124, 0, 0.1),
      rgba(245, 124, 0, 0.05));
  color: var(--primary-color);
}

.mission-card .icon-wrap {
  background: linear-gradient(135deg,
      rgba(21, 101, 192, 0.1),
      rgba(21, 101, 192, 0.05));
  color: var(--secondary-color);
}

.value-card .icon-wrap {
  background: linear-gradient(135deg,
      rgba(13, 169, 110, 0.1),
      rgba(13, 169, 110, 0.05));
  color: #0da96e;
}

.vmv-card:hover .icon-wrap {
  transform: scale(1.1) rotate(8deg);
}

.vision-card:hover .icon-wrap {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.3);
}

.mission-card:hover .icon-wrap {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 15px 30px rgba(21, 101, 192, 0.3);
}

.value-card:hover .icon-wrap {
  background: #0da96e;
  color: #fff;
  box-shadow: 0 15px 30px rgba(13, 169, 110, 0.3);
}

.vmv-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111;
}

.vmv-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* ===== DIGITIZE STEPS ===== */
.digitize-section {
  background: #ededed;
}

.step-card {
  padding: 30px 15px;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-card h5 {
  color: #333;
  transition: color 0.3s ease;
}

.step-card:hover h5 {
  color: var(--secondary-color);
}

.step-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 2px dashed rgba(245, 124, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrap {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 10px 20px rgba(245, 124, 0, 0.2);
}

.step-card:hover .step-icon {
  color: #fff;
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(10deg);
}

/* Connecting line for Process Steps */
@media (min-width: 992px) {
  .digitize-section .col-lg-3:not(:last-child) .step-card::after {
    content: "";
    position: absolute;
    top: 75px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed rgba(245, 124, 0, 0.3);
    z-index: 0;
    transition: all 0.3s ease;
  }

  .digitize-section .col-lg-3:not(:last-child):hover .step-card::after {
    border-top: 2px solid var(--primary-color);
  }
}

/* ===== FOCUS (Vision/Mission) ===== */
.focus-section {
  padding: 60px 0;
  background: #fff;
}

.focus-section .focus-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  border: 2px solid white;
  box-shadow: var(--card-shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}

.focus-section .focus-card a {
  text-decoration: none;
}

.focus-section .focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.focus-section .focus-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}

.focus-section .focus-card-body {
  padding: 10px 22px 22px 22px;
  text-align: center;
}

.focus-section .focus-card-body h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.focus-section .focus-card-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.focus-section .focus-card-body a {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  transition: color 0.2s;
}

.focus-section .focus-card-body a:hover {
  color: var(--primary-color);
}

/* ===== PRODUCTS ===== */
#products {
  padding: 90px 0;
  background: var(--gray-bg);
}

.product-section .product-card {
  background: #fff;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-section .product-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.product-section .product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-section .product-card:hover img {
  transform: scale(1.05);
}

.product-section .product-card-body {
  padding: 25px 18px;
}

.product-section .product-card-body h6 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-align: center;
}

.product-section .product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.product-section .price-new {
  font-weight: 500;
  color: #222;
  font-size: 0.95rem;
}

.product-section .btn-add {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.product-section .btn-add:hover {
  opacity: 0.85;
}

/* ===== Tetimonial gogoole ====== */

.testimonial-section .review-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.168);
  margin: 10px;
  transition: 0.3s ease;
  height: 100%;
}

.testimonial-section .review-card:hover {
  transform: translateY(-8px);
}

.testimonial-section .review-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section .google-icon {
  width: 28px;
  height: 28px;
}

.testimonial-section .stars i {
  color: #ffc107;
}

.testimonial-section .verified {
  color: #00a303;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-section .slick-dots li button:before {
  font-size: 10px;
  color: #0d6efd;
}

.testimonial-section .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  font-size: 0;
  display: block;
  transition: background 0.3s;
}

.testimonial-section .slick-dots li.slick-active button:before {
  background: var(--primary-color);
  width: 20px;
  border-radius: 6px;
}

/* ===== STATS ===== */
#stats {
  background: #1a1a2e;
  padding: 60px 0;
}

.service-counter .stats-label {
  background: rgba(247, 37, 133, 0.3);
  color: #fff;
}

.service-counter .stat-item {
  text-align: center;
}

.service-counter .stat-icon {
  color: var(--secondary-color);
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.service-counter .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.service-counter .stat-divider {
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  margin: 10px auto;
}

.service-counter .stat-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
}

/* ===== GALLERY ===== */

.nfc-gallery-section {
  padding: 90px 0 0 0;
  background: #fff;
}

.nfc-gallery-section .gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid #ccc;
  box-shadow: var(--card-shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  margin-bottom: 15px;
  padding: 10px;
}

.nfc-gallery-section .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.173);
}

.nfc-gallery-section .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

/* ===== GALLERY ===== */

.gallery-section {
  padding: 90px 0;
  background: #fff;
}

.gallery-section .gallery-grid {
  columns: 4 200px;
  gap: 12px;
}

.gallery-section .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  /* border-radius: 12px; */
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-section .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.336);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-section .gallery-overlay .expand-icon {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.gallery-section .gallery-overlay p {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

/* ===== GALLERY ===== */

.gallery-one-section {
  padding: 60px 0;
  /* background: #f7e5cf; */
}

.gallery-one-section .gallery-grid {
  columns: 3 250px;
  gap: 12px;
}

.gallery-one-section .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-one-section .gallery-item a {
  text-decoration: none;
}

.gallery-one-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 7s linear;
  border-radius: var(--border-radius);
}

.gallery-one-section .gallery-image-h {
  height: 25rem;
}

.gallery-one-section .gallery-image-h-full {
  height: 100%;
}

.gallery-one-section .gallery-image {
  position: relative;
  overflow: hidden;
  /* border: 1px solid var(--secondary-color); */
  position: relative;

  overflow: hidden;
  background: black;
  border: 2px solid gray;
  padding: 6px;
  border-radius: var(--border-radius);
}

.gallery-one-section .gallery-content {
  padding: 15px;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  margin-top: 10px;
}

.gallery-one-section .gallery-content p {
  margin: 0;
}

.gallery-one-section .gallery-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

.gallery-one-section .gallery-item:hover img {
  object-position: bottom center;
}

.gallery-one-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.336);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-one-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-one-section .gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Gallery Badges */
.gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  transition: all 0.3s ease;
}

.badge-basic {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.badge-growth {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.badge-premium {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
}

.gallery-item:hover .gallery-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-one-section .gallery-overlay .expand-icon {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.gallery-one-section .gallery-overlay p {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
/* ===== TEAM V2 (Photo Style - Exact) ===== */
#team-v2 {
  padding: 90px 0 60px;
  background: #f4f4f4;
}

.team-v2-slider-wrap {
  position: relative;
  padding-bottom: 60px;
}

.team-v2-track-outer {
  overflow: hidden;
  width: 100%;
}

.team-v2-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 30px 0 20px;
}

.team-v2-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  transform: scale(0.92);
}

.team-v2-card.tv2-center {
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.team-v2-img-wrap {
  position: relative;
}

.team-v2-img-wrap img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-v2-info {
  background: #fff;
  padding: 18px 22px;
}

.team-v2-info h6 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e2d4f;
  margin: 0 0 4px;
}

.team-v2-info span {
  font-size: 0.83rem;
  color: #888;
}

.team-v2-card.tv2-center .team-v2-info {
  background: #1e2d4f;
}

.team-v2-card.tv2-center .team-v2-info h6 {
  color: #fff;
}

.team-v2-card.tv2-center .team-v2-info span {
  color: rgba(255, 255, 255, 0.72);
}

/* Dots */
.team-v2-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team-v2-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    width 0.3s,
    border-radius 0.3s;
}

.team-v2-dot.tv2-active {
  background: #1e2d4f;
  width: 32px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .team-v2-card {
    flex: 0 0 80vw;
    max-width: 280px;
  }

  .team-v2-img-wrap img {
    height: 260px;
  }
}

/* ===== TEAM CAROUSEL CONTROLS ===== */
#team {
  padding: 90px 0;
  background: var(--gray-bg);
  position: relative;
}

#teamCarousel {
  position: relative;
  padding: 0 50px;
}

.team-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.2s,
    color 0.2s;
  box-shadow: 0 4px 14px rgba(247, 37, 133, 0.15);
}

.team-carousel-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.team-carousel-prev {
  left: 0;
}

.team-carousel-next {
  right: 0;
}

.team-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.team-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}

.team-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #teamCarousel {
    padding: 0 36px;
  }

  .team-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 90px 0;
  background: #fafafa;
}

.testimonial-card {
  background: #fff;
  /* border-radius: 16px; */
  padding: 36px 30px 28px;
  box-shadow: var(--card-shadow);
  text-align: center;
  margin-bottom: 20px;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin: 0 auto 18px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  color: #999;
  font-size: 0.8rem;
}

.stars {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 10px;
}

.stars i {
  color: #ccc;
}

.stars i.filled {
  color: var(--primary-color);
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: auto;
}

.testimonial-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  margin: 0 4px;
  transition: background 0.2s;
}

.testimonial-dots .dot.active {
  background: var(--primary-color);
}

@media (max-width: 768px) {
  #testimonialCarousel .carousel-control-next {
    right: 0 !important;
  }

  #testimonialCarousel .carousel-control-prev {
    left: 0 !important;
  }
}

/* ===== RESPONSIVE ===== */
/* ===== FAQ ===== */
/* Wrapper */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 30px 0;
}

/* Each Item */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.083);
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.154);
}

/* Button */
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 25px 25px;
  font-size: 16px;
  font-weight: 600;
  background: #f9fafb;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}

/* Active state */
.faq-btn:not(.collapsed) {
  background: var(--secondary-color);
  color: #fff;
}

/* Icon */
.faq-icon {
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  padding: 25px 25px;
  font-size: 14px;
  color: #4b5563;
  background: #fff;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
}

/* Remove divider (not needed anymore) */
.faq-divider {
  display: none;
}

/* Smooth collapse animation */
.collapse {
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-btn {
    font-size: 14px;
    padding: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

/* ===== CONTACT INFO CARDS ===== */

.contact-section .contact-info-card {
  background: #fff;
  border-radius: var(--border-radius);
  border-top: 4px solid var(--primary-color);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.contact-section .contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-section .contact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #222;
}

.contact-section .contact-info-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-section .contact-info-card p {
  font-size: 0.88rem;
  color: #555;
  margin: 2px 0;
}

.contact-section .map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--card-shadow);
}

/* ===== INQUIRY FORM ===== */
.inquiry-section .inquiry-form-wrapper {
  /* border-radius: 18px; */
  /* border: 2px solid var(--primary-color); */
  border-top: 4px solid var(--primary-color);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.inquiry-section .inquiry-form-inner {
  padding: 36px 40px 40px;
}

.inquiry-section .inquiry-input {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: "Poppins", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fafafa;
}

.inquiry-section .inquiry-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.08);
  outline: none;
  background: #fff;
}

.inquiry-section .captcha-wrap {
  margin-top: 8px;
}

.inquiry-section .captcha-label {
  font-size: 0.88rem;
  color: #444;
  font-weight: 600;
}

.inquiry-section .captcha-eq {
  font-size: 0.88rem;
  color: #444;
  margin: 4px 0 6px;
}

.inquiry-section .captcha-input {
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.88rem;
  width: 180px;
}

.inquiry-section .btn-send-msg {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  padding: 10px 25px;
  transition: color 0.2s;
}

.inquiry-section .btn-send-msg:hover {
  color: var(--primary-color);
}

/* ===== FOOTER CONTACT (circle icons) ===== */
.footer-contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #222;
  margin: 0 auto;
  background: #f0f0f0;
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-contact-icon:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ===== MAIN FOOTER (dark) ===== */
#main-footer {
  background: var(--secondary-color);
  padding: 40px 20px 30px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-text span {
  color: var(--primary-color);
}

.footer-socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2c3550;
  color: #ddd;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-social-pill:hover {
  background: var(--primary-color);
  color: #fff;
}

.footer-social-pill i {
  font-size: 0.9rem;
}

.footer-copy {
  color: #888;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .gallery-section .gallery-grid {
    columns: 2 150px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: auto;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .services-center img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-section .gallery-grid {
    columns: 2 120px;
  }

  .service-counter .stat-number {
    font-size: 2.2rem;
  }
}

/* ============================================================
       MAIN FOOTER (foot-other-info)
    ============================================================ */
.foot-other-info {
  background-color: var(--dark);
  padding: 70px 0 40px;
  color: #dfdfdf;
  font-size: 0.95rem;
}

.foot-other-info p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.foot-other-info .flogo {
  display: inline-block;
  margin-bottom: 25px;
  /* If logo is dark, use filter to make it white: filter: brightness(0) invert(1); */
  /* filter: brightness(0) invert(1); */
}

.foot-other-info .foot-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.foot-other-info .foot-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.foot-other-info .foot-menulist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-other-info .foot-menulist li {
  margin-bottom: 12px;
}

.foot-other-info .foot-menulist li a {
  color: #b0b0b0;
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-block;
}

.foot-other-info .foot-menulist li a:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

.foot-other-info .foot-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-other-info .foot-contacts li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #b0b0b0;
}

.foot-other-info .foot-contacts li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 15px;
  margin-top: 4px;
  width: 18px;
  text-align: center;
}

.foot-other-info .foot-contacts li p {
  margin: 0;
}

.foot-other-info .foot-contacts li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-other-info .foot-contacts li a:hover {
  color: var(--primary-color);
}

.foot-other-info .foot-social-2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.foot-other-info .foot-social-2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.foot-other-info .foot-social-2 a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
}

@media (max-width: 991px) {

  .foot-other-info .foot-menu,
  .foot-other-info .foot-contacts,
  .foot-other-info .foot-about {
    margin-bottom: 30px;
  }
}

/* ============================================================
       BOTTOM BAR
    ============================================================ */
.footer-bottom {
  background: var(--secondary-color);
  padding: 15px 0;
}

.footer-bottom .copyright {
  font-size: 0.78rem;
  color: #d1d1d1;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom .bottom-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom .bottom-links a {
  font-size: 0.78rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .bottom-links a:hover {
  color: var(--primary-color);
}

.footer-bottom .unlock-text {
  font-size: 0.78rem;
  color: #cacaca;
  text-align: center;
}

.footer-bottom .unlock-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom .unlock-text a:hover {
  text-decoration: underline;
}

.footer-bottom .dev-credit {
  font-size: 0.78rem;
  color: #cdcdcd;
  text-align: right;
}

.footer-bottom .dev-credit a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom .dev-credit a:hover {
  text-decoration: underline;
}

hr.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 0;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 768px) {
  .footer-col {
    margin-bottom: 34px;
  }

  .wa-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .wa-select-wrap {
    flex: unset;
    width: 100%;
  }

  .wa-select-wrap select,
  .wa-input-wrap input {
    border-radius: 6px !important;
    border-right: 1.5px solid #777 !important;
  }

  .wa-input-wrap {
    width: 100%;
  }

  .wa-submit-btn {
    width: 100%;
    border-radius: 6px;
  }

  .footer-bottom .copyright,
  .footer-bottom .dev-credit {
    text-align: center;
    margin: 3px 0;
  }
}

/* ===== BEAUTIFUL BLOG SECTION ===== */
.blog-section {
  background: #fafafa;
}

.blog-section .blog-card {
  background: #fff;
  border-radius: var(--border-radius, 16px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f2f2f2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 124, 0, 0.2);
}

.blog-section .blog-thumb {
  position: relative;
  width: 100%;
  padding-top: 60%;
  /* 16:9 Aspect Ratio approx */
  overflow: hidden;
}

.blog-section .blog-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-section .blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-section .blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.blog-section .blog-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

.blog-section .blog-meta span i {
  /* color: var(--secondary-color); */
  margin-right: 5px;
}

.blog-section .blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-section .blog-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-section .blog-card:hover .blog-title a {
  color: var(--secondary-color);
}

.blog-section .blog-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.blog-section .btn-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-section .btn-read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.blog-section .btn-read-more:hover {
  color: var(--secondary-color);
}

.blog-section .btn-read-more:hover i {
  transform: translateX(5px);
}

/* Section Base */
.call-action-section {
  position: relative;
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.call-action-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://media.istockphoto.com/id/1352603244/photo/shot-of-an-unrecognizable-businessman-working-on-his-laptop-in-the-office.jpg?s=612x612&w=0&k=20&c=upiDYeAZEsxbUBdhX35MXm79drIXA-5Q-FcfmZk71lM=");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark Overlay for readability */
.call-action-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7),
      rgba(37, 99, 235, 0.7));
  z-index: 1;
}

/* Content on top */
.call-action-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.call-action-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.call-action-section p {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Center Content */
.call-action-section .text-center {
  max-width: 750px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .call-action-section {
    padding: 70px 20px;
  }

  .call-action-section h3 {
    font-size: 26px;
  }
}

/* ===== FLOATING CTA WIDGET ===== */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(80px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.cta-pill i {
  font-size: 1.1rem;
}

/* Card button - Blue */
.cta-card {
  background: linear-gradient(135deg, #5b9bd5, #3a7bd5);
}

.cta-card:hover {
  background: linear-gradient(135deg, #3a7bd5, #2563b0);
}

/* Chat button - WhatsApp Green */
.cta-chat {
  background: linear-gradient(135deg, #25d366, #128c48);
}

.cta-chat:hover {
  background: linear-gradient(135deg, #128c48, #0e6e38);
}

/* Buy Now button - Coral/Red */
.cta-buy {
  background: linear-gradient(135deg, #ff6b6b, #ee4444);
}

.cta-buy:hover {
  background: linear-gradient(135deg, #ee4444, #d43030);
}

/* Scroll to top - Outline circle */
.cta-top {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-top:hover {
  background: #333;
  color: #fff;
  transform: translateY(-3px);
}

.cta-top i {
  font-size: 1rem;
}

/* ===== MOBILE: Horizontal bottom bar ===== */
@media (max-width: 768px) {
  .floating-cta {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    /* background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-top: 1px solid rgba(0, 0, 0, 0.08);
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); */
    transform: translateY(100px);
  }

  .floating-cta.show {
    transform: translateY(0);
  }

  .cta-pill {
    padding: 8px 14px;
    font-size: 0.78rem;
    border-radius: 50px;
    flex: 1;
    justify-content: center;
  }

  .cta-pill i {
    font-size: 0.95rem;
  }

  .cta-top {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
  }
}

/* ============================================================
     VISIONARY MESSAGE SECTION
  ============================================================ */
.visionary-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.visionary-img-wrapper {
  position: relative;
  padding: 30px;
}

.visionary-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: var(--secondary-color);
  border-radius: 30px;
  z-index: 0;
  transform: translate(-10px, -10px);
}

.visionary-img-wrapper img {
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  display: block;
}

.visionary-img-card {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: #fff;
  color: #222;
  padding: 25px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-left: 5px solid var(--primary-color);
}

.visionary-img-card h5 {
  margin-bottom: 5px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
}

.visionary-img-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visionary-content {
  position: relative;
  padding-left: 40px;
}

.quote-icon-top {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.visionary-content .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.2;
}

.visionary-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.founder-signature h4 {
  font-weight: 800;
  color: var(--dark);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.connected {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.connected-item {
  width: 150px;
  height: auto;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.connected-item:hover {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.connected-item img {
  max-width: 100%;
  height: auto;
  /* filter: grayscale(1); */
  /* opacity: 0.6; */
  transition: all 0.3s ease;
}

.connected-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1280px) {
  .visionary-img-card {
    bottom: 10px;
    right: 0;
    border-bottom: 5px solid var(--primary-color);
  }
}

@media (max-width: 991px) {
  .visionary-img-wrapper {
    margin-bottom: 40px;
    padding: 20px;
    display: flex;
    justify-content: center;
  }

  .visionary-img-wrapper img {
    width: 90%;
  }

  .visionary-img-wrapper::before {
    width: 95%;
    left: 5%;
  }

  .visionary-img-card {
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
    padding: 20px;
    border-left: none;
    border-bottom: 3px solid var(--primary-color);
  }

  .visionary-content {
    padding-left: 0;
    text-align: center;
  }

  .visionary-content .section-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .visionary-content p {
    font-size: 1rem;
    text-align: center;
  }

  .founder-signature {
    justify-content: center;
    margin-top: 20px;
  }

  .connected {
    justify-content: center;
  }
}

/* ============================================================
     CAREER SECTION REDESIGN
  ============================================================ */
.career-section {
  background: #f8fafc;
  padding: 60px 0;
  position: relative;
}

.career-section .section-title-area {
  margin-bottom: 60px;
}

.career-section .contact-form-div {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.career-section .form-control {
  background: #fcfcfc;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.career-section .form-control:focus {
  background: #fff;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.career-section .btn-submit {
  background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
  color: #fff;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
}

.career-section .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(21, 101, 192, 0.3);
}

/* Apply via Email Card */
.apply-email-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.apply-email-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08) !important;
}

.apply-email-card .text-primary {
  color: var(--secondary-color) !important;
}

.apply-action-area {
  border: 1px dashed var(--secondary-color);
  transition: all 0.3s ease;
}

.apply-email-card:hover .apply-action-area {
  background: #fff !important;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.05);
}

.border-dashed {
  border: 1px dashed #dee2e6;
}

/* Job Cards */
.career-section .feature-list {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.career-section .feature-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary-color);
  opacity: 0.1;
  transition: all 0.3s ease;
}

.career-section .feature-list:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.career-section .feature-list:hover::before {
  width: 100%;
  opacity: 0.03;
}

.career-section .feature-list h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-section .feature-list h5 i {
  color: var(--primary-color);
  font-size: 1.1rem;
  background: rgba(21, 101, 192, 0.08);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.career-section .feature-list p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .career-section {
    padding: 60px 0;
  }

  .career-section .contact-form-div {
    padding: 25px;
    margin-bottom: 40px;
  }
}

/* ============================================================
     BENEFITS SECTION (BUSINESS WEBSITE)
  ============================================================ */
.benefits-section {
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.benefits-section .benefit-card {
  background: #fff;
  padding: 40px 15px;
  border-radius: 24px;
  height: 100%;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefits-section .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right,
      rgba(21, 101, 192, 0.05),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.benefits-section .benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(21, 101, 192, 0.1);
  border-color: rgba(21, 101, 192, 0.1);
}

.benefits-section .benefit-card:hover::before {
  opacity: 1;
}

.benefits-section .benefit-card .icon-box {
  width: 80px;
  height: 80px;
  background: rgba(21, 101, 192, 0.06);
  color: var(--secondary-color);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 30px;
  transition: all 0.5s ease;
}

.benefits-section .benefit-card:hover .icon-box {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(21, 101, 192, 0.2);
}

.benefits-section .benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.benefits-section .benefit-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-section .benefit-card {
    padding: 35px 25px;
  }
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a237e 100%);
  border-radius: 30px;
  /* padding: 60px 50px; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(21, 101, 192, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section .cta-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(245, 124, 0, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.cta-section .cta-card::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(21, 101, 192, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.cta-section .cta-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-section .cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Modern Buttons */
.whatsapp-btn-modern,
.call-btn-modern {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: none;
}

.whatsapp-btn-modern {
  background: #25d366;
  color: #fff !important;
}

.whatsapp-btn-modern:hover {
  background: #1ba54e;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-modern i {
  font-size: 1.4rem;
}

.call-btn-modern {
  background: var(--primary-color);
  color: #fff !important;
}

.call-btn-modern:hover {
  background: #e67300;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(245, 124, 0, 0.3);
}

.call-btn-modern i {
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .cta-card {
    /* padding: 50px 30px; */
    text-align: center;
  }

  .cta-text {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {

  .whatsapp-btn-modern,
  .call-btn-modern {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 60px 0;
  background: var(--gray-bg);
}

.pricing-section .price-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.pricing-section .price-card:hover {
  transform: translateY(-8px);
}

.pricing-section .price-header {
  background: var(--secondary-color);
  text-align: center;
  padding: 26px;
}

.pricing-section .price-header .plan-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.pricing-section .price-header .plan-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.pricing-section .price-amount {
  background: #c0c0c0;
  text-align: center;
  padding: 22px;
}

.pricing-section .price-amount .dollar {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: top;
  padding-top: 10px;
  display: inline-block;
}

.pricing-section .price-amount .amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-section .price-amount .per {
  font-size: 0.85rem;
  color: #777;
}

.pricing-section .price-features {
  padding: 28px;
}

.pricing-section .price-features li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-section .price-features li i {
  color: var(--secondary-color);
  font-size: 0.75rem;
}

.pricing-section .price-btn {
  display: block;
  background: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 0.9rem;
}

.pricing-section .price-btn:hover {
  opacity: 0.88;
  color: #fff;
}

/* ===== GOOGLE TRANSLATE WIDGET ===== */
#google_translate_element {
  display: inline-block;
  vertical-align: middle;
  min-width: 130px;
  min-height: 38px;
}

.goog-te-gadget {
  font-family: "Poppins", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.goog-te-gadget .goog-te-combo {
  padding: 6px 12px !important;
  border-radius: 4px !important;
  border: 1px solid #ddd !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  background: #fff !important;
  color: #333 !important;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Style adjustment for the "Powered by" text to make it subtle rather than hidden (safer) */
.goog-te-gadget span {
  font-size: 10px !important;
  color: #999 !important;
  display: none !important;
  /* Keep hidden but we'll monitor if this causes issues */
}

/* Fix for fixed navbars/banners injected by Google */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

@media (max-width: 991px) {
  .top-header-section .col-lg-5 {
    text-align: center !important;
  }
}

/* ============ STEALTH LANGUAGE PICKER ============ */
.stealth-lang-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}

.stealth-lang-container:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-trigger-visual {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  pointer-events: none;
}

.lang-trigger-visual i.fa-globe {
  color: #3498db;
}

.lang-select-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  z-index: 2;
}

@media (max-width: 991px) {
  .stealth-lang-container {
    margin: 10px 2rem;
  }
}

.multi-demo-wrapper {
  padding-top: 8rem;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory {
  gap: 6rem;
  margin: 0;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item {
  width: calc(50% - 3rem);
  padding: 0;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain {
  gap: 0 1.4rem;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item {
  width: 65%;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item p {
  text-align: center;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  color: #ffff;
  background-color: var(--secondary-color);
  margin-top: 1.2rem;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item p a {
  text-align: center;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  color: #ffff;
  background-color: transparent;
  font-size: 1rem;
  padding: 1rem;
  letter-spacing: 0.5px;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item .catagory-img {
  position: relative;
  height: 25rem;
  overflow: hidden;
  background: black;
  border: 2px solid gray;
  padding: 6px;
  border-radius: var(--border-radius);
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item:last-child {
  width: 35%;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item .catagory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 10s linear;
  border-radius: var(--border-radius);
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item .catagory-contain .catagory-item .catagory-img img:hover {
  object-position: bottom center;
}

.multi-demo-wrapper .tab-content .tab-pane .multi-catagory .multi-item h4 {
  text-align: center;
  padding-bottom: 1.6rem;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

/* ============ FEEDBACK FLOW STYLES ============ */
.smart-flow-section {
  padding: 80px 0;
  background: #fdfdfd;
}

.flow-header {
  margin-bottom: 50px;
}

.flow-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.flow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.flow-positive {
  border-top: 5px solid #28a745;
}

.flow-negative {
  border-top: 5px solid #dc3545;
}

.flow-icon-badge {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.flow-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.flow-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 25px;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.flow-positive .flow-subtitle {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.flow-negative .flow-subtitle {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-list li {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.flow-list li i {
  margin-top: 5px;
  font-size: 1rem;
}

.flow-positive .flow-list li i {
  color: #28a745;
}

.flow-negative .flow-list li i {
  color: #dc3545;
}

.flow-list h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.flow-list p {
  font-size: 0.95rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

/* ============ PRODUCT SHOWCASE SECTION ============ */
.product-showcase-section {
  padding: 50px 0;
}

.showcase-image-wrap {
  text-align: center;
}

.showcase-img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 20px;
  object-fit: contain;
}

.showcase-img-sm {
  max-height: 320px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-badge-blue {
  background: rgba(21, 101, 192, 0.1);
  color: var(--secondary-color);
}

.showcase-badge-green {
  background: rgba(13, 169, 110, 0.1);
  color: #0da96e;
}

.showcase-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.3;
}

.showcase-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.sf-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.sf-icon-blue {
  background: rgba(21, 101, 192, 0.1);
  color: var(--secondary-color);
}

.sf-icon-green {
  background: rgba(13, 169, 110, 0.1);
  color: #0da96e;
}

.showcase-features li:hover .sf-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.showcase-features li:hover .sf-icon-blue {
  background: var(--secondary-color);
  color: #fff;
}

.showcase-features li:hover .sf-icon-green {
  background: #0da96e;
  color: #fff;
}

.showcase-features h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}

.showcase-features p {
  font-size: 0.88rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-showcase-section {
    padding: 50px 0;
  }

  .showcase-img {
    max-height: 350px;
    margin-bottom: 20px;
  }

  .showcase-img-sm {
    max-height: 220px;
  }
}

/* ============ CLIENTS MARQUEE SECTION ============ */
.clients-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.clients-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.logos-wrapper {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

.logos-track {
  display: flex;
  width: calc(250px * 24);
  /* Adjusted for duplicated 12 logos */
  animation: scrollMarquee 40s linear infinite;
  gap: 30px;
  padding: 10px 0;
}

.tech-track {
  width: calc(180px * 28);
  /* 14 items * 2 sets = 28 * 180px */
}

.tech-card {
  width: 100%;
  height: 150px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.tech-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(52, 152, 219, 0.1);
}

.tech-card img {
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.tech-card span {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  font-family: "Poppins", sans-serif;
}

.logo-card {
  width: 250px;
  height: 110px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.4s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(52, 152, 219, 0.1);
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 12));
  }
}

/* Pause on hover for better accessibility */
.logos-wrapper:hover .logos-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logos-track {
    animation-duration: 30s;
    /* Slightly faster on mobile if needed */
    gap: 20px;
  }

  .logo-card {
    width: 160px;
    height: 80px;
  }

  @keyframes scrollMarquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-180px * 12));
    }
  }
}

/* ============ VIDEO MODAL ============ */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-overlay.active .video-modal-container {
  transform: scale(1);
}

.video-modal-content {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.video-modal-close:hover {
  transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
  .video-modal-container {
    width: 95%;
  }

  .video-modal-close {
    top: -40px;
    font-size: 1.5rem;
  }
}

/* ============ ROUND CTA MODE ============ */
.floating-cta.round-mode {
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.cta-round {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-whatsapp {
  background: #25d366;
}

.cta-round.cta-top {
  background: #fff;
  color: #333 !important;
}

.cta-round:hover {
  transform: translateY(-5px) scale(1.05);
}

.cta-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.cta-round.cta-top:hover {
  background: var(--secondary-color);
  color: #fff !important;
}

@media (max-width: 768px) {
  .cta-round {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    font-size: 1.4rem;
    padding: 0 !important;
    border-radius: 50% !important;
  }
}

/* ============ LEAD GENERATION SPECIAL STYLES ============ */
.problem-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.102);
  border-top: 4px solid #ff5252;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(255, 82, 82, 0.1);
}

.problem-card i {
  font-size: 2.2rem;
  color: #ff5252;
  margin-bottom: 25px;
  display: block;
}

.solution-card-mini {
  background: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(21, 101, 192, 0.08);
  height: 100%;
  transition: all 0.4s ease;
}

.solution-card-mini:hover {
  background: var(--secondary-color);
  color: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(21, 101, 192, 0.25);
}

.solution-card-mini i {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.solution-card-mini:hover i {
  color: #fff;
  transform: scale(1.1);
}

.solution-card-mini h6 {
  font-weight: 700;
  margin: 0;
}

.industry-box {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.08);
}

.industry-box .industry-header {
  background: rgba(21, 101, 192, 0.03);
  color: var(--secondary-color);
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.industry-box .industry-header h5 {
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
}

.industry-box .industry-body {
  padding: 35px 30px;
}

.industry-box ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.industry-box ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}

.industry-box ul li:last-child {
  margin-bottom: 0;
}

.industry-box ul li i {
  color: var(--primary-color);
  padding-top: 4px;
  font-size: 0.85rem;
}

.result-stat {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.result-stat .num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.result-stat h6 {
  color: #666;
  font-weight: 600;
  margin: 0;
}

.process-step-vertical {
  position: relative;
  padding-left: 70px;
  margin-bottom: 45px;
}

.process-step-vertical::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: calc(100% + 5px);
  background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.process-step-vertical:last-child::before {
  display: none;
}

.step-number-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
}

.target-audience-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.target-audience-box h6 {
  margin: 0;
  font-weight: 700;
  transition: color 0.3s ease;
}

.target-audience-box:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.2);
}

.target-audience-box:hover h6 {
  color: #fff !important;
}

/* ============ PREMIUM FEATURE CARDS ============ */
.feature-card-premium {
  background: #fff;
  border-radius: 24px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(21, 101, 192, 0.08);
  border-color: rgba(21, 101, 192, 0.1);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(21, 101, 192, 0.06);
  color: var(--secondary-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-icon-box i {
  font-size: 2.2rem;
}

.feature-card-premium:hover .feature-icon-box {
  background: var(--secondary-color);
  color: #fff;
  transform: rotate(10deg);
}

.feature-card-premium h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card-premium p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
     CUSTOM MOBILE NAV (REFERENCE STYLE DRWAER)
  ============================================================ */
@media (max-width: 991px) {
  .offcanvas-start {
    width: 320px;
    border-right: none;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
  }

  .custom-mobile-nav {
    padding-top: 10px;
  }

  .mobile-nav-icon {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.1rem;
    color: #555;
    transition: all 0.3s;
  }

  .custom-mobile-nav .nav-link {
    display: flex !important;
    /* Force flex alignment */
    align-items: center;
    padding: 14px 20px !important;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 30px;
    margin-bottom: 8px;
    transition: all 0.3s;
  }

  /* Active State Styling */
  .custom-mobile-nav .nav-item.active .nav-link {
    background-color: rgba(21, 101, 192, 0.1);
    /* Light version of primary/brand */
    color: var(--primary-color, #1565c0) !important;
    font-weight: 600;
  }

  .custom-mobile-nav .nav-item.active .nav-link .mobile-nav-icon {
    color: var(--primary-color, #1565c0);
  }

  .custom-mobile-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color, #1565c0);
  }

  .custom-mobile-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.159) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    margin: 5px 10px 10px 15px;
    padding: 10px 0;
  }

  .custom-mobile-nav .dropdown-menu .dropdown-item {
    padding: 12px 20px 12px 30px;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: normal;
    transition: background-color 0.3s;
  }

  .custom-mobile-nav .dropdown-menu .dropdown-item:hover,
  .custom-mobile-nav .dropdown-menu .dropdown-item:focus {
    background-color: rgba(21, 101, 192, 0.06);
    color: var(--primary-color, #1565c0);
  }

  .custom-mobile-cta {
    background-color: #2e7d32 !important;
    /* Rich green for WhatsApp */
    border-color: #2e7d32 !important;
    color: white !important;
    font-size: 1.05rem;
    transition: transform 0.3s;
  }

  .custom-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
  }

  .mobile-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding-bottom: 20px;
  }

  .mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f1f5f9;
    color: var(--secondary-color, #1565c0);
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid var(--secondary-color, #1565c0);
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .mobile-social-links a:hover {
    background-color: var(--primary-color, #1565c0);
    color: #fff;
    border: 1px solid var(--primary-color, #1565c0);
  }
}



/* ============ PRODUCT TABS ============ */

/* ============ SCROLL BEHAVIOR ============ */
html {
  scroll-behavior: smooth;
}

/* Add scroll margin to account for sticky tab bar */
#features,
#demo,
#pricing,
#buy {
  scroll-margin-top: 100px;
}

/* ============ PRODUCT NAVIGATION BAR ============ */
.product-tabs-wrapper {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.product-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-tabs-nav .nav-item {
  margin: 0;
}

.product-tabs-nav .nav-link {
  color: #555 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px !important;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.product-tabs-nav .nav-link i {
  font-size: 1rem;
  opacity: 0.8;
}

.product-tabs-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(245, 124, 0, 0.05);
}

.product-tabs-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%) !important;
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.2);
  transform: translateY(-1px);
}

.product-tabs-nav .nav-link.active i {
  opacity: 1;
}

@media (max-width: 768px) {
  .product-tabs-nav {
    flex-wrap: wrap !important;
    /* gap: 3px; */
    padding: 0 1px;
  }

  .product-tabs-nav .nav-link {
    padding: 5px 10px !important;
    font-size: 0.8rem;
    gap: 2px;
  }

  .product-tabs-nav .nav-link i {
    display: none !important;
  }

  .product-tabs-wrapper {
    padding: 10px 0;
  }

  #features,
  #demo,
  #pricing,
  #buy {
    scroll-margin-top: 120px;
    /* Larger margin for mobile due to potential wrapping */
  }
}