/* ============ CSS VARIABLES ============ */
:root {
  --primary-color: #D4A800;
  --primary-color-light: #D4A800;
  --secondary-color: #001F8F;
  --dark: #1a1a2e;
  --dark2: #111111;
  --gray-bg: #ededed;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --border-radius: 16px;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  top: 0px !important;
  /* Fix Google Translate body offset */
}

html {
  scroll-behavior: smooth;
}

/* ============ 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;
}

/* ============ UTILITY ============ */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.background-primary {
  background-color: #e3ecfd !important;
}

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

.background-blue-light {
  background: #e3eefa !important;
}

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

.bg-gradient-light {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%) !important;
}

.bg-gradient-soft {
  background: linear-gradient(135deg, #ffffff 0%, #f4f7f9 100%) !important;
}

.bg-gradient-primary-light {
  background: linear-gradient(135deg, rgba(33, 51, 88, 0.04) 0%, #ffffff 100%) !important;
}

.bg-gradient-brand-light {
  background: linear-gradient(135deg, rgba(33, 51, 88, 0.04) 0%, rgba(215, 24, 32, 0.04) 100%) !important;
}

/* ============ PREMIUM ABSTRACT BACKGROUND ============ */
.bg-premium-abstract {
  position: relative;
  background-color: #ffffff;
  /* Dot grid pattern */
  background-image: radial-gradient(rgba(33, 51, 88, 0.1) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
  overflow: hidden;
  z-index: 1;
}

/* Blurred Blobs */
.bg-premium-abstract::before,
.bg-premium-abstract::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}

.bg-premium-abstract::before {
  top: -200px;
  left: -200px;
  background: var(--secondary-color);
}

.bg-premium-abstract::after {
  bottom: -200px;
  right: -200px;
  background: var(--secondary-color);
}


@media (max-width: 768px) {

  .bg-premium-abstract::before,
  .bg-premium-abstract::after {
    width: 300px;
    height: 300px;
  }
}


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

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

/* ============ CONTAINER ============ */
.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 ============ */
.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;
  }
}

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

/* ============ NAVBAR ============ */
#top-header-placeholder {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
}

.navbar {
  background: #ffffff;
  padding: 7px 0;
}

.navbar.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 7px 0;
}

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

.navbar-brand img {
  width: 100%;
  object-fit: contain;
  height: 70px;
}

.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(--primary-color) !important;
}

@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: #0f172a24;
}

.navbar .dropdown-item.active {
  color: var(--primary-color) !important;
  background-color: #0f172a24;
}

@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;
  }
}

/* ============ MOBILE OFFCANVAS NAV ============ */
@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;
    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;
  }

  .custom-mobile-nav .nav-item.active .nav-link {
    background-color: rgba(21, 101, 192, 0.1);
    color: var(--primary-color) !important;
    font-weight: 600;
  }

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

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

  .custom-mobile-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16) !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);
  }

  .custom-mobile-cta {
    background-color: #2e7d32 !important;
    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);
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid var(--secondary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

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

/* ============ 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;
}

@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%;
}

/* ============ SECTION LABELS & TITLES ============ */
.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;
}

/* ============ HOME PRODUCTS ============ */
.home-products-section {
  padding: 60px 0 60px 0px;
  background: #e5ecf4;
}

.home-products-header {
  margin-bottom: 50px;
}

.home-products-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* .home-products-title span {
  color: var(--secondary-color);
} */

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-products-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 260px;
  padding: 30px 26px 12px;
  overflow: hidden;
  border-radius: 14px;
  /* background: #f0f3f8; */
  background: transparent;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: homeProductsCardIn 0.5s ease both;
  border: 2px solid var(--secondary-color);
  box-shadow: none;
}

.home-products-card:hover {
  background: var(--secondary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.15);
}

.home-products-card:nth-child(2) {
  animation-delay: 0.1s;
}

.home-products-card:nth-child(3) {
  animation-delay: 0.2s;
}

.home-products-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Active class removed - moving to hover */

