@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@flaticon/flaticon-uicons@3.3.1/css/all/all.min.css');

/*--------------------------------------------------------------
# Design System & Variables (Reventors Brand Colors)
--------------------------------------------------------------*/
:root {
  --primary-color: #e15600;
  /* Reventors Orange */
  --primary-hover: #002d72;
  --secondary-color: #000000;
  /* Reventors Royal Blue */
  --text-dark: #1B232D;
  --text-light: #696969;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E9ECEF;
  --accent-color: #002d72;

  --btn-orange: #e15600;
  --btn-orange-hover: #002d72;

  --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-default: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Override Bootstrap's default blue primary */
  --bs-primary: #e15600;
  --bs-primary-rgb: 225, 86, 0;
  --bs-link-color: #e15600;
  --bs-link-hover-color: #002d72;
}

/*--------------------------------------------------------------
# Bootstrap Primary Color Override
--------------------------------------------------------------*/
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  box-shadow: 0 0 0 0.25rem rgba(225, 86, 0, 0.25) !important;
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #002d72 !important;
  border-color: #002d72 !important;
  color: #ffffff !important;
}

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

.badge.bg-primary {
  background-color: var(--primary-color) !important;
}

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

a {
  color: var(--btn-orange);
}

a:hover {
  color: var(--primary-hover);
}

/*--------------------------------------------------------------
# General Base Styles
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

*, ::before, ::after {
  box-sizing: border-box;
}

img, iframe, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* Staggered (Zigzag) Favicon Watermark Pattern */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png'),
    url('img/favicon icon.png');
  background-position:
    left -60px top 1100px,
    right -60px top 2000px,
    left -60px top 2900px,
    right -60px top 3800px,
    left -60px top 4700px,
    right -60px top 5600px,
    left -60px top 6500px,
    right -60px top 7400px,
    left -60px top 8300px,
    right -60px top 9200px,
    left -60px top 10100px,
    right -60px top 11000px;
  background-repeat: no-repeat;
  background-size: 260px;
  opacity: 0.15;
  /* Fully highlighted watermark */
  pointer-events: none;
  z-index: 9999;
}

a {
  color: var(--btn-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

.hover-orange:hover {
  color: var(--primary-color) !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
}

h1,
h2 {
  color: #000000;
}

h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
}

p {
  opacity: 0.9;
  font-size: 15px;
  color: var(--text-light);
}

/* Main Page Single Section Wrapper & Global White Section Backgrounds */
.main-page-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: #ffffff !important;
}

/* Ensure all page section containers have a clean white background */
.main-page-section>div:not(.nav-page-hero-banner),
.main-page-section>.bg-light,
section,
.section-padding,
.about-section,
.values-section,
.leadership-section,
.team-profiles-section,
.partnership-section,
.faq-section,
.history-section,
.timeline-section,
.stats-section,
.features-section,
.services-section,
.pricing-section,
.blog-section,
.contact-section,
.reach-out-section {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

.section-padding {
  padding: 45px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--bg-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar & Header Navbar
--------------------------------------------------------------*/
.topbar {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 0;
  z-index: 1000;
  position: relative;
}

.topbar a {
  color: var(--bg-white);
  text-decoration: underline;
  margin-left: 5px;
  font-weight: 700;
}

#header {
  transition: all 0.5s;
  z-index: 10050;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

#header.header-scrolled {
  background: var(--bg-white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.header-nav-row {
  padding: 15px 0;
  transition: all 0.5s;
}

#header.header-scrolled .header-nav-row {
  padding: 15px 0;
}

#header .logo img {
  max-height: 38px !important;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

#header.header-scrolled .logo img {
  max-height: 38px !important;
  filter: none;
}

/* Navbar styles */
.navbar {
  padding: 0;
}

.navbar-nav .nav-link {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 18px !important;
  transition: all 0.3s;
}

#header.header-scrolled .navbar-nav .nav-link {
  color: var(--text-dark);
}

.navbar-nav .nav-link.active {
  color: #ffffff;
}

#header.header-scrolled .navbar-nav .nav-link.active {
  color: var(--btn-orange);
}

.navbar-nav .nav-link:hover,
.navbar-nav .active>.nav-link {
  color: var(--btn-orange);
}

#header.header-scrolled .navbar-nav .nav-link:hover,
#header.header-scrolled .navbar-nav .active>.nav-link {
  color: var(--btn-orange);
}

/* Mobile nav toggle white initially */
.mobile-nav-toggle {
  color: #ffffff;
  transition: all 0.3s;
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--text-dark);
}

.navbar .getstarted {
  background: var(--primary-color);
  /* Reventors Orange */
  color: var(--bg-white) !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  margin-left: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  transition: 0.3s;
}

.navbar .getstarted:hover {
  background: #002d72;
  /* Hover transitions to Navy Blue */
  color: var(--bg-white) !important;
}

/* Dropdowns & Submenus */
.navbar-nav .has-children {
  position: relative;
}

.navbar-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  list-style: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Invisible hover bridge attached to individual dropdown links only, preventing screen-wide overlap */
.navbar-nav .has-children>a.nav-link {
  position: relative;
}

.navbar-nav .has-children>a.nav-link::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.navbar-nav .has-children:hover>.submenu,
.navbar-nav .has-children:focus-within>.submenu,
.navbar-nav .submenu:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar-nav .submenu li {
  padding: 0;
}

.navbar-nav .submenu li a {
  display: block;
  padding: 8px 25px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  font-family: var(--font-headings);
  transition: all 0.3s;
}

.navbar-nav .submenu li a:hover {
  background: var(--bg-light);
  color: var(--btn-orange);
  padding-left: 30px;
}

/* Mega Menu Dropdown and Sizes */
.navbar-nav .megamenu {
  display: none;
}

@media (min-width: 992px) {
  .header-nav-row {
    position: relative;
  }

  .navbar {
    position: static !important;
  }

  .navbar-collapse {
    position: static !important;
  }

  .navbar-nav {
    position: static !important;
  }

  .navbar-nav .has-children {
    position: static !important;
  }

  .navbar-nav .megamenu {
    display: none;
  }

  .navbar-nav .has-children:hover>.megamenu,
  .navbar-nav .has-children:focus-within>.megamenu {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: var(--bg-white);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    padding: 35px 40px;
    z-index: 999;
    justify-content: space-between;
    gap: 30px;
    animation: fadeInMegamenu 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }

  @keyframes fadeInMegamenu {
    from {
      opacity: 0;
      transform: translateY(15px);
    }

    to {
      opacity: 1;
      transform: translateY(-5px);
    }
  }

  .megamenu-info-col {
    flex: 1.2;
    padding-right: 25px;
  }

  .megamenu-info-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .megamenu-info-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
  }

  .megamenu-col {
    flex: 1;
    padding: 0 15px;
  }

  .megamenu-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    font-family: var(--font-headings);
  }

  .megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .megamenu-col ul li {
    margin-bottom: 8px;
  }

  .megamenu-col ul li a {
    color: var(--text-light);
    font-size: 13px;
    display: block;
    transition: all 0.3s;
  }

  .megamenu-col ul li a:hover {
    color: var(--btn-orange);
    padding-left: 5px;
  }

  .megamenu-preview-panel {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }

  .megamenu-preview-panel:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }

  .megamenu-preview-panel img {
    height: 110px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
  }
}

/* Hover Triggers for Submenu */
.navbar-nav .has-children:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-close-btn {
  display: none !important;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  color: var(--bg-white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--text-dark);
}

