/* ================= DESIGN SYSTEM & VARIABLES ================= */
:root {
  /* Colors */
  --primary: #0066FF;
  --primary-hover: #0055D4;
  --primary-rgb: 0, 102, 255;
  --accent-cyan: #00F0FF;

  --bg-dark-deep: #030F26;
  --bg-dark-secondary: #061533;
  --bg-dark-card: #0B1E3F;
  --bg-dark-footer: #040D1D;

  --bg-light-deep: #F8FAFC;
  --bg-light-secondary: #F1F5F9;
  --bg-light-card: #FFFFFF;

  --text-white: #FFFFFF;
  --text-dark-title: #0F172A;
  --text-dark-desc: #475569;
  --text-light-title: #F8FAFC;
  --text-light-desc: #94A3B8;

  --border-light: #E2E8F0;
  --border-dark: #1E293B;

  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px rgba(0, 102, 255, 0.35);
  --shadow-glow-cyan: 0 0 20px rgba(0, 240, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light-deep);
  color: var(--text-dark-desc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center {
  text-center: center;
  text-align: center;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--text-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background-color: var(--bg-light-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-md {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-lg {
  padding: 16px 20px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  margin-right: 8px;
}

.btn-icon-right {
  margin-left: 8px;
}

.shadow-glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), var(--shadow-lg);
}

/* ================= SECTION HEADERS ================= */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark-title);
  letter-spacing: -0.02em;
}

/* ================= HEADER / NAVIGATION ================= */
.main-header {
  height: var(--header-height);
  background-color: rgba(3, 15, 38, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}



.logo img{
	width:150px;
	height:auto;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light-desc);
  letter-spacing: 0.05em;
}

/* Desktop Nav Links */
.desktop-nav .nav-links {
  display: flex;
  gap: 28px;
}

.desktop-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-light-desc);
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--text-white);
}

.desktop-nav .chevron {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.desktop-nav .dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu CSS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  width: 240px;
  padding: 12px;
  display: none;
  opacity: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-light-desc);
  border-radius: 6px;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Mobile Nav Menu Toggled */
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--bg-dark-deep);
  border-top: 1px solid var(--border-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 30px 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link,
.mobile-dropdown-btn {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light-desc);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.mobile-nav-link.active,
.mobile-nav-link:hover,
.mobile-dropdown-btn:hover {
  color: var(--text-white);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
  border-left: 2px solid var(--border-dark);
  flex-direction: column;
  gap: 12px;
}

.mobile-dropdown-menu li a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light-desc);
}

.mobile-dropdown-menu li a:hover {
  color: var(--text-white);
}

.mobile-cta {
  margin-top: 20px;
}
/*---------------------wordpressdropdown menu css------------------*/
/* =========================================
   DESKTOP WORDPRESS DROPDOWN
========================================= */

.desktop-nav .nav-links > li {
    position: relative;
}

/* Dropdown box */
.desktop-nav .nav-links > li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 250px;
    min-width: 250px;

    margin: 0;
    padding: 8px 0;

    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    list-style: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(5px);

    transition: opacity 0.2s ease,
                visibility 0.2s ease,
                transform 0.2s ease;

    z-index: 999999;
}

/* Show dropdown */
.desktop-nav .nav-links > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown list items */
.desktop-nav .nav-links > li.menu-item-has-children > .sub-menu > li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Dropdown links */
.desktop-nav .nav-links > li.menu-item-has-children > .sub-menu > li > a {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 12px 18px;

    color: #222222;
    background: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;

    white-space: nowrap;

    transition: background 0.2s ease,
                color 0.2s ease;
}

/* Dropdown item hover */
.desktop-nav .nav-links > li.menu-item-has-children > .sub-menu > li > a:hover {
    color: #ffffff;
    background: #000000;
}

/* Chevron */
.desktop-nav .nav-links > li.menu-item-has-children > a::after {
    content: "▼";
    display: inline-block;
    margin-left: 7px;
    font-size: 9px;
    vertical-align: middle;
}
/* ================= HERO SECTION ================= */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background-color: var(--bg-dark-deep);
  background-image: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  color: var(--text-white);
}

.hero-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-tagline {
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light-desc);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Hero Hologram Graphic */
.hero-graphic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hologram-wrapper {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 102, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
  animation: rotateClockwise 25s linear infinite;
}

.glow-ring-1 {
  width: 320px;
  height: 320px;
  border-color: rgba(0, 102, 255, 0.2);
}

.glow-ring-2 {
  width: 250px;
  height: 250px;
  border-color: rgba(0, 240, 255, 0.35);
  border-style: double;
  animation-duration: 18s;
  animation-direction: reverse;
}