.home-products-card-title {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-products-card-desc {
  flex-grow: 1;
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-products-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-products-card:hover .home-products-arrow {
  background: #fff;
  color: var(--secondary-color);
  transform: rotate(45deg);
}

.home-products-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background: var(--secondary-color);
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.home-products-card-icon-wrap i {
  color: #fff !important;
}

.home-products-icon {
  width: 32px;
  height: 32px;
}

.home-products-icon path,
.home-products-icon circle,
.home-products-icon rect,
.home-products-icon polyline,
.home-products-icon line,
.home-products-icon ellipse {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-products-card:hover .home-products-card-title {
  color: #fff;
}

.home-products-card:hover .home-products-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.home-products-card:hover .home-products-card-icon-wrap {
  background: #fff;
}

.home-products-card:hover .home-products-icon path,
.home-products-card:hover .home-products-icon circle,
.home-products-card:hover .home-products-icon rect,
.home-products-card:hover .home-products-icon polyline,
.home-products-card:hover .home-products-icon line,
.home-products-card:hover .home-products-icon ellipse {
  stroke: var(--secondary-color);
}

.home-products-card:hover .home-products-card-icon-wrap i {
  color: var(--secondary-color) !important;
}

@keyframes homeProductsCardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-products-section {
    padding: 55px 0 65px;
  }

  .home-products-header {
    margin-bottom: 32px;
  }

  .home-products-grid {
    grid-template-columns: 1fr;
  }

  .home-products-card {
    min-height: 220px;
  }
}

/* ============ INNER PAGE HERO ============ */
.inner-hero-section {
  background:
    linear-gradient(135deg, #001f8fa8 40%, #d4aa006b 100%),
    url("assest/images/banner-img.png") center center / cover no-repeat;
  padding: 70px 0 55px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.inner-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.inner-hero-section .container {
  position: relative;
  z-index: 2;
}

.inner-hero-section h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-transform: capitalize;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.inner-hero-section .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-hero-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.inner-hero-section .breadcrumb-item a:hover {
  color: #fff;
}

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

.inner-hero-section .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: " \f105 ";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px;
}


/* ============ ABOUT US ============ */
.about-us {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-content .section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.about-content h4 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.about-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.6 !important;
}

.about-content p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.8 !important;
}

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

.list-with-check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px !important;
  color: #444;
}

.list-with-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 14px;
}

.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 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us .about-img-placeholder img {
  border-radius: var(--border-radius);
  max-width: 100%;
  height: auto;
}

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

/* ============ BUTTONS ============ */
.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 ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.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-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 ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff !important;
  border: 2px solid var(--primary-color);
  box-shadow: 0 6px 15px rgba(13, 169, 109, 0.287);
}

.btn-primary:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff !important;
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  transform: translateY(-3px);
}

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

.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  transform: translateY(-3px);
  border: 2px solid var(--secondary-color);
}

/* ============ Home_cards FULL SECTION (About Page) ============ */
.home-cards-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-cards-section .vmv-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  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 ease;
  z-index: 1;
  overflow: hidden;
}

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

.primary-card .icon-wrap {
  background: rgba(212, 168, 0, 0.2);
  color: var(--secondary-color);
}

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

.home-cards-section .vmv-card p {
  text-align: center;
}

.home-cards-section .vmv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

.home-cards-section .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;
}

.home-cards-section .vision-card .icon-wrap {
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-color);
}

/* ============ VMV FULL SECTION (About Page) ============ */
.vmv-section {
  padding: 60px 0;
  background: #e5ecf4;
  position: relative;
  overflow: hidden;
}


.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 ease;
  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);
}

.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: rgba(245, 124, 0, 0.1);
  color: var(--primary-color);
}

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

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

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

.vision-card:hover .icon-wrap {
  background: var(--primary-color);
  color: #fff;
}

.mission-card:hover .icon-wrap {
  background: var(--secondary-color);
  color: #fff;
}

.value-card:hover .icon-wrap {
  background: #0da96e;
  color: #fff;
}

.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;
}

/* ============ STATS ============ */
#stats {
  background: #000B3D;
  padding: 70px 0;
}

.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;
}

/* ============ TESTIMONIAL/GOOGLE REVIEWS ============ */
.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: calc(100% - 20px);
  /* Adjust for margin */
  display: flex;
  flex-direction: column;
}

/* Slick Slider Equal Height Fix */
.testimonial-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.testimonial-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.testimonial-slider .slick-slide>div {
  width: 100%;
  display: flex;
}

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

.testimonial-section .review-card p {
  flex-grow: 1;
}

.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 {
  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;
}

/* ============ CALL TO ACTION SECTION ============ */
.call-action-section {
  position: relative;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
  background-color: var(--primary-color);
}