@media (max-width: 991px) {

  /* Keep body watermark below images and text on mobile */
  body::before {
    z-index: 1 !important;
  }

  section,
  .main-page-section>div,
  .pinnacle-stats,
  .reach-out-section {
    position: relative;
    z-index: auto !important;
  }

  section>*,
  .main-page-section>div>*,
  .pinnacle-stats>*,
  .reach-out-section>* {
    position: relative;
    z-index: 2 !important;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 28px;
    border: none !important;
    width: auto;
    height: auto;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: none !important;
    cursor: pointer;
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus {
    background: transparent !important;
    color: var(--primary-hover) !important;
    border: none !important;
  }

  #header .mobile-nav-toggle {
    color: #ffffff !important;
    background: transparent !important;
  }

  #header.header-scrolled .mobile-nav-toggle {
    color: #1B232D !important;
    background: transparent !important;
  }

  .navbar {
    position: relative !important;
  }

  .navbar-collapse {
    background: #1B232D;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    padding: 80px 24px 30px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    overflow-y: auto;
    z-index: 10055;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  .navbar-collapse.show {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Dark overlay behind mobile menu */
  .mobile-nav-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 16, 26, 0.65) !important;
    z-index: 10040 !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
  }

  .mobile-nav-overlay.active {
    display: block !important;
  }

  /* Hide redundant close button inside drawer to prevent duplicate conflicting icons */
  .navbar-collapse .mobile-close-btn,
  .mobile-close-btn {
    display: none !important;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 14px 8px !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

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

  .navbar-nav .has-children>.nav-link::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    margin-left: auto;
  }

  .navbar-nav .has-children>.nav-link>.bi-chevron-down {
    display: none !important;
  }

  .navbar-nav .has-children.active-mobile>.nav-link::after {
    transform: rotate(180deg);
    color: var(--btn-orange);
  }

  .navbar-nav .has-children.active-mobile>.nav-link {
    color: var(--primary-color) !important;
  }

  .navbar-nav .submenu,
  .navbar-nav .megamenu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    padding: 0 0 8px 12px !important;
    background: transparent !important;
    display: none;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .navbar-nav .has-children.active-mobile>.submenu,
  .navbar-nav .has-children.active-mobile>.megamenu {
    display: block !important;
    max-height: 2000px;
    padding: 8px 0 8px 12px !important;
  }

  .navbar-nav .megamenu {
    flex-direction: column;
  }

  .megamenu-col {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .megamenu-col:last-child {
    border-bottom: none;
  }

  .megamenu-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--btn-orange);
    margin-bottom: 8px;
    padding-left: 8px;
  }

  .megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .megamenu-col ul li a {
    display: block;
    padding: 7px 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .navbar-nav .submenu li a {
    display: block;
    padding: 7px 8px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .megamenu-col ul li a:hover,
  .navbar-nav .submenu li a:hover {
    background: rgba(225, 86, 0, 0.15) !important;
    color: #ffffff !important;
    padding-left: 14px;
  }

  /* Hide preview panel on mobile */
  .megamenu-preview-panel {
    display: none !important;
  }

  .navbar .getstarted {
    margin: 20px 8px 0;
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
  }

  /* Topbar mobile */
  .topbar {
    font-size: 11px;
    padding: 6px 0;
  }

  .topbar .container {
    flex-direction: column;
    gap: 2px;
  }

  /* Header logo sizing */
  #header .logo img {
    max-height: 24px !important;
    filter: brightness(0) invert(1) !important;
  }

  #header.header-scrolled .logo img {
    max-height: 24px !important;
    filter: none !important;
  }

  .header-nav-row {
    padding: 15px 20px !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0a1c3f !important;
}

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

/* Background glowing animated elements */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-color) 0%, rgba(225, 86, 0, 0) 70%);
  top: -100px;
  right: -50px;
  animation: floatOrb1 15s infinite alternate ease-in-out;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--secondary-color) 0%, rgba(1, 55, 145, 0) 70%);
  bottom: -50px;
  left: -50px;
  animation: floatOrb2 18s infinite alternate ease-in-out;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00c6ff 0%, rgba(0, 198, 255, 0) 70%);
  top: 40%;
  left: 30%;
  animation: floatOrb3 20s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-40px, -60px) scale(1.1);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, -30px) scale(1.2);
  }
}

.hero-network-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  z-index: 1;
  pointer-events: none;
}

/* Carousel layout */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100%;
  width: 100%;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 108px;
  /* Offset for solid header */
  position: relative;
}

/* Vertical centering for carousel content via inner container */
#hero .carousel-item>.container {
  display: flex !important;
  align-items: center !important;
  min-height: calc(100vh - 108px);
}

#hero .hero-container {
  color: var(--bg-white);
}

#hero span.text-uppercase {
  font-size: 16px !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  display: inline-block;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

#hero h1 {
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--bg-white) !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5) !important;
}

#hero p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  margin-bottom: 32px !important;
  max-width: 650px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  font-weight: 400 !important;
}

#hero .btn-hero-primary {
  font-family: var(--font-headings);
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  display: inline-block;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  transition: 0.3s ease;
  background: var(--primary-color) !important;
  color: var(--bg-white) !important;
  border: 2px solid var(--btn-orange) !important;
  margin-right: 15px !important;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(225, 86, 0, 0.3) !important;
}

#hero .btn-hero-primary:hover {
  background: var(--btn-orange-hover) !important;
  border-color: var(--btn-orange-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

#hero .btn-hero-outline {
  font-family: var(--font-headings);
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  display: inline-block;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  transition: 0.3s ease;
  background: transparent !important;
  color: var(--bg-white) !important;
  border: 2px solid var(--bg-white) !important;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
}

#hero .btn-hero-outline:hover {
  background: var(--bg-white) !important;
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Custom Text Animations for Carousel Elements */
#hero .carousel-item h1 {
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

#hero .carousel-item p {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.2s;
}

#hero .carousel-item span {
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 0.4s;
}

#hero .carousel-item .d-flex {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.4s;
}

/* Active slide typography transition triggers */
#hero .carousel-item.active h1 {
  opacity: 1;
  transform: translateY(0);
}

#hero .carousel-item.active p {
  opacity: 1;
  transform: translateY(0);
}

#hero .carousel-item.active span {
  opacity: 1;
}

#hero .carousel-item.active .d-flex {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Carousel Indicators (Dots) */
#hero .carousel-indicators {
  bottom: 40px;
  gap: 8px;
}

#hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
}

#hero .carousel-indicators .active {
  background-color: var(--btn-orange);
  width: 32px;
  border-radius: 6px;
}

/* Carousel Control Arrows */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 6%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#hero:hover .carousel-control-prev,
#hero:hover .carousel-control-next {
  opacity: 0.8;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
  opacity: 1;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 24px;
  border-radius: 50%;
  background-size: 50% 50%;
  transition: background-color 0.3s ease;
}

#hero .carousel-control-prev-icon:hover,
#hero .carousel-control-next-icon:hover {
  background-color: var(--btn-orange);
}

/* Responsive styles - Tablet */
@media (max-width: 991px) {

  #hero .hero-orb,
  #hero .hero-network-grid {
    display: none !important;
  }

  #hero {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 120px 0 60px !important;
    overflow: visible !important;
  }

  #hero .carousel-item {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  #hero .carousel-item>.container {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }
}

/* Responsive styles - Mobile */
@media (max-width: 768px) {
  #hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  #hero .carousel-item>.container {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }
    padding-bottom: 50px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 14px;
  }

  #hero p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  #hero .carousel-item span {
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px !important;
  }

  #hero .btn-hero-primary,
  #hero .btn-hero-outline {
    padding: 10px 22px;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  #hero .btn-hero-primary {
    margin-right: 10px;
  }

  #hero .carousel-indicators {
    bottom: 15px;
    gap: 6px;
  }

  #hero .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }

  #hero .carousel-indicators .active {
    width: 26px;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    display: none;
  }
}

/* Responsive styles - Small Mobile */
@media (max-width: 480px) {
  #hero {
    min-height: 480px;
  }

  #hero .carousel-item>.container {
    padding-top: 80px !important;
    padding-bottom: 45px !important;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  #hero .btn-hero-primary,
  #hero .btn-hero-outline {
    padding: 9px 18px;
    font-size: 11px;
    margin-bottom: 8px;
  }

  #hero .carousel-indicators {
    bottom: 12px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
  background: var(--bg-light);
  padding: 40px 0;
  margin-top: 45px;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.05);
}

.stat-box {
  text-align: center;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-box .icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--btn-orange);
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

/* Removed stat-box icon hover effect */

.stat-box h3 {
  font-size: 36px;
  margin-bottom: 5px;
}

.stat-box p {
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Feature Cards / "What We Do"
--------------------------------------------------------------*/
.feature-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #002d72;
  border-radius: 16px 16px 0 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 45, 114, 0.15);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002d72;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature-card .icon-wrap {
  margin-bottom: 25px;
}

/* Removed card icon wrap hover effect */

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Products Showcase
--------------------------------------------------------------*/
.product-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.product-body {
  padding: 30px;
}

.product-body h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-btn {
  font-weight: 600;
  font-size: 14px;
  color: var(--btn-orange);
}

