@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #26A9E1;
  --primary-green: #92C200;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Opacities */
  --blue-10: rgba(38, 169, 225, 0.10);
  --blue-20: rgba(38, 169, 225, 0.20);
  --green-10: rgba(146, 194, 0, 0.10);
  --green-20: rgba(146, 194, 0, 0.20);
  --black-5: rgba(0, 0, 0, 0.05);
  --black-8: rgba(0, 0, 0, 0.08);
  --black-10: rgba(0, 0, 0, 0.10);
  --black-15: rgba(0, 0, 0, 0.15);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-20: rgba(255, 255, 255, 0.20);
  --white-80: rgba(255, 255, 255, 0.80);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  color: var(--primary-green);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}

/* Utility Classes */
.bg-blue { background-color: var(--primary-blue) !important; }
.bg-green { background-color: var(--primary-green) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-black { background-color: var(--black) !important; }

.text-blue { color: var(--primary-blue) !important; }
.text-green { color: var(--primary-green) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }

.border-blue { border: 1px solid var(--primary-blue) !important; }
.border-green { border: 1px solid var(--primary-green) !important; }
.border-white { border: 1px solid var(--white) !important; }
.border-black { border: 1px solid var(--black) !important; }

.py-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .py-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Buttons */
.btn-custom {
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}
.btn-primary-blue:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-white {
  background-color: var(--white);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}
.btn-secondary-white:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green-cta {
  background-color: var(--primary-green);
  color: var(--white);
}
.btn-green-cta:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Outline Buttons (Transparent by default, color on hover) */
.btn-hero-outline-blue {
  background-color: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}
.btn-hero-outline-blue:hover {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-hero-outline-green {
  background-color: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}
.btn-hero-outline-green:hover {
  background-color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--primary-blue);
  border-bottom: 0;
  height: 44px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.top-bar i {
  color: var(--white) !important;
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}
.top-bar a {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.top-bar a:hover {
  color: #B5F000; /* Brighter, vibrant lime green that pops on blue */
}
.top-bar a:hover i {
  color: #B5F000 !important;
}
.social-circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  margin-left: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-circle-icon i {
  color: inherit !important;
}
.social-circle-icon:hover {
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  opacity: 1 !important;
}
.social-circle-icon:hover i,
.top-bar a.social-circle-icon:hover i {
  color: var(--primary-green) !important;
}

/* Main Navigation */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    flex-basis: auto !important;
  }
}

/* Accordion & Collapse Override for Tailwind Compatibility */
.accordion-collapse.collapse.show,
.collapse.show {
  display: block !important;
  visibility: visible !important;
}

.accordion-collapse.collapse:not(.show) {
  display: none !important;
}

.accordion-collapse.collapsing {
  display: block !important;
  visibility: visible !important;
}

/* Service Hero Section Alignment & Image Enhancements */
.hero-highlights-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}

.hero-highlights-list li i {
  flex-shrink: 0 !important;
  margin-top: 3px !important;
}

.hero-image-container-v2,
.service-hero-img-box {
  position: relative;
  border-radius: 24px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  margin: 0 auto !important;
  max-width: 520px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.dark-mode .hero-image-container-v2,
body.dark-mode .service-hero-img-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-main-img-v2,
.service-hero-img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(11, 18, 32, 0.1) !important;
  display: block !important;
  margin: 0 auto !important;
  transform: none !important;
}

.hero-float-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  border: 1px solid rgba(11, 18, 32, 0.05);
}

.float-badge-tr {
  top: 20px;
  right: -15px;
}

.float-badge-bl {
  bottom: 20px;
  left: -15px;
}

body.dark-mode .hero-float-badge {
  background: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Global Lime CTA Button Styling (Matching Bookkeeping Reference) */
.btn-lime-cta {
  background-color: #A3D600 !important;
  color: #0C75A4 !important;
  border: none !important;
  font-weight: 800 !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 20px rgba(163, 214, 0, 0.35) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.btn-lime-cta:hover {
  background-color: #b8f000 !important;
  color: #074663 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(163, 214, 0, 0.5) !important;
}

/* Global Dark Mode Form Control & Placeholder Visibility */
body.dark-mode .form-control,
body.dark-mode .form-select {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #F8FAFC !important;
}

body.dark-mode .form-control::placeholder,
body.dark-mode .form-select::placeholder,
body.dark-mode textarea::placeholder,
body.dark-mode input::placeholder {
  color: #94A3B8 !important;
  opacity: 1 !important;
}

@media (max-width: 991.98px) {
  .float-badge-tr {
    top: 5px !important;
    right: 0px !important;
  }
  .float-badge-bl {
    bottom: 5px !important;
    left: 0px !important;
  }
  .hero-float-badge {
    padding: 8px 12px !important;
  }
}

.main-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.main-header.scrolled {
  box-shadow: 0 6px 25px rgba(11, 18, 32, 0.08);
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.98);
}
.navbar-brand svg {
  height: 42px;
  width: auto;
}
/* Logo Styling */
.fincon-logo {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: 175px !important;
  object-fit: contain !important;
  display: block;
  transition: transform 0.25s ease;
}
.navbar-brand:hover .fincon-logo {
  transform: scale(1.02);
}

.navbar-nav .nav-link {
  color: #0F172A !important;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 12px !important;
  white-space: nowrap !important;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #26A9E1, #A3D600);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 24px);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
}

.dropdown-menu {
  border-radius: 12px;
  border: 1px solid var(--blue-20);
  box-shadow: 0 10px 25px var(--black-8);
  padding: 10px 0;
}
.dropdown-item {
  color: var(--black);
  padding: 8px 20px;
  font-weight: 500;
}
.dropdown-item:hover {
  background-color: var(--blue-10);
  color: var(--primary-blue);
}

/* Custom Dropdown Caret Styling */
.dropdown-toggle::after {
  display: none !important;
}

.nav-link i.bi-chevron-down {
  font-size: 11px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-mega.show .nav-link i.bi-chevron-down,
.dropdown-mega:hover .nav-link i.bi-chevron-down {
  transform: rotate(180deg);
}

/* Header Action Controls */
.dark-mode-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  color: #475569 !important;
}
.dark-mode-toggle:hover {
  background-color: rgba(38, 169, 225, 0.1);
  color: var(--primary-blue) !important;
  transform: scale(1.05);
}

.main-header .btn-green-cta {
  background: linear-gradient(135deg, #A3D600 0%, #86B300 100%) !important;
  color: #0B1220 !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(163, 214, 0, 0.25);
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}
.main-header .btn-green-cta:hover {
  background: linear-gradient(135deg, #26A9E1 0%, #0284C7 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(38, 169, 225, 0.3);
}

/* Header Drawer Button */
.header-drawer-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background-color: #FFFFFF;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.header-drawer-btn:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(38, 169, 225, 0.25);
}

/* Mega Menu Dropdown Container */
.dropdown-mega {
  position: static !important;
}
.dropdown-mega .dropdown-menu {
  margin-top: 0;
}
.mega-menu-container {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  border-bottom: 4px solid var(--primary-blue) !important;
  border-top: none !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 25px 50px -12px rgba(11, 18, 32, 0.25) !important;
  padding: 0 !important;
  width: auto !important;
  min-width: 590px !important;
  max-width: 620px !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  display: block !important;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s ease-out;
  z-index: 1050 !important;
  max-height: calc(90vh - 70px);
  overflow-y: auto;
}

@media (min-width: 992px) {
  .mega-menu-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 40px;
    display: block;
    background: transparent;
    z-index: 1055;
  }

  .nav-item.dropdown-mega:hover .mega-menu-container,
  .dropdown-mega:hover .mega-menu-container,
  .dropdown-mega.show .mega-menu-container,
  .mega-menu-container:hover,
  .mega-menu-container.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* Mega Menu Banner Header */
.bg-gradient-blue {
  background: linear-gradient(135deg, #26A9E1 0%, #0284C7 100%) !important;
}

/* Helper Utilities for Mega Menu */
.fs-8 {
  font-size: 0.75rem !important;
}
.px-2-5 {
  padding-left: 0.65rem !important;
  padding-right: 0.65rem !important;
}
.px-3-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.py-2-5 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.p-3-5 {
  padding: 1.25rem !important;
}
.py-1-5 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}
.py-0-5 {
  padding-top: 0.15rem !important;
  padding-bottom: 0.15rem !important;
}

.mega-icon-box {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.bg-blue-subtle {
  background-color: rgba(38, 169, 225, 0.12) !important;
}
.bg-green-subtle {
  background-color: rgba(163, 214, 0, 0.18) !important;
}
.border-blue-subtle {
  border-color: rgba(38, 169, 225, 0.2) !important;
}
.border-green-subtle {
  border-color: rgba(163, 214, 0, 0.25) !important;
}

/* Column Dividers */
@media (min-width: 992px) {
  .mega-menu-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 12px;
  }
}

/* Column Headings */
.mega-menu-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.6px;
}

/* Interactive Service Item */
.service-item {
  background-color: transparent;
  color: var(--black);
  border: 0;
  border-radius: 6px;
  padding: 5px 8px;
  margin: 2px 0;
  display: flex;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: normal !important;
  word-wrap: break-word;
}
.service-item-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: #1E293B;
  transition: color 0.15s ease;
}
.service-item-icon {
  font-size: 11px;
  color: #94A3B8;
  opacity: 0.4;
  transition: all 0.2s ease;
  transform: translateX(0);
}
.service-item:hover {
  background-color: rgba(38, 169, 225, 0.08);
  transform: translateX(2px);
}
.service-item:hover .service-item-name {
  color: var(--primary-blue) !important;
  font-weight: 600;
}
.service-item:hover .service-item-icon {
  opacity: 1;
  color: var(--primary-blue);
  transform: translateX(2px);
}

/* Mega Menu Footer */
.mega-menu-footer {
  background-color: #F8FAFC !important;
}
.mega-footer-link {
  transition: opacity 0.2s ease;
}
.mega-footer-link:hover {
  opacity: 0.8;
}

/* Dark Mode Overrides for Mega Menu */
body.dark-mode .mega-menu-container {
  background-color: #101A2D !important;
  border-bottom-color: var(--primary-blue) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
}
body.dark-mode .service-item-name {
  color: #E2E8F0 !important;
}
body.dark-mode .service-item-icon {
  color: #64748B !important;
}
body.dark-mode .service-item:hover {
  background-color: rgba(56, 189, 248, 0.12) !important;
}
body.dark-mode .mega-menu-footer {
  background-color: #0B1323 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}
.service-item:hover .service-item-icon {
  opacity: 1;
  color: var(--primary-blue);
  transform: translateX(2px);
}

/* Mega Menu Footer */
.mega-menu-footer {
  background-color: #F8FAFC !important;
}
.mega-footer-link {
  transition: opacity 0.2s ease;
}
.mega-footer-link:hover {
  opacity: 0.8;
}

/* Column 4 Featured CTA Card */
.mega-menu-cta-card {
  background-color: var(--primary-blue);
  border-radius: 12px;
  padding: 12px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  align-self: center;
  width: 100%;
}
.cta-card-small-label {
  font-size: 9px;
  letter-spacing: 0.8px;
  opacity: 0.8;
}
.cta-card-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.cta-card-description {
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.9;
}
.mega-menu-cta-card .btn-green-cta {
  background-color: var(--primary-green) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 50px;
  font-weight: 600;
  padding: 5px 12px !important;
  font-size: 11.5px !important;
  transition: all 0.3s ease;
}
.mega-menu-cta-card .btn-green-cta:hover {
  background-color: var(--white) !important;
  color: var(--primary-blue) !important;
}

.fs-7 {
  font-size: 14px !important;
}
.fs-8 {
  font-size: 12px !important;
}

/* Logo Styling */
.fincon-logo {
  height: 42px;
  width: auto;
  aspect-ratio: auto;
  display: block;
}

/* Mobile Menu Button */
.navbar-toggler {
  border: 2px solid var(--primary-blue) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all 0.3s ease;
}
.navbar-toggler:hover {
  background-color: var(--primary-blue);
}
.navbar-toggler:hover .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 20px;
  height: 20px;
}

/* Premium Card Design System */
.premium-card {
  background-color: var(--white);
  border: 1px solid var(--blue-20);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--black-5);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.premium-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--black-8);
}
.premium-card:hover::before {
  background-color: var(--primary-green);
}
.premium-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--blue-10);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.premium-card:hover .card-icon {
  background-color: var(--primary-blue);
  color: var(--white);
}
.premium-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.premium-card .card-desc {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 20px;
  opacity: 0.85;
}
.premium-card .card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.premium-card .card-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('../assets/images/HeroBanner_Image.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 130px 0 30px 0;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--primary-blue);
  background-color: var(--white);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px;
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 35px;
  max-width: 540px;
}
.hero-ctas {
  margin-top: 360px;
}
@media (min-width: 992px) {
  .hero-image-container {
    display: none !important;
  }
}
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 25px var(--black-10);
  border: 1px solid var(--blue-20);
  z-index: 10;
  transition: transform 0.3s ease;
}
.floating-card:hover {
  transform: scale(1.05);
}
.floating-card-1 {
  top: 15px;
  left: -15px;
}
.floating-card-2 {
  top: 40px;
  right: -10px;
}
.floating-card-3 {
  bottom: 45px;
  left: 0;
}
.floating-card-4 {
  bottom: 20px;
  right: 15px;
}
.floating-card .label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}
.floating-card .value {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-top: 4px;
}
.floating-card .sub-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Trusted Clients */
.trusted-section {
  border-top: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
  padding: 40px 0;
}
.trusted-logos-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.client-logo-svg {
  height: 35px;
  max-width: 140px;
  fill: var(--black);
  opacity: 0.6;
  transition: opacity 0.3s ease, fill 0.3s ease;
}
.client-logo-svg:hover {
  opacity: 1;
  fill: var(--primary-blue);
}

/* Why Fincon */
.why-section {
  background-color: var(--primary-blue) !important;
  color: var(--white);
}
.why-section h2, .why-section h3, .why-section p {
  color: var(--white) !important;
}
.bullet-list {
  list-style: none;
  padding-left: 0;
}
.bullet-list li {
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.bullet-icon {
  color: var(--primary-green);
  font-size: 20px;
}
.stat-mini-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}
.stat-mini-card .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
}
.stat-mini-card .label {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  margin-top: 8px;
}

/* Software Expertise */
.software-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.software-card {
  background: var(--white);
  border: 1px solid var(--blue-20);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
}
.software-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 6px 15px var(--black-8);
}
.software-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