.call-action-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
  transform: scale(1.1);
  transition: transform 10s linear;
}

.call-action-section:hover::before {
  transform: scale(1);
}

.call-action-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #d4aa0091 0%,
      #001f8fd8 100%);
  z-index: 1;
}

.call-action-section .container {
  position: relative;
  z-index: 2;
}

.cta-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 70%);
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.call-action-section h3 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #f8fafc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.call-action-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.transition-icon {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .transition-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-action-section {
    padding: 60px 0;
  }

  .cta-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .call-action-section h3 {
    font-size: 2rem;
  }

  .call-action-section p {
    font-size: 1.1rem;
  }
}

/* ============ VISIONARY MESSAGE ============ */
.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;
}

.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;
}

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

.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;
  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;
  }
}

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

.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(33, 51, 88, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(215, 24, 32, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.logos-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
  display: flex;
  width: calc(260px * 24);
  /* 24 logos * (logo width + gap) */
  animation: scrollMarquee 40s linear infinite;
  gap: 30px;
  padding: 20px 0;
}

.tech-track {
  width: calc(180px * 28);
}

.logo-card {
  flex: 0 0 230px;
  height: 180px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.072);
}

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

.logo-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(33, 51, 88, 0.1);
  box-shadow: 0 20px 40px rgba(33, 51, 88, 0.08);
  background: #fff;
}

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

.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);
}

.tech-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tech-card img {
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

.tech-card span {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

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

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

.logos-wrapper:hover .logos-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logos-track {
    animation-duration: 30s;
    gap: 20px;
    width: calc(180px * 24);
  }

  .logo-card {
    flex: 0 0 160px;
    height: 80px;
    padding: 15px;
    border-radius: 12px;
  }

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

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

/* ============ FOOTER ============ */
.foot-other-info {
  background-color: #000B3D;
  padding: 70px 0 40px;
  color: #000;
  font-size: 0.95rem;
}

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

.foot-other-info .flogo {
  display: inline-block;
  margin-bottom: 25px;
  background-color: white;
  padding: 5px;
  border-radius: 8px;
}

.foot-other-info .foot-title {
  color: #FFF9E6;
  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(--secondary-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: #FFF9E6;
  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: #FFF9E6;
}

.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: #FFF9E6;
  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: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.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;
  }
}

.footer-bottom {
  background: var(--secondary-color);
  padding: 15px 0;
}

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

.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: #ffffff;
  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: #ffffff;
  text-align: center;
}

.footer-bottom .unlock-text a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

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

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

.footer-bottom .dev-credit a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

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

@media (max-width: 768px) {

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



/* ============ 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;
}

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

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

.cta-chat {
  background: linear-gradient(135deg, #25d366, #128c48);
}

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

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

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

.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;
}

/* Round mode (non-product pages) */
.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 ease;
  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) {
  .floating-cta {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    transform: translateY(100px);
  }

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

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

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

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

/* ============ VIDEO MODAL ============ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  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;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

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

.video-modal-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-modal-content iframe {
  position: absolute;
  inset: 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;
}

.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;
  }
}

/* ============ 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;
  inset: 0;
  opacity: 0 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  z-index: 2;
}

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

/* ============ 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;
}

.goog-te-gadget span {
  font-size: 10px !important;
  color: #999 !important;
  display: none !important;
}


.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* ============ SOURCING SECTION ============ */
.SourcingSec {
  padding: 70px 0;
  background-color: #F3F6FA;
  background-image: radial-gradient(var(--primary-color-light) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
}

.SourcingSec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.pagehding {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.defultHdng1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.defultHdng1 span {
  color: var(--secondary-color);
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  width: 100%;
}

.pagehding p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .SourcingSec {
    padding: 70px 0;
  }

  .defultHdng1 {
    font-size: 1.75rem;
  }

  .pagehding p {
    font-size: 1rem;
  }
}

/* ============ TEAM SECTION ============ */
.team-section {
  padding: 60px 0;
  background-color: #e5ecf4;
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}

.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 51, 88, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-social-overlay a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social-overlay a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.1);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-transform: capitalize;
}

.member-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

/* ============ BUSINESS PROCESS ============ */
.process-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.065) !important;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--secondary-color) !important;
}


.process-card .process-icon i {
  color: var(--secondary-color);
}

.process-card .step-num {
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  color: var(--primary-color);
}

.process-card h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 25px;
}