.product-btn i {
  transition: transform 0.3s ease;
}

/* Removed product-btn hover icon translate */

/*--------------------------------------------------------------
# CTA Middle Ribbon
--------------------------------------------------------------*/
.cta-ribbon {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--bg-white);
  padding: 40px 0;
}

.cta-ribbon h3 {
  color: var(--bg-white);
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-ribbon p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 0;
}

.cta-ribbon .btn-cta {
  background: var(--bg-white);
  color: var(--btn-orange);
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cta-ribbon .btn-cta:hover {
  background: #002d72;
  color: #ffffff;
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Industries & Tabs System
--------------------------------------------------------------*/
.industries-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.industries-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
  padding: 15px 25px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industries-link:hover,
.industries-link.active {
  color: var(--btn-orange);
  border-bottom-color: var(--btn-orange);
}

.industry-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.industry-tab-content.active {
  display: block;
}

.industry-box {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 40px;
  border-left: 5px solid var(--primary-color);
}

.industry-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.industry-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.industry-box li {
  margin-bottom: 12px;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Success Stories / Insights
--------------------------------------------------------------*/
.story-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 25px;
}

.story-tag {
  background-color: rgba(0, 45, 114, 0.08);
  color: #002d72;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.story-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.story-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials / YouTube Slider
--------------------------------------------------------------*/
.testimonial-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 120px;
  line-height: 1;
  color: rgba(225, 86, 0, 0.08);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author h5 {
  margin-bottom: 3px;
  font-size: 16px;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
}

.video-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-thumb img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 24px;
  box-shadow: 0 0 25px rgba(225, 86, 0, 0.4);
  transition: all 0.3s ease;
}

.video-thumb:hover .play-btn {
  background: var(--btn-orange-hover);
  transform: translate(-50%, -50%) scale(1.1);
}

/*--------------------------------------------------------------
# Universal Inner Page Hero Banner (Index Page Banner Style)
--------------------------------------------------------------*/
.nav-page-hero-banner {
  position: relative !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 120px 0 50px 0 !important;
  background-color: #000000;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.nav-page-hero-banner::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(8, 15, 26, 0.65) !important;
  /* Premium dark tint overlay */
  z-index: 1 !important;
}

.nav-page-hero-banner .container {
  position: relative !important;
  z-index: 2 !important;
}

.nav-page-hero-banner h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.nav-page-hero-banner p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5) !important;
}

.nav-page-hero-banner .badge-tag {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(225, 86, 0, 0.3);
}

.nav-page-hero-banner h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.nav-page-hero-banner p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-page-hero-banner {
    padding: 100px 0 40px 0;
    min-height: 90vh;
  }

  .nav-page-hero-banner h1 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
.contact-hero-banner-section {
  padding: 140px 0 50px 0;
  background-color: #000000 !important;
  color: #ffffff !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-hero-banner-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: #ffffff;
  position: relative;
  box-shadow: none;
  overflow: visible;
  text-align: center;
}

.contact-page-form-section {
  padding: 30px 0 50px 0;
  background-color: #ffffff;
}

.contact-page-form-section .info-title h6 {
  color: #002d72;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-page-form-section .info-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-page-form-section .info-title p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-phone-email .phone-box,
.contact-phone-email .email-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.contact-phone-email .phone-box i,
.contact-phone-email .email-box i {
  font-size: 24px;
  color: var(--btn-orange);
}

.contact-phone-email .phone-box:hover,
.contact-phone-email .email-box:hover {
  background: #ffffff;
  border-color: var(--btn-orange);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-phone-email a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-phone-email a:hover {
  color: var(--btn-orange);
}

.elision-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.elision-form-box input,
.elision-form-box textarea {
  border: 1px solid #cbd5e1;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
  background: #f8fafc;
  margin-bottom: 20px;
}

.elision-form-box input:focus,
.elision-form-box textarea:focus {
  border-color: var(--btn-orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(225, 86, 0, 0.1);
  outline: none;
}

.elision-form-box .btn-submit {
  background: linear-gradient(135deg, var(--btn-orange), var(--btn-orange-hover));
  color: #ffffff;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(225, 86, 0, 0.25);
  cursor: pointer;
}

.elision-form-box .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(225, 86, 0, 0.35);
}

/* Worldwide Locations Section */
.worldwide-section {
  padding: 90px 0;
  background-color: #ffffff;
  border-top: 1px solid #edf2f7;
}

.worldwide-section h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.office-card-item {
  padding: 28px 30px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.office-card-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: #002d72;
  transform: translateY(-3px);
}

.office-card-item h2 {
  font-size: 18px;
  font-weight: 800;
  color: #002d72;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.office-card-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.office-card-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.office-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  text-decoration: none;
}

.office-contact-link i {
  color: var(--btn-orange);
  font-size: 18px;
}

.office-contact-link:hover {
  color: var(--btn-orange);
}

.flag-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}

/* Contact Features Section */
.contact-features-section {
  padding: 90px 0;
  background-color: #ffffff;
  border-top: 1px solid #edf2f7;
}

.contact-feature-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.contact-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #002d72;
  border-radius: 16px 16px 0 0;
}

.contact-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 45, 114, 0.15);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002d72;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

/* Removed contact-feature-card hover icon effect */

.contact-feature-card b {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 12px;
}

.contact-feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.contact-feature-card a {
  color: var(--btn-orange);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-feature-card a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(rgba(8, 15, 26, 0.95), rgba(8, 15, 26, 0.95)), url('img/unsplash_1509023464722-18.jpg') center center no-repeat !important;
  background-size: cover !important;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 130px !important;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 10000;
  clip-path: polygon(0% 60px,
      10% 45px,
      20% 30px,
      30% 18px,
      40% 10px,
      50% 7px,
      60% 9px,
      70% 16px,
      80% 28px,
      90% 42px,
      100% 50px,
      100% 100%,
      0% 100%) !important;
  border-top: none !important;
}

.footer a img {
  max-height: 28px !important;
  transition: all 0.3s ease;
}

.footer::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -40px;
  right: auto;
  width: 320px;
  height: 320px;
  background-image: url('img/favicon icon.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Decorative Section Watermarks */
.watermark-section-right,
.watermark-section-left {
  position: relative !important;
  overflow: hidden !important;
}

.watermark-section-right>.container,
.watermark-section-left>.container {
  position: relative;
  z-index: 1;
}

.watermark-section-right::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  width: 280px;
  height: 280px;
  background-image: url('img/favicon icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.watermark-section-left::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 280px;
  height: 280px;
  background-image: url('img/favicon icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.footer h4 {
  color: var(--bg-white);
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--btn-orange);
  padding-left: 5px;
}

.footer-contact p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border-radius: 50% !important;
  margin-right: 8px !important;
  margin-left: 0 !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}

/* Removed social links hover effect */

.newsletter-form {
  position: relative;
}

.newsletter-form input[type="email"] {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 110px 12px 15px;
  width: 100%;
  color: var(--bg-white);
  border-radius: 4px;
}

.newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: var(--btn-orange-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hover-up {
  transition: all 0.3s ease-in-out;
}

.hover-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--primary-color) !important;
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

.split-promo-bg-icon {
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-size: 320px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991px) {
  .split-promo-bg-icon {
    font-size: 200px;
    right: -10px;
    bottom: -40px;
  }
}

/* Success Stories Grid Card Styles */
.case-story-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 320px;
  display: block;
}

.case-story-card.large {
  height: 400px;
}

.case-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-story-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}

.case-story-card:hover img {
  transform: scale(1.05);
}

.case-story-card:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
}

.case-story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.case-story-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--btn-orange);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.case-story-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-white) !important;
  margin: 0;
  line-height: 1.4;
}

.case-story-card.large .case-story-title {
  font-size: 28px;
}

/* Insights Section Styles */
.insight-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.insight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.insight-content {
  padding: 24px;
}

.insight-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--btn-orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.insight-title {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin: 0;
}

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

.insight-title a:hover {
  color: var(--btn-orange);
}

/* Timeline / Journey Section */
.timeline-section {
  padding: 45px 0;
  background: var(--bg-white);
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Vertical line down the center */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--btn-orange);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  opacity: 0.15;
}

/* Individual milestone container */
.milestone-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* Dots on the timeline line */
.milestone-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.milestone-item:hover::after {
  background-color: var(--btn-orange);
  transform: scale(1.2);
}