.glow-ring-3 {
  width: 170px;
  height: 170px;
  border-color: rgba(0, 102, 255, 0.5);
  border-style: dotted;
  animation-duration: 12s;
}

.hologram-node {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--primary);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), inset 0 0 8px rgba(0, 102, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: floatNode 4s ease-in-out infinite;
}

.hologram-node:hover {
  transform: scale(1.15);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.node-bank {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.node-card {
  top: 35%;
  left: -5%;
  animation-delay: 1s;
}

.node-verified {
  bottom: 12%;
  left: 12%;
  animation-delay: 2s;
}

.node-global {
  bottom: 25%;
  right: -5%;
  animation-delay: 3s;
}

.shield-core {
  width: 110px;
  height: 110px;
  background-color: rgba(0, 102, 255, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), inset 0 0 20px rgba(0, 102, 255, 0.5);
  z-index: 5;
  animation: pulseShield 3s ease-in-out infinite;
}

.shield-core-icon {
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tooltip styles on hologram nodes */
.hologram-node::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -32px;
  background-color: var(--bg-dark-deep);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.hologram-node:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: -38px;
}

/* Animations */
@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes floatNode {

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

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

@keyframes pulseShield {

  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-glow);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.5), inset 0 0 25px rgba(0, 102, 255, 0.6);
  }
}

/* ================= FEATURES BAR ================= */
.hero-features-bar {
  background-color: var(--bg-dark-secondary);
  border-bottom: 1px solid var(--border-dark);
  padding: 30px 0;
  color: var(--text-white);
}

.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-bar-icon {
  background-color: rgba(0, 102, 255, 0.15);
  color: var(--primary);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-bar-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.feature-bar-info p {
  font-size: 0.8rem;
  color: var(--text-light-desc);
}

/* ================= TRUSTED BRANDS ================= */
.trusted-section {
  padding: 30px 0;
  background-color: var(--bg-light-card);
  border-bottom: 1px solid var(--border-light);
}

.trusted-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-desc);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom:0px;
}

.trusted-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  transition: opacity 0.3s ease;
}

.trusted-logos-grid:hover {
  opacity: 0.85;
}

.brand-logo {
  display: flex;
  align-items: center;
  color: #475569;
  user-select: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Custom Mastercard Visual */
.logo-mastercard {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mastercard-circles {
  display: flex;
  position: relative;
  width: 32px;
  height: 20px;
}

.mc-red,
.mc-orange {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
}

.mc-red {
  background-color: #EB001B;
  left: 0;
}

.mc-orange {
  background-color: #FF5F00;
  right: 0;
  opacity: 0.85;
}

.logo-mastercard .brand-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  letter-spacing: -0.03em;
}

/* Custom Discover */
.discover-txt {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.1rem;
  color: #111;
  display: flex;
  align-items: center;
}

.discover-o {
  width: 14px;
  height: 14px;
  background-color: #FF6600;
  border-radius: 50%;
  margin-left: 2px;
  display: inline-block;
}

/* Custom Amex */
.amex-txt {
  font-family: var(--font-heading);
  background-color: #0070d2;
  color: white;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 2px;
}

/* Custom Ethoca */
.ethoca-txt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0b9e59;
}

/* Custom Verifi */
.verifi-txt {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: #333;
}

.verifi-i {
  color: #00A859;
}

/* Custom RDR */
.rdr-txt {
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #111;
  border: 1px solid #111;
  padding: 1px 6px;
}

/* ================= SERVICES ================= */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-light-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card ul{
	padding-left: 20px;
    text-align: left;
    font-size: 14px;
    list-style-type: disc;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.service-card-icon {
  background-color: rgba(0, 102, 255, 0.06);
  color: var(--primary);
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-dark-desc);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link .arrow {
  transition: transform 0.2s ease;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 102, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.2);
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.service-card:hover .service-card-link .arrow {
  transform: translateX(4px);
}

/* ================= STATS BAR ================= */
.stats-section {
  background-color: var(--bg-dark-deep);
  color: var(--text-white);
  padding: 60px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border: 1px solid var(--border-dark);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light-desc);
  margin-top: 2px;
  line-height: 1.3;
}

/* ================= INDUSTRIES ================= */
.industries-section {
  padding: 100px 0;
  background-color: var(--bg-light-secondary);
  overflow: hidden;
}

.carousel-outer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 0 50px;
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
}

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

#industryTrack {
  gap: 15px;
}

.industry-card {
  min-width: calc((100% - 75px) / 6);
  /* Shows 6 items on desktop */
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .carousel-control {
    display: none;
  }
  .carousel-outer-wrapper {
    padding: 0;
  }
}