/* Security & Compliance */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-card {
  background: var(--white);
  border: 1px solid var(--blue-20);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px var(--black-5);
  transition: all 0.3s ease;
}
.security-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--black-8);
}
.security-card .sec-icon {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}
.security-card .sec-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.large-sec-card {
  background: var(--white);
  border: 1px solid var(--blue-20);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  position: relative;
}
.large-sec-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-blue);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.gdpr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* How We Work */
.how-work-section {
  background-color: var(--primary-blue) !important;
  color: var(--white);
  position: relative;
}
.how-work-section h2, .how-work-section p {
  color: var(--white) !important;
}
.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}
.process-wrapper::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}
.process-step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 4px solid var(--primary-blue);
  box-shadow: 0 4px 10px var(--black-10);
  transition: all 0.3s ease;
}
.process-step:hover .process-num {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}
.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* Client Testimonials */
.testimonials-section {
  background-color: var(--white);
}
.testimonial-card-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--blue-20);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px var(--black-5);
  position: relative;
}
.quote-icon {
  font-size: 40px;
  color: var(--primary-blue);
  opacity: 0.8;
  position: absolute;
  top: 30px;
  right: 40px;
}
.rating-stars {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 20px;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-10);
  border: 2px solid var(--primary-blue);
  object-fit: cover;
}
.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-nav-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-20);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: var(--primary-blue);
  width: 24px;
  border-radius: 5px;
}

/* Final CTA */
.final-cta-section {
  background-color: var(--primary-blue) !important;
  color: var(--white);
}
.final-cta-section h2, .final-cta-section p {
  color: var(--white) !important;
}

/* Footer */
.main-footer {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  border-top: 1px solid var(--white-20);
  padding: 80px 0 20px 0;
}
.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-text {
  color: var(--white-80);
  font-size: 14px;
  line-height: 1.7;
}
.main-footer .footer-text i {
  color: #FFFFFF !important;
  margin-right: 8px;
}
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--white-80) !important;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-green) !important;
  padding-left: 5px;
}
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-10);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social-icon:hover {
  background: var(--primary-green);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--white-20);
  padding-top: 20px;
  margin-top: 50px;
  font-size: 13px;
  color: var(--white-80);
}
.footer-bottom a {
  color: var(--white);
}
.footer-bottom a:hover {
  color: var(--primary-green);
}

/* ==========================================
   DARK MODE STYLES & REFINEMENTS
   ========================================== */
body.dark-mode {
  background-color: #070D18 !important;
  color: #FFFFFF !important;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--black) !important;
  transition: all 0.3s ease;
  padding: 0 !important;
}
.dark-mode-toggle:hover {
  transform: rotate(20deg);
  background-color: rgba(0, 0, 0, 0.08) !important;
}
body.dark-mode .dark-mode-toggle {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: #FFD43B !important; /* Premium warm yellow */
}
body.dark-mode .dark-mode-toggle:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Top Contact Bar in Dark Mode */
body.dark-mode .top-bar {
  background-color: #26A9E1 !important;
}
body.dark-mode .top-bar a {
  color: #FFFFFF !important;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.2s ease;
}
body.dark-mode .top-bar a:hover {
  opacity: 0.8;
  color: #FFFFFF !important;
}
body.dark-mode .top-bar a i {
  color: #FFFFFF !important;
}
body.dark-mode .top-bar a.social-circle-icon {
  opacity: 1 !important;
}
body.dark-mode .top-bar a.social-circle-icon:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  opacity: 1 !important;
}
body.dark-mode .top-bar a.social-circle-icon:hover i {
  color: var(--primary-green) !important;
}
body.dark-mode .top-bar-divider {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

/* Header & Main Navigation */
body.dark-mode .logo-light {
  display: none !important;
}
body.dark-mode .logo-dark {
  display: block !important;
}
body.dark-mode .main-header {
  background-color: rgba(11, 18, 32, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode .main-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}
body.dark-mode .navbar-nav .nav-link {
  color: #CBD5E1 !important;
  font-weight: 600 !important;
}
body.dark-mode .navbar-nav .nav-link:hover,
body.dark-mode .navbar-nav .nav-link.active {
  color: #38BDF8 !important;
}
body.dark-mode .navbar-nav .nav-link::after {
  background: linear-gradient(90deg, #38BDF8, #A3D600) !important;
  height: 2.5px !important;
}

/* Integrated Navigation Area (No Boxed Look on Desktop) */
@media (min-width: 992px) {
  body.dark-mode .navbar-collapse {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  body.dark-mode .navbar-collapse {
    background-color: #101A2D !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    padding: 15px !important;
  }
}

/* Services Dropdown Arrow in Dark Mode */
body.dark-mode .nav-link i.bi-chevron-down {
  font-size: 10px !important;
  color: #B8C2D1;
  transition: transform 0.3s ease, color 0.3s ease;
}
body.dark-mode .nav-link:hover i.bi-chevron-down {
  color: #26A9E1 !important;
}
body.dark-mode .dropdown-mega.show .nav-link i.bi-chevron-down {
  color: #26A9E1 !important;
  transform: rotate(180deg) !important;
}

/* Book a Consultation CTA in Dark Mode */
body.dark-mode .btn-green-cta {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(163, 214, 0, 0.15) !important;
  transition: all 0.25s ease !important;
}
body.dark-mode .btn-green-cta:hover {
  background-color: #92C000 !important; /* Slightly darker green */
  border-color: #92C000 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(163, 214, 0, 0.25) !important;
}

/* Hamburger Toggler Button in Dark Mode */
body.dark-mode .navbar-toggler {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  color: #FFFFFF !important;
}
body.dark-mode .navbar-toggler:hover {
  border-color: #26A9E1 !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28255, 255, 255%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  filter: none !important;
}
body.dark-mode .navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%2838, 169, 225%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  filter: none !important;
}

/* Hero Section Subtle Transition Overlay */
body.dark-mode .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 24, 0.22) 0%,
    rgba(7, 13, 24, 0.05) 35%,
    rgba(7, 13, 24, 0) 100%
  ) !important;
  pointer-events: none;
  z-index: 1;
}

/* Body & Content Overrides */
body.dark-mode .bg-white,
body.dark-mode .bg-light {
  background-color: #070D18 !important;
}
body.dark-mode main,
body.dark-mode main.bg-white {
  background-color: #070D18 !important;
}

/* General Text & Typography in Dark Mode */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .h1,
body.dark-mode .h2,
body.dark-mode .h3,
body.dark-mode .h4,
body.dark-mode .h5,
body.dark-mode .h6,
body.dark-mode .text-black,
body.dark-mode .text-dark {
  color: #FFFFFF !important;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode .article-intro,
body.dark-mode .article-body-content,
body.dark-mode .article-body-content p {
  color: #CBD5E1 !important;
}

body.dark-mode .text-muted,
body.dark-mode .text-secondary,
body.dark-mode .article-meta,
body.dark-mode .lead,
body.dark-mode .opacity-75 {
  color: #B8C2D1 !important;
  opacity: 1 !important;
}

body.dark-mode .text-blue {
  color: #26A9E1 !important;
}

body.dark-mode a.text-blue {
  color: #38BDF8 !important;
}

body.dark-mode .border-blue,
body.dark-mode .border-green {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Cards & Containers in Dark Mode */
body.dark-mode .card,
body.dark-mode .rate-card,
body.dark-mode .editorial-num-card,
body.dark-mode .mistake-card,
body.dark-mode .benefit-card,
body.dark-mode .benefit-card-v4,
body.dark-mode .value-card-premium,
body.dark-mode .process-card,
body.dark-mode .info-panel-box,
body.dark-mode .practical-example-box,
body.dark-mode .faq-accordion-item,
body.dark-mode .faq-accordion-body,
body.dark-mode .related-blog-card,
body.dark-mode .premium-card,
body.dark-mode .security-card,
body.dark-mode .large-sec-card,
body.dark-mode .software-card,
body.dark-mode .testimonial-card,
body.dark-mode .testimonial-card-wrapper,
body.dark-mode .testimonial-card-v2,
body.dark-mode .offcanvas,
body.dark-mode .offcanvas-header,
body.dark-mode .offcanvas-body,
body.dark-mode .p-3.border.rounded-3.bg-white,
body.dark-mode .toc-sticky-container,
body.dark-mode .sidebar-box,
body.dark-mode .info-card-v4 {
  background: #101A2D !important;
  background-color: #101A2D !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  color: #E2E8F0 !important;
}

/* Global Industry Hub Pill Styles for Dark Mode */
body.dark-mode .industry-nav-pill {
  background: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #F1F5F9 !important;
}
body.dark-mode .industry-nav-pill:hover:not(.active) {
  background: rgba(38, 169, 225, 0.12) !important;
  border-color: #26A9E1 !important;
  color: #FFFFFF !important;
}
body.dark-mode .industry-nav-pill.active {
  background: linear-gradient(135deg, #26A9E1 0%, #1c8cbd 100%) !important;
  color: #FFFFFF !important;
  border-color: #26A9E1 !important;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.25) !important;
  transform: none !important;
}
body.dark-mode .industry-nav-icon {
  background: rgba(38, 169, 225, 0.15) !important;
  color: #38BDF8 !important;
}
body.dark-mode .industry-nav-pill.active .industry-nav-icon {
  background: #FFFFFF !important;
  color: #26A9E1 !important;
}
body.dark-mode .industry-nav-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #94A3B8 !important;
}
body.dark-mode .industry-nav-pill.active .industry-nav-badge {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
}

body.dark-mode .practical-example-box {
  background-color: rgba(38, 169, 225, 0.08) !important;
  border-left: 4px solid #92C200 !important;
}

body.dark-mode .accordion-button,
body.dark-mode .faq-accordion-button {
  background-color: #101A2D !important;
  background: #101A2D !important;
  color: #FFFFFF !important;
}
body.dark-mode .accordion-button::after,
body.dark-mode .faq-accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  filter: none !important;
}
body.dark-mode .accordion-button:not(.collapsed),
body.dark-mode .faq-accordion-button:not(.collapsed) {
  background-color: rgba(38, 169, 225, 0.12) !important;
  background: rgba(38, 169, 225, 0.12) !important;
  color: #38BDF8 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode .accordion-button:not(.collapsed)::after,
body.dark-mode .faq-accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2338BDF8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  filter: none !important;
}
body.dark-mode .accordion-body,
body.dark-mode .faq-accordion-body {
  background-color: #101A2D !important;
  background: #101A2D !important;
  color: #CBD5E1 !important;
  padding: 20px 24px 24px 24px !important;
  border-top: none !important;
  text-align: justify !important;
}

/* ==========================================================================
   DATA SECURITY & COMPLIANCE PAGE STYLES (STRICT FINCON BRAND PALETTE)
   ========================================================================== */

/* 1. 9 Security Area Cards */
.security-card-box {
  background: #FFFFFF;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.security-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #26A9E1 0%, #A3D600 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-card-box:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 169, 225, 0.35);
  box-shadow: 0 15px 35px rgba(38, 169, 225, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(163, 214, 0, 0.04) 100%);
}

.security-card-box:hover::before {
  opacity: 1;
}

.security-card-tag {
  display: inline-block;
  background: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  text-uppercase: uppercase;
  margin-bottom: 16px;
}

.security-card-tag.tag-lime {
  background: rgba(163, 214, 0, 0.2);
  color: #0B1220;
}

.security-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.security-card-icon.icon-lime {
  background: rgba(163, 214, 0, 0.2);
  color: #0B1220;
}

.security-card-box:hover .security-card-icon {
  transform: scale(1.1);
  background: #26A9E1;
  color: #FFFFFF;
}

.security-card-box:hover .security-card-icon.icon-lime {
  background: #A3D600;
  color: #0B1220;
}

/* 2. Process / Approach Horizontal Timeline */
.security-timeline-wrapper {
  position: relative;
  padding-top: 10px;
}

.security-timeline-line {
  position: absolute;
  top: 35px;
  transform: translateY(-50%);
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg, #26A9E1 0%, #A3D600 50%, #26A9E1 100%);
  border: none;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .security-timeline-line {
    display: none;
  }
}

.security-timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.security-timeline-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #26A9E1;
  color: #0B1220;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.security-timeline-badge.badge-lime {
  border-color: #A3D600;
}

.security-timeline-item:hover .security-timeline-badge {
  transform: scale(1.1);
  background: #0B1220;
  color: #A3D600;
  border-color: #A3D600;
}

.security-timeline-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: calc(100% - 80px);
  transition: all 0.3s ease;
}

.security-timeline-item:hover .security-timeline-card {
  border-color: #26A9E1;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.1);
}

/* 3. Circular Loop Visual */
.security-loop-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #26A9E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.1);
  transition: all 0.35s ease;
}

.security-loop-circle.circle-lime {
  border-color: #A3D600;
}

.security-loop-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(163, 214, 0, 0.2);
}

