:root {
  --navy: #0A0C22;
  --navy-mid: #151A3A;
  --navy-hover: #131835;
  --navy-border: #1C234A;
  --submenu-bg: #1E2550;
  --submenu-border: #232B5C;
  --submenu-hover: #252E60;
  --deep-gray: #333333;
  --deep-gray-border: #444444;
  --deep-gray-hover: #3B3B3B;
  --blue: #5C73EA;
  --blue-soft: rgba(92, 115, 234, 0.1);
  --teal: #57D9FF;
  --purple: #A45CFF;
  --slate: #3B4A7A;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.8);
  --off-white: #F5F7FA;
  --text-light: #cccccc;
  --text-muted: #aaaaaa;
  --border: #EDEDED;
  --border-dark: #00338D;
  --card-shadow: 0 4px 24px rgba(0, 51, 141, 0.10);
  --card-shadow-hover: 0 12px 40px rgba(0, 94, 184, 0.18);
  --radius: 14px;
  --radius-sm: 8px;

  /* Typography */
  --ed-ff-body: 'Inter', sans-serif;
  --ed-ff-heading: 'Inter', sans-serif;
  --ed-ff-p: 'Inter', sans-serif;
  --ed-fw-normal: normal;
  --ed-fw-thin: 100;
  --ed-fw-elight: 200;
  --ed-fw-light: 300;
  --ed-fw-regular: 400;
  --ed-fw-medium: 500;
  --ed-fw-sbold: 600;
  --ed-fw-bold: 700;
  --ed-fw-ebold: 800;
  --ed-fw-black: 900;
  --ed-fs-body: 16px;
  --ed-fs-p: 16px;
  --ed-fs-h1: 30px;
  --ed-fs-h2: 19px;
  --ed-fs-h3: 16px;
  --ed-fs-h4: 16px;
  --ed-fs-h5: 16px;
  --ed-fs-h6: 14px;

  /* Colors */
  --ed-color-common-white: #ffffff;
  --ed-color-common-black: #000000;
  --ed-color-heading-primary: #000000;
  --ed-color-text-body: #444444;
  --ed-color-theme-primary: #451D5F;
  --ed-color-grey-1: #F2F4F7;
  --ed-color-grey-2: #F2F4F7;
  --ed-color-bg-1: #0E121D;
  --ed-color-bg-2: #191A1F;
  --ed-color-border-1: #E0E5EB;
  --brand-primary: #3E1956;
  --brand-accent: #EA2E7B;
  --brand-accent-new: #E8444F;
  --brand-primary-dark: #161334;
  --brand-white: #ffffff;
  --brand-black: #444444;
  --brand-text: #6C706F;
  --brand-border: #E0E5EB;
  --brand-light-bg: #F2F4F7;
  --brand-border-light: rgba(255, 255, 255, 0.15);
}

/* ── RESET & GLOBAL STYLES ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ed-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  color: var(--ed-color-text-body);
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; outline: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { font-family: var(--ed-ff-p); font-size: 16px; font-weight: var(--ed-fw-normal); color: var(--ed-color-text-body); margin-bottom: 15px; line-height: 28px; }
th { font-family: var(--ed-ff-heading); }
input { outline: none; }
section { padding: 5.5rem 0; }

.resizing * {
  transition: none !important;
  animation: none !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ed-ff-heading);
  color: var(--ed-color-heading-primary);
  margin-top: 0;
  transition: all 0.3s ease-in-out;
}
h1, h2 { font-weight: var(--ed-fw-sbold); line-height: 1.3; }
h3, h4, h5, h6 { font-weight: var(--ed-fw-sbold); line-height: 1.5; }
h1 { font-size: var(--ed-fs-h1); }
h2 { font-size: var(--ed-fs-h2); }
h3 { font-size: var(--ed-fs-h3); }
h4 { font-size: var(--ed-fs-h4); }
h5 { font-size: var(--ed-fs-h5); }
h6 { font-size: var(--ed-fs-h6); }

/* Buttons & Interactive */
button { color: inherit; outline: none; border: none; background: transparent; cursor: pointer; }
button:focus { outline: 0; border: 0; }
a:focus, .button:focus { text-decoration: none; outline: none; }
a:focus, a:hover { color: inherit; text-decoration: none; }
a:hover { color: var(--ed-color-theme-primary); }
.slick-list.draggable { cursor: grab; }