.industry-img-box {
  position: relative;
  height: 120px;
  overflow: hidden;
  background-color: #0A192F;
}

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

.industry-icon-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 3;
}

.industry-icon-overlay svg {
  width: 16px;
  height: 16px;
}

.industry-card-body {
  padding: 15px 12px;
}

.industry-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-card-body p {
  font-size: 0.75rem;
  color: var(--text-dark-desc);
  line-height: 1.4;
}

/* Hover effect */
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.25);
}

.industry-card:hover .industry-img-box img {
  transform: scale(1.08);
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  z-index: 10;
  transition: all 0.25s ease;
}

.carousel-control:hover {
  background-color: var(--primary-hover);
  transform: translateY(-50%) scale(1.08);
}

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

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

.carousel-control span {
  position: relative;
  top: -2px;
}

/* ================= OUR PROCESS ================= */
.process-section {
  padding: 100px 0;
  background-color: var(--bg-light-card);
  border-bottom: 1px solid var(--border-light);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(0, 102, 255, 0.05);
  color: var(--primary);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.process-step:hover .process-icon-wrap {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.step-num {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background-color: var(--bg-dark-deep);
  color: var(--accent-cyan);
  border: 1px solid var(--primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.825rem;
  color: var(--text-dark-desc);
  max-width: 150px;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  color: var(--primary);
  opacity: 0.4;
}

/* ================= CASE STUDIES & TESTIMONIALS ================= */
.split-section {
  padding: 100px 0;
  background-color: var(--bg-light-deep);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.column-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 25px;
}

.case-study-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.2);
}

.case-chart-box {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.case-info p {
  font-size: 0.875rem;
  color: var(--text-dark-desc);
  margin-bottom: 12px;
}

.case-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.case-link:hover .arrow {
  transform: translateX(3px);
}

/* Circular Chart SVG styles */
.circular-chart {
  display: block;
}

.circle-bg {
  fill: none;
  stroke: var(--border-light);
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progressCircle 1.5s ease-out forwards;
}

.percentage {
  fill: var(--text-dark-title);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.55em;
  text-anchor: middle;
}

/* Gauge Chart SVG styles */
.gauge-meter-wrapper {
  position: relative;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-bg {
  stroke: var(--border-light);
}

.gauge-fill {
  stroke: var(--primary);
  stroke-linecap: round;
  animation: progressGauge 1.5s ease-out forwards;
}

.gauge-value {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dark-title);
  margin-top: -8px;
}

/* Testimonial slider */
.testimonial-slider-container {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(30px);
  display: flex;
  flex-direction: column;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: rgba(0, 102, 255, 0.15);
  font-family: var(--font-heading);
  line-height: 0.8;
  margin-bottom: -15px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-dark-title);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark-title);
  font-size: 0.95rem;
}

.author-company {
  font-size: 0.8rem;
  color: var(--text-dark-desc);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-top: 24px;
}

.slider-arrow {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark-desc);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  color: var(--primary);
  background-color: var(--bg-light-secondary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: all 0.25s ease;
}

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

/* ================= CTA BANNER ================= */
.cta-banner-section {
  padding: 60px 0;
  background-color: var(--bg-light-deep);
}

.cta-banner-box {
  background-color: var(--bg-dark-deep);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background-image: radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0, 240, 255, 0.05) 0%, transparent 45%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.cta-calendar-badge {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.cta-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.cta-info p {
  font-size: 0.95rem;
  color: var(--text-light-desc);
}

.cta-right {
  z-index: 2;
  flex-shrink: 0;
}

.cta-right .btn .arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.cta-right .btn:hover .arrow {
  transform: translateX(4px);
}

/* ================= FOOTER ================= */
.main-footer {
  background-color: var(--bg-dark-footer);
  border-top: 1px solid var(--border-dark);
  color: var(--text-light-desc);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 24px;
  font-weight: 600;
}

.white-logo .logo-title {
  color: var(--text-white);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light-desc);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

.footer-links a {
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.contact-details li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-details li a:hover {
  color: var(--text-white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  font-size: 0.8rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--text-white);
}


/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Desktop (1200px and under) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-col-contact {
    grid-column: span 2;
  }
}

/* Tablet Landscape (1024px and under) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-graphic-container {
    order: -1;
  }

  .features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .industry-card {
    min-width: calc((100% - 60px) / 3);
    /* Shows 3 items */
  }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }

  .process-arrow {
    display: none;
    /* Hide intermediate arrows on grid */
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .testimonial-slider-container {
    min-height: 260px;
  }
}