/* ============ CONTACT PAGE STYLES ============ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background-color: #f8faff;
  background-image:
    radial-gradient(var(--primary-color) 0.5px, transparent 0.5px),
    radial-gradient(var(--primary-color) 0.5px, #f8faff 0.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 1;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  box-shadow: 0 10px 30px rgba(33, 51, 88, 0.13);
  position: relative;
  z-index: 2;
  padding: 30px !important;
}

.contact-info-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(33, 51, 88, 0.12);
  /* border-color: var(--secondary-color); */
  background: #fff;
}

.contact-icon-wrap {
  width: 75px;
  height: 75px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(33, 51, 88, 0.1);
  margin-bottom: 25px !important;
}

.contact-info-card:hover .contact-icon-wrap {
  background: var(--primary-color);

  transform: rotate(10deg) scale(1.1);
}

.contact-info-card h5 {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.contact-info-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 500;
}

.inquiry-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.inquiry-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.captcha-eq {
  font-family: monospace;
  background: #f8f9fa !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-send-msg {
  background: var(--secondary-color) !important;
  border: none !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.btn-send-msg:hover {
  background: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
}

.map-wrapper {
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 51, 88, 0.13);
  border: 8px solid #fff !important;
}

.map-wrapper ifram {
  border-radius: 20px;
}

.map-wrapper iframe {
  display: block;
}

/* ============ UTILITY CLASSES ============ */
.border-start-primary {
  border-left: 5px solid var(--primary-color) !important;
}

.border-top-primary {
  border-top: 5px solid var(--primary-color) !important;
}

.border-top-secondary {
  border-top: 5px solid var(--secondary-color) !important;
}

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

.max-w-900 {
  max-width: 900px;
}

.max-w-800 {
  max-width: 800px;
}

.font-1-05 {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

.font-0-95 {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.font-1-1 {
  font-size: 1.1rem !important;
}

.brand-hr {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  opacity: 1;
  border: none;
  border-radius: 2px;
}

/* Mode-specific mobile fixes for Floating CTA */
@media (max-width: 768px) {
  .floating-cta.round-mode {
    left: auto !important;
    right: 20px !important;
    bottom: 25px !important;
    flex-direction: column !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 12px !important;
  }

  .floating-cta.round-mode .cta-round {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.3rem !important;
  }
}

/* ============ PRODUCT PAGE PREMIUM CARDS ============ */
.product-page-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.048);
}

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

.product-img-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f8f9fa;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-page-card:hover .product-img-container img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(215, 24, 32, 0.3);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.product-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}

.btn-enquire {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* space between text and arrow */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-enquire:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-enquire:hover::after {
  transform: translateX(5px);
}

.btn-whatsapp-icon {
  width: 45px;
  height: 45px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 100%;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-icon:hover {
  background: #1daf53;
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-img-container {
    height: 200px;
  }
}

.documents-section {
  padding: 60px 0;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.documents-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%;
}

.documents-section .doc-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  box-shadow: 0px 4px 44px -7px rgba(0, 0, 0, 0.142);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.documents-section .doc-card .doc-img {
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 20px;
}

.documents-section .doc-card .doc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}


.documents-section .doc-card .doc-content {
  padding-top: 25px;
  text-align: center;
}

.documents-section .doc-card .doc-content h4 {
  font-size: 1.10rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.gallery-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.gallery-section .gallery-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  box-shadow: 0px 4px 44px -7px rgba(0, 0, 0, 0.142);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.gallery-section .gallery-card .gallery-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-section .gallery-card .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.service-detail {
  padding: 60px 0;
}

.service-detail .elementor-widget-container li {
  padding: 5px;
  margin-bottom: 8px;
}

.service-detail .elementor-widget-container p {
  font-size: 18px;
}

/* ============ SERVICE SIDEBAR ============ */
.service-sidebar {
  background: #f8faff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .service-sidebar {
    margin-bottom: 30px;
  }
}

.service-sidebar h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
}

.service-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar ul li {
  margin-bottom: 5px;
}

.service-sidebar ul li:last-child {
  margin-bottom: 0;
}