/* Position left and right */
.milestone-left {
  left: 0;
}

.milestone-right {
  left: 50%;
}

.milestone-right::after {
  left: -10px;
}

/* Card content */
.milestone-content {
  padding: 30px;
  background-color: var(--bg-white);
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.milestone-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.milestone-date {
  font-size: 24px;
  font-weight: 800;
  color: var(--btn-orange);
  margin-bottom: 5px;
  display: block;
}

/* Promise and Advantage Cards */
.promise-nps-card {
  background: #002d72;
  color: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
}

.promise-nps-score h3 {
  font-size: 64px;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1;
  margin: 0;
}

.promise-nps-score sup {
  font-size: 32px;
}

.client-diff-step {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.client-diff-step:hover {
  transform: translateY(-3px);
  border-color: var(--btn-orange);
}

.client-diff-step span {
  font-size: 36px;
  font-weight: 800;
  color: rgba(225, 86, 0, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.gradient-list-usp {
  list-style: none;
  padding-left: 0;
}

.gradient-list-usp li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text-muted);
}

.gradient-list-usp li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--btn-orange);
  font-size: 14px;
}

@media (max-width: 768px) {
  .case-story-card {
    height: 200px;
  }

  .case-story-card.large {
    height: 280px;
  }

  .case-story-card.large .case-story-title {
    font-size: 20px;
  }

  .case-story-title {
    font-size: 16px;
  }

  .case-story-content {
    padding: 20px;
  }

  /* Horizontal scroll for Bootstrap nav-tabs on mobile */
  .nav-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 25px !important;
  }

  .nav-tabs .nav-item {
    white-space: nowrap;
  }

  .nav-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .nav-tabs::-webkit-scrollbar-thumb {
    background: rgba(225, 86, 0, 0.2);
    border-radius: 4px;
  }

  /* Section padding mobile */
  .section-padding {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }

  /* Stats section mobile */
  .stats-section {
    margin-top: 40px;
    padding: 30px 0;
  }

  .stat-box {
    padding: 20px 15px;
    margin-bottom: 10px;
  }

  .stat-box .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .stat-box h3 {
    font-size: 26px;
  }

  .stat-box p {
    font-size: 12px;
  }

  /* Feature cards mobile */
  .feature-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  /* Product cards mobile */
  .product-card {
    margin-bottom: 15px;
  }

  .product-info {
    padding: 20px;
  }

  /* Story / Industry cards mobile */
  .story-card {
    margin-bottom: 10px;
  }

  .story-card img {
    height: 160px;
  }

  .story-content {
    padding: 18px;
  }

  .story-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  /* CTA ribbon mobile */
  .cta-ribbon {
    padding: 30px 0;
  }

  .cta-ribbon h3 {
    font-size: 20px;
  }

  .cta-ribbon p {
    font-size: 14px;
  }

  .btn-cta {
    padding: 12px 24px;
    font-size: 13px;
  }

  /* Testimonial cards mobile */
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .testimonial-card::before {
    font-size: 80px;
    top: 8px;
    left: 15px;
  }

  .testimonial-author h5 {
    font-size: 14px;
  }

  .testimonial-author p {
    font-size: 12px;
  }

  /* Contact info mobile */
  .contact-form-card {
    padding: 25px 20px;
  }

  /* Breadcrumb page headers mobile */
  .breadcrumb-area {
    padding: 100px 0 40px;
  }

  .breadcrumb-area h1 {
    font-size: 28px;
  }

  /* Footer mobile */
  .footer {
    padding-top: 90px !important;
    clip-path: polygon(0% 30px,
        10% 22px,
        20% 15px,
        30% 9px,
        40% 5px,
        50% 3px,
        60% 4px,
        70% 8px,
        80% 14px,
        90% 21px,
        100% 25px,
        100% 100%,
        0% 100%) !important;
  }

  .footer::before {
    width: 150px;
    height: 150px;
    left: -20px;
    right: auto;
    bottom: -20px;
    opacity: 0.04;
    z-index: 0;
  }

  .watermark-section-right::before {
    width: 150px;
    height: 150px;
    right: -30px;
    opacity: 0.04;
  }

  .watermark-section-left::before {
    width: 150px;
    height: 150px;
    left: -30px;
    opacity: 0.04;
  }

  .footer-links-col {
    margin-bottom: 25px;
  }

  .footer-links-col h6 {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .footer-links-col ul li {
    margin-bottom: 6px !important;
  }

  .footer-links-col ul li a {
    font-size: 13px !important;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 15px;
    align-items: center !important;
  }

  /* Footer top header row */
  .footer .row.align-items-center.border-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Social icons footer mobile */
  .social-links {
    justify-content: center;
    display: flex;
    gap: 8px;
  }

  .social-links a {
    margin-right: 0 !important;
  }

  /* Industries showcase image mobile */
  .industries-showcase-img {
    max-height: 180px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #hero {
    padding: 120px 0 60px 0;
  }

  #hero h1 {
    font-size: 26px;
    line-height: 34px;
  }

  #hero p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  #hero .btn-hero-primary,
  #hero .btn-hero-outline {
    padding: 10px 20px;
    font-size: 12px;
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .stat-box h3 {
    font-size: 22px;
  }

  .stat-box p {
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .story-card img {
    height: 140px;
  }

  .footer .row {
    --bs-gutter-x: 0.75rem;
  }

  /* Hamburger drawer width for very small screens */
  .navbar-collapse {
    width: 260px;
    right: -280px;
    padding: 70px 16px 24px;
  }
}

/*--------------------------------------------------------------
# Custom Robot Captcha Styling
--------------------------------------------------------------*/
@keyframes captcha-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.captcha-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e15600;
  border-top-color: transparent;
  border-radius: 50%;
  animation: captcha-spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Pinnacle Stats Section (Blue curved gradient with 5 stats columns)
--------------------------------------------------------------*/
.pinnacle-stats {
  background: #ffffff !important;
  padding: 90px 0 !important;
  color: #002d72 !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  z-index: 10000 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Helper utility to hide page-level background watermarks for specific sections */
.hide-watermark {
  position: relative !important;
  z-index: 10000 !important;
  background-color: #ffffff !important;
}

.pinnacle-stats::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230d4ebd' fill-opacity='0.03' d='M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,181.3C672,203,768,213,864,197.3C960,181,1056,139,1152,117.3C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: cover !important;
  background-position: center bottom !important;
  pointer-events: none !important;
  opacity: 0.8 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.pinnacle-stats h2 {
  background: linear-gradient(135deg, #002d72 0%, #002d72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px !important;
  font-weight: 600 !important;
  margin-bottom: 60px !important;
  text-transform: none !important;
}

.stat-pinnacle-box {
  text-align: center !important;
  padding: 20px 10px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.stat-pinnacle-box .icon {
  margin-bottom: 25px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 60px !important;
  width: 60px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: #002d72 !important;
}

.stat-pinnacle-box h3 {
  font-size: 34px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #002d72 0%, #002d72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px !important;
  display: inline-block;
}

.stat-pinnacle-box p {
  color: #002d72 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}

/* Mobile responsive layout */
@media (max-width: 991px) {
  .pinnacle-stats {
    padding: 70px 0 !important;
  }

  .pinnacle-stats h2 {
    font-size: 26px !important;
    margin-bottom: 40px !important;
  }

  .stat-pinnacle-box {
    margin-bottom: 30px !important;
  }

  .stat-pinnacle-box h3 {
    font-size: 28px !important;
  }
}

/* ======= Reach Out CTA Section ======= */
.reach-out-section {
  padding: 30px 0 35px !important;
  background: #f8f9fa;
}

.reach-out-card {
  background: linear-gradient(135deg, #002d72 0%, #002d72 100%);
  border-radius: 20px !important;
  padding: 32px 45px !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 45, 114, 0.18);
}

.reach-out-card::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reach-out-avatar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.reach-out-avatar {
  max-width: 155px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float-avatar 4s ease-in-out infinite;
}

@keyframes float-avatar {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.reach-out-card h3 {
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px !important;
}

.reach-out-card h2 {
  font-size: 28px !important;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px !important;
  line-height: 1.25 !important;
}

.reach-out-card p {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

.reach-out-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-reach-white,
.reach-out-buttons .btn-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid var(--primary-color) !important;
  padding: 9px 22px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-reach-outline,
.reach-out-buttons .btn-outline-primary {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  padding: 9px 22px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-reach-outline:hover,
.reach-out-buttons .btn-outline-primary:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.btn-reach-white:hover {
  background: #002d72;
  color: #ffffff;
  border-color: #002d72;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* .btn-reach-outline {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
} */

.btn-reach-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .reach-out-card {
    padding: 40px 30px;
    text-align: center;
  }

  .reach-out-avatar-container {
    margin-bottom: 30px;
  }

  .reach-out-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .reach-out-buttons {
    justify-content: center;
  }
}

/* ==========================================================================
    About-Us Page Layout & Components
   ========================================================================== */

/* 1. Intro Video/About Section */
.about-video-section {
  padding: 45px 0;
  background-color: #ffffff;
}

.about-video-section h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.35;
  margin-bottom: 24px;
}

.about-video-section p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-video-section .intro-video img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

/* 2. Features/Growth Section */
.about-features-section {
  padding: 85px 0;
  background-color: #f9fbfd;
  border-bottom: 1px solid #edf2f7;
}

.about-features-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.about-features-section small {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  display: block;
}

.el-stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.el-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(225, 86, 0, 0.08);
  border-color: rgba(225, 86, 0, 0.2);
}

.el-stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 45, 114, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002d72;
  font-size: 22px;
  flex-shrink: 0;
}

.el-stat-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 4px;
  line-height: 1.1;
}

.el-stat-info p {
  color: var(--text-light);
  font-size: 13.5px;
  margin-bottom: 0;
}

/* 3. Clients Section */
.client-list-section {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.client-list-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.client-list-section p {
  color: var(--text-light);
  font-size: 15px;
}

.client-logo-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
}

.client-logo-box:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--btn-orange);
}

