/* ==========================================
       GLOBAL STYLES & EXACT COLOR VARS
    ========================================== */
:root {
  --topbar-bg: rgba(15, 23, 42, 0.65);
  --topbar-text: #E2E8F0;
  --header-bg-50: rgba(15, 23, 42, 0.50);
  /* 50% Opacity Semi-Transparent Header */
  --accent-orange: #FF6600;
  --accent-orange-hover: #E05500;
  --icon-amber: #FFB300;

  --accent-color: #e06d20;
  --accent-hover: #f17827;
  --bg-main: #f8fafc;
  /* Refreshed Light Background */
  --bg-card: #ffffff;
  /* Crisp White Cards */
  --border-color: #e2e8f0;
  /* Soft Gray Border */
  --fsi-navy: #0e2340;
  --fsi-navy-2: #14315a;
  --fsi-orange: #26489f;
  --fsi-orange-dark: #042068;
  --fsi-white: #ffffff;
  --fsi-cream: #fef6f0;
  --fsi-gray: #64748b;
  --fsi-line: #cbd5e1;
  --crimson: #8b1a2e;
  --crimson-d: #6b1223;
  --crimson-l: #a82238;
  --navy: #162740;
  --navy-l: #1f3a5f;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --offwhite: #f1f5f9;
  --text-muted: #475569;
  --text-dark: #0f172a;
  /* Dark Text for High Contrast */
  --fsi-font-nav: "Poppins", sans-serif;
  --fsi-font-body: "Poppins", sans-serif;
  --fsi-skew: -12deg;
  --wa-green: #25d366;
  --wa-dark-green: #075e54;
  --wa-teal: #128c7e;
  --wa-chat-bg: #e5ddd5;
  --fsi-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);

  --crimson: #8b1a2e;
  --crimson-d: #6b1223;
  --navy: #162740;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --font-body: "DM Sans", sans-serif;
  --rx-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0F172A;
  overflow-x: hidden;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 109, 32, 0.3);
  text-decoration: none;
  padding: 10px 20px;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(224, 109, 32, 0.5);
  transform: translateY(-1px);
}


/* ==========================================
       1. TOP BAR (TRANSPARENT / OVERLAY)
    ========================================== */
.top-bar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background: var(--topbar-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--topbar-text);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-overlay a {
  color: var(--topbar-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-overlay a:hover {
  color: var(--accent-orange);
}

.top-bar-overlay .social-links a {
  color: #CBD5E1;
  margin-left: 12px;
  font-size: 0.88rem;
}

.top-bar-overlay .social-links a:hover {
  color: var(--accent-orange);
}

/* ==========================================
       2. HEADER (LIGHT / 50% OPACITY GLASS EFFECT)
    ========================================== */
.header-nav-overlay {
  position: absolute;
  top: 32px;
  /* Positioned directly under top bar */
  left: 0;
  width: 100%;
  z-index: 1020;
  background: #fff;
  /* 50% Opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo Gear SVG Icon */
.gear-emblem-svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo Text "NP TECHNOSERVE" */
.brand-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

/* Logo Subtitle "AUTOMATION & DRIVE SOLUTIONS" */
.brand-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: #CBD5E1;
  text-transform: uppercase;
  margin-top: 3px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ==========================================
       3. MULTI-LEVEL DROPDOWN NAVIGATION
    ========================================== */
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #4b4a4a !important;
  text-transform: uppercase;
  padding: 30px 0.9rem !important;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  text-shadow: 0px 1px 3px #e0e0e080;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-orange) !important;
}

/* Multi-level Dropdown Styling */
.dropdown-menu {
  background-color: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 0.5rem 0;
  /* margin-top: 8px; */
}

.dropdown-item {
  font-weight: 600;
  font-size: 0.85rem;
  color: #E2E8F0;
  padding: 0.65rem 1.25rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 102, 0, 0.15);
  color: var(--accent-orange);
}

/* Multi-level Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  display: none;
}

@media (min-width: 992px) {

  .dropdown-submenu:hover>.dropdown-menu,
  .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.dropdown-submenu>a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  margin-top: 2px;
}

/* Orange CTA Button */
.btn-get-quote {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.4);
  transition: all 0.2s ease;
}