/* Tablet Portrait (768px and under) */
@media (max-width: 768px) {
  .main-header {
    height: 70px;
  }

  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
    /* Hide consultation button on top nav header to make space */
  }

  .mobile-nav-toggle {
    display: block;
  }

  /* Show hamburger open state */
  .mobile-nav-toggle.open .hamburger {
    background-color: transparent;
  }

  .mobile-nav-toggle.open .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-nav-toggle.open .hamburger::after {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .trusted-logos-grid {
    gap: 25px 35px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industry-card {
    min-width: calc((100% - 30px) / 2);
    /* Shows 2 items */
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 10px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .cta-banner-box {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .cta-left {
    flex-direction: column;
    gap: 16px;
  }

  .cta-right {
    width: 100%;
  }

  .cta-right .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-info {
    grid-column: span 2;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

/* Mobile (480px and under) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .features-bar-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-width: 100%;
    /* Shows 1 item */
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-info,
  .footer-contact {
    grid-column: span 1;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
@media (max-width: 991px) {

    /* Mobile submenu hidden */
    .mobile-nav-links .sub-menu {
        display: none;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Mobile submenu open */
    .mobile-nav-links .menu-item-has-children.mobile-submenu-open > .sub-menu {
        display: block !important;
    }

    /* Submenu items */
    .mobile-nav-links .sub-menu li a {
        display: block;
        padding: 12px 35px;
        font-size: 14px;
    }

    /* Parent menu item */
    .mobile-nav-links > .menu-item-has-children > a {
        position: relative;
    }

    /* Mobile arrow */
    .mobile-nav-links > .menu-item-has-children > a::after {
        content: "▼";
        float: right;
        font-size: 9px;
        margin-top: 5px;
        transition: transform 0.2s ease;
    }

    /* Rotate arrow when open */
    .mobile-nav-links > .menu-item-has-children.mobile-submenu-open > a::after {
        transform: rotate(180deg);
    }
}

/*------------------------ineer page design -------------------------------*/
.container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* =========================
           INNER PAGE BANNER
        ========================= */

        .inner-banner {
            position: relative;
            padding: 90px 0;
            background: linear-gradient(135deg, #071c35, #123e67);
            overflow: hidden;
        }

        .inner-banner::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            right: -150px;
            top: -180px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .inner-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .breadcrumb {
            margin-bottom: 15px;
            font-size: 14px;
            color: rgba(255,255,255,0.75);
			display:block;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
        }

        .inner-banner h1 {
            color: #fff;
            font-size: 48px;
            line-height: 1.15;
            margin-bottom: 15px;
        }

        .inner-banner p {
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.85);
            font-size: 17px;
        }

        /* =========================
           CONTENT
        ========================= */

        .inner-content {
            padding: 80px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .content h2 {
            font-size: 34px;
            line-height: 1.25;
            margin-bottom: 20px;
            color: #102b46;
        }

        .content h3 {
            font-size: 23px;
            margin: 35px 0 12px;
            color: #102b46;
        }

        .content p {
            margin-bottom: 18px;
            color: #596575;
        }

        .content ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .content li {
            margin-bottom: 10px;
            color: #596575;
        }

        /* =========================
           SIDEBAR CARD
        ========================= */

        .sidebar-card {
            padding: 30px;
            background: #f5f8fb;
            border: 1px solid #e4eaf0;
            border-radius: 12px;
        }

        .sidebar-card h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 24px;
            color: #102b46;
        }

        .sidebar-card p {
            margin-bottom: 20px;
            color: #66717f;
        }

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

        .sidebar-list li {
            border-bottom: 1px solid #dde4eb;
        }

        .sidebar-list li:last-child {
            border-bottom: 0;
        }

        .sidebar-list a {
            display: block;
            padding: 12px 0;
            color: #163f66;
            text-decoration: none;
            font-weight: 500;
        }

        .sidebar-list a:hover {
            color: #000;
        }

        /* =========================
           CTA
        ========================= */

        .inner-cta {
            padding: 65px 0;
            background: #f1f6fa;
            text-align: center;
        }

        .inner-cta h2 {
            font-size: 34px;
            margin-bottom: 15px;
            color: #102b46;
        }

        .inner-cta p {
            max-width: 650px;
            margin: 0 auto 25px;
            color: #596575;
        }

        .cta-button {
            display: inline-block;
            padding: 13px 28px;
            background: #123e67;
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s ease;
        }

        .cta-button:hover {
            background: #071c35;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 768px) {

            .inner-banner {
                padding: 65px 0;
            }

            .inner-banner h1 {
                font-size: 36px;
            }

            .inner-banner p {
                font-size: 15px;
            }

            .inner-content {
                padding: 55px 0;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .content h2 {
                font-size: 28px;
            }

            .inner-cta {
                padding: 50px 0;
            }

            .inner-cta h2 {
                font-size: 28px;
            }
        }