/* 4. Custom Accordion Styling */
.security-accordion .accordion-item {
  border: 1px solid rgba(11, 18, 32, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.security-accordion .accordion-button {
  padding: 20px 26px;
  font-size: 17px;
  font-weight: 700;
  color: #0B1220;
  background: #FFFFFF;
  box-shadow: none !important;
}

.security-accordion .accordion-button:not(.collapsed) {
  background: rgba(38, 169, 225, 0.08) !important;
  color: #26A9E1 !important;
  border-left: 5px solid #A3D600 !important;
}

.security-accordion .accordion-body {
  padding: 22px 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  background: #FFFFFF;
}

/* 5. Dark Mode Overrides for Security Page */
body.dark-mode .security-card-box,
body.dark-mode .security-timeline-card,
body.dark-mode .security-loop-circle {
  background: #101A2D;
  border-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

body.dark-mode .security-card-box:hover,
body.dark-mode .security-timeline-card:hover {
  background: linear-gradient(180deg, #101A2D 0%, #15253F 100%);
  border-color: #26A9E1;
}

body.dark-mode .security-accordion .accordion-button {
  background: #101A2D;
  color: #FFFFFF;
}

body.dark-mode .security-accordion .accordion-button:not(.collapsed) {
  background: rgba(38, 169, 225, 0.15) !important;
  color: #38BDF8 !important;
}

body.dark-mode .security-accordion .accordion-body {
  background: #101A2D;
  color: #CBD5E1;
}

/* Careers Page Value Cards in Dark Mode */
body.dark-mode .value-card-premium {
  background-color: #101A2D !important;
  background: #101A2D !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .value-text-box {
  background-color: #070D18 !important;
}

body.dark-mode .value-box-title {
  color: #38BDF8 !important;
}

body.dark-mode .value-box-desc {
  color: #CBD5E1 !important;
}

body.dark-mode .value-circle-icon {
  background-color: #A3D600 !important;
  color: #070D18 !important;
}

body.dark-mode .value-card-premium:hover,
body.dark-mode .value-card-premium.active-value-card {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
}

body.dark-mode .value-card-premium:hover .value-text-box,
body.dark-mode .value-card-premium.active-value-card .value-text-box {
  background-color: #101A2D !important;
}

body.dark-mode .value-card-premium:hover .value-box-title,
body.dark-mode .value-card-premium.active-value-card .value-box-title {
  color: #38BDF8 !important;
}

body.dark-mode .value-card-premium:hover .value-box-desc,
body.dark-mode .value-card-premium.active-value-card .value-box-desc {
  color: #E2E8F0 !important;
}

body.dark-mode .value-card-premium:hover .value-circle-icon,
body.dark-mode .value-card-premium.active-value-card .value-circle-icon {
  background-color: #101A2D !important;
  color: #A3D600 !important;
}

body.dark-mode .card .card-title,
body.dark-mode .card h1,
body.dark-mode .card h2,
body.dark-mode .card h3,
body.dark-mode .card h4,
body.dark-mode .card h5,
body.dark-mode .card h6,
body.dark-mode .rate-card h1,
body.dark-mode .rate-card h2,
body.dark-mode .rate-card h3,
body.dark-mode .rate-card h4,
body.dark-mode .rate-card h5,
body.dark-mode .rate-card h6,
body.dark-mode .editorial-num-card h1,
body.dark-mode .editorial-num-card h2,
body.dark-mode .editorial-num-card h3,
body.dark-mode .editorial-num-card h4,
body.dark-mode .mistake-card h4,
body.dark-mode .benefit-card-v4 h4,
body.dark-mode .info-panel-box h4,
body.dark-mode .practical-example-box h4,
body.dark-mode .related-blog-card h3,
body.dark-mode .related-blog-card h4,
body.dark-mode .article-body-content h1,
body.dark-mode .article-body-content h2,
body.dark-mode .article-body-content h3,
body.dark-mode .article-body-content h4,
body.dark-mode .toc-title,
body.dark-mode .info-card-title {
  color: #FFFFFF !important;
}

body.dark-mode .info-card-text,
body.dark-mode .info-card-text a {
  color: #CBD5E1 !important;
}

body.dark-mode .info-card-text a:hover {
  color: #38BDF8 !important;
}

body.dark-mode .toc-link {
  color: #B8C2D1 !important;
}

body.dark-mode .toc-link:hover,
body.dark-mode .toc-link.active {
  color: #26A9E1 !important;
}

body.dark-mode .card p,
body.dark-mode .card .text-muted,
body.dark-mode .premium-card .card-title,
body.dark-mode .premium-card .card-desc,
body.dark-mode .premium-card .card-link,
body.dark-mode .service-item-name,
body.dark-mode .offcanvas-body p,
body.dark-mode .offcanvas-body li,
body.dark-mode .testimonial-card p,
body.dark-mode .testimonial-card h4,
body.dark-mode .testimonial-card .opacity-75,
body.dark-mode .gdpr-card-grid div p,
body.dark-mode .gdpr-card-grid div h4 {
  color: #B8C2D1 !important;
}

body.dark-mode .service-item {
  background-color: transparent;
}
body.dark-mode .service-item:hover {
  background-color: rgba(38, 169, 225, 0.1);
}

body.dark-mode .software-logo {
  color: #FFFFFF !important;
}

body.dark-mode .client-logo-svg text {
  fill: #FFFFFF !important;
}

body.dark-mode .header-drawer-btn {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

body.dark-mode .btn-close {
  filter: invert(1);
}

/* Logo Toggling in Light/Dark Mode */
.logo-dark {
  display: none !important;
}
body.dark-mode .logo-light {
  display: none !important;
}
body.dark-mode .logo-dark {
  display: block !important;
}

/* Uniform Card Titles in Dark Mode */
body.dark-mode .large-sec-card h3,
body.dark-mode .security-card .sec-title {
  color: #FFFFFF !important;
}

/* ==========================================
   WELCOME TO FINCON SECTION (Editorial Layout)
   ========================================== */
.welcome-fincon {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  padding: 50px 0 60px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

body.dark-mode .welcome-fincon {
  background: linear-gradient(180deg, #070D18 0%, #0B1220 100%) !important;
}

.section-label {
  display: inline-block;
  background-color: transparent;
  border: 1px solid rgba(38, 169, 225, 0.20);
  color: #26A9E1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  border-radius: 999px;
  padding: 10px 24px;
  margin: 0 auto 35px auto;
  text-align: center;
}

body.dark-mode .section-label {
  border-color: rgba(38, 169, 225, 0.3);
  color: #26A9E1 !important;
}

.welcome-heading {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #26A9E1;
  position: relative;
  z-index: 2;
  margin: 0 auto 40px auto;
  text-align: center;
  display: block;
}

.welcome-heading span {
  color: #A3D600;
}

/* Subtle background circle behind the heading */
.heading-bg-decoration {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border: 1px solid rgba(38, 169, 225, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body.dark-mode .heading-bg-decoration {
  border-color: rgba(38, 169, 225, 0.05);
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify !important;
}

.welcome-content p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: #3F4754;
  margin-bottom: 24px;
}

body.dark-mode .welcome-content p {
  color: #B8C2D1 !important;
}

.welcome-content strong {
  font-weight: 600;
  color: #172033;
}

body.dark-mode .welcome-content strong {
  color: #FFFFFF !important;
}

.btn-welcome-cta {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(163, 214, 0, 0.15) !important;
}
.btn-welcome-cta:hover {
  background-color: #92C000 !important;
  border-color: #92C000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(163, 214, 0, 0.20) !important;
  color: #FFFFFF !important;
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .welcome-fincon {
    padding: 80px 0;
  }
  .welcome-grid {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .welcome-fincon {
    padding: 60px 0;
  }
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .welcome-heading {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .welcome-content p {
    font-size: 16px;
    line-height: 1.7;
  }
  .section-label {
    margin-bottom: 30px;
  }
}

/* Trust Metrics Sub-section */
.welcome-metrics-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(11, 18, 32, 0.08);
  margin: 60px 0 50px 0;
}
body.dark-mode .welcome-metrics-divider {
  background-color: rgba(255, 255, 255, 0.08);
}

.welcome-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

@media (max-width: 991px) {
  .welcome-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .welcome-metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.metric-card {
  position: relative;
  padding-left: 20px;
}

/* Vertical divider lines between cards on desktop */
@media (min-width: 992px) {
  .metric-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(11, 18, 32, 0.08);
  }
  body.dark-mode .metric-card:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.08);
  }
}

.metric-number-box {
  display: inline-flex;
  background-color: #F8FAFC;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(11, 18, 32, 0.03);
}

body.dark-mode .metric-number-box {
  background-color: #101A2D;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.03);
}

.metric-number-box .num-blue {
  color: #26A9E1;
}

.metric-number-box .num-green {
  color: #92C200;
}

.metric-text-desc {
  font-size: 11px;
  font-weight: 600;
  color: #5F6B7A;
  line-height: 1.6;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

body.dark-mode .metric-text-desc {
  color: #B8C2D1;
}

/* ==========================================
   GI OUTSOURCING STYLE BENEFITS SECTION
   ========================================== */
.benefits-section {
  background-color: #F8FAFC !important;
  padding: 50px 0 60px 0;
}

body.dark-mode .benefits-section {
  background-color: #070D18 !important;
}

#software {
  padding-top: 30px !important;
  padding-bottom: 50px !important;
}

.gi-style-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 50px 30px 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  border: 1px solid rgba(11, 18, 32, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.gi-style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(7, 13, 24, 0.12);
}

body.dark-mode .gi-style-card {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gi-card-tag {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gi-card-tag.bg-blue {
  background-color: #26A9E1 !important;
}

.gi-card-tag.bg-green {
  background-color: #92C200 !important;
}

.gi-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0B1220;
  margin-top: 12px;
  margin-bottom: 16px;
}

body.dark-mode .gi-card-title {
  color: #FFFFFF !important;
}

.gi-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5F6B7A;
  margin-bottom: 0;
}

body.dark-mode .gi-card-desc {
  color: #B8C2D1 !important;
}

body.dark-mode .benefits-section h3 {
  color: #FFFFFF !important;
}

.benefits-section h3 {
  font-style: normal !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Call and Email Pills */
.btn-call-cta {
  background-color: #26A9E1 !important;
  border-color: #26A9E1 !important;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 12px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(38, 169, 225, 0.15);
  transition: all 0.3s ease;
}

.btn-call-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 169, 225, 0.25);
  color: #FFFFFF !important;
}

.btn-email-cta {
  background-color: #92C200 !important;
  border-color: #92C200 !important;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 12px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(146, 194, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-email-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(146, 194, 0, 0.25);
  color: #FFFFFF !important;
}

/* Benefits Slider Layout */
.benefits-slider-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1240px;
  margin: 50px auto 0 auto;
  padding: 0 10px;
}

.benefits-slider-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 10px; /* Space for absolute hanging tags */
}

.benefits-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefits-slide {
  flex: 0 0 33.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .benefits-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .benefits-slide {
    flex: 0 0 100%;
  }
}

/* Slider Controls */
.benefits-slider-btn {
  background: #FFFFFF;
  border: 1px solid rgba(11, 18, 32, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #172033;
}

body.dark-mode .benefits-slider-btn {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.benefits-slider-btn:hover {
  background-color: #26A9E1;
  color: #FFFFFF !important;
  border-color: #26A9E1;
  transform: scale(1.05);
}

.btn-prev {
  margin-right: -5px;
}

.btn-next {
  margin-left: -5px;
}

/* Software Expertise Marquee Slider */
.software-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 30px 0;
  background-color: transparent;
}

.software-slider-track {
  display: flex;
  width: calc(250px * 8); /* 4 logos * 2 sets */
  animation: scrollLogos 25s linear infinite;
}

.software-slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.software-logo-img {
  max-width: 170px;
  height: auto;
  max-height: 55px;
  filter: none;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.software-logo-card .software-logo-img {
  max-width: 140px;
  max-height: 45px;
  object-fit: contain;
}

body.dark-mode .software-logo-img {
  background-color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.software-slide:hover .software-logo-img {
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4)); /* Translate half width of track */
  }
}

/* ==========================================
   DATA SECURITY & COMPLIANCE REDESIGN
   ========================================== */
.security-section {
  background-color: #FFFFFF !important;
  padding: 50px 0 110px 0;
}

body.dark-mode .security-section {
  background-color: #070D18 !important;
}

.security-eyebrow {
  color: #A3D600 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.security-title {
  color: #26A9E1 !important;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.security-desc {
  color: #5F6B7A !important;
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 760px;
}

/* Small Cards */
.security-small-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.05);
  box-shadow: 0 8px 25px rgba(11, 18, 32, 0.04);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.security-small-card:hover {
  transform: translateY(-6px);
  background-color: rgba(38, 169, 225, 0.04) !important;
  border-color: rgba(38, 169, 225, 0.3) !important;
  box-shadow: 0 15px 35px rgba(38, 169, 225, 0.08);
}

.security-small-card:has(.box-green):hover {
  background-color: rgba(163, 214, 0, 0.05) !important;
  border-color: rgba(163, 214, 0, 0.3) !important;
  box-shadow: 0 15px 35px rgba(163, 214, 0, 0.08);
}

.security-small-card:hover .sec-icon-box {
  transform: scale(1.12);
}

body.dark-mode .security-small-card {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body.dark-mode .security-small-card:hover {
  background-color: #18253C !important;
}

.sec-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sec-icon-box.box-blue {
  background-color: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
}

.sec-icon-box.box-green {
  background-color: rgba(163, 214, 0, 0.10);
  color: #A3D600;
}

.sec-card-title {
  color: #172033 !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

body.dark-mode .sec-card-title {
  color: #FFFFFF !important;
}

.sec-card-desc {
  color: #5F6B7A !important;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

body.dark-mode .sec-card-desc {
  color: #B8C2D1 !important;
}

/* Visual Process */
.process-block-title {
  color: #26A9E1 !important;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.process-steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background-color: rgba(38, 169, 225, 0.20);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #FFFFFF;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.dark-mode .process-step {
  background-color: #070D18;
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  color: #26A9E1;
  margin-bottom: 10px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: #172033;
  margin-bottom: 12px;
}

body.dark-mode .step-title {
  color: #FFFFFF !important;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A3D600;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(163, 214, 0, 0.5);
}

body.dark-mode .step-dot {
  border-color: #070D18;
}

@media (max-width: 767px) {
  .process-steps-container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-left: 30px;
  }
  .process-line {
    left: 34px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
  }
  .process-step {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
  .step-number {
    margin-bottom: 0;
  }
  .step-title {
    margin-bottom: 0;
  }
}

/* Large Security Cards */
.large-security-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.06);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
  padding: 35px;
  position: relative;
  height: 100%;
}

.large-security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.large-security-card.accent-blue::before {
  background-color: #26A9E1;
}

.large-security-card.accent-green::before {
  background-color: #A3D600;
}

body.dark-mode .large-security-card {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.06);
}

.large-sec-title {
  color: #26A9E1 !important;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}

.large-sec-desc {
  color: #5F6B7A !important;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

body.dark-mode .large-sec-desc {
  color: #B8C2D1 !important;
}

/* GDPR Responsibilities */
.gdpr-block-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gdpr-block-desc {
  color: #5F6B7A !important;
  font-size: 16px;
  max-width: 600px;
}

body.dark-mode .gdpr-block-desc {
  color: #B8C2D1 !important;
}

.gdpr-resp-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.gdpr-resp-card:hover {
  transform: translateY(-4px);
  background-color: rgba(38, 169, 225, 0.04) !important;
  border-color: rgba(38, 169, 225, 0.3) !important;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.08);
}

.gdpr-resp-card:hover .resp-icon-box {
  transform: scale(1.12);
}

body.dark-mode .gdpr-resp-card {
  background-color: #101A2D;
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .gdpr-resp-card:hover {
  background-color: #18253C !important;
}

.resp-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resp-card-title {
  color: #172033 !important;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

body.dark-mode .resp-card-title {
  color: #FFFFFF !important;
}

.btn-security-cta {
  background-color: #26A9E1 !important;
  border-color: #26A9E1 !important;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(38, 169, 225, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-security-cta:hover {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(163, 214, 0, 0.25);
}


/* ==========================================
   HOW WE WORK REDESIGN (CYAN & WHITE & LIME)
   ========================================== */
.how-work-section {
  background: linear-gradient(135deg, #096899 0%, #26A9E1 45%, #005596 100%) !important;
  color: #FFFFFF !important;
  padding: 45px 0 50px !important;
  position: relative;
  overflow: hidden;
  width: 95% !important;
  max-width: 1320px !important; /* Wide container for 5 horizontal cards */
  margin: 35px auto !important;
  border-radius: 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 25px 60px rgba(9, 104, 153, 0.3) !important;
}

body.dark-mode .how-work-section {
  background: linear-gradient(135deg, #063d5c 0%, #0b1a2e 100%) !important;
  width: 95% !important;
  max-width: 1320px !important;
  margin: 35px auto !important;
  border-radius: 32px !important;
}

/* Ambient Background Lights */
.how-work-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 90% 10%, rgba(163, 214, 0, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.how-work-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative Background Elements */
.decor-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Dots, circles, curves */
.decor-dots-1 {
  top: 6%;
  left: 3%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#A3D600 22%, transparent 22%);
  background-size: 14px 14px;
  opacity: 0.16;
}

.decor-dots-2 {
  bottom: 6%;
  right: 3%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#FFFFFF 22%, transparent 22%);
  background-size: 14px 14px;
  opacity: 0.12;
}

/* Section Header styling */
.how-work-section .work-header {
  margin-bottom: 28px !important;
  position: relative;
  z-index: 2;
}

.how-work-section .work-eyebrow {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 4px 16px;
  border-radius: 999px !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.how-work-section .work-main-title {
  color: #FFFFFF !important;
  font-size: clamp(32px, 4vw, 44px) !important;
  font-weight: 800 !important;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.how-work-section .work-accent-line {
  background-color: #A3D600 !important;
  width: 65px !important;
  height: 3.5px !important;
  border-radius: 999px !important;
  margin-top: 8px;
  box-shadow: 0 0 10px rgba(163, 214, 0, 0.6) !important;
}

.how-work-section .work-supporting-text {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 15px !important;
  max-width: 550px;
  line-height: 1.4;
  margin-top: 8px !important;
}

/* How We Work 2-Slide Carousel (Slide 1: 3 Cards, Slide 2: 2 Cards) */
@media (min-width: 1200px) {
  .how-work-section .container {
    max-width: 1440px !important;
  }
}

.how-work-carousel {
  padding: 10px 10px 20px 10px;
  position: relative;
}

.carousel-card-box {
  background: #FFFFFF !important;
  border-radius: 22px !important;
  padding: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  width: 100%;
}

.carousel-card-box:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28) !important;
}

.carousel-step-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  border-radius: 18px !important;
  object-fit: contain !important;
  display: block !important;
  filter: contrast(1.06) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
}

/* Enlarge only the first 3 images (Slide 1: Steps 1, 2, and 3) cleanly without overlapping */
.carousel-card-box.step-card-slide1 {
  transform: scale(1.03) !important;
  margin: 4px 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

.carousel-card-box.step-card-slide1:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32) !important;
  z-index: 10 !important;
}

/* Indicators / Phase Buttons */
.how-work-indicators {
  position: relative;
  margin-bottom: 25px !important;
  gap: 12px;
}

.how-work-indicators button {
  width: auto !important;
  height: auto !important;
  text-indent: 0 !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.how-work-indicators button.active {
  background: #A3D600 !important;
  border-color: #A3D600 !important;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(163, 214, 0, 0.4);
}

.indicator-text {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
}
.how-work-indicators button.active .indicator-text {
  color: #0B1220;
}

/* Nav Prev/Next Buttons */
.how-work-ctrl-prev, .how-work-ctrl-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.how-work-ctrl-prev {
  left: -20px;
}

.how-work-ctrl-next {
  right: -20px;
}

.carousel-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.carousel-ctrl-btn:hover {
  background: #A3D600;
  color: #0B1220;
  border-color: #A3D600;
  transform: scale(1.08);
}

/* Featured Panel (Step 3 - Compact) */
.row-1-col .step-container {
  width: 100%;
  max-width: 380px !important;
  margin: 0 auto !important;
}

.featured-panel {
  width: 100%;
  max-width: 380px !important;
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
}

.featured-img {
  width: 100% !important;
  max-width: 360px !important; /* Compact size for 3rd image */
  height: auto;
  margin: 0 auto;
}

/* Connectors styling */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  align-self: center;
}

.connector-row-vertical {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 15px 0;
  opacity: 0.8;
}

.connector-row-vertical .v-connector-left,
.connector-row-vertical .v-connector-right {
  width: 24px;
  height: 40px;
}

/* Responsive Design */
@media (max-width: 991px) {
  /* Tablet keeps 2-1-2 but can adjust sizes slightly */
  .connector-row-vertical {
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  /* Mobile stack layout */
  .how-work-section {
    padding: 50px 0 60px !important;
  }
  
  .editorial-grid {
    gap: 25px;
  }
  
  .editorial-row {
    flex-direction: column;
    gap: 25px;
  }
  
  .row-2-cols .step-container {
    width: 100%;
  }
  
  .premium-image-panel {
    border-radius: 0 !important;
    padding: 0 !important;
  }
  
  .featured-panel {
    width: 100%;
  }
  
  .featured-img {
    width: 100% !important;
  }

  /* Hide connectors on mobile */
  .step-connector,
  .connector-row-vertical {
    display: none !important;
  }
}


/* Testimonials Redesign */
.testimonials-section {
  background-color: #F8F9FA !important;
  padding: 40px 0 !important;
}

.testimonial-pill {
  color: #26A9E1 !important;
  border: 1px solid rgba(38, 169, 225, 0.3) !important;
  background-color: transparent !important;
  padding: 6px 18px;
  border-radius: 999px !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
}

.testimonial-heading {
  font-size: clamp(32px, 3.8vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #0B1220 !important;
}

.testimonial-heading .text-cyan {
  color: #26A9E1 !important;
}

.testimonial-heading .text-lime {
  color: #92C200 !important;
}

/* ==========================================================================
   FINCON MASTER SERVICE DETAIL PAGE DESIGN SYSTEM
   ========================================================================== */
.master-service-hero {
  position: relative;
  background: linear-gradient(135deg, #F0F7FD 0%, #FFFFFF 50%, #F5FAFE 100%) !important;
  padding: 35px 0 75px 0 !important;
  overflow: hidden;
}
body.dark-mode .master-service-hero {
  background: linear-gradient(135deg, #070d19 0%, #0b1426 100%) !important;
}

.hero-support-title-box {
  border-left: 4px solid #A3D600 !important;
  background: rgba(163, 214, 0, 0.08) !important;
  border-radius: 0 14px 14px 0 !important;
  padding: 16px 20px !important;
  margin-bottom: 20px !important;
}
body.dark-mode .hero-support-title-box {
  background: rgba(163, 214, 0, 0.15) !important;
}

.hero-highlight-item {
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
}
body.dark-mode .hero-highlight-item {
  color: #F8FAFC !important;
}

.link-explore-cyan {
  background: rgba(38, 169, 225, 0.08) !important;
  color: #26A9E1 !important;
  border: 1px solid rgba(38, 169, 225, 0.25) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}
.link-explore-cyan:hover {
  background: #26A9E1 !important;
  color: #FFFFFF !important;
  border-color: #26A9E1 !important;
  transform: translateY(-2px) !important;
}

.hero-value-strip-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 24px 28px !important;
  box-shadow: 0 10px 35px rgba(11, 18, 32, 0.05) !important;
  border: 1px solid rgba(11, 18, 32, 0.06) !important;
}
body.dark-mode .hero-value-strip-card {
  background: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.master-service-section {
  padding: 70px 0 !important;
  border-top: 1px solid rgba(11, 18, 32, 0.06) !important;
}
body.dark-mode .master-service-section {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.master-heading-black {
  color: #0F172A !important;
  font-weight: 800 !important;
}
body.dark-mode .master-heading-black {
  color: #FFFFFF !important;
}

.included-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(11, 18, 32, 0.08) !important;
  border-radius: 20px !important;
  padding: 30px 24px !important;
  height: 100% !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}
.included-card:hover {
  border-color: #26A9E1 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(38, 169, 225, 0.14) !important;
}
body.dark-mode .included-card {
  background: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.software-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1px solid rgba(38, 169, 225, 0.2);
  color: #0F172A;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}
.software-pill:hover {
  border-color: #26A9E1;
  transform: translateY(-2px);
  color: #26A9E1;
}
body.dark-mode .software-pill {
  background: #1E293B;
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Google Badge */
.google-reviews-badge {
  margin-top: 25px;
}

.google-logo-box {
  background: #FFFFFF;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-rating-info .rating-num {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E1 !important;
}

.google-rating-info .rating-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #26A9E1 !important;
}

/* Testimonial slider / track wrapper */
.testimonial-card-wrapper {
  overflow: hidden;
  background: #FFFFFF !important;
  border-radius: 30px !important;
  padding: 0 !important; /* Removed padding to let overflow: hidden clip cleanly at boundaries */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.testimonial-card-v2 {
  width: 100%;
  padding: 30px 40px !important; /* Moved padding inside the individual slides */
  box-sizing: border-box !important;
}

.testimonial-slide {
  padding: 0 !important;
}

.quote-icon-box {
  margin-bottom: 20px;
}

.testimonial-text-v2 {
  font-size: 17px !important;
  line-height: 1.65;
  color: #5F6B7A !important;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: justify;
}

/* Author footer */
.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #EBF7FD;
  color: #26A9E1 !important;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #26A9E1 !important;
  margin-bottom: 2px;
}

.author-location {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8C98A5 !important;
  margin: 0;
}

/* Navigation buttons inside the card at bottom right */
.testimonial-nav-buttons-v2 {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 5;
}

.carousel-nav-btn-v2 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF !important;
  border: 1px solid rgba(38, 169, 225, 0.2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-nav-btn-v2:hover {
  background-color: #26A9E1 !important;
  border-color: #26A9E1 !important;
}

.carousel-nav-btn-v2:hover svg path {
  stroke: #FFFFFF !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .testimonial-card-wrapper {
    padding: 0 !important;
  }
  
  .testimonial-card-v2 {
    padding: 30px !important;
  }
  
  .testimonial-nav-buttons-v2 {
    position: static;
    margin-top: 25px;
    justify-content: flex-end;
    padding-right: 30px;
    padding-bottom: 20px;
  }
}

/* Testimonials Section in Dark Mode */
body.dark-mode .testimonial-card-wrapper {
  background-color: #101A2D !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .testimonial-text-v2 {
  color: #E2E8F0 !important;
}

body.dark-mode .author-name {
  color: #FFFFFF !important;
}

body.dark-mode .author-location {
  color: #94A3B8 !important;
}

body.dark-mode .avatar-circle {
  background-color: rgba(38, 169, 225, 0.15) !important;
  color: #38BDF8 !important;
}

body.dark-mode .carousel-nav-btn-v2 {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .carousel-nav-btn-v2 svg path {
  stroke: #38BDF8 !important;
}

body.dark-mode .carousel-nav-btn-v2:hover {
  background-color: #26A9E1 !important;
  border-color: #26A9E1 !important;
}

body.dark-mode .carousel-nav-btn-v2:hover svg path {
  stroke: #FFFFFF !important;
}

/* ====================================================
   ABOUT US PAGE CUSTOM STYLES (NEW DESIGN)
   ==================================================== */

.about-eyebrow-pill {
  display: inline-block;
  padding: 6px 18px;
  background-color: #EBF7FD;
  color: #26A9E1;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
}

body.dark-mode .about-eyebrow-pill {
  background-color: rgba(38, 169, 225, 0.15);
  color: #26A9E1;
}

.about-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #A3D600;
}

.about-banner-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Stats Strip */
.stats-row-divider {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.dark-mode .stats-row-divider {
  background-color: #0B1220 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.stat-col-v4 {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.dark-mode .stat-col-v4 {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.stat-num-v4 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label-v4 {
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

body.dark-mode .stat-label-v4 {
  color: #FFFFFF !important;
}

/* Mission & Vision */
.mission-vision-card-v4 {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08) !important;
  border-width: 1px;
  border-style: solid;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card-v4:hover {
  transform: translateY(-5px);
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  box-shadow: 0 10px 30px rgba(163, 214, 0, 0.25) !important;
}

body.dark-mode .mission-vision-card-v4 {
  background: #0B1220;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .mission-vision-card-v4:hover {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  box-shadow: 0 10px 30px rgba(163, 214, 0, 0.35) !important;
}

.circle-icon-v4 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.circle-icon-v4.bg-green {
  background-color: #A3D600 !important;
}

.circle-icon-v4 i {
  color: #26A9E1 !important;
  transition: color 0.3s ease;
}

.mission-vision-card-v4:hover .circle-icon-v4 {
  background-color: #FFFFFF !important;
}

.mv-text-container {
  background-color: #F4F5F7;
  transition: background-color 0.3s ease;
}

body.dark-mode .mv-text-container {
  background-color: #070D18;
}

/* Why Choose Cards */
.why-wrapper-card-v4 {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08) !important;
  border-width: 1px;
  border-style: solid;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-wrapper-card-v4:hover {
  transform: translateY(-5px);
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  box-shadow: 0 10px 30px rgba(163, 214, 0, 0.25) !important;
}

body.dark-mode .why-wrapper-card-v4 {
  background: #0B1220;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .why-wrapper-card-v4:hover {
  background-color: #A3D600 !important;
  border-color: #A3D600 !important;
  box-shadow: 0 10px 30px rgba(163, 214, 0, 0.35) !important;
}

.why-inner-card-v4 {
  background-color: #F4F5F7;
  transition: background-color 0.3s ease;
}

body.dark-mode .why-inner-card-v4 {
  background-color: #070D18;
}

/* Leadership Section */
.profile-img-container {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #EBF7FD;
}

body.dark-mode .profile-img-container {
  border-color: rgba(255, 255, 255, 0.05);
}

.profile-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

body.dark-mode .leadership-card {
  background-color: #0B1220 !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.profile-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #EBF7FD;
  color: #26A9E1 !important;
  transition: all 0.2s ease;
}

.profile-arrow:hover {
  background-color: #26A9E1;
  color: #FFFFFF !important;
}

/* CTA */
.about-cta-section {
  background-color: #0B1220 !important;
  padding: 80px 0 !important;
}

.introduction-section-v4 p {
  text-align: justify;
}

.text-justify {
  text-align: justify !important;
}

/* ==========================================================================
   LEADERSHIP PROFILE CARDS
   ========================================================================== */
.leader-profile-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.dark-mode .leader-profile-card {
  background: #0F172A;
  border-color: rgba(255, 255, 255, 0.08);
}

.leader-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(38, 169, 225, 0.12);
}

.leader-profile-card.theme-cool-blue {
  border-left: 5px solid #26A9E1;
}

.leader-profile-card.theme-cool-green {
  border-left: 5px solid #A3D600;
}

.leader-name {
  font-weight: 800;
  color: #0B1220;
  margin-bottom: 4px;
}
body.dark-mode .leader-name {
  color: #FFFFFF;
}

.leader-title {
  font-weight: 700;
  font-size: 15px;
  color: #26A9E1;
  margin-bottom: 12px;
}

.leader-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #26A9E1, #A3D600);
  border-radius: 3px;
  margin-bottom: 14px;
}

.leader-description {
  font-size: 14px;
  line-height: 1.65;
  color: #4A5568;
  margin-bottom: 12px;
}
body.dark-mode .leader-description {
  color: #94A3B8;
}

.leader-quote {
  font-style: italic;
  font-size: 13.5px;
  color: #64748B;
  border-left: 3px solid rgba(38, 169, 225, 0.3);
  padding-left: 12px;
  margin-bottom: 16px;
}
body.dark-mode .leader-quote {
  color: #CBD5E1;
}

.leader-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
}

/* Circular Arrow Team Profile Link Button */
.team-profile-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(38, 169, 225, 0.3);
  color: #26A9E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(38, 169, 225, 0.15);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none !important;
  position: relative;
  z-index: 5;
}
.team-profile-link:hover,
.team-profile-link:focus {
  background: #26A9E1;
  color: #FFFFFF !important;
  border-color: #26A9E1;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(38, 169, 225, 0.35);
}

body.dark-mode .team-profile-link {
  background: #1E293B;
  border-color: rgba(38, 169, 225, 0.4);
  color: #38BDF8;
}
body.dark-mode .team-profile-link:hover,
body.dark-mode .team-profile-link:focus {
  background: #26A9E1;
  color: #FFFFFF !important;
  border-color: #26A9E1;
}

/* Cool Green Theme Profile Link Button */
.team-profile-link-green,
.leader-profile-card.theme-cool-green .team-profile-link {
  border-color: rgba(142, 185, 11, 0.4) !important;
  color: #8EB90B !important;
  box-shadow: 0 4px 14px rgba(142, 185, 11, 0.2) !important;
}

.team-profile-link-green i,
.leader-profile-card.theme-cool-green .team-profile-link i {
  color: #8EB90B !important;
}

.team-profile-link-green:hover,
.team-profile-link-green:focus,
.leader-profile-card.theme-cool-green .team-profile-link:hover,
.leader-profile-card.theme-cool-green .team-profile-link:focus,
.leader-profile-card.theme-cool-green:hover .team-profile-link {
  background: #8EB90B !important;
  color: #FFFFFF !important;
  border-color: #8EB90B !important;
  box-shadow: 0 8px 22px rgba(142, 185, 11, 0.4) !important;
}

.team-profile-link-green:hover i,
.team-profile-link-green:focus i,
.leader-profile-card.theme-cool-green .team-profile-link:hover i,
.leader-profile-card.theme-cool-green:hover .team-profile-link i {
  color: #FFFFFF !important;
}

body.dark-mode .team-profile-link-green,
body.dark-mode .leader-profile-card.theme-cool-green .team-profile-link {
  background: #1E293B !important;
  border-color: rgba(142, 185, 11, 0.5) !important;
  color: #A3D600 !important;
}

body.dark-mode .team-profile-link-green i,
body.dark-mode .leader-profile-card.theme-cool-green .team-profile-link i {
  color: #A3D600 !important;
}

body.dark-mode .team-profile-link-green:hover,
body.dark-mode .team-profile-link-green:focus,
body.dark-mode .leader-profile-card.theme-cool-green .team-profile-link:hover,
body.dark-mode .leader-profile-card.theme-cool-green .team-profile-link:focus,
body.dark-mode .leader-profile-card.theme-cool-green:hover .team-profile-link {
  background: #8EB90B !important;
  color: #FFFFFF !important;
  border-color: #8EB90B !important;
}

body.dark-mode .team-profile-link-green:hover i,
body.dark-mode .team-profile-link-green:focus i,
body.dark-mode .leader-profile-card.theme-cool-green .team-profile-link:hover i,
body.dark-mode .leader-profile-card.theme-cool-green:hover .team-profile-link i {
  color: #FFFFFF !important;
}

.leader-circle-bg {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 169, 225, 0.1) 0%, rgba(38, 169, 225, 0) 70%);
  pointer-events: none;
}

.leader-img {
  position: absolute;
  right: 15px;
  bottom: 0;
  max-height: 90%;
  max-width: 42%;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .leader-img {
    position: relative;
    right: auto;
    bottom: auto;
    max-height: 280px;
    max-width: 100%;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   FINCON HOW WE WORK COMPONENT (ISOLATED NAMESPACE .fincon-hww)
   ========================================================================== */
.fincon-hww {
  --hww-lime: #b4d85f;
  --hww-lime-strong: #9fc342;
  --hww-lime-soft: #f1f8df;
  --hww-cyan: #2f9dca;
  --hww-cyan-soft: #e8f6fb;
  --hww-ink: #152724;
  --hww-ink-2: #2f403d;
  --hww-muted: #687874;
  --hww-line: #dfe6dc;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: radial-gradient(circle at 8% 18%, rgba(47,157,202,.12), transparent 28rem), radial-gradient(circle at 92% 82%, rgba(180,216,95,.18), transparent 30rem), #f7f8f3;
  color: var(--hww-ink);
  font-family: "Plus Jakarta Sans", "Aptos", "Segoe UI", Arial, sans-serif;
}
body.dark-mode .fincon-hww {
  background: radial-gradient(circle at 8% 18%, rgba(47,157,202,.15), transparent 28rem), radial-gradient(circle at 92% 82%, rgba(180,216,95,.15), transparent 30rem), #0b1426;
  color: #FFFFFF;
}
.fincon-hww *, .fincon-hww *::before, .fincon-hww *::after { box-sizing: border-box; }
.fincon-hww__inner { width: min(calc(100% - 3rem), 1200px); margin: 0 auto; }
.fincon-hww__header { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.fincon-hww__pill { padding: .35rem 1.1rem; border: 1px solid var(--hww-lime-strong); border-radius: 999px; background: var(--hww-lime-soft); font-size: .84rem; font-weight: 700; letter-spacing: .03em; color: var(--hww-ink); }
body.dark-mode .fincon-hww__pill { background: rgba(163, 214, 0, 0.2); color: #A3D600; border-color: #A3D600; }
.fincon-hww__header h2 { margin: 0; font-family: "Outfit", "Aptos Display", "Segoe UI", Arial, sans-serif; font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.12; letter-spacing: -.035em; text-wrap: balance; color: var(--hww-ink); }
body.dark-mode .fincon-hww__header h2 { color: #FFFFFF; }
.fincon-hww__header p { max-width: 68ch; margin: 0; color: var(--hww-muted); font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.65; }
body.dark-mode .fincon-hww__header p { color: #94A3B8; }
.fincon-hww__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.5rem; }
.fincon-hww__card { position: relative; display: flex; grid-column: span 2; min-width: 0; min-height: 410px; flex-direction: column; padding: 1.9rem 2.25rem 1.25rem; overflow: visible; border: 1px solid var(--hww-line); border-radius: 20px; background: linear-gradient(135deg, var(--hww-cyan-soft), #fff 50%, var(--hww-lime-soft)); box-shadow: 0 8px 24px rgba(21,39,36,.06); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
body.dark-mode .fincon-hww__card { background: linear-gradient(135deg, rgba(38,169,225,0.1), #0f172a 50%, rgba(163,214,0,0.1)); border-color: rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.fincon-hww__card:hover { z-index: 4; transform: translateY(-4px); border-color: rgba(159,195,66,.7); box-shadow: 0 20px 60px rgba(21,39,36,.11); }
body.dark-mode .fincon-hww__card:hover { border-color: #38BDF8; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.fincon-hww__card--4 { grid-column: 5 / span 2; grid-row: 2; }
.fincon-hww__card--5 { grid-column: 3 / span 2; grid-row: 2; }
.fincon-hww__card--6 { grid-column: 1 / span 2; grid-row: 2; }
.fincon-hww__number { position: absolute; top: 1.7rem; right: 1rem; display: inline-flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--hww-lime); box-shadow: 0 5px 14px rgba(21,39,36,.1); font-size: .85rem; font-weight: 800; color: #0B1220; }
.fincon-hww__card h3 { max-width: calc(100% - 2.5rem); margin: 0 0 1.05rem; font-family: "Outfit", "Aptos Display", "Segoe UI", Arial, sans-serif; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.25; letter-spacing: -.025em; color: var(--hww-ink); }
body.dark-mode .fincon-hww__card h3 { color: #FFFFFF; }
.fincon-hww__card p { max-width: 100%; margin: 0; color: var(--hww-muted); font-size: 1rem; line-height: 1.65; text-align: justify; text-align-last: left; text-justify: inter-word; hyphens: none; overflow-wrap: normal; word-break: normal; }
body.dark-mode .fincon-hww__card p { color: #94A3B8; }
.fincon-hww__card .fincon-hww__note { max-width: 100%; margin-top: .75rem; color: var(--hww-ink-2); font-size: .88rem; font-weight: 700; line-height: 1.45; text-align: left; text-align-last: auto; }
body.dark-mode .fincon-hww__card .fincon-hww__note { color: #E2E8F0; }
.fincon-hww__card img { display: block; width: 100%; height: 8.5rem; margin-top: auto; object-fit: contain; }
.fincon-hww__arrow { position: absolute; z-index: 5; display: inline-flex; width: 1.5rem; height: 1.5rem; align-items: center; justify-content: center; color: var(--hww-cyan); font-size: 1.75rem; font-weight: 800; line-height: 1; pointer-events: none; }
.fincon-hww__arrow--right { top: 50%; right: -1.5rem; transform: translateY(-50%); }
.fincon-hww__arrow--down { bottom: -1.5rem; left: 50%; transform: translateX(-50%) rotate(90deg); }
.fincon-hww__arrow--left { top: 50%; left: -1.5rem; transform: translateY(-50%) rotate(180deg); }

@media (max-width: 990px) {
  .fincon-hww__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fincon-hww__card, .fincon-hww__card--4, .fincon-hww__card--5, .fincon-hww__card--6 { grid-column: span 1; grid-row: auto; }
  .fincon-hww__arrow { display: none; }
}

@media (max-width: 680px) {
  .fincon-hww__inner { width: min(calc(100% - 2rem), 1200px); }
  .fincon-hww__grid { grid-template-columns: 1fr; }
  .fincon-hww__card { min-height: 390px; padding: 1.65rem 1.5rem 1rem; }
  .fincon-hww__card p { text-align: left; text-align-last: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .fincon-hww__card { transition: none; }
}
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #A3D600;
}

/* Premium Leader Profile Cards (Landscape version) */
.leader-profile-card.landscape-card {
  background-color: #FAF6F0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  width: 100%;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-profile-card.landscape-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.leader-text-col {
  position: relative;
  z-index: 2;
  width: 55% !important;
  max-width: 55% !important;
  padding-right: 12px !important;
}

.leader-profile-card.landscape-card .leader-name {
  color: #0F1E36;
  font-weight: 800;
  margin-bottom: 2px;
}

.leader-profile-card.landscape-card .leader-title,
.leader-profile-card.landscape-card .leader-title.small {
  color: #B0703C;
  font-weight: 600;
  font-size: 13px !important;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
  white-space: nowrap !important;
  word-break: keep-all;
}

.leader-profile-card.landscape-card .leader-divider {
  width: 65px;
  height: 2px;
  background-color: #B0703C;
  margin-bottom: 8px;
}

.leader-profile-card.landscape-card .leader-description {
  color: #4A5568;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
  text-align: justify;
}

.leader-profile-card.landscape-card .leader-quote {
  color: #0F1E36;
  font-style: italic;
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.35;
  margin-bottom: 10px;
  position: relative;
}

.leader-profile-card.landscape-card .leader-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F4EBE1;
  color: #B0703C;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
}

.leader-profile-card.landscape-card .leader-circle-bg {
  display: none !important;
}

.leader-img-col {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 46% !important;
  max-width: 46% !important;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.leader-img-inline {
  max-width: 100% !important;
  max-height: 102% !important;
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  transform: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.leader-profile-card.landscape-card:hover .leader-img-inline {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

/* Cool Blue Theme */
.leader-profile-card.landscape-card.theme-cool-blue {
  background-color: #F8FAFC;
  border-color: #E2E8F0;
}

.leader-profile-card.landscape-card.theme-cool-blue .leader-title {
  color: #26A9E1;
}

.leader-profile-card.landscape-card.theme-cool-blue .leader-divider {
  background-color: #26A9E1;
}

.leader-profile-card.landscape-card.theme-cool-blue .leader-description {
  color: #334155;
}

.leader-profile-card.landscape-card.theme-cool-blue .leader-badge {
  background-color: #EBF7FD;
  color: #0F1E36;
}

.leader-profile-card.landscape-card.theme-cool-blue .leader-badge i {
  color: #26A9E1;
}

/* theme-cool-blue circle-bg styles removed as display: none is set globally */

/* Cool Green Theme */
.leader-profile-card.landscape-card.theme-cool-green {
  background-color: #F9FBF6;
  border-color: #E5ECD7;
}

.leader-profile-card.landscape-card.theme-cool-green .leader-title {
  color: #8EB90B;
}

.leader-profile-card.landscape-card.theme-cool-green .leader-divider {
  background-color: #8EB90B;
}

.leader-profile-card.landscape-card.theme-cool-green .leader-description {
  color: #334155;
}

.leader-profile-card.landscape-card.theme-cool-green .leader-badge {
  background-color: #F1F7E6;
  color: #273C14;
}

.leader-profile-card.landscape-card.theme-cool-green .leader-badge i {
  color: #8EB90B;
}

/* Dark mode overrides */
body.dark-mode .leader-profile-card.landscape-card {
  background-color: #121A2C;
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .leader-profile-card.landscape-card .leader-name {
  color: #FFFFFF;
}

body.dark-mode .leader-profile-card.landscape-card .leader-description {
  color: #A0AEC0;
}

body.dark-mode .leader-profile-card.landscape-card .leader-quote {
  color: #E2E8F0;
}

body.dark-mode .leader-profile-card.landscape-card .leader-badge {
  background-color: rgba(176, 112, 60, 0.15);
  color: #DDA15E;
}

body.dark-mode .leader-profile-card.landscape-card .leader-circle-bg {
  background-color: rgba(255, 255, 255, 0.03);
}

body.dark-mode .leader-profile-card.landscape-card.theme-cool-blue .leader-badge {
  background-color: rgba(38, 169, 225, 0.15);
  color: #E2E8F0;
}

body.dark-mode .leader-profile-card.landscape-card.theme-cool-blue .leader-badge i {
  color: #26A9E1;
}

body.dark-mode .leader-profile-card.landscape-card.theme-cool-green .leader-badge {
  background-color: rgba(142, 185, 11, 0.15);
  color: #E2F0D9;
}

body.dark-mode .leader-profile-card.landscape-card.theme-cool-green .leader-badge i {
  color: #8EB90B;
}

body.dark-mode .leader-profile-card.landscape-card.theme-cool-blue .leader-circle-bg {
  border-color: rgba(38, 169, 225, 0.15);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .leader-profile-card.landscape-card {
    min-height: auto;
    padding: 30px !important;
    padding-bottom: 340px !important;
  }
  .leader-profile-card.landscape-card .leader-circle-bg {
    width: 240px;
    height: 240px;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .leader-profile-card.landscape-card .leader-img {
    width: 260px;
    height: 300px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    transform-origin: bottom center;
  }
}

/* Floating WhatsApp Widget */
.whatsapp-widget-container {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999999 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s ease;
}

/* Toggle Button */
.whatsapp-toggle-btn {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.whatsapp-toggle-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-toggle-btn i {
  font-size: 20px;
}

/* Hide toggle button when popup is open */
.whatsapp-widget-container.active .whatsapp-toggle-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateY(10px);
}

/* Pulsing effect */
.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2s infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Chat Window */
.whatsapp-chat-window {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-widget-container.active .whatsapp-chat-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat Header */
.whatsapp-chat-header {
  background-color: #A3D600; /* FINCON Lime Green Brand Color */
  color: #0B1220; /* Dark Navy for maximum contrast/readability */
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.whatsapp-chat-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.avatar-brand-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-f-logo-wrapper {
  width: 19px;
  height: 38px;
  overflow: hidden;
  position: relative;
}

.brand-f-logo-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  height: 38px !important;
  width: auto !important;
  max-width: none !important;
}

.whatsapp-chat-avatar .online-indicator {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  background-color: #26A9E1; /* Cyan/Blue Brand Color for contrast */
  border: 2px solid #A3D600; /* Matches Header Lime Green */
  border-radius: 50%;
}

.whatsapp-chat-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: #0B1220; /* Dark Navy */
}

.whatsapp-chat-info p {
  font-size: 12px;
  margin: 0;
  color: rgba(11, 18, 32, 0.75); /* Soft Dark Navy for readability */
}

.whatsapp-chat-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(11, 18, 32, 0.75); /* Soft Dark Navy */
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.whatsapp-chat-close:hover {
  color: #0B1220;
}

/* Chat Body (WhatsApp chat bg style) */
.whatsapp-chat-body {
  background-color: #e5ddd5;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-size: repeat;
  padding: 24px 20px;
  max-height: 250px;
  overflow-y: auto;
}

.whatsapp-message {
  background-color: white;
  padding: 10px 14px;
  border-radius: 0px 12px 12px 12px;
  max-width: 90%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
}

.whatsapp-message p {
  font-size: 13px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 4px 0;
}

.whatsapp-time {
  font-size: 10px;
  color: #888888;
  float: right;
}

/* Chat Footer */
.whatsapp-chat-footer {
  background-color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
}

.whatsapp-chat-btn {
  background-color: #25D366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
  width: 100% !important;
  transition: all 0.25s ease !important;
  border: none !important;
  line-height: 1.2 !important;
}

.whatsapp-chat-btn:hover {
  background-color: #1ebd59 !important;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35) !important;
  transform: translateY(-2px) !important;
}

.whatsapp-chat-btn i {
  font-size: 18px !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .whatsapp-chat-window {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .whatsapp-widget-container {
    bottom: 12px;
    right: 12px;
    left: auto;
  }
  .whatsapp-toggle-btn {
    padding: 8px 14px;
    font-size: 13.5px;
  }
}

/* ==========================================
   INTERACTIVE BENEFITS SLIDER (ABOUT US PAGE)
   ========================================== */
.benefits-carousel-section {
  position: relative;
  background: #F8FAFC !important;
  border-radius: 24px !important;
  padding: 50px 20px 40px 20px !important;
  margin: 30px auto !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

body.dark-mode .benefits-carousel-section {
  background: #0B132B !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.benefits-eyebrow-pill {
  color: #26A9E1 !important;
  background: rgba(38, 169, 225, 0.08) !important;
  border: 1px solid rgba(38, 169, 225, 0.3) !important;
  padding: 6px 20px;
  border-radius: 50px !important;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.benefits-carousel-container {
  padding: 15px 30px 40px 30px !important;
  position: relative;
  overflow: visible !important;
}

#benefitsCarousel,
#benefitsCarousel .carousel-inner,
#benefitsCarousel .carousel-item {
  overflow: visible !important;
}

.benefits-slide-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 52px 28px 48px 28px !important;
  min-height: 230px !important;
  position: relative;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  height: 100%;
  margin-top: 24px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.dark-mode .benefits-slide-card {
  background: #162032 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

/* Green Color Highlight inside Card Box on Mouse Hover */
.benefits-slide-card:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FBEA 100%) !important; /* Soft green highlight inside card box */
  border-color: #A3D600 !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 42px rgba(163, 214, 0, 0.22) !important;
}

body.dark-mode .benefits-slide-card:hover {
  background: linear-gradient(180deg, #162032 0%, #162A1D 100%) !important;
  border-color: #A3D600 !important;
}

.benefits-slide-card:hover .benefits-card-heading {
  color: #4A6B00 !important;
}

body.dark-mode .benefits-slide-card:hover .benefits-card-heading {
  color: #A3D600 !important;
}

/* Floating Top Icon Badge (Rounded Square Badge 12px) */
.benefits-card-top-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: all 0.3s ease;
}

.benefits-slide-card:hover .benefits-card-top-icon {
  transform: translateX(-50%) scale(1.08);
}

.icon-badge-cyan {
  background: #26A9E1 !important;
  color: #FFFFFF !important;
}

.icon-badge-lime {
  background: #A3D600 !important;
  color: #FFFFFF !important;
}

/* Card Heading (Uppercase & Bold) */
.benefits-card-heading {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0B1220 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
  line-height: 1.35 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

body.dark-mode .benefits-card-heading {
  color: #FFFFFF !important;
}

.benefits-card-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #6B7280 !important;
  text-align: center !important;
  margin-bottom: 0 !important;
}

body.dark-mode .benefits-card-desc {
  color: #94A3B8 !important;
}

/* Nav Controls */
.benefits-ctrl-prev, .benefits-ctrl-next {
  width: 44px;
  height: 44px;
  top: 55%;
  transform: translateY(-50%);
  opacity: 1;
}

.benefits-ctrl-prev {
  left: -15px;
}

.benefits-ctrl-next {
  right: -15px;
}

.benefits-ctrl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

body.dark-mode .benefits-ctrl-icon {
  background: #1E293B;
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.benefits-ctrl-icon:hover {
  background: #26A9E1;
  color: #FFFFFF;
  border-color: #26A9E1;
  transform: scale(1.08);
}

/* Indicators */
.benefits-indicators {
  position: relative;
  margin-top: 25px !important;
  margin-bottom: 0 !important;
  gap: 8px;
}

.benefits-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(11, 18, 32, 0.2) !important;
  border: none !important;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.benefits-indicators button.active {
  width: 28px !important;
  border-radius: 20px !important;
  background-color: #A3D600 !important;
  opacity: 1;
}

/* ==========================================
   Data Security & Compliance Page Styles
   ========================================== */

/* Security Cards */
.security-card-box {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.dark-mode .security-card-box {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
}

.security-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(38, 169, 225, 0.3);
}

.security-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(38, 169, 225, 0.12);
  color: #26A9E1;
  margin-bottom: 16px;
}

.security-card-tag.tag-lime {
  background: rgba(163, 214, 0, 0.18);
  color: #0B1220;
}

body.dark-mode .security-card-tag.tag-lime {
  color: #A3D600;
}

.security-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  background: rgba(38, 169, 225, 0.12);
  color: #26A9E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 169, 225, 0.12);
}

.security-card-icon.icon-lime {
  background: rgba(163, 214, 0, 0.2);
  color: #0B1220;
  box-shadow: 0 4px 12px rgba(163, 214, 0, 0.15);
}

body.dark-mode .security-card-icon.icon-lime {
  color: #A3D600;
}

.security-card-box:hover .security-card-icon {
  transform: scale(1.12) rotate(5deg);
}

/* Timeline Process Framework - Handled in main timeline section */

.security-timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.security-timeline-badge {
  width: 54px;
  height: 54px;
  border-radius: 50% !important;
  background: #26A9E1;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(38, 169, 225, 0.35);
  border: 3px solid #ffffff;
}

.security-timeline-badge.badge-lime {
  background: #A3D600;
  color: #0B1220;
  box-shadow: 0 4px 12px rgba(163, 214, 0, 0.35);
}

body.dark-mode .security-timeline-badge {
  border-color: #0B1220;
}

.security-timeline-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 14px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: calc(100% - 70px);
}

body.dark-mode .security-timeline-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
}

.security-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Round Circle Process Loop Design */
.security-loop-circle {
  width: 170px;
  height: 170px;
  border-radius: 50% !important;
  background: #ffffff;
  border: 3px solid rgba(38, 169, 225, 0.3);
  padding: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.08);
  margin: 0 auto;
}

body.dark-mode .security-loop-circle {
  background: #111827;
  border-color: rgba(38, 169, 225, 0.4);
}

.security-loop-circle.circle-lime {
  border-color: rgba(163, 214, 0, 0.5);
  box-shadow: 0 10px 25px rgba(163, 214, 0, 0.08);
}

.security-loop-circle:hover {
  border-color: #26A9E1;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(38, 169, 225, 0.25);
}

.security-loop-circle.circle-lime:hover {
  border-color: #A3D600;
  box-shadow: 0 15px 35px rgba(163, 214, 0, 0.3);
}

.security-loop-circle i {
  transition: transform 0.3s ease;
}

.security-loop-circle:hover i {
  transform: scale(1.2) rotate(8deg);
}

body.dark-mode .security-loop-circle {
  background: #111827;
}

.security-loop-circle.circle-lime {
  border-color: rgba(163, 214, 0, 0.4);
}

.security-loop-circle:hover {
  border-color: #26A9E1;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(38, 169, 225, 0.15);
}

.security-loop-circle.circle-lime:hover {
  border-color: #A3D600;
  box-shadow: 0 12px 25px rgba(163, 214, 0, 0.18);
}

/* Accordion Custom Styling */
.security-accordion .accordion-item {
  border: 1px solid rgba(11, 18, 32, 0.08) !important;
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

body.dark-mode .security-accordion .accordion-item {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.security-accordion .accordion-button {
  background: #ffffff;
  color: #0B1220;
  font-weight: 700;
  font-size: 16.5px;
  padding: 20px 24px;
  box-shadow: none !important;
}

body.dark-mode .security-accordion .accordion-button {
  background: #111827;
  color: #ffffff;
}

.security-accordion .accordion-button:not(.collapsed) {
  background: rgba(38, 169, 225, 0.08);
  color: #26A9E1;
}

body.dark-mode .security-accordion .accordion-button:not(.collapsed) {
  background: rgba(38, 169, 225, 0.15);
  color: #26A9E1;
}

.security-accordion .accordion-button::after {
  filter: brightness(0.5);
}

body.dark-mode .security-accordion .accordion-button::after {
  filter: invert(1);
}

.security-accordion .accordion-body {
  padding: 20px 24px 24px 24px;
  color: #4A5568;
  font-size: 15.5px;
  line-height: 1.7;
}

body.dark-mode .security-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.8);
}

/* Security Hero Light Style (Matching Blogs.html) */
.security-hero-light {
  position: relative;
  background: linear-gradient(135deg, #F0F7FD 0%, #FFFFFF 50%, #F5FAFE 100%) !important;
  padding: 60px 0 65px 0 !important;
  overflow: hidden;
}

body.dark-mode .security-hero-light {
  background: linear-gradient(135deg, #070d19 0%, #0b1426 100%) !important;
}

.text-navy {
  color: #0B1220;
}

body.dark-mode .text-navy {
  color: #FFFFFF !important;
}

body.dark-mode .hero-desc-text {
  color: #94A3B8 !important;
}

body.dark-mode .security-hero-card {
  background: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .security-hero-card .text-muted {
  color: #94A3B8 !important;
}

body.dark-mode .security-hero-card div[style*="border-top"] {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .light-trust-pill .text-navy {
  color: #FFFFFF !important;
}

/* ==========================================
   Blog / Service Hero Section (Light Theme)
   ========================================== */
.blog-hero-section {
  position: relative;
  background: linear-gradient(135deg, #F0F7FD 0%, #FFFFFF 50%, #F5FAFE 100%) !important;
  padding: 55px 0 60px 0 !important;
  overflow: hidden;
}

body.dark-mode .blog-hero-section {
  background: linear-gradient(135deg, #070d19 0%, #0b1426 100%) !important;
}

.hero-title-blogs {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #0B1220;
}

body.dark-mode .hero-title-blogs {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .hero-title-blogs {
    font-size: 34px;
  }
}

/* Category Pill Tag */
.category-pill-tag {
  background-color: #A3D600 !important;
  color: #0B1220 !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
}

/* Dual color underline divider */
.title-underline-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 20px auto;
}

.divider-line-cyan {
  width: 45px;
  height: 4px;
  background-color: #26A9E1;
  border-radius: 4px 0 0 4px;
}

.divider-dot {
  width: 6px;
  height: 6px;
  background-color: #0B1220;
  border-radius: 50%;
}

body.dark-mode .divider-dot {
  background-color: #FFFFFF;
}

.divider-line-lime {
  width: 45px;
  height: 4px;
  background-color: #A3D600;
  border-radius: 0 4px 4px 0;
}

.hero-subtitle-text {
  font-size: 16px;
  color: #4A5568;
  max-width: 680px;
  margin: 0 auto 30px auto;
  line-height: 1.65;
}

body.dark-mode .hero-subtitle-text {
  color: #94A3B8;
}

/* Decorative Grid Dots */
.dot-matrix-decoration {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 140px;
  height: 100px;
  background-image: radial-gradient(rgba(38, 169, 225, 0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

/* Right side 3D graphic illustration */
.hero-3d-illustration-box {
  position: absolute;
  right: 7%;
  top: 30px;
  width: 170px;
  pointer-events: none;
  z-index: 10;
}

.hero-3d-illustration-box svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(38, 169, 225, 0.22));
  animation: floatHero3d 4s ease-in-out infinite alternate;
}

@keyframes floatHero3d {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

@media (max-width: 991px) {
  .hero-3d-illustration-box {
    display: none;
  }
}

/* ==========================================
   Careers Style Hero Typography (Exact Match)
   ========================================== */
.eyebrow-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background-color: rgba(38, 169, 225, 0.12);
  color: #26A9E1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

body.dark-mode .eyebrow-badge {
  background-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.main-heading-careers {
  font-size: 44px;
  font-weight: 800;
  color: #0B1220;
  line-height: 1.25;
  margin-bottom: 20px;
}

body.dark-mode .main-heading-careers {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .main-heading-careers {
    font-size: 32px;
  }
}

.careers-body-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
}

body.dark-mode .careers-body-desc {
  color: #94A3B8;
}

/* ==========================================
   Security Areas Interactive Slider & Cards
   ========================================== */

.security-slider-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.dark-mode .security-slider-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Accent Line Bar Top */
.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.line-blue { background: linear-gradient(90deg, #26A9E1, #1C92C5); }
.line-lime { background: linear-gradient(90deg, #A3D600, #88ba00); }
.line-navy { background: linear-gradient(90deg, #0B1220, #26A9E1); }

body.dark-mode .line-navy { background: linear-gradient(90deg, #38bdf8, #A3D600); }

/* Hover Effects with Blue & Green Glow & Animations */
.security-slider-card.theme-blue:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #26A9E1;
  box-shadow: 0 20px 40px rgba(38, 169, 225, 0.2);
}

.security-slider-card.theme-lime:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #A3D600;
  box-shadow: 0 20px 40px rgba(163, 214, 0, 0.25);
}

/* Card Headings Blue and Green Colors */
.security-slider-card.theme-blue h3 {
  color: #26A9E1 !important;
  transition: color 0.3s ease;
}

.security-slider-card.theme-lime h3 {
  color: #88ba00 !important;
  transition: color 0.3s ease;
}

body.dark-mode .security-slider-card.theme-lime h3 {
  color: #A3D600 !important;
}

.security-slider-card.theme-blue:hover h3 {
  color: #88ba00 !important; /* Green on hover */
}

.security-slider-card.theme-lime:hover h3 {
  color: #26A9E1 !important; /* Blue on hover */
}

/* Underneath Paragraph Content stays as-it-is color */
.security-slider-card p {
  color: #64748B !important;
  line-height: 1.65;
}

body.dark-mode .security-slider-card p {
  color: #94A3B8 !important;
}

/* Category Tag Badges */
.security-card-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.tag-blue {
  background: rgba(38, 169, 225, 0.14);
  color: #26A9E1;
  border: 1px solid rgba(38, 169, 225, 0.25);
}

.tag-lime {
  background: rgba(163, 214, 0, 0.2);
  color: #0B1220;
  border: 1px solid rgba(163, 214, 0, 0.35);
}

body.dark-mode .tag-lime { color: #A3D600; border-color: rgba(163, 214, 0, 0.4); }

.security-slider-card:hover .security-card-tag {
  background: #A3D600 !important;
  color: #0B1220 !important;
  border-color: #A3D600 !important;
}

.security-slider-card.theme-blue:hover .security-card-tag {
  background: #26A9E1 !important;
  color: #FFFFFF !important;
  border-color: #26A9E1 !important;
}

/* Circular Icon Badges */
.security-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.icon-blue {
  background: linear-gradient(135deg, rgba(38, 169, 225, 0.15), rgba(38, 169, 225, 0.08));
  color: #26A9E1;
  border: 1px solid rgba(38, 169, 225, 0.2);
}

.icon-lime {
  background: linear-gradient(135deg, rgba(163, 214, 0, 0.22), rgba(163, 214, 0, 0.1));
  color: #88ba00;
  border: 1px solid rgba(163, 214, 0, 0.3);
}

body.dark-mode .icon-lime { color: #A3D600; }

.security-slider-card:hover .security-icon-circle {
  transform: scale(1.15) rotate(8deg);
}

.security-slider-card.theme-lime:hover .icon-lime {
  background: #A3D600 !important;
  color: #0B1220 !important;
  border-color: #A3D600 !important;
  box-shadow: 0 6px 18px rgba(163, 214, 0, 0.4);
}

.security-slider-card.theme-blue:hover .icon-blue {
  background: #26A9E1 !important;
  color: #FFFFFF !important;
  border-color: #26A9E1 !important;
  box-shadow: 0 6px 18px rgba(38, 169, 225, 0.4);
}

/* Slider Control Container */
.security-slider-container {
  position: relative;
  padding: 0 45px;
}

@media (max-width: 768px) {
  .security-slider-container {
    padding: 0 15px;
  }
}

/* Slider Control Arrows */
.security-slider-ctrl {
  position: absolute !important;
  width: 48px;
  height: 48px;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 1;
  z-index: 20 !important;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.security-slider-ctrl.prev-ctrl {
  left: -20px !important;
}

.security-slider-ctrl.next-ctrl {
  right: -20px !important;
}

@media (max-width: 1200px) {
  .security-slider-ctrl.prev-ctrl { left: 0 !important; }
  .security-slider-ctrl.next-ctrl { right: 0 !important; }
}

.security-ctrl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(11, 18, 32, 0.12);
  color: #0B1220;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.dark-mode .security-ctrl-icon {
  background: #1E293B;
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.security-slider-ctrl:hover .security-ctrl-icon {
  background: #26A9E1 !important;
  color: #FFFFFF !important;
  border-color: #26A9E1 !important;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.4);
}

/* Slider Indicators Dots */
.security-slider-indicators {
  position: relative;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  gap: 8px;
}

.security-slider-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(11, 18, 32, 0.2) !important;
  border: none !important;
  opacity: 0.6;
  transition: all 0.3s ease;
}

body.dark-mode .security-slider-indicators button {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.security-slider-indicators button.active {
  width: 32px !important;
  border-radius: 20px !important;
  background-color: #A3D600 !important;
  opacity: 1;
}

/* ==========================================
   Security Timeline (Our Approach to Data Security)
   ========================================== */
.security-timeline-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #26A9E1;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 6px #FFFFFF, 0 6px 20px rgba(38, 169, 225, 0.35);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.security-timeline-badge.badge-lime {
  background: #A3D600;
  color: #0B1220;
  box-shadow: 0 0 0 6px #FFFFFF, 0 6px 20px rgba(163, 214, 0, 0.4);
}

body.dark-mode .security-timeline-badge {
  box-shadow: 0 0 0 6px #0B1220, 0 6px 20px rgba(38, 169, 225, 0.4);
}

body.dark-mode .security-timeline-badge.badge-lime {
  box-shadow: 0 0 0 6px #0B1220, 0 6px 20px rgba(163, 214, 0, 0.4);
}

.security-timeline-item:hover .security-timeline-badge {
  transform: scale(1.18);
}

.security-timeline-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 14px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

body.dark-mode .security-timeline-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
}

.security-timeline-item:hover .security-timeline-card {
  transform: translateY(-6px);
  border-color: #26A9E1;
  box-shadow: 0 14px 30px rgba(38, 169, 225, 0.18);
}

.security-timeline-item:nth-child(even):hover .security-timeline-card {
  border-color: #A3D600;
  box-shadow: 0 14px 30px rgba(163, 214, 0, 0.22);
}

/* ==========================================
   Security Checklist (Data Protection Commitment)
   ========================================== */
.security-checklist-item {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.dark-mode .security-checklist-item {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
}

.security-checklist-item:hover {
  transform: translateY(-4px);
  border-color: #26A9E1;
  box-shadow: 0 12px 25px rgba(38, 169, 225, 0.18);
}

.security-checklist-item.theme-lime:hover {
  border-color: #A3D600;
  box-shadow: 0 12px 25px rgba(163, 214, 0, 0.22);
}

/* ==========================================
   100% Confidential Card Interactive Animations
   ========================================== */
.security-shield-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.security-shield-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #A3D600 !important;
  box-shadow: 0 20px 45px rgba(163, 214, 0, 0.25) !important;
}

.security-shield-card .card-accent-line {
  height: 4px;
  background: linear-gradient(90deg, #26A9E1, #A3D600);
  transition: all 0.4s ease;
}

.security-shield-card:hover .card-accent-line {
  background: linear-gradient(90deg, #A3D600, #88ba00);
}

/* Shield Icon Pulse & Hover Animation */
.security-shield-icon-badge {
  background: linear-gradient(135deg, #26A9E1, #1C92C5);
  width: 110px;
  height: 110px;
  box-shadow: 0 10px 25px rgba(38, 169, 225, 0.35);
  transition: all 0.4s ease;
  position: relative;
}

.security-shield-icon-badge::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid rgba(163, 214, 0, 0.6);
  opacity: 0;
  animation: greenPulseRing 2.5s infinite;
}

@keyframes greenPulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}

.security-shield-card:hover .security-shield-icon-badge {
  background: linear-gradient(135deg, #A3D600, #88ba00) !important;
  box-shadow: 0 12px 30px rgba(163, 214, 0, 0.5) !important;
  transform: scale(1.1) rotate(5deg);
}

.security-shield-card:hover .security-shield-icon-badge i {
  color: #0B1220 !important;
}

/* Title Green Highlight on Hover */
.security-shield-card h3 {
  transition: color 0.3s ease;
}

.security-shield-card:hover h3 {
  color: #88ba00 !important;
}

body.dark-mode .security-shield-card:hover h3 {
  color: #A3D600 !important;
}

/* Verified Pill Badge Hover Glow */
.security-verified-badge {
  background-color: #A3D600;
  color: #0B1220;
  transition: all 0.3s ease;
}

.security-shield-card:hover .security-verified-badge {
  background-color: #88ba00;
  color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(163, 214, 0, 0.4);
}

/* ==========================================
   Section 5: Offshore Security Assurance Flow
   ========================================== */
.offshore-flow-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.offshore-flow-card.node-uk:hover {
  transform: translateY(-6px);
  border-color: #26A9E1 !important;
  box-shadow: 0 12px 30px rgba(38, 169, 225, 0.35) !important;
}

.offshore-flow-card.node-encrypted:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #A3D600 !important;
  box-shadow: 0 15px 35px rgba(163, 214, 0, 0.4) !important;
}

.offshore-flow-card.node-india:hover {
  transform: translateY(-6px);
  border-color: #A3D600 !important;
  box-shadow: 0 12px 30px rgba(163, 214, 0, 0.35) !important;
}

/* Pulsing Flow Arrow Animation */
.offshore-flow-arrow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(163, 214, 0, 0.15);
  color: #A3D600;
  border: 1px solid rgba(163, 214, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
  animation: pulseFlowArrow 2s ease-in-out infinite;
}

@keyframes pulseFlowArrow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(163, 214, 0, 0.4); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(163, 214, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(163, 214, 0, 0); }
}

/* Shield Icon Pulse in Encrypted Node */
.offshore-shield-icon {
  color: #A3D600;
  animation: pulseShieldGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseShieldGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(163, 214, 0, 0.4)); }
  100% { transform: scale(1.12); filter: drop-shadow(0 0 18px rgba(163, 214, 0, 0.8)); }
}

/* Bottom Pill Badges Hover */
.offshore-pill-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.offshore-pill-badge:hover {
  background: rgba(38, 169, 225, 0.2);
  border-color: #26A9E1;
  transform: translateY(-2px);
}

/* ==========================================
   Accordion Blue & Green Brand Highlights
   ========================================== */
.security-accordion .accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  transition: all 0.3s ease;
}

.security-accordion .accordion-item:hover {
  border-color: #26A9E1;
  box-shadow: 0 8px 25px rgba(38, 169, 225, 0.12);
}

.security-accordion .accordion-button {
  font-weight: 700;
  font-size: 16.5px;
  color: #0B1220;
  padding: 1.1rem 1.5rem;
  transition: all 0.3s ease;
}

.security-accordion .accordion-button:hover {
  color: #26A9E1 !important;
}

.security-accordion .accordion-button:not(.collapsed) {
  color: #26A9E1 !important;
  background-color: rgba(38, 169, 225, 0.08) !important;
  border-left: 4px solid #26A9E1;
}

/* ==========================================
   Trust Statement Badge Pulse & Hover Animation
   ========================================== */
.security-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 169, 225, 0.1);
  color: #26A9E1;
  letter-spacing: 1.5px;
  font-size: 13px;
  border: 1px solid rgba(38, 169, 225, 0.25);
  box-shadow: 0 4px 15px rgba(38, 169, 225, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: trustBadgePulse 3s ease-in-out infinite alternate;
}

@keyframes trustBadgePulse {
  0% {
    box-shadow: 0 4px 15px rgba(38, 169, 225, 0.15);
    border-color: rgba(38, 169, 225, 0.3);
  }
  100% {
    box-shadow: 0 6px 20px rgba(163, 214, 0, 0.35);
    border-color: rgba(163, 214, 0, 0.5);
  }
}

.security-trust-badge:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(90deg, rgba(38, 169, 225, 0.15), rgba(163, 214, 0, 0.18)) !important;
  box-shadow: 0 10px 25px rgba(163, 214, 0, 0.35) !important;
}

.security-trust-badge i {
  animation: shieldIconPulse 2.5s ease-in-out infinite;
}

@keyframes shieldIconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); color: #A3D600; }
  100% { transform: scale(1); }
}

/* ==========================================
   Section 5: High-Tech Cybersecurity Animations
   ========================================== */

/* Animated Connecting Data Stream Beam */
.offshore-data-beam {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    #A3D600 30%, 
    #26A9E1 70%, 
    rgba(255, 255, 255, 0.1) 100%);
  background-size: 200% 100%;
  animation: dataPulseBeam 2.5s linear infinite;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

@keyframes dataPulseBeam {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Dynamic Card Hover 3D Elevation & Micro Animations */
.offshore-flow-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.offshore-flow-card:hover {
  transform: translateY(-10px) scale(1.05) !important;
  border-color: #A3D600 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), 0 0 25px rgba(163, 214, 0, 0.45) !important;
}

/* Center Card Gradient Border Glow */
.offshore-flow-card.node-encrypted {
  border: 2px solid transparent !important;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
              linear-gradient(135deg, #26A9E1, #A3D600, #26A9E1) border-box !important;
  background-size: 200% 200% !important;
  animation: gradientBorderShift 4s ease infinite !important;
}

.offshore-flow-card.node-encrypted:hover {
  transform: translateY(-12px) scale(1.06) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.32), 0 0 30px rgba(38, 169, 225, 0.5) !important;
}

@keyframes gradientBorderShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Radar Pulse Ring Behind Shield Badge */
.security-shield-icon-badge {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-shield-icon-badge::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(163, 214, 0, 0.7);
  animation: radarRotate 8s linear infinite;
}

@keyframes radarRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.security-shield-icon-badge::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: rgba(163, 214, 0, 0.25);
  z-index: -1;
  animation: doublePulseRing 2.2s ease-out infinite;
}

@keyframes doublePulseRing {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.offshore-flow-card:hover .security-shield-icon-badge {
  transform: scale(1.18) rotate(8deg) !important;
  box-shadow: 0 15px 35px rgba(163, 214, 0, 0.6) !important;
}

/* Inner Icon Container Hover Scale & Glow */
.offshore-flow-card .rounded-circle {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease !important;
}

.offshore-flow-card:hover .rounded-circle {
  transform: scale(1.18) rotate(6deg) !important;
  box-shadow: 0 10px 25px rgba(163, 214, 0, 0.6) !important;
}

/* UK Globe Icon Spin & Glow */
.offshore-flow-card .bi-globe-americas {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #000000 !important;
}

.offshore-flow-card:hover .bi-globe-americas {
  transform: rotate(360deg) scale(1.25) !important;
  color: #000000 !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* FINCON India Building Icon Bounce & Glow */
.offshore-flow-card .bi-building-check {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #000000 !important;
}

.offshore-flow-card:hover .bi-building-check {
  transform: translateY(-4px) scale(1.25) !important;
  color: #000000 !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Arrow Button Pulse & Glowing Radar Halo */
.offshore-flow-arrow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #A3D600;
  color: #0B1220;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 6px 22px rgba(163, 214, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: arrowGlowPulse 1.8s ease-in-out infinite alternate;
}

@keyframes arrowGlowPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(163, 214, 0, 0.7); }
  100% { transform: scale(1.12); box-shadow: 0 0 0 14px rgba(163, 214, 0, 0); }
}

.offshore-flow-arrow-icon:hover {
  transform: scale(1.3) rotate(15deg) !important;
  background: #FFFFFF !important;
  color: #88ba00 !important;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.7) !important;
}

/* Glassmorphism Safeguard Pills Shimmer */
.offshore-pill-badge {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================
   Refined & Attractive Hero Diagram Animations
   ========================================== */
.hero-ambient-bg {
  background: radial-gradient(circle at 12% 25%, rgba(0, 159, 227, 0.07) 0%, transparent 45%),
              radial-gradient(circle at 88% 75%, rgba(148, 193, 31, 0.09) 0%, transparent 45%),
              #FFFFFF;
}

.hero-security-diagram-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: orbitRingRotate 25s linear infinite;
  transform-origin: center center;
}

@keyframes orbitRingRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 1. Subtle Breathing Shield Glow */
.hero-center-shield-box {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 14px 28px rgba(0, 159, 227, 0.3));
  animation: elegantShieldPulse 4s ease-in-out infinite alternate;
  transition: transform 0.4s ease, filter 0.4s ease;
}

@keyframes elegantShieldPulse {
  0% {
    filter: drop-shadow(0 12px 24px rgba(0, 159, 227, 0.3));
  }
  100% {
    filter: drop-shadow(0 18px 35px rgba(148, 193, 31, 0.4));
  }
}

.hero-center-shield-box svg {
  width: 88px;
  height: 105px;
}

.hero-center-shield-box:hover {
  transform: translate(-50%, -54%) scale(1.08);
}

/* 2. Interactive Orbit Nodes Hover & Elevation */
.hero-orbit-card {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 159, 227, 0.25);
  box-shadow: 0 8px 22px rgba(0, 159, 227, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  padding: 5px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-orbit-card.node-client-data { top: 18px; left: 18px; }
.hero-orbit-card.node-secure-proc { top: 18px; right: 18px; }
.hero-orbit-card.node-confidentiality { bottom: 58px; left: 18px; }
.hero-orbit-card.node-gdpr-comp { 
  bottom: 58px; 
  right: 18px; 
  border-color: rgba(148, 193, 31, 0.35);
  box-shadow: 0 8px 22px rgba(148, 193, 31, 0.15);
}

.hero-orbit-card:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: #009FE3;
  box-shadow: 0 14px 28px rgba(0, 159, 227, 0.28);
}

.hero-orbit-card.node-gdpr-comp:hover {
  border-color: #94C11F;
  box-shadow: 0 14px 28px rgba(148, 193, 31, 0.35);
}

.orbit-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #009FE3;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 3px;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.35);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.orbit-icon-wrap.green-icon {
  background: #88BA00 !important;
  box-shadow: 0 4px 12px rgba(136, 186, 0, 0.4);
}

.orbit-icon-wrap i {
  color: #FFFFFF !important;
  opacity: 1 !important;
  font-size: 16px;
  line-height: 1;
}

.hero-orbit-card:hover .orbit-icon-wrap {
  transform: scale(1.15) translateY(-1px);
}

.orbit-label {
  font-size: 8px;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.1;
  letter-spacing: 0.1px;
  max-width: 74px;
  word-break: normal;
}

.orbit-label.label-small {
  font-size: 7.2px;
  letter-spacing: -0.1px;
}

/* 3. Protected Access Pill Glow */
.hero-protected-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-protected-tag .badge {
  animation: protectedBadgePulse 3s ease-in-out infinite alternate;
  transition: all 0.35s ease;
}

@keyframes protectedBadgePulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.15);
    border-color: rgba(0, 159, 227, 0.25);
  }
  100% {
    box-shadow: 0 6px 20px rgba(148, 193, 31, 0.35);
    border-color: rgba(148, 193, 31, 0.5);
  }
}

.hero-protected-tag .badge:hover {
  transform: scale(1.06);
}

/* Feature Card Hover Effects */
.hero-feature-card {
  padding: 18px 22px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 159, 227, 0.18);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 159, 227, 0.16) !important;
  border-color: #009FE3 !important;
}

.hero-feature-card.card-lime:hover {
  box-shadow: 0 14px 30px rgba(148, 193, 31, 0.2) !important;
  border-color: #94C11F !important;
}

/* ==========================================
   Comprehensive Dark Mode Overrides (Data Security & Entire Page)
   ========================================== */
body.dark-mode {
  background-color: #0B1220 !important;
  color: #E2E8F0 !important;
}

body.dark-mode section {
  background-color: transparent;
}

/* Hero Section Dark Mode */
body.dark-mode .hero-ambient-bg {
  background: radial-gradient(circle at 12% 25%, rgba(0, 159, 227, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 88% 75%, rgba(148, 193, 31, 0.15) 0%, transparent 45%),
              #0B1220 !important;
}

body.dark-mode .careers-body-desc {
  color: #CBD5E1 !important;
}

body.dark-mode p {
  color: #CBD5E1 !important;
}

body.dark-mode .text-muted {
  color: #94A3B8 !important;
}

body.dark-mode .text-navy {
  color: #F8FAFC !important;
}

/* Hero Feature Cards Dark Mode */
body.dark-mode .hero-feature-card {
  background-color: #1E293B !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

body.dark-mode .hero-feature-card p {
  color: #CBD5E1 !important;
}

body.dark-mode .hero-feature-card.card-lime {
  border-color: rgba(148, 193, 31, 0.35) !important;
}

/* Orbit Diagram Dark Mode */
body.dark-mode .hero-orbit-card {
  background-color: #1E293B !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .orbit-label {
  color: #F8FAFC !important;
}

body.dark-mode .hero-protected-tag .badge {
  background-color: #1E293B !important;
  color: #38BDF8 !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
}

/* Security Cards & Slider Dark Mode */
body.dark-mode .security-slider-card {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .security-slider-card h3 {
  color: #F8FAFC !important;
}

body.dark-mode .security-slider-card p {
  color: #CBD5E1 !important;
}

/* Process Timeline Cards Dark Mode */
body.dark-mode .security-timeline-card {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .security-timeline-card h4 {
  color: #F8FAFC !important;
}

body.dark-mode .security-timeline-card p {
  color: #CBD5E1 !important;
}

body.dark-mode .security-timeline-badge {
  box-shadow: 0 0 0 6px #0B1220, 0 6px 20px rgba(38, 169, 225, 0.4) !important;
}

/* Security Shield Checklist Dark Mode */
body.dark-mode .security-shield-card {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .security-checklist-item {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #F8FAFC !important;
}

/* Loop Circle Dark Mode */
body.dark-mode .security-loop-circle {
  background-color: #1E293B !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
}

body.dark-mode .security-loop-circle h4 {
  color: #F8FAFC !important;
}

/* Accordion Dark Mode */
body.dark-mode .security-accordion .accordion-item {
  background-color: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .security-accordion .accordion-button {
  background-color: #1E293B !important;
  color: #F8FAFC !important;
}

body.dark-mode .security-accordion .accordion-button .text-navy {
  color: #F8FAFC !important;
}

body.dark-mode .security-accordion .accordion-body {
  background-color: #0F172A !important;
  color: #CBD5E1 !important;
}

/* Soft Cyan Container Dark Mode */
body.dark-mode section[style*="background-color: #F0F7FD"],
body.dark-mode section[style*="background: #F0F7FD"],
body.dark-mode div[style*="background-color: #F0F7FD"],
body.dark-mode div[style*="background: #F0F7FD"] {
  background: #1E293B !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
}

body.dark-mode .security-trust-badge {
  background-color: rgba(56, 189, 248, 0.15) !important;
  color: #38BDF8 !important;
}

/* ==========================================
   Section 6: Continuous Improvement Loop Circles (Light & Dark Mode)
   ========================================== */
.security-loop-circle {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(0, 159, 227, 0.22);
  box-shadow: 0 10px 25px rgba(0, 159, 227, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.security-loop-circle.circle-lime {
  border-color: rgba(136, 186, 0, 0.3);
  box-shadow: 0 10px 25px rgba(136, 186, 0, 0.12);
}

.security-loop-circle:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #009FE3;
  box-shadow: 0 16px 35px rgba(0, 159, 227, 0.22);
}

.security-loop-circle.circle-lime:hover {
  border-color: #88BA00;
  box-shadow: 0 16px 35px rgba(136, 186, 0, 0.25);
}

.security-loop-circle h4 {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Dark Mode Overrides for Section 6 Loop Circles & Paragraph */
body.dark-mode .security-loop-circle {
  background: #1E293B !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .security-loop-circle.circle-lime {
  border-color: rgba(163, 214, 0, 0.4) !important;
}

body.dark-mode .security-loop-circle h4.text-blue {
  color: #38BDF8 !important;
}

body.dark-mode .security-loop-circle h4.text-green {
  color: #A3D600 !important;
}

body.dark-mode .security-improvement-text-box p {
  color: #CBD5E1 !important;
}

/* Dark Mode Overrides for Team Profile Pages (Gunjan Sinha & Pankaj Jyoti) */
body.dark-mode .profile-hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(38, 169, 225, 0.12) 0%, rgba(15, 23, 42, 0.98) 100%), #070D18 !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .profile-card-sticky {
  background: #0F172A !important;
  border-color: rgba(38, 169, 225, 0.35) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .stat-mini-box {
  background: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .bio-paragraph {
  color: #CBD5E1 !important;
}

body.dark-mode .expertise-card-pill {
  background: #1E293B !important;
  color: #F8FAFC !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

body.dark-mode .expertise-card-pill span {
  color: #F8FAFC !important;
}

body.dark-mode .btn-outline-pill {
  color: #38BDF8 !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
}

body.dark-mode .main-footer input[type="email"].form-control,
body.dark-mode footer input[type="email"].form-control {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

body.dark-mode .main-footer input[type="email"].form-control::placeholder,
body.dark-mode footer input[type="email"].form-control::placeholder {
  color: #64748B !important;
  opacity: 1 !important;
}

/* ==========================================================================
   GLOBAL FINCON BRAND ACCORDION & EXPANDABLE COMPONENT SYSTEM
   ========================================================================== */
:root {
  --fincon-cyan: #26A9E1;
  --fincon-lime: #A3D600;
  --fincon-navy: #0B1220;
  --fincon-deep-navy: #070D18;
  --fincon-white: #FFFFFF;
  --fincon-light-bg: #F5FBFE;
  --fincon-border: #E5E7EB;
  --fincon-text: #111827;
  --fincon-muted: #4B5563;
}

/* Accordion Section Wrapper */
.fincon-accordion-section,
.accordion-section,
.faq-section {
  background: linear-gradient(180deg, #F5FBFE 0%, #FFFFFF 100%) !important;
  padding: 60px 0 !important;
}

/* Universal Accordion Container & Cards */
.accordion,
.custom-faq-accordion,
.fincon-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
}

.accordion-item,
.faq-accordion-item,
.faq-item,
.fincon-accordion-item {
  background-color: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.04) !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

.accordion-item:hover,
.faq-accordion-item:hover,
.faq-item:hover,
.fincon-accordion-item:hover {
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.08) !important;
}

/* Alternating Cyan / Lime Green Heading Color Hierarchy */
.accordion-item:nth-child(odd) .accordion-button,
.accordion-item:nth-child(odd) .faq-accordion-button,
.faq-accordion-item:nth-child(odd) .faq-accordion-button,
.faq-accordion-item:nth-child(odd) .accordion-button,
.faq-accordion-item:nth-child(odd) .faq-accordion-button.collapsed,
.faq-accordion-item:nth-child(odd) .accordion-button.collapsed,
.accordion-item:nth-child(odd) .accordion-header button,
.fincon-accordion-item:nth-child(odd) .accordion-header button,
.fincon-accordion-item:nth-child(odd) h3,
.fincon-accordion-item:nth-child(odd) h4,
.fincon-accordion-item.item-cyan .accordion-header button {
  color: #26A9E1 !important;
}

.accordion-item:nth-child(even) .accordion-button,
.accordion-item:nth-child(even) .faq-accordion-button,
.faq-accordion-item:nth-child(even) .faq-accordion-button,
.faq-accordion-item:nth-child(even) .accordion-button,
.faq-accordion-item:nth-child(even) .faq-accordion-button.collapsed,
.faq-accordion-item:nth-child(even) .accordion-button.collapsed,
.accordion-item:nth-child(even) .accordion-header button,
.fincon-accordion-item:nth-child(even) .accordion-header button,
.fincon-accordion-item:nth-child(even) h3,
.fincon-accordion-item:nth-child(even) h4,
.fincon-accordion-item.item-lime .accordion-header button {
  color: #A3D600 !important;
}

/* Hover Accent Borders */
.accordion-item:nth-child(odd):hover,
.faq-accordion-item:nth-child(odd):hover,
.fincon-accordion-item:nth-child(odd):hover,
.fincon-accordion-item.item-cyan:hover {
  border-color: #26A9E1 !important;
}

.accordion-item:nth-child(even):hover,
.faq-accordion-item:nth-child(even):hover,
.fincon-accordion-item:nth-child(even):hover,
.fincon-accordion-item.item-lime:hover {
  border-color: #A3D600 !important;
}

/* Accordion Header / Button General */
.accordion-button,
.faq-accordion-button {
  background-color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  box-shadow: none !important;
  min-height: 52px !important;
  line-height: 1.35 !important;
}

/* Open / Expanded Active Accordion States */
.accordion-item:nth-child(odd) .accordion-button:not(.collapsed),
.faq-accordion-item:nth-child(odd) .accordion-button:not(.collapsed),
.faq-accordion-item:nth-child(odd) .faq-accordion-button:not(.collapsed),
.fincon-accordion-item:nth-child(odd) .accordion-button:not(.collapsed),
.fincon-accordion-item.item-cyan .accordion-button:not(.collapsed) {
  background-color: #FFFFFF !important;
  color: #26A9E1 !important;
  border-left: 4px solid #26A9E1 !important;
}

.accordion-item:nth-child(even) .accordion-button:not(.collapsed),
.faq-accordion-item:nth-child(even) .accordion-button:not(.collapsed),
.faq-accordion-item:nth-child(even) .faq-accordion-button:not(.collapsed),
.fincon-accordion-item:nth-child(even) .accordion-button:not(.collapsed),
.fincon-accordion-item.item-lime .accordion-button:not(.collapsed) {
  background-color: #FFFFFF !important;
  color: #A3D600 !important;
  border-left: 4px solid #A3D600 !important;
}

/* Accordion Chevron Arrow (Dark Navy #0B1220 with rotation) */
.accordion-button::after,
.faq-accordion-button::after {
  filter: brightness(0) saturate(100%) invert(8%) sepia(35%) saturate(2371%) hue-rotate(198deg) brightness(97%) contrast(98%) !important;
  transition: transform 0.3s ease !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
}

/* Body Text Inside Expanded Accordion (Strictly Dark Gray/Black #111827) */
.accordion-body,
.faq-accordion-body,
.fincon-accordion-item .accordion-body,
.fincon-accordion-item .accordion-content {
  background-color: #FFFFFF !important;
  color: #111827 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  padding: 20px 28px 26px 28px !important;
  border-top: none !important;
}

.accordion-body p,
.accordion-body div,
.accordion-body ul,
.accordion-body li {
  color: #111827 !important;
}

/* Number Badges System (Alternating Cyan & Lime Green) */
.fincon-number-badge:nth-child(odd),
.number-badge:nth-child(odd),
.num-badge-cyan {
  background-color: #26A9E1 !important;
  color: #FFFFFF !important;
}

.fincon-number-badge:nth-child(even),
.number-badge:nth-child(even),
.num-badge-lime {
  background-color: #A3D600 !important;
  color: #0B1220 !important;
}

/* Dark Mode Support for Global Accordions */
body.dark-mode .accordion-item,
body.dark-mode .fincon-accordion-item {
  background-color: #0F172A !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .accordion-button {
  background-color: #0F172A !important;
}

body.dark-mode .accordion-body {
  background-color: #0F172A !important;
  color: #E2E8F0 !important;
}

body.dark-mode .accordion-body p,
body.dark-mode .accordion-body div,
body.dark-mode .accordion-body ul,
body.dark-mode .accordion-body li {
  color: #CBD5E1 !important;
}

body.dark-mode .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(100%) !important;
}

/* Responsive Mobile Rules */
@media (max-width: 767.98px) {
  .accordion-button {
    font-size: 16px !important;
    padding: 16px 20px !important;
    min-height: 60px !important;
  }
  .accordion-body {
    padding: 16px 20px 20px 20px !important;
    font-size: 15px !important;
  }
}





.hero-body-text {
  text-align: justify !important;
  text-justify: inter-word;
}