.btn-get-quote:hover {
  background-color: var(--accent-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================
       4. MOVING HERO SLIDER (CAROUSEL)
    ========================================== */
.hero-slider .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Slider Dark Image Overlay */
.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-slider .carousel-caption {
  bottom: 28%;
  text-align: left;
  z-index: 2;
  left: 5%;
}

.hero-slider h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-slider p {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  max-width: 650px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.btn-slider-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-slider-primary:hover {
  background-color: var(--accent-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-slider-outline {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 12px;
  transition: all 0.3s ease;
}

.btn-slider-outline:hover {
  background: #FFFFFF;
  color: #0F172A;
}

@media (max-width: 991px) {
  .top-bar-overlay {
    position: relative;
  }

  .header-nav-overlay {
    position: relative;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
  }

  .hero-slider .carousel-item {
    height: 75vh;
  }

  .hero-slider h1 {
    font-size: 2.2rem;
  }
}


/* ==========================================
     SECTION BASE STYLES
  ========================================== */
.about-section-grid {
  background-color: #eaf8ff;
  color: #0F172A;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Loud Badge */
.loud-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6600;
  color: #FFFFFF;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
}

/* Headlines */
.loud-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 35px;
  line-height: 1.2;
  color: #0F172A;
  margin-top: 18px;
  letter-spacing: -0.5px;
}

.loud-title .highlight-blue {
  color: #0284C7;
}

.loud-desc {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 600;
}

/* ==========================================
     PERFECT 4-TILE CSS IMAGE GRID
  ========================================== */
.image-grid-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 16px;
  height: 480px;
  width: 100%;
}

.grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border: 3px solid #FFFFFF;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.08);
}

/* Grid Positioning (2 Large, 2 Small Tiles) */
.grid-item-1 {
  grid-column: 1 / 7;
  grid-row: 1 / 8;
}

.grid-item-2 {
  grid-column: 7 / 13;
  grid-row: 1 / 6;
}

.grid-item-3 {
  grid-column: 1 / 7;
  grid-row: 8 / 13;
}

.grid-item-4 {
  grid-column: 7 / 13;
  grid-row: 6 / 13;
}

/* Floating Center Badge over Grid */
.grid-center-badge {
  position: absolute;
  top: 40.25%;
  left: 36%;
  transform: translate(-50%, -50%);
  background: #0284C7;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
  border: 4px solid #FFFFFF;
  z-index: 10;
  text-align: center;
}

.grid-center-badge .num {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.grid-center-badge .text {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  white-space: nowrap;
}

/* Feature Cards */
.loud-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.loud-card:hover {
  border-color: #FF6600;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(255, 102, 0, 0.15);
}

.loud-card-icon {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.loud-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 6px;
}

.loud-card-desc {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* Counter Box */
.loud-stat-box {
  background: #FFFFFF;
  border-left: 4px solid #FF6600;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.loud-stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
}

.loud-stat-label {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Mobile Responsive Grid Fix */
@media (max-width: 575px) {
  .image-grid-container {
    height: 360px;
    gap: 10px;
  }

  .grid-center-badge {
    padding: 10px 16px;
  }

  .grid-center-badge .num {
    font-size: 1.5rem;
  }
}


/* --- Products Section Base --- */
.products-section {
  background-color: var(--bg-main, #0a0c0e);
  color: #e06d20;
}

/* --- Category Filter Buttons --- */
.filter-btn {
  background: var(--bg-card, #121519);
  color: #9ca3af;
  border: 1px solid var(--border-color, #1f242b);
  padding: 0.6rem 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.filter-btn:hover {
  color: #e06d20;
  border-color: var(--accent-color, #e06d20);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--accent-color, #e06d20);
  color: #ffffff;
  border-color: var(--accent-color, #e06d20);
  box-shadow: 0 4px 15px rgba(224, 109, 32, 0.35);
}

/* --- Product Card Container & Image Hover Effects --- */
.product-card {
  background: var(--bg-card, #121519);
  border: 1px solid var(--border-color, #1f242b);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 109, 32, 0.5);
  box-shadow: 0 15px 35px #878787b3;
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1);
}

.product-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: rgba(10, 12, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-color, #e06d20);
  border: 1px solid rgba(224, 109, 32, 0.3);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  border-radius: 2px;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 14, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

/* --- Card Body & Badges --- */
.product-title {
  color: #e06d20;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--accent-color, #e06d20);
}

.product-desc {
  font-size: 0.85rem;
  color: #383838;
  line-height: 1.5;
}

.spec-badge {
  background: rgba(31, 36, 43, 0.6);
  border: 1px solid var(--border-color, #1f242b);
  color: #d1d5db;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.product-price {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.details-link {
  color: #0284c7;
  font-size: 0.75rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.details-link i {
  transition: transform 0.3s ease;
}

.product-card:hover .details-link {
  color: var(--accent-color, #e06d20);
}

.product-card:hover .details-link i {
  transform: translateX(4px);
}

/* Tab Filtering Smooth Animations */
.product-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.why-choose-section {
  background-color: #f8ede6;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Glowing Orb Ambient Effect */
.bg-ambient-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Badge Label */
.section-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--fsi-cream);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

/* Section Headline */
.why-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.why-title .accent-text {
  color: var(--accent-orange);
  position: relative;
}

.why-description {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 400;
}

.creative-img-wrapper {
  position: relative;
  padding: 20px;
}

/* Dashed Border Frame Accent */
.creative-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  border: 2px dashed var(--accent-orange);
  border-radius: 24px;
  opacity: 0.4;
  z-index: 1;
}

/* Main Primary Image */
.main-img-box {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
  /* transform: rotate(-1.5deg); */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-img-box:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: var(--fsi-shadow);
}

.main-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Secondary Overlapping Image */
.secondary-img-box {
  position: absolute;
  bottom: -30px;
  right: 10px;
  width: 58%;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--bg-card);
  box-shadow: var(--fsi-shadow);
  transition: transform 0.4s ease;
}

.secondary-img-box:hover {
  transform: translateY(-6px);
}

.secondary-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Skew Experience Badge */
.skew-experience-badge {
  position: absolute;
  bottom: 10%;
  right: 30px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  padding: 14px 22px;
  transform: skewX(var(--fsi-skew));
  box-shadow: var(--shadow-md);
  z-index: 4;
  border-left: 4px solid var(--accent-orange);
  border-radius: 4px;
}

.skew-experience-badge .badge-inner {
  transform: skewX(calc(-1 * var(--fsi-skew)));
  text-align: center;
}

.skew-experience-badge .exp-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
  display: block;
}

.skew-experience-badge .exp-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--topbar-text);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-orange);
  transition: height 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 102, 0, 0.3);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--fsi-cream);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-orange);
  color: var(--fsi-white);
  transform: scale(1.08);
}

.feature-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 10px;
}

.btn-skew-cta {
  background-color: var(--accent-orange);
  color: var(--fsi-white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  transform: skewX(var(--fsi-skew));
}

.btn-skew-cta .btn-content {
  transform: skewX(calc(-1 * var(--fsi-skew)));
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-skew-cta:hover {
  background-color: var(--accent-orange-hover);
  color: var(--fsi-white);
  box-shadow: 0 12px 26px rgba(224, 85, 0, 0.4);
  transform: skewX(var(--fsi-skew)) translateY(-3px);
}

.hotline-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fsi-navy);
  color: var(--icon-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.hotline-info .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fsi-gray);
  letter-spacing: 0.5px;
  display: block;
}

.hotline-info .phone-number {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hotline-info .phone-number:hover {
  color: var(--accent-orange);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .creative-img-wrapper {
    margin-bottom: 50px;
  }

  .why-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 575px) {
  .secondary-img-box {
    width: 65%;
    bottom: -20px;
  }

  .skew-experience-badge {
    padding: 10px 16px;
    top: 15px;
    right: 15px;
  }

  .skew-experience-badge .exp-num {
    font-size: 1.4rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-skew-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Testimonial Section Base */
.testimonial-section {
  background-color: var(--bg-main);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Decorative Grid */
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Section Badge */
.testi-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--fsi-cream);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

/* Override Owl Carousel Flexbox for Equal Heights */
.owl-stage {
  display: flex !important;
}

.owl-item {
  display: flex !important;
  flex: 1 0 auto;
}

.owl-item .item {
  width: 100%;
  display: flex;
}

.testi-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.testi-title .accent-text {
  color: var(--accent-orange);
  position: relative;
}

/* Testimonial Card */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px 28px;
  margin: 15px 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testi-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testi-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fsi-shadow);
  border-color: rgba(255, 102, 0, 0.3);
}

.testi-card:hover::after {
  opacity: 1;
}

/* Top Rating & Quote Icon Row */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.star-rating {
  color: var(--icon-amber);
  font-size: 0.92rem;
  display: flex;
  gap: 3px;
}

.quote-badge {
  width: 42px;
  height: 42px;
  background: var(--fsi-cream);
  color: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.testi-card:hover .quote-badge {
  background: var(--fsi-navy);
  color: var(--icon-amber);
}

/* Testimonial Quote Text */
.testi-quote {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

/* User Profile Info Row */
.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.testi-avatar-wrapper {
  position: relative;
}

.testi-avatar {
  width: 52px !important;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.testi-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--accent-orange);
  color: var(--fsi-white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  border: 2px solid var(--bg-card);
}

.testi-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--fsi-gray);
  margin: 4px 0 0 0;
  font-weight: 500;
}

.company-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fsi-navy-2);
  background: var(--offwhite);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Custom Navigation Buttons (Skewed Style) */
.carousel-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.custom-owl-btn {
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--fsi-navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.custom-owl-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--fsi-white);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.3);
  transform: translateY(-2px);
}

/* Override Owl Theme Pagination Dots */
.owl-theme .owl-dots {
  margin-top: 25px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px 6px !important;
  background: var(--border-color) !important;
  transition: all 0.3s ease !important;
  border-radius: 20px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-orange) !important;
  width: 28px !important;
}

@media (max-width: 767px) {
  .testi-title {
    font-size: 2rem;
  }
}

.faq-section {
  background-color: var(--bg-main);
  padding: 90px 0;
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.877), rgba(255, 255, 255, 0.856)),
    url('https://5.imimg.com/data5/SELLER/Default/2026/7/627911781/PQ/AU/YS/5437682/invt-ac-drive.png');

  /* Standard positioning rules to make the background fit perfectly */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Decorative Background Glowing Orb */
.faq-glow-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
  bottom: -150px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Section Badge */
.faq-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--fsi-cream);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.faq-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-title .accent-text {
  color: var(--accent-orange);
}

.faq-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.faq-img-wrapper {
  position: relative;
  padding: 15px;
}

/* Dashed Geometric Backplate Frame */
.faq-img-wrapper::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 85%;
  height: 85%;
  border: 2px dashed var(--accent-orange);
  border-radius: 24px;
  opacity: 0.35;
  z-index: 1;
}