/* Utilities */
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.w-img img { width: 100%; }
.m-img img { max-width: 100%; }
.fix { overflow: hidden; }
.clear { clear: both; }
.f-left { float: left; }
.f-right { float: right; }
.z-index-1 { z-index: 1; }
.z-index-11 { z-index: 11; }
.overflow-y-visible { overflow-x: hidden; overflow-y: visible; }
.p-relative { position: relative; }
.p-absolute { position: absolute; }
.bg-off { background: var(--off-white); }

/* Form Control Input Color */
input[type=color] {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

/* Selection & Placeholders */
::-moz-selection { background: var(--ed-color-common-black); color: var(--ed-color-common-white); text-shadow: none; }
::selection { background: var(--ed-color-common-black); color: var(--ed-color-common-white); text-shadow: none; }
*::-moz-placeholder { color: var(--ed-color-common-black); font-size: var(--ed-fs-body); opacity: 1; }
*::placeholder { color: var(--ed-color-common-black); font-size: var(--ed-fs-body); opacity: 1; }

/* ── LAYOUT & CONTAINER FIXES ── */
@media only screen and (max-width:1199px)
{
.container{max-width:98%}
}
@media only screen and (min-width:1200px) and (max-width:1399px)
{
.container{max-width:98%}
}

/* ── HEADER & NAVIGATION ── */
.navbar ul, .navbar li { list-style: none; margin: 0; padding: 0; }
.navbar-toggler { border: 0; border-radius: 3px; padding: 0; }
.navbar-toggler-icon:focus, .navbar-toggler:active, .navbar-toggler:focus,
.btn-close:active, .btn-close:focus { outline: 0; box-shadow: none; }
.navbar-brand img { width: 187px; height: 45px; }

@media (min-width: 992px) {
  .navbar-brand img { width: 208px; height: 50px; }
  .navbar.scrolled .navbar-brand img { width: 208px; height: 50px; }
  .main-menu { margin-left: auto; width: 100%; }
  .main-menu .menu-wrapper, .main-menu .navigation, .d-lg-flex.align-items-center.w-100 { display: flex; justify-content: flex-end; }
  .main-menu .navigation { gap: 13px; width: auto; }
  .main-menu .navigation li { position: relative; }
  .main-menu .navigation a { display: block; text-decoration: none; color: var(--brand-black) !important; }
  .main-menu .navigation > li > a { display: inline-flex; align-items: center; padding: 15px 7px; color: var(--brand-black) !important; font-weight: var(--ed-fw-sbold); font-size: 15px; text-transform: uppercase; }
  .main-menu .navigation > li:first-child > a { padding-left: 0; }
  .main-menu .navigation > li:last-child > a { padding-right: 0; }
  .main-menu .navigation > li > a:hover { color: var(--blue) !important; }
  
  .main-menu .navigation li.dropdown > a::after { content: "\ea4e"; font-family: "remixicon"; font-size: 16px; margin-left: 0; transition: transform .3s ease; }
  .main-menu .navigation li.dropdown:hover > a::after { transform: rotate(180deg); }
  
  .main-menu .navigation ul { border-radius: 10px; padding: 15px; position: absolute; top: 100%; left: 0; width: 275px; background: #fff; box-shadow: 0 15px 40px rgb(0 0 0 / .06); opacity: 0; visibility: hidden; transform: translateY(15px) scale(.96); transform-origin: top; transition: .35s ease; z-index: 1100; }
  .main-menu .navigation li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .main-menu .navigation ul li a { padding: 10px 0 10px 18px; font-weight: 400; font-size: 16px; transition: all .3s ease; position: relative; }
  .main-menu .navigation ul li:last-child > a { border-bottom: none; }
  .main-menu .navigation ul li a:hover { color: var(--blue) !important; transform: translateX(4px); }
  
  .main-menu .navigation ul ul { top: 0; left: 100%; transform: translateX(15px) scale(.98); transform-origin: left; box-shadow: 0 15px 40px rgb(0 0 0 / .08); }
  .main-menu .navigation ul li:hover > ul { opacity: 1; visibility: visible; transform: translateX(0) scale(1); }
  .main-menu .navigation ul li a::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 2px; background: var(--blue); transform: translateY(-50%); transition: width .25s ease; }
  .main-menu .navigation ul li a:hover::before { width: 10px; }
  .header1 { border-bottom: 1px solid #E0E5EB; }
}

@media (max-width: 991.98px) {
  .offcanvas-body { padding: 0; background: var(--navy); }
  .main-menu .navigation ul { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .3s ease; }
  .main-menu .navigation li.mobile-open > ul { max-height: 1000px; opacity: 1; }
  .main-menu .navigation > li > a {font-size: 1.1rem;display: block; padding: 14px 25px; background: var(--navy-mid); color: var(--white) !important; font-weight: var(--ed-fw-medium); border-bottom: 1px solid var(--navy-border); text-decoration: none; }
  .main-menu .navigation > li > a:hover { background: var(--navy-hover); }
  .main-menu .navigation > li > ul > li > a { background: var(--submenu-bg); padding: 12px 45px; color: var(--text-light); display: block; border-bottom: 1px solid var(--submenu-border); text-decoration: none; font-size: 1.1rem;}
  .main-menu .navigation > li > ul > li > a:hover { background: var(--submenu-hover); color: var(--white) !important; }
  .main-menu .navigation > li > ul > li > ul > li > a { background: var(--deep-gray); padding: 12px 65px; color: var(--text-muted); display: block; border-bottom: 1px solid var(--deep-gray-border); text-decoration: none; }
  .main-menu .navigation > li > ul > li > ul > li > a:hover { background: var(--deep-gray-hover); color: var(--white) !important; }
  .main-menu .navigation li.dropdown > a::after { content: "\ea4e"; font-family: "remixicon"; position: absolute; right: 20px; font-size: 18px; transition: transform .3s ease; }
  .main-menu .navigation li.mobile-open > a::after { transform: rotate(180deg); }
}

/* ── HERO SECTION ── */
#hero { position: relative; padding: 7rem 0 4rem; overflow: hidden; background: #060D25;background: linear-gradient(90deg, rgba(6, 13, 37, 1) 0%, rgba(28, 41, 90, 1) 35%, rgba(165, 111, 235, 1) 100%);}
.hero-eyebrow, .btn-hero-primary, .hero-pill { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,168,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(0,212,168,0.04) 1px,transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-1 { width: 420px; height: 420px; background: radial-gradient(circle,rgba(0,212,168,0.18) 0%,transparent 70%); top: -80px; right: 10%; }
.hero-glow-2 { width: 320px; height: 320px; background: radial-gradient(circle,rgba(13,110,253,0.18) 0%,transparent 70%); bottom: 5%; left: 5%; }
.hero-eyebrow { background: rgba(0,212,168,0.1); border: 1px solid rgba(0,212,168,0.3); color: var(--teal); font-size: 0.78rem; font-weight: var(--ed-fw-bold); letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.85rem; margin-bottom: 1.4rem; }
.hero-headline { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.2rem; }
.hero-headline .accent { color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: var(--white-muted); line-height: 1.7; max-width: 640px; margin-bottom: 2rem; }
.btn-hero-primary, .btn-hero-secondary { padding: 0.8rem 2rem; font-size: 0.95rem; text-decoration: none; transition: all 0.2s ease-in-out; }
.btn-hero-primary { background: var(--teal); color: var(--navy); font-weight: var(--ed-fw-bold); border: none; }
.btn-hero-primary:hover { background: var(--teal); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,168,0.3); }
.btn-hero-secondary { background: transparent; color: rgba(255,255,255,0.8); font-weight: var(--ed-fw-sbold); border: 1.5px solid rgba(255,255,255,0.2); padding-inline: 1.8rem; }
.btn-hero-secondary:hover { border-color: var(--teal); color: var(--teal); }
.hero-feature-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.hero-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: var(--ed-fw-sbold); padding: 0.35rem 0.9rem; }
.hero-pill i { color: var(--teal); }

/* ── STATS SECTION ── */
#stats { padding: 4rem 0; background: linear-gradient(135deg, var(--navy) 0%, #0d1b35 100%); }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-icon { display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 2rem; color: var(--teal); }
.stat-number { font-size: 2.6rem; font-weight: var(--ed-fw-sbold); color: #fff; letter-spacing: -0.03em; }
.stat-label { color: rgba(255,255,255,0.55); margin-top: 0.3rem; }
.stat-a { color: var(--teal); font-size: 1rem; font-weight: var(--ed-fw-bold); }

/* ── HEADERS & SECTION TITLES ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue-soft); color: var(--blue);
  font-size: 0.90rem; font-weight: var(--ed-fw-sbold);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 1.8rem); font-weight: var(--ed-fw-sbold); letter-spacing: -0.025em; color: #0f172a; margin-bottom: 0.6rem; }
.section-sub { max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white); border: 1px solid var(--border); padding: 1.75rem; height: 100%;
  transition: all 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon { border-radius: 14px; font-size: 2.5rem; color: var(--blue); transition: background 0.2s; margin-bottom: 0.5rem; }
.svc-title { font-size: 1.10rem; font-weight: var(--ed-fw-sbold); color: var(--navy); margin-bottom: 0.5rem; }
.svc-desc { line-height: 1.65; margin-bottom: 1rem; }
.svc-features { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.svc-features li { padding: 0.22rem 0; }

.btn-learn {
  font-weight: var(--ed-fw-sbold); color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; margin-top: auto;
}
.btn-learn:hover { gap: 0.55rem; color: var(--teal); }

/* ── SOLUTIONS CARDS ── */
.solution-card {
  background: var(--white); 
  border: 1px solid var(--border); 
  padding: 1.8rem; 
  height: 100%;
  transition: all 0.3s; 
  
  /* ADD THESE TWO LINES */
  display: flex;
  flex-direction: column;
}

.solution-card:hover { 
  box-shadow: var(--card-shadow-hover); 
  transform: translateY(-3px); 
  border-color: rgba(13,110,253,0.2); 
}

.sol-icon-wrap { 
  width: 52px; 
  height: 52px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.5rem; 
  margin-bottom: 1.50rem; 
}

.sol-title { 
  font-size: 1.10rem; 
  font-weight: var(--ed-fw-sbold); 
  color: var(--navy); 
  margin-bottom: 0.5rem; 
}

/* UPDATE THIS CLASS TO EXTEND SPACE */
.sol-desc { 
  line-height: 1.65; 
  margin-bottom: 1.5rem; 
  flex-grow: 1; /* Pushes the subsequent element (the button) to the bottom */
}

/* Ensure buttons take up no extra flex block calculation */
.btn-learn, .btn-hero-primary {
  margin-top: auto;
  align-self: flex-start; /* Keeps the button from stretching horizontally */
}
/* ── INDUSTRIES ── */
.industry-card { background: var(--white); border: 1px solid var(--border); padding: 1.6rem 1.4rem; text-align: center; transition: all 0.3s; cursor: default; }
.industry-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); border-color: rgba(13,110,253,0.15); }
.ind-icon { width: 75px; height: 75px; margin: 0 auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--blue); transition: all 0.2s; }
.industry-card:hover .ind-icon { background: linear-gradient(135deg,var(--blue),var(--teal)); color: var(--white); }
.ind-title { font-size: 1.10rem; font-weight: var(--ed-fw-sbold); color: var(--navy); margin-bottom: 0.4rem; }
.ind-desc { color: var(--slate); line-height: 1.6; }