.service-sidebar ul li a {
  display: block;
  padding: 10px 15px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.086);
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-sidebar ul li a i {
  margin-right: 10px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-sidebar ul li a:hover i,
.service-sidebar ul li a.active i {
  color: #fff;
}

/* ============ INDUSTRY CARDS ============ */
.industry-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.industry-card:hover::before {
  opacity: 0.05;
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.industry-card:hover .industry-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 10px 25px rgba(212, 168, 0, 0.3);
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-title {
  color: var(--secondary-color);
}

/* ============ WHY CHOOSE US ============ */
.wcu-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Card */
.wcu-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px 28px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.118);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.wcu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.4s ease;
}

.wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(33, 51, 88, 0.1);
  border-color: rgba(33, 51, 88, 0.08);
}



/* Icon wraps – unique colour per card */
.wcu-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.wcu-icon-1 {
  background: rgba(33, 51, 88, 0.10);
  color: #213358;
}

.wcu-icon-2 {
  background: rgba(212, 168, 0, 0.12);
  color: #b08d00;
}

.wcu-icon-3 {
  background: rgba(21, 101, 192, 0.10);
  color: #1565c0;
}

.wcu-icon-4 {
  background: rgba(76, 175, 80, 0.10);
  color: #2e7d32;
}

.wcu-icon-5 {
  background: rgba(233, 30, 99, 0.10);
  color: #c2185b;
}

.wcu-icon-6 {
  background: rgba(103, 58, 183, 0.10);
  color: #5e35b1;
}

.wcu-card:hover .wcu-icon-1 {
  background: #213358;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.wcu-card:hover .wcu-icon-2 {
  background: #b08d00;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.wcu-card:hover .wcu-icon-3 {
  background: #1565c0;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.wcu-card:hover .wcu-icon-4 {
  background: #2e7d32;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.wcu-card:hover .wcu-icon-5 {
  background: #c2185b;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.wcu-card:hover .wcu-icon-6 {
  background: #5e35b1;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

/* Card text */
.wcu-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wcu-card-desc {
  font-size: 0.92rem;
  color: #667085;
  line-height: 1.75;
  margin: 0;
}

/* Decorative line (now replaced by ::after bar) */
.wcu-card-line {
  display: none;
}

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

  .wcu-card {
    padding: 28px 22px 22px;
  }
}

/* ============ KEY FEATURES ============ */
.kf-section {
  padding: 60px 0;
  position: relative;
}

.kf-subtitle {
  color: #667085;
  font-size: 1rem;
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.7;
}

/* Feature item card */
.kf-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border-left: 3px solid transparent;
  flex: 1;
}

.kf-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.103);
}

.kf-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  line-height: 1.35;
}

.kf-item-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Center image */
.kf-center-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
}

.kf-center-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}

@media (max-width: 991px) {
  .kf-center-img {
    max-height: 380px;
    overflow: hidden;
  }

  .kf-center-img img {
    object-position: top;
  }
}

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


/* ===== 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.157);
  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;
  }
}

/* ============ VIDEO SECTION ============ */
.video-section {
  padding: 60px 0;
  background: #eeeeee;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.145);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

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

.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

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

.video-card:hover .video-thumb img {
  transform: scale(1.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color, #ff6b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  animation: pulse-orange 2s infinite;
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #fff;
  color: var(--primary-color, #ff6b00);
}

@keyframes pulse-orange {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }

  70% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.video-info {
  padding: 20px;
  text-align: center;
}

.video-info h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.video-card:hover .video-info h6 {
  color: var(--primary-color, #ff6b00);
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: #fff;
  color: #1e293b;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}

.show-more-btn:hover {
  background: var(--primary-color, #ff6b00);
  border-color: var(--primary-color, #ff6b00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.show-more-btn .arrow {
  transition: transform 0.3s ease;
}

.show-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* ============ CUSTOMER REVIEW VIDEOS SECTION ============ */
.review-videos-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 249, 230, 0.45) 0%, rgba(255, 255, 255, 1) 90.7%) !important;
  padding: 80px 0;
}

.reel-card-wrapper {
  background: transparent;
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 20px;
}

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

/* Dynamic styling for the generated Instagram iframe */
.reel-card-wrapper iframe {
  border-radius: 20px !important;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(212, 168, 0, 0.1) !important; */
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: #ffffff !important;
}

.reel-card-wrapper:hover iframe {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14), 0 0 25px rgba(0, 0, 0, 0.13) !important;
  /* border-color: rgba(212, 168, 0, 0.45) !important; */
}

@media (max-width: 768px) {
  .review-videos-section {
    padding: 60px 0;
  }
}