.client-logo-box img {
  max-height: 70px;
  max-width: 100%;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.client-logo-box:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* 4. Journey/Timeline Steps Section */
.journey-timeline-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.journey-timeline-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.journey-timeline-section .title-division h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--btn-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-tree {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
}

.timeline-tree::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #e2e8f0;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.milestone-node {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.milestone-node::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: #ffffff;
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.milestone-node:hover::after {
  background-color: var(--btn-orange);
  border-color: var(--btn-orange);
  transform: scale(1.2);
}

.milestone-node.node-left {
  left: 0;
  text-align: right;
}

.milestone-node.node-right {
  left: 50%;
  text-align: left;
}

.milestone-node.node-right::after {
  left: -8px;
}

.milestone-card {
  padding: 24px 30px;
  background-color: #f8fafc;
  position: relative;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #002d72;
  border-radius: 16px 16px 0 0;
}

.milestone-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.milestone-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background-color: #e2e8f0;
}

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

.milestone-card:hover .milestone-img-wrapper img {
  transform: scale(1.05);
}

.milestone-card .node-year {
  font-size: 24px;
  font-weight: 800;
  color: var(--btn-orange);
  margin-bottom: 8px;
}

.milestone-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.milestone-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .timeline-tree::after {
    left: 20px;
  }

  .milestone-node {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }

  .milestone-node.node-left {
    left: 0;
  }

  .milestone-node.node-right {
    left: 0;
  }

  .milestone-node::after {
    left: 12px !important;
    right: auto !important;
  }
}

/* 5. Partnership & NPS Advantage */
.partnership-section {
  padding: 90px 0;
  background-color: #f8fafc;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.partnership-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.partnership-section .title-division h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--btn-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.nps-advantage-card {
  background: #002d72;
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 45, 114, 0.2);
}

.nps-advantage-card h2 {
  color: #ffffff !important;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
}

.nps-advantage-card .tagpoint {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.nps-score-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nps-score-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.nps-score-box h3 sup {
  font-size: 22px;
  top: -12px;
}

.nps-score-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-weight: 600;
}

.client-experience-title h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.client-experience-title p {
  color: var(--text-light);
  font-size: 15px;
}

.info-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border-color: var(--btn-orange);
}

.info-step-card .step-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--btn-orange);
  background: rgba(225, 86, 0, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.info-step-card p {
  color: var(--text-light);
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.5;
}

.gradient-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.gradient-bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.gradient-bullet-list li::before {
  content: '\\F270';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--btn-orange);
  font-size: 16px;
}

/* 5. Executive Leadership Section */
.leadership-section {
  padding: 90px 0 40px 0;
  background-color: #f8fafc;
}

.leadership-showcase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.leadership-showcase-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(225, 86, 0, 0.3);
}

.leadership-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: #f1f5f9;
  height: 100%;
  min-height: 380px;
  max-height: 480px;
}

.leadership-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.leadership-showcase-card:hover .leadership-img-wrapper img {
  transform: scale(1.03);
}

.leadership-quote-box {
  background: #f8fafc;
  border-left: 4px solid #002d72;
  padding: 24px;
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
}

/* 6. Team Profiles Section */
.team-profiles-section {
  padding: 40px 0 50px 0;
  background-color: #ffffff;
}

.team-profiles-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.team-profiles-section .title-division h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--btn-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.member-profile-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.member-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(225, 86, 0, 0.2);
}

.member-profile-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8fafc;
}

.member-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.member-profile-card:hover .member-profile-img img {
  transform: scale(1.05);
}

.member-profile-info {
  padding: 24px;
  text-align: center;
}

.member-profile-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.member-profile-info p {
  color: var(--btn-orange);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Detail Page Content Sections
--------------------------------------------------------------*/

/* ---- Section Shared Styles ---- */
.detail-section {
  padding: 45px 0;
}

.detail-section .section-badge {
  display: none !important;
}

.detail-section .section-title {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.detail-section .section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 650px;
}

.detail-section .section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ---- How It Works Section ---- */
.how-it-works-section {
  background: var(--bg-light);
}

.hiw-step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.hiw-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #002d72;
  border-radius: 16px 16px 0 0;
}

.hiw-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 45, 114, 0.15);
}

.hiw-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #002d72;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  font-family: var(--font-headings);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 45, 114, 0.25);
  overflow: hidden;
}

.hiw-step-card h4 {
  font-family: var(--font-headings);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.hiw-step-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.hiw-step-icon {
  font-size: 32px;
  color: #002d72;
  margin-bottom: 14px;
  display: block;
}

/* Connecting line between steps (desktop) */
@media (min-width: 992px) {
  .hiw-connector {
    position: relative;
  }

  .hiw-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-color) 0, var(--primary-color) 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
  }
}

/* ---- Why Choose / Feature Grid Section ---- */
.why-choose-section {
  background: #fff;
}

.why-choose-img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.feature-mini-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.feature-mini-card:last-child {
  margin-bottom: 0;
}

.feature-mini-card:hover {
  border-color: rgba(225, 86, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}

.feature-mini-card .fmc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 45, 114, 0.12), rgba(0, 45, 114, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #002d72;
}

.feature-mini-card h5 {
  font-family: var(--font-headings);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-mini-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---- Use Cases / Industries Section ---- */
.use-cases-section {
  background: transparent !important;
  color: var(--text-dark) !important;
}

.use-cases-section .section-title {
  color: var(--text-dark) !important;
}

.use-cases-section .section-subtitle {
  color: var(--text-light) !important;
}

.use-case-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  position: relative;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #002d72 !important;
  border-radius: 16px 16px 0 0;
}

.use-case-card:hover {
  background: #ffffff !important;
  border-color: rgba(0, 45, 114, 0.15) !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

.use-case-card .uc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 45, 114, 0.12), rgba(0, 45, 114, 0.04)) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #002d72 !important;
  margin-bottom: 20px;
}

.use-case-card h5 {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 13.5px;
  color: var(--text-light) !important;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Stats Counter Section ---- */
.stats-counter-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b84300 100%) !important;
  padding: 40px 0;
  color: #ffffff !important;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
}