/* ── WHY US SECTION ── */
#why { background: var(--navy); }
#why .section-eyebrow { background: rgba(0,212,168,0.1); color: var(--teal); border: 1px solid rgba(0,212,168,0.2); }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.55); }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 1.6rem; transition: all 0.3s; height: 100%; }
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(0,212,168,0.3); transform: translateY(-3px); }
.why-icon { width: 50px; height: 50px; background: rgba(0,212,168,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--teal); margin-bottom: 1.25rem; }
.why-title { font-size: 1.10rem; font-weight: var(--ed-fw-sbold); color: var(--white); margin-bottom: 1rem; }
.why-desc { color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── PROCESS SECTION ── */
.process-step { text-align: center;  background: var(--white); border: 1px solid var(--border); padding: 1.75rem; height: 100%;transition: all 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column;}
.process-step::after { content: ''; position: absolute; top: 28px; left: calc(50% + 28px); right: calc(-50% + 28px); height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.process-step:last-child::after { display: none; }
.proc-num { width: 56px; height: 56px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); margin: 0 auto 1rem; position: relative; z-index: 1;   }
.proc-title { font-size: 1.10rem; font-weight: var(--ed-fw-sbold); color: var(--navy); margin-bottom: 0.3rem; }
.proc-desc { line-height: 1.6; }

/* ── PORTFOLIO SECTION ── */



/* ── GLOBAL COMPACT CARDS (PORTFOLIO / CASE STUDIES / INSIGHTS) ── */
.g-card-icon-bg {
  background: var(--off-white); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  height: 200px; 
  flex-shrink: 0;
}

/* Styles the icon inside the background block into a dark circle */
.g-card-icon-bg i {
  display: flex;
  align-items: center;
  justify-content: center;
background: #060D25;background: linear-gradient(90deg, rgba(6, 13, 37, 1) 0%, rgba(165, 111, 235, 1) 100%);
color: #ffffff; 
  width: 70px;
  height: 70px; 
  border-radius: 50%; 
  font-size: 2rem; 
}
.g-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.g-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.g-card-img { width: 100%; height: 200px; object-fit: cover; }
.g-card-bg-img { width: 100%; height: 200px; background-size: cover; background-position: center; background-repeat: no-repeat; flex-shrink: 0; }
.g-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.g-card-tag { display: inline-block; color: var(--blue);font-size: 0.90rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.g-card-title { font-size: 1.10rem; font-weight: var(--ed-fw-sbold); color: var(--navy); line-height: 1.4; margin-bottom: 1rem; }
.case-meta-row { margin-bottom: 1.4rem; }
.case-meta-label { font-weight: var(--ed-fw-sbold); font-size: 0.90rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 0.50em !important; }
.case-meta-val { line-height: 1.7; margin: 0; }
.case-meta-row .text-success { color: green !important; font-weight: var(--ed-fw-sbold);margin-top: 1rem;}
.insight-date { font-size: 0.95rem; margin-bottom: 0.5rem; }
.insight-excerpt { font-size: 1rem; line-height: 1.65; margin-bottom: 1.25rem; }

/* ── TECH STACK ── */
.tech-category { margin-bottom: 1.5rem; }
.tech-cat-label { font-weight: var(--ed-fw-sbold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-badge { background: #fff; border: 1.5px solid var(--border); padding: 0.4rem 0.85rem; font-size: 0.90rem; font-weight: var(--ed-fw-sbold); color: #334155; transition: all 0.2s; }
.tech-badge:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

/* ── TESTIMONIALS SECTION ── */
#testimonials { background: linear-gradient(135deg, var(--navy) 0%, #0d1b35 100%); }
#testimonials .section-title { color: #fff; }
#testimonials .section-eyebrow { background: rgba(0,212,168,0.1); color: var(--teal); border: 1px solid rgba(0,212,168,0.2); }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; text-align: center; }
.testi-stars { color: #ffc107; font-size: 1rem; margin-bottom: 1rem; }
.testi-text { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.6rem; border: 2px solid var(--teal); }
.testi-name { color: #fff; font-weight: var(--ed-fw-sbold); font-size: 1rem; }
.testi-role { color: rgba(255,255,255,0.45); font-size: 1rem; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: none; background: none; }
.carousel-control-prev, .carousel-control-next { width: 40px; }
.car-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: background 0.2s; }
.car-btn:hover { background: var(--teal); color: var(--navy); }

/* ── FAQ SECTION ── */
.accordion-button { font-weight: var(--ed-fw-sbold); font-size: 1rem; color: var(--navy); border-radius: 0 !important; }
.accordion-button:not(.collapsed) { color: var(--blue); background: var(--blue-soft); }
.accordion-body { line-height: 1.7; }
.accordion-item { border-radius: 0 !important; }

/* ── FOOTER SECTION ── */
footer { background: var(--navy); padding: 4rem 0; }
.footer-heading { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: var(--ed-fw-sbold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover, footer .cp a:hover { color: var(--teal); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.2rem; }
.footer-bottom, footer .cp a { color: rgba(255,255,255,0.35); font-size: 0.90rem; }

/* ── BACK TO TOP BUTTON ── */
#scrollTop {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  background: var(--blue); border-radius: 50%; border: none; color: #fff; font-size: 1.2rem;
  display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(13,110,253,0.35);
  transition: all 0.2s; cursor: pointer; z-index: 999;
}
#scrollTop.show { display: flex; }
#scrollTop:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 991px) {
  .navbar-nav { background: rgba(10,15,30,0.98); padding: 1rem; border-radius: 12px; margin-top: 0.5rem; }
  .process-step::after { display: none; }
  .stat-divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 576px) {
  .hero-headline { font-size: 1.95rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}




.introh h2{font-size: clamp(1.7rem, 3.5vw, 1.8rem); font-weight: var(--ed-fw-sbold);width:90%;}
.intro p.lead{color:var(--navy);}
.common-s h2{color:var(--submenu-bg);} 

        .common-s ul, .common-s ol {
            margin-bottom: 1.5rem;
        }
        .common-s ul li {
            margin-bottom: 0.5rem;
        }

    blockquote {
            background-color: var(--off-white);
            border-left: 4px solid var(--blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        blockquote h3 {
            margin-top: 0;
            color: var(--blue);
            margin-bottom: 1rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        th, td {
            padding: 0.75rem 1.25rem 0.75rem 1.25rem;
            text-align: left;
            border-bottom: 1px solid var(--off-white);
        }
        th {
            background-color:  var(--off-white);
            color: var(--blue);
            font-weight: 600;
        }
        
            @media (max-width: 767px) {
         
            table { display: block; overflow-x: auto; }
        }
        