.faq-image-card {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}

.faq-image-card:hover {
  transform: rotate(0deg);
}

.faq-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Floating Skewed Experience / Support Badge */
.floating-support-badge {
  position: absolute;
  top: 30px;
  left: -15px;
  background: var(--fsi-navy);
  color: var(--fsi-white);
  padding: 12px 20px;
  transform: skewX(var(--fsi-skew));
  box-shadow: var(--fsi-shadow);
  z-index: 4;
  border-left: 4px solid var(--accent-orange);
  border-radius: 4px;
}

.floating-support-badge .badge-inner {
  transform: skewX(calc(-1 * var(--fsi-skew)));
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-support-badge i {
  color: var(--icon-amber);
  font-size: 1.5rem;
}

.floating-support-badge .title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--fsi-white);
  margin: 0;
  line-height: 1.1;
}

.floating-support-badge .sub {
  font-size: 0.72rem;
  color: var(--topbar-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating Contact Card at Image Bottom */
.faq-contact-card {
  position: absolute;
  bottom: 25px;
  right: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 22px;
  z-index: 4;
  box-shadow: var(--fsi-shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 310px;
}

.faq-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--fsi-cream);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-contact-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--text-dark);
}

.faq-contact-text p {
  font-size: 0.78rem;
  margin: 0;
  color: var(--text-muted);
}