.stat-item .stat-number {
  font-family: var(--font-headings);
  font-size: 44px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

@media (max-width: 767px) {
  .stat-item .stat-number {
    font-size: 32px;
  }

  .stat-divider {
    display: none;
  }
}

/* ==========================================================================
   FAQ Section & Modern Accordion Styling
   ========================================================================== */
.faq-section {
  background: var(--bg-light, #f8fafc) !important;
  padding: 80px 0 !important;
  position: relative;
  scroll-margin-top: 100px;
}

/* Section Header on Detail Pages */
.faq-section .section-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(225, 86, 0, 0.08) !important;
  color: var(--primary-color, #E15600) !important;
  border: 1px solid rgba(225, 86, 0, 0.2);
  font-family: var(--font-headings);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.faq-section .section-title {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.faq-section .section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Sticky Sidebar on Desktop */
.faq-sticky-sidebar {
  position: sticky;
  top: 110px;
  z-index: 5;
}

/* FAQ Feature Image */
.faq-section .faq-img {
  border-radius: 16px !important;
  width: 100%;
  height: 250px;
  max-height: 280px;
  object-fit: cover;
  box-shadow: 0 12px 30px -10px rgba(0, 45, 114, 0.12), 0 0 0 1px rgba(0, 45, 114, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-section .faq-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 45, 114, 0.18), 0 0 0 1px rgba(225, 86, 0, 0.2);
}

/* Numbered Badge for Questions */
.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #002d72;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-num,
.accordion-button:hover .faq-num {
  background: rgba(225, 86, 0, 0.12);
  color: var(--primary-color, #E15600);
}

/* FAQ Help Assistance Card */
.faq-help-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  margin-top: 20px;
  box-shadow: 0 4px 20px -4px rgba(0, 45, 114, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -4px rgba(0, 45, 114, 0.1);
}

/* Accordion Container */
.faq-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accordion Card Item */
.faq-section .accordion-item,
.accordion-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .accordion-item:hover,
.accordion-item:hover {
  border-color: rgba(225, 86, 0, 0.4) !important;
  box-shadow: 0 8px 24px -4px rgba(0, 45, 114, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03) !important;
  transform: translateY(-2px);
}

/* Accordion Button (Question Header) */
.faq-section .accordion-button,
.accordion-button {
  font-family: var(--font-headings);
  font-size: 16.5px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  padding: 22px 26px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  line-height: 1.45 !important;
  transition: color 0.25s ease, background-color 0.25s ease !important;
  cursor: pointer;
}

.faq-section .accordion-button:hover,
.accordion-button:hover {
  color: var(--primary-color, #E15600) !important;
}

.faq-section .accordion-button:not(.collapsed),
.accordion-button:not(.collapsed) {
  background: #ffffff !important;
  color: var(--primary-color, #E15600) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Custom Interactive Circular Chevron Icon */
.faq-section .accordion-button::after,
.accordion-button::after {
  content: "" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border-radius: 50% !important;
  background-color: #f1f5f9 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002D72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px 15px !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, box-shadow 0.25s ease !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}

.faq-section .accordion-button:hover::after,
.accordion-button:hover::after {
  background-color: #e2e8f0 !important;
}

.faq-section .accordion-button:not(.collapsed)::after,
.accordion-button:not(.collapsed)::after {
  background-color: var(--primary-color, #E15600) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  transform: rotate(-180deg) !important;
  box-shadow: 0 4px 12px rgba(225, 86, 0, 0.35) !important;
}

/* Accordion Answer Body */
.faq-section .accordion-body,
.accordion-body {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.75 !important;
  padding: 0 26px 24px 26px !important;
  border-top: 1px solid #f1f5f9 !important;
  padding-top: 18px !important;
  background: #ffffff !important;
}

/* Responsive Styles for Tablet & Mobile */
@media (max-width: 991px) {
  .faq-section {
    padding: 50px 0 !important;
  }

  .faq-sticky-sidebar {
    position: static !important;
    margin-bottom: 30px;
  }

  .faq-section .section-title {
    font-size: 28px !important;
    margin-bottom: 10px !important;
  }

  .faq-section .section-subtitle {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .faq-section .faq-img {
    height: 220px !important;
    max-height: 240px !important;
    margin-bottom: 20px !important;
  }

  .faq-section .accordion-button,
  .accordion-button {
    font-size: 15.5px !important;
    padding: 18px 20px !important;
    gap: 12px !important;
  }

  .faq-section .accordion-body,
  .accordion-body {
    padding: 0 20px 20px 20px !important;
    padding-top: 14px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .faq-section .accordion-button::after,
  .accordion-button::after {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    background-size: 13px 13px !important;
  }
}

/* ---- Detailed Content Image+Text Row Section ---- */
.content-detail-section {
  background: #fff;
}

.content-detail-section.alt-bg {
  background: var(--bg-light);
}

.content-detail-img {
  border-radius: 16px;
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.content-detail-section h3 {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.content-detail-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.content-detail-section .detail-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-detail-section .detail-check-list li {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.content-detail-section .detail-check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 86, 0, 0.15), rgba(225, 86, 0, 0.05));
  color: var(--btn-orange);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Case Study Detail Sections ---- */
.case-detail-section {
  padding: 45px 0;
}

.case-detail-section.alt-bg {
  background: var(--bg-light);
}

.case-metric-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.case-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(225, 86, 0, 0.2);
}

.case-metric-card .metric-value {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: #002d72;
  margin-bottom: 4px;
}

.case-metric-card .metric-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* ---- Testimonial Quote ---- */
.testimonial-quote-block {
  background: linear-gradient(135deg, #080f1a 0%, #0d2240 100%);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-block::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(225, 86, 0, 0.15);
  line-height: 1;
}

.testimonial-quote-block blockquote {
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-quote-block .tq-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Premium Testimonial Card Styles (Pinnacle-like Redesign)
   ========================================================================== */

/* Overriding section background behavior to keep testimonials section clean */
.testimonial-section-wrapper {
  background-color: transparent !important;
  background: transparent !important;
  padding: 40px 0;
}

.premium-testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 86, 210, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 86, 210, 0.06) !important;
}

/* Left Banner Styling */
.testimonial-left-banner {
  background: linear-gradient(135deg, #0056D2 0%, #003694 100%);
  padding: 40px 30px;
  overflow: hidden;
  z-index: 1;
}

.quote-icon-decor {
  font-size: 70px;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-banner-title {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  position: relative;
  z-index: 2;
  font-family: var(--font-headings);
}

/* Banner Abstract Backdrop Circles */
.banner-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.banner-orb.orb-1 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -80px;
}

.banner-orb.orb-2 {
  width: 150px;
  height: 150px;
  top: -40px;
  right: 20px;
  background: rgba(255, 255, 255, 0.02);
}

/* Right Content Area */
.testimonial-right-content {
  padding: 35px 40px;
  min-height: 260px;
}

.testimonial-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 400;
  position: relative;
  padding-left: 5px;
}

.testimonial-meta-row {
  margin-top: auto;
  gap: 20px;
}

/* Client Logo Styling */
.author-logo-wrapper {
  flex-shrink: 0;
}

.author-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 110px;
  padding: 5px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.02);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  user-select: none;
}

/* Custom Brands Styling */
.logo-au {
  color: #0b1a30;
  border-color: rgba(244, 123, 32, 0.2);
}

.logo-au .logo-accent-char {
  color: #f47b20;
  /* AU Bank Orange */
}

.logo-manglam {
  color: #e11a22;
  /* Manglam Red */
  border-color: rgba(225, 26, 34, 0.2);
  font-family: 'Arial Black', sans-serif;
}

.logo-jaipur {
  color: #2b2b2b;
  font-family: 'Times New Roman', Georgia, serif;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo-chokhi {
  color: #b0891e;
  /* Chokhi Dhani Gold */
  border-color: rgba(176, 137, 30, 0.2);
  font-style: italic;
}

.logo-ehcc {
  color: #007f70;
  /* EHCC Green */
  border-color: rgba(0, 127, 112, 0.2);
}

.logo-saras {
  color: #0074d9;
  /* Saras Blue */
  border-color: rgba(0, 116, 217, 0.2);
}

.logo-shekhawat {
  color: #8c6239;
  /* Shekhawat Heritage Brown */
  border-color: rgba(140, 98, 57, 0.25);
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

.logo-swastik {
  color: #0d47a1;
  /* Swastik Corporate Blue */
  border-color: rgba(13, 71, 161, 0.25);
  font-weight: 900;
}

.logo-bhuvika {
  color: #2e7d32;
  /* Bhuvika Green */
  border-color: rgba(46, 125, 50, 0.25);
  letter-spacing: 1px;
}

.logo-marwar {
  color: #880e4f;
  /* Marwar Deep Maroon */
  border-color: rgba(136, 14, 79, 0.25);
  font-family: 'Courier New', monospace;
}

.logo-salasar {
  color: #37474f;
  /* Salasar Gray */
  border-color: rgba(55, 71, 79, 0.25);
}

.logo-kio {
  color: #455a64;
  /* Kio slate */
  border-color: rgba(69, 90, 100, 0.25);
  letter-spacing: 2px;
}

.logo-shyamashish {
  color: #1a237e;
  /* Shyamashish Navy */
  border-color: rgba(26, 35, 126, 0.25);
}

.logo-mansukh {
  color: #e65100;
  /* Mansukh Orange */
  border-color: rgba(230, 81, 0, 0.25);
}

.logo-sukham {
  color: #1b5e20;
  /* Sukham Dark Green */
  border-color: rgba(27, 94, 32, 0.25);
  font-family: 'Century Gothic', sans-serif;
}

.logo-firstgate {
  color: #e65100;
  border-color: rgba(230, 81, 0, 0.25);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo-realnext {
  color: #4a148c;
  /* Purple */
  border-color: rgba(74, 20, 140, 0.25);
}

.logo-goldenpass {
  color: #d4af37;
  /* Gold */
  border-color: rgba(212, 175, 55, 0.25);
  font-weight: 900;
}

.logo-turban {
  color: #b71c1c;
  /* Deep Red */
  border-color: rgba(183, 28, 28, 0.25);
}

.logo-unnati {
  color: #006064;
  /* Teal */
  border-color: rgba(0, 96, 100, 0.25);
}

.logo-shivam {
  color: #0d47a1;
  border-color: rgba(13, 71, 161, 0.25);
}

.logo-adharshila {
  color: #bf360c;
  /* Red-Orange */
  border-color: rgba(191, 54, 12, 0.25);
}

.logo-jain {
  color: #1565c0;
  /* Blue */
  border-color: rgba(21, 101, 192, 0.25);
}

/* Profile Details */
.author-profile-details {
  flex-grow: 1;
}

.author-profile-name {
  font-size: 16px;
  font-weight: 700;
  color: #0056D2;
  margin: 0 0 3px 0;
}

.author-profile-title {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* Dots Navigation */
.testimonial-slider-controls {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 86, 210, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(0, 86, 210, 0.4);
  transform: scale(1.1);
}

.testimonial-dot.active {
  background: #0056D2;
  width: 22px;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .testimonial-section-wrapper {
    padding: 40px 0;
  }

  .premium-testimonial-card {
    border-radius: 16px;
  }

  .testimonial-left-banner {
    padding: 40px 30px;
    text-align: center;
    align-items: center;
  }

  .testimonial-banner-title {
    font-size: 26px;
    max-width: 450px;
  }

  .quote-icon-decor {
    font-size: 55px;
    top: 15px;
    left: 20px;
  }

  .testimonial-right-content {
    padding: 35px 30px;
    min-height: auto;
  }

  .testimonial-quote {
    font-size: 15px;
    margin-bottom: 25px;
  }
}


/* Gradient Bullet List (Checkmark checklist style) */
.gradient-bullet-list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.gradient-bullet-list li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-bullet-list li:last-child {
  border-bottom: none;
}

.gradient-bullet-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.gradient-bullet-list li::before {
  content: '\f00c';
  /* FontAwesome check mark icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 86, 0, 0.25) 0%, rgba(225, 86, 0, 0.05) 100%);
  color: var(--btn-orange);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(225, 86, 0, 0.1);
}

/* Submit Button styling for forms (e.g. Careers application) */
.btn-submit {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(225, 86, 0, 0.2);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--primary-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(225, 86, 0, 0.3);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Our Clients Marquee Section
--------------------------------------------------------------*/
.clients-section {
  overflow: hidden;
}

.clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges for smooth visual disappearance */
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.clients-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
  will-change: transform;
}

/* Logo images */
.clients-marquee-track img {
  height: 75px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(0.2);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.clients-marquee-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Left to Right animation */
.clients-marquee-ltr .clients-marquee-track {
  animation: marquee-ltr 35s linear infinite;
}

/* Right to Left animation */
.clients-marquee-rtl .clients-marquee-track {
  animation: marquee-rtl 35s linear infinite;
}

/* Pause on hover */
.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-marquee-track img {
    height: 50px;
    max-width: 130px;
  }

  .clients-marquee-track {
    gap: 40px;
  }

  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 50px;
  }

  .clients-marquee-ltr .clients-marquee-track {
    animation-duration: 25s;
  }

  .clients-marquee-rtl .clients-marquee-track {
    animation-duration: 25s;
  }
}

/* Advice & Rating Section Styles */
.advice-rating-section {
  position: relative;
  background-color: #f4f7fa;
}

.advice-content-wrap {
  position: relative;
  z-index: 2;
}

.advice-rating-section img {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.5s ease;
}

.advice-rating-section:hover img {
  transform: translateY(-5px);
}

.advice-icon {
  background: rgba(0, 45, 114, 0.06);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  min-width: 65px;
  transition: all 0.3s ease;
}

.advice-rating-section a:hover {
  color: #e15600 !important;
}

.advice-rating-section .d-flex:hover .advice-icon {
  background: rgba(225, 86, 0, 0.1);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Universal Site-Wide Responsiveness Overrides (Desktop & Mobile)
--------------------------------------------------------------*/

/* Base Fluid Container & Overflow Safeguards */
html, body {
  overflow-x: clip !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
}

section,
.main-page-section,
.watermark-section-right,
.watermark-section-left,
.reach-out-section,
.pinnacle-stats,
.footer,
.stats-section,
.about-features-section,
.partnership-section,
.leadership-section,
.team-profiles-section,
.about-video-section,
.contact-hero-banner-section,
.contact-page-form-section,
.worldwide-section,
.contact-features-section,
.clients-section,
.testimonial-section-wrapper {
  overflow-x: clip !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

img, iframe, video, svg, canvas {
  max-width: 100% !important;
  height: auto;
}

/* Prevent decorative watermarks and background elements from forcing horizontal scroll */
body::before,
.watermark-section-right::before,
.watermark-section-left::before,
.footer::before,
.reach-out-card::after,
.split-promo-bg-icon,
.hero-orb {
  max-width: 100vw !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  body::before {
    background-position:
      left 0px top 1100px,
      right 0px top 2000px,
      left 0px top 2900px,
      right 0px top 3800px,
      left 0px top 4700px,
      right 0px top 5600px,
      left 0px top 6500px,
      right 0px top 7400px,
      left 0px top 8300px,
      right 0px top 9200px,
      left 0px top 10100px,
      right 0px top 11000px !important;
    background-size: 160px !important;
  }

  .watermark-section-right::before {
    right: 0 !important;
    width: 160px !important;
    height: 160px !important;
  }

  .watermark-section-left::before {
    left: 0 !important;
    width: 160px !important;
    height: 160px !important;
  }
}

/* Touch Target Accessibility Defaults for Links and Buttons */
a, button, input[type="submit"], .btn {
  touch-action: manipulation;
}

/* ==========================================================================
   Breakpoints: Large Laptops & Desktops (>= 1200px)
   ========================================================================== */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

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

/* ==========================================================================
   Breakpoints: Tablets & Medium Screens (max-width: 991px)
   ========================================================================== */
@media (max-width: 991px) {

  /* Global Layout & Padding Adjustment */
  .container, .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }

  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
    row-gap: 20px;
  }

  .row > [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Section Padding */
  .section-padding, section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Header Topbar & Row Alignment */
  .topbar {
    font-size: 12px !important;
    padding: 6px 15px !important;
  }

  .topbar .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    text-align: center !important;
  }

  .topbar a {
    margin-left: 0 !important;
  }

  .header-nav-row {
    padding: 12px 20px !important;
  }

  /* Active Mobile Nav - Clean background */
  body.mobile-nav-active #header {
    background: transparent !important;
    box-shadow: none !important;
  }

  body.mobile-nav-active #header .logo {
    opacity: 0.35;
    transition: opacity 0.3s ease;
  }

  /* Navbar Mobile Toggle Button */
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 28px !important;
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 10060 !important;
    padding: 0 !important;
    -webkit-tap-highlight-color: transparent;
  }

  #header.header-scrolled .mobile-nav-toggle {
    color: var(--text-dark) !important;
  }

  /* When drawer is open, transform the toggle into the clear, fixed close button at top-right of drawer */
  .mobile-nav-toggle.bi-x {
    position: fixed !important;
    top: 18px !important;
    right: 20px !important;
    z-index: 10070 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.25s ease !important;
  }

  .mobile-nav-toggle.bi-x:hover,
  .mobile-nav-toggle.bi-x:active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: rotate(90deg) scale(1.05);
  }

  #header.header-scrolled .mobile-nav-toggle.bi-x {
    color: #ffffff !important;
  }

  /* Hide duplicate inner close button so there is only one consistent close control */
  .mobile-close-btn,
  .navbar-collapse .mobile-close-btn {
    display: none !important;
  }

  /* Slide-out Mobile Navigation Menu Drawer */
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #1B232D !important;
    padding: 75px 24px 40px !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 10055 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, visibility 0.3s ease !important;
    filter: none !important;
    backdrop-filter: none !important;
  }

  .navbar-collapse.show {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: block !important;
  }

  .navbar-nav {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .navbar-nav .nav-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 14px 10px !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    text-shadow: none !important;
    filter: none !important;
  }

  .navbar-nav .getstarted {
    margin: 20px 0 0 0 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 20px !important;
  }

  /* Submenus & Megamenus Inside Drawer */
  .navbar-nav .submenu,
  .navbar-nav .megamenu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    padding: 0 0 10px 12px !important;
    background: transparent !important;
    display: none !important;
  }

  .navbar-nav .has-children.active-mobile > .submenu,
  .navbar-nav .has-children.active-mobile > .megamenu {
    display: block !important;
  }

  .megamenu-col {
    padding: 6px 0 !important;
  }

  .megamenu-col h5 {
    color: var(--btn-orange) !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .megamenu-col ul li a {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .megamenu-preview-panel {
    display: none !important;
  }

  /* Overlay Background - strictly behind #header (10050) and #navbarNav (10055) */
  .mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(10, 16, 26, 0.65) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 10040 !important;
    display: none !important;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-overlay.active {
    display: block !important;
  }

  /* Main Hero Carousel */
  #hero {
    height: auto !important;
    min-height: auto !important;
    padding: 120px 0 50px !important;
  }

  #hero .carousel-item {
    height: auto !important;
    padding: 0 !important;
  }

  #hero .carousel-item > .container {
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px 15px 40px !important;
    text-align: center !important;
  }

  #hero h1 {
    font-size: clamp(26px, 5vw, 40px) !important;
    line-height: 1.3 !important;
  }

  #hero p {
    font-size: clamp(14px, 3vw, 17px) !important;
  }

  /* Inner Page Banners */
  .nav-page-hero-banner,
  .contact-hero-banner-section,
  .breadcrumb-area {
    min-height: auto !important;
    padding: 110px 0 45px 0 !important;
  }

  .nav-page-hero-banner h1,
  .contact-hero-banner-card h1 {
    font-size: clamp(26px, 5vw, 38px) !important;
  }

  /* Fluid Typography for Headers */
  h1, .h1 {
    font-size: clamp(26px, 5.5vw, 40px) !important;
    line-height: 1.25 !important;
  }

  h2, .h2 {
    font-size: clamp(22px, 4.5vw, 32px) !important;
    line-height: 1.3 !important;
  }

  h3, .h3 {
    font-size: clamp(18px, 3.5vw, 24px) !important;
    line-height: 1.35 !important;
  }

  [style*="font-size: 48px"],
  [style*="font-size: 42px"],
  [style*="font-size: 38px"],
  [style*="font-size: 36px"] {
    font-size: clamp(24px, 5vw, 36px) !important;
  }

  /* Cards & Components Heights & Margins */
  .feature-card,
  .product-card,
  .story-card,
  .use-case-card,
  .hiw-step-card,
  .insight-card,
  .office-card-item,
  .contact-feature-card,
  .member-profile-card,
  .case-metric-card,
  .info-step-card,
  .stat-box,
  .el-stat-box,
  .leadership-showcase-card {
    height: auto !important;
    margin-bottom: 16px !important;
  }

  /* Premium Testimonial Card Stack */
  .premium-testimonial-card .row {
    flex-direction: column !important;
  }

  .testimonial-left-banner {
    padding: 30px 20px !important;
    text-align: center !important;
  }

  .testimonial-banner-title {
    font-size: 22px !important;
  }

  .testimonial-right-content {
    padding: 25px 20px !important;
  }

  /* Testimonial Dot Navigation Wrapping */
  .testimonial-dots {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  .testimonial-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .testimonial-dot.active {
    width: 20px !important;
  }

  /* Horizontal Scrollable Tabs */
  .industries-nav,
  .nav-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
  }

  .industries-link,
  .nav-tabs .nav-link {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
  }

  /* Pinnacle Stats Grid */
  .pinnacle-stats {
    padding: 50px 0 !important;
  }

  .stat-pinnacle-box {
    margin-bottom: 20px !important;
  }

  /* Responsive Tables */
  table, .table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer Layout Fixes */
  .footer {
    padding-top: 80px !important;
    clip-path: polygon(0% 25px, 100% 0%, 100% 100%, 0% 100%) !important;
  }

  .footer-bottom {
    margin-top: 35px !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }

  .footer-bottom .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  .social-links {
    justify-content: center !important;
    display: flex !important;
    gap: 10px !important;
  }
}

/* ==========================================================================
   Breakpoints: Mobile Devices (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* Timeline & Milestones Mobile Alignment */
  .timeline-container::after,
  .timeline-tree::after {
    left: 20px !important;
  }

  .milestone-item,
  .milestone-node {
    width: 100% !important;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: 15px !important;
    text-align: left !important;
    margin-bottom: 20px !important;
  }

  .milestone-item::after,
  .milestone-node::after {
    left: 11px !important;
    right: auto !important;
  }

  .milestone-node.node-left,
  .milestone-node.node-right {
    left: 0 !important;
    text-align: left !important;
  }

  /* Button Stack Sizing */
  #hero .d-flex,
  .reach-out-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  #hero .btn-hero-primary,
  #hero .btn-hero-outline,
  .btn-reach-white,
  .btn-reach-outline,
  .btn-cta {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    display: block !important;
    padding: 12px 20px !important;
  }

  /* Form & Captcha Controls */
  input, select, textarea, .form-control {
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .elision-form-box {
    padding: 24px 18px !important;
  }

  .btn-submit {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }

  /* Reach Out Avatar & Mobile Responsive */
  .reach-out-avatar {
    max-width: 110px !important;
  }

  .reach-out-avatar-container {
    margin-bottom: 12px !important;
  }

  .reach-out-card {
    padding: 18px 15px !important;
    text-align: center !important;
  }

  .reach-out-card p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px !important;
  }

  /* Stats Section Numbers */
  .stat-box h3, .stat-item .stat-number {
    font-size: 28px !important;
  }

  .stat-divider {
    display: none !important;
  }
}

/* ==========================================================================
   Breakpoints: Small Mobile Devices (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {

  .container, .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }

  .row > [class*="col-"] {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  /* Generic Full-Width Button Rule for Small Screens */
  .btn-lg, .btn-primary, .btn-outline-primary {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
  }

  .d-flex.gap-3, .d-flex.gap-4, .d-flex.gap-2 {
    gap: 10px !important;
  }

  /* Width overrides for inline elements */
  [style*="width: 300px"],
  [style*="width: 360px"],
  [style*="width: 480px"],
  [style*="width: 500px"],
  [style*="width: 650px"] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Header Row Mobile Sizing */
  .header-nav-row {
    padding: 10px 15px !important;
  }

  #header .logo img {
    max-height: 32px !important;
  }

  /* Captcha visual box full width */
  #captchaBoxVisual {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Advice Section Mobile Overrides */
  .advice-rating-section a[style*="font-size: 32px"] {
    font-size: 22px !important;
  }

  .advice-rating-section a[style*="font-size: 28px"] {
    font-size: 19px !important;
  }

  .advice-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    font-size: 20px !important;
  }
}

/* ==========================================================================
   Breakpoints: Ultra Small Screens (max-width: 375px & 320px)
   ========================================================================== */
@media (max-width: 375px) {
  body {
    font-size: 13.5px;
  }

  h1, .h1 {
    font-size: 22px !important;
  }

  h2, .h2 {
    font-size: 19px !important;
  }

  h3, .h3 {
    font-size: 16px !important;
  }

  #header .logo img {
    max-height: 28px !important;
  }

  .navbar-collapse {
    width: 270px !important;
    right: -290px !important;
    padding: 70px 18px 30px !important;
  }
}