.custom-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color) !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 102, 0, 0.3) !important;
  box-shadow: var(--shadow-md);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background: var(--bg-card);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: all 0.3s ease;
}

/* Active Highlight State */
.accordion-button:not(.collapsed) {
  background-color: var(--fsi-cream);
  color: var(--accent-orange);
  box-shadow: none;
}

/* Custom Toggle Icon replaces default Bootstrap chevron */
.accordion-button::after {
  content: '\f067';
  /* FontAwesome Plus icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background-image: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--fsi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '\f068';
  /* FontAwesome Minus icon */
  background: var(--accent-orange);
  color: var(--fsi-white);
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px 22px 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 400;
  background-color: var(--bg-card);
}

.accordion-button:not(.collapsed)+.accordion-collapse .accordion-body {
  background-color: var(--fsi-cream);
}

.faq-icon-bullet {
  color: var(--accent-orange);
  margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .faq-img-wrapper {
    margin-bottom: 40px;
  }

  .faq-image-card img {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .floating-support-badge {
    left: 0;
    top: 15px;
  }

  .faq-contact-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    max-width: 100%;
  }

  .accordion-button {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
}

.cta-contact-section {
      background-color: var(--bg-main);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-glow-orb {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 102, 0, 0.09) 0%, rgba(248, 250, 252, 0) 70%);
      top: -100px;
      left: -150px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .cta-pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: var(--fsi-cream);
      color: var(--accent-orange);
      border: 1px solid rgba(255, 102, 0, 0.25);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm);
    }

    .cta-title {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .cta-title .accent-text {
      color: var(--accent-orange);
    }

    .info-header .accent-text {
      color: var(--accent-orange);
    }

    .cta-subtitle {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 35px;
    }

    .contact-info-card {
      background: var(--fsi-navy);
      color: var(--fsi-white);
      border-radius: 20px;
      padding: 36px 30px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info-card::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      background: rgba(255, 102, 0, 0.12);
      border-radius: 50%;
      pointer-events: none;
    }

    .info-header {
      margin-bottom: 30px;
    }

    .info-header h3 {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--fsi-white);
      margin-bottom: 8px;
    }

    .info-header p {
      color: var(--topbar-text);
      font-size: 0.88rem;
      margin: 0;
    }

    .info-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .info-icon-box {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--icon-amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: all 0.3s ease;
    }

    .info-item:hover .info-icon-box {
      background: var(--accent-orange);
      color: var(--fsi-white);
      border-color: var(--accent-orange);
      transform: translateY(-3px);
    }

    .info-text .label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--fsi-gray);
      font-weight: 700;
      display: block;
      margin-bottom: 2px;
    }

    .info-text .val {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--fsi-white);
      margin: 0;
      text-decoration: none;
      line-height: 1.4;
      display: block;
    }

    .info-text a.val:hover {
      color: var(--accent-orange);
    }

    /* Skewed Emergency Banner */
    .skew-emergency-box {
      background: var(--fsi-navy-2);
      border: 1px solid rgba(255, 102, 0, 0.3);
      padding: 16px 20px;
      transform: skewX(var(--fsi-skew));
      border-radius: 8px;
      margin-top: 10px;
    }

    .skew-emergency-inner {
      transform: skewX(calc(-1 * var(--fsi-skew)));
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .skew-emergency-inner i {
      font-size: 1.4rem;
      color: var(--accent-orange);
    }

    .skew-emergency-inner .title {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--fsi-white);
      margin: 0;
    }

    .skew-emergency-inner .sub {
      font-size: 0.75rem;
      color: var(--topbar-text);
      margin: 0;
    }

    .quote-form-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 36px 32px;
      box-shadow: var(--shadow-md);
      position: relative;
    }

    .form-group-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .form-group-label i {
      color: var(--accent-orange);
      font-size: 0.85rem;
    }

    .custom-form-control, .custom-form-select {
      background-color: var(--bg-main);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 0.9rem;
      color: var(--text-dark);
      font-weight: 500;
      transition: all 0.3s ease;
      width: 100%;
    }

    .custom-form-control:focus, .custom-form-select:focus {
      background-color: var(--bg-card);
      border-color: var(--accent-orange);
      box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12);
      outline: none;
    }

    .custom-form-control::placeholder {
      color: var(--fsi-gray);
      font-weight: 400;
    }

    /* Skew CTA Submit Button */
    .btn-submit-skew {
      background-color: var(--accent-orange);
      color: var(--fsi-white);
      font-weight: 800;
      font-size: 0.95rem;
      padding: 15px 32px;
      border-radius: 8px;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 8px 22px rgba(255, 102, 0, 0.35);
      transition: all 0.3s ease;
      transform: skewX(var(--fsi-skew));
      cursor: pointer;
      width: 100%;
      margin-top: 10px;
    }

    .btn-submit-skew .btn-text {
      transform: skewX(calc(-1 * var(--fsi-skew)));
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-submit-skew:hover {
      background-color: var(--accent-orange-hover);
      box-shadow: 0 12px 28px rgba(224, 85, 0, 0.45);
      transform: skewX(var(--fsi-skew)) translateY(-3px);
    }

    .map-container-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 4px solid var(--bg-card);
      box-shadow: var(--shadow-md);
      height: 380px;
      margin-top: 45px;
    }

    .map-container-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .map-location-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--fsi-navy);
      color: var(--fsi-white);
      border-left: 4px solid var(--accent-orange);
      padding: 10px 18px;
      border-radius: 6px;
      box-shadow: var(--shadow-md);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .map-location-badge i {
      color: var(--icon-amber);
      font-size: 1.2rem;
    }

    .map-location-badge .title {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--fsi-white);
      margin: 0;
      line-height: 1.2;
    }

    .map-location-badge .sub {
      font-size: 0.7rem;
      color: var(--topbar-text);
      margin: 0;
    }

    /* Responsive adjustment */
    @media (max-width: 991px) {
      .contact-info-card {
        margin-bottom: 30px;
      }
      .cta-title {
        font-size: 2rem;
      }
    }

    /* Base Reset / Font inheritance for footer */
  .np-footer-wrapper {
    font-family: var(--fsi-font-body);
    color: var(--topbar-text);
  }

  /* Footer Container */
  .np-main-footer {
    background-color: var(--fsi-navy);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
  }

  .np-main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--fsi-orange) 100%);
  }

  /* Newsletter Box */
  .np-footer-newsletter {
    background-color: var(--fsi-navy-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
  }

  .np-newsletter-title {
    color: var(--fsi-white);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .np-newsletter-desc {
    color: var(--fsi-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .np-newsletter-form .form-control {
    background-color: var(--fsi-navy);
    border: 1px solid var(--fsi-line);
    color: var(--fsi-white);
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
  }

  .np-newsletter-form .form-control::placeholder {
    color: var(--fsi-gray);
  }

  .np-newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-orange);
  }

  .np-newsletter-btn {
    background-color: var(--accent-orange);
    color: var(--fsi-white);
    border: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
  }

  .np-newsletter-btn:hover {
    background-color: var(--accent-orange-hover);
    color: var(--fsi-white);
  }

  /* Footer Widgets */
  .np-footer-brand p {
    color: var(--fsi-line);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 15px;
  }

  .np-footer-badge {
    display: inline-block;
    background-color: rgba(255, 102, 0, 0.15);
    color: var(--accent-orange);
    transform: skewX(var(--fsi-skew));
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
  }

  .np-footer-badge span {
    display: inline-block;
    transform: skewX(calc(var(--fsi-skew) * -1));
  }

  .np-footer-heading {
    color: var(--fsi-white);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
  }

  .np-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
  }

  /* Links List */
  .np-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .np-footer-links li {
    margin-bottom: 12px;
  }

  .np-footer-links a {
    color: var(--fsi-line);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .np-footer-links a i {
    font-size: 0.75rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
  }

  .np-footer-links a:hover {
    color: var(--fsi-white);
    transform: translateX(4px);
  }

  .np-footer-links a:hover i {
    transform: translateX(3px);
  }

  /* Contact List */
  .np-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .np-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--fsi-line);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .np-footer-contact i {
    color: var(--icon-amber);
    margin-top: 4px;
  }

  .np-footer-contact a {
    color: var(--fsi-line);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .np-footer-contact a:hover {
    color: var(--accent-orange);
  }

  /* Social Icons */
  .np-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  .np-social-btn {
    width: 38px;
    height: 38px;
    background-color: var(--fsi-navy-2);
    color: var(--fsi-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .np-social-btn:hover {
    background-color: var(--accent-orange);
    color: var(--fsi-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
  }

  /* Bottom Bar */
  .np-bottom-bar {
    background-color: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 60px;
  }

  .np-copyright-text {
    color: var(--fsi-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  .np-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
  }

  .np-legal-links a {
    color: var(--fsi-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
  }

  .np-legal-links a:hover {
    color: var(--accent-orange);
  }

  /* Floating WhatsApp Button */
  .np-floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background-color: var(--wa-green);
    color: var(--fsi-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .np-floating-wa:hover {
    background-color: var(--wa-dark-green);
    color: var(--fsi-white);
    transform: scale(1.1);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .np-legal-links {
      justify-content: flex-start;
      margin-top: 10px;
    }
  }

  @media (max-width: 767px) {
    .np-footer-newsletter {
      padding: 25px 20px;
    }
    .np-newsletter-btn {
      padding: 12px 16px;
    }
  }

  /* ══════════════════════════════════════════════
       CALL NOW — LEFT BOTTOM (stacked above WhatsApp)
    ══════════════════════════════════════════════ */
.call-float {
  position: fixed;
  left: 24px;
  bottom: 104px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Main Call button */
.call-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.call-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(139, 26, 46, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.call-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 6px var(--crimson);
}

/* Second pulse ring */
.call-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(139, 26, 46, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

/* Circle core */
.call-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(139, 26, 46, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.call-btn:hover .call-circle {
  transform: scale(1.1) rotate(8deg);
  box-shadow:
    0 10px 36px rgba(139, 26, 46, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.call-circle i {
  font-size: 1.4rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Call" label pill that slides out on hover */
.call-label-pill {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-d) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(139, 26, 46, 0.35);
}
.call-btn:hover .call-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .call-float {
    left: 16px;
    bottom: 92px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle,
  .call-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i,
  .call-circle i {
    font-size: 1.25rem;
  }

  .rx-tst-avatar-wrap {
    position: relative;
    width: 120px;
    height: 60px;
  }
}