﻿/* ==========================================
   EASCA International v2 — Full Design System
   Benchmarked: Brain Station 23, Nascenia, Cefalo, Vivasoft
   ========================================== */

/* ==========================================
   1. DESIGN TOKENS
   ========================================== */
:root {
  --navy:          #0B2545;
  --navy-mid:      #1A3A6B;
  --navy-light:    #2A5298;
  --orange:        #0097d7;
  --orange-dark:   #0082BB;
  --orange-light:  #E0F4FF;
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --border:        #E2E8F0;
  --text-dark:     #0B2545;
  --text-mid:      #475569;
  --text-light:    #94A3B8;
  --shadow-sm:     0 2px 8px  rgba(11,37,69,0.08);
  --shadow-md:     0 4px 24px rgba(11,37,69,0.12);
  --shadow-lg:     0 12px 40px rgba(11,37,69,0.18);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
}

/* ==========================================
   2. BASE TYPOGRAPHY
   ========================================== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: none !important;
}

h1 { font-size: 3.4rem; font-weight: 800; }
h2 { font-size: 2.1rem; font-weight: 700; }
h3 { font-size: 1.55rem; font-weight: 700; }
h4 { font-size: 1.1rem;  font-weight: 600; line-height: 1.4rem; }
h5 { font-size: 1rem;    font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }

a { transition: color 0.18s ease; }

/* ==========================================
   3. NAVIGATION — Always dark navy
   ========================================== */
/* ==========================================
   TOP CONTACT BAR
   ========================================== */
#top-bar {
  background: #071c38;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 6px 0;
  font-size: 0.72rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1003;
}

/* Push body down so content never hides under fixed bars
   Mobile  (<768px)        : nav 64px only — top-bar hidden via hidden-xs
   iPad/Tablet (768–991px) : nav 64px only — top-bar hidden via hidden-sm
   Desktop (≥992px)        : top-bar 34px + nav 64px = 98px              */
@media (max-width: 767px) {
  body { padding-top: 64px; }
}
@media (min-width: 768px) and (max-width: 991px) {
  body { padding-top: 64px; }
}
@media (min-width: 992px) {
  body { padding-top: 98px; }
}
#top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#top-bar span {
  color: rgba(255,255,255,0.55);
}
#top-bar span i,
.top-bar-right a i {
  color: var(--orange);
  margin-right: 5px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.top-bar-right a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar-right a:hover {
  color: var(--orange);
}

/* ==========================================
/* --- Navbar base: always dark navy, always fixed --- */
#nav,
#nav.navbar-default,
#nav.navbar-shrink,
#nav.default-navbar-shrink-option {
  background-color: var(--navy) !important;
  border-color: transparent !important;
  box-shadow: 0 2px 16px rgba(11,37,69,0.22) !important;
  min-height: 64px !important;
  height: auto !important;
  padding: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1002 !important;
}
/* Mobile: no top-bar */
@media (max-width: 767px) {
  #nav { position: fixed !important; top: 0 !important; }
}
/* iPad / Tablet: no top-bar */
@media (min-width: 768px) and (max-width: 991px) {
  #nav { position: fixed !important; top: 0 !important; }
}
/* Desktop: nav sits below fixed top-bar */
@media (min-width: 992px) {
  #nav { position: fixed !important; top: 34px !important; }
}

/* Nav container — flex row: logo left, links right */
@media (min-width: 768px) {
  #menu-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 15px !important;
  }
  #nav .navbar-header {
    float: none !important;
  }
}

/* Logo image — fixed height, auto width, no filter */
#nav-image,
#nav-image.navImage,
#nav-image.defaultNavImage,
#nav-image.navImage.responsiveImage {
  display: block !important;
  height: 38px !important;
  width: auto !important;
  max-width: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  transition: none !important;
}
/* Brand link wrapper */
.navbar-brand {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  float: none !important;
  height: 64px !important;
  padding-top: 49px !important;
  background: transparent !important;
  border-radius: 0 !important;
  line-height: 1 !important;
}

/* Hamburger toggle */
#nav .navbar-toggle {
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 4px !important;
  padding: 8px 10px !important;
  margin: 0 !important;
  float: none !important;
}
#nav .navbar-toggle .icon-bar {
  background-color: #fff !important;
  display: block !important;
  width: 22px !important;
  height: 2px !important;
}

/* Force single-row nav on desktop using flexbox */
@media (min-width: 768px) {
  #nav .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  #nav .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    float: none !important;
    margin: 0 !important;
  }
}

/* Desktop nav links */
#nav .navbar-nav > li > a {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 20px 10px !important;
  background: transparent !important;
  white-space: nowrap !important;
  transition: color 0.15s ease !important;
}
#nav .navbar-nav > li > a:hover,
#nav .navbar-nav > li > a:focus {
  color: var(--orange) !important;
  background: transparent !important;
}

/* Active link */
#nav .navbar-nav > li.active > a {
  color: var(--orange) !important;
  background: transparent !important;
}

/* Dropdown trigger classes (used in HTML) */
.deepGray,
.lightViolate {
  background-color: transparent !important;
  color: rgba(255,255,255,0.85) !important;
}

/* Dropdown panel */
#nav .dropdown-content {
  background: var(--navy) !important;
  border: none !important;
  border-top: 2px solid var(--orange) !important;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
  box-shadow: var(--shadow-lg) !important;
  min-width: 230px !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 9000 !important;
}
#nav .dropdown-content a {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  padding: 9px 16px !important;
  letter-spacing: 0.02em !important;
  border-left: 3px solid transparent !important;
  transition: all 0.15s ease !important;
  display: block !important;
}
#nav .dropdown-content a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-left-color: var(--orange) !important;
}

/* Get a Quote button */
.nav-quote-btn {
  display: inline-block !important;
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 7px 16px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 0 6px !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  transition: background 0.15s ease !important;
}
.nav-quote-btn:hover {
  background: var(--orange-dark) !important;
  color: #fff !important;
}
/* Wrap li for quote btn to flex-align */
#nav .navbar-nav > li:last-child {
  display: flex !important;
  align-items: center !important;
}

/* ---- Mobile nav (max 767px) ---- */
@media (max-width: 767px) {
  #menu-container {
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* Full-width header row: logo left, hamburger right */
  #nav .navbar-header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    height: 64px !important;
    width: 100% !important;
    padding: 0 12px !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
  }

  /* Logo goes left */
  .navbar-brand {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    float: none !important;
    height: auto !important;
    padding-top: 52px !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* Hamburger goes right */
  #nav .navbar-toggle {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    float: none !important;
    margin: 0 !important;
    position: static !important;
  }

  /* Hide social icons row — not part of the header row layout */
  #nav .navbar-header .visible-xs {
    display: none !important;
  }

  /* Fix duplicate menus: our li rule overrides Bootstrap hidden-xs — re-hide them */
  #nav .navbar-nav > li.hidden-xs {
    display: none !important;
  }

  /* Fix 1: Kill white background / shadow on collapsed menu */
  #nav,
  #nav.navbar-default {
    box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
  }
  #nav .navbar-collapse,
  .navbar-default .navbar-collapse,
  #nav .navbar-collapse.in {
    background-color: var(--navy) !important;
    background: var(--navy) !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
  }
  #nav .navbar-nav {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    background-color: var(--navy) !important;
  }
  #nav .navbar-nav > li {
    display: block !important;
    width: 100% !important;
    background-color: var(--navy) !important;
  }
  #nav .navbar-nav > li > a,
  #nav .navbar-nav > li > a.deepGray,
  #nav .navbar-nav > li > a.lightViolate {
    color: rgba(255,255,255,0.9) !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    white-space: normal !important;
    display: block !important;
    background-color: transparent !important;
  }
  #nav .navbar-nav > li > a:hover,
  #nav .navbar-nav > li > a:focus {
    background-color: rgba(255,255,255,0.07) !important;
    color: #fff !important;
  }
  #nav .dropdown-content,
  #nav .dropdown-menu {
    position: static !important;
    background-color: rgba(255,255,255,0.05) !important;
    background: rgba(255,255,255,0.05) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    min-width: 100% !important;
    width: 100% !important;
    float: none !important;
  }
  #nav .dropdown-menu .dropdown-item,
  #nav .dropdown-content .dropdown-item {
    color: rgba(255,255,255,0.75) !important;
    padding: 9px 32px !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    display: block !important;
    background-color: transparent !important;
  }
  #nav .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255,255,255,0.08) !important;
    color: #fff !important;
  }
  .nav-quote-btn {
    display: block !important;
    margin: 10px 16px 14px !important;
    text-align: center !important;
    border-radius: 6px !important;
  }
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.home {
  background-attachment: fixed !important;
}

.overlay-fluid-block {
  background: linear-gradient(
    135deg,
    rgba(11, 37, 69, 0.94) 0%,
    rgba(11, 37, 69, 0.80) 50%,
    rgba(26, 58, 107, 0.65) 100%
  ) !important;
  width: 100% !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-wrapper {
  padding: 160px 0 80px !important;
}

.home-content h1 {
  font-size: 3.4rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 28px;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-hero-primary {
  background: var(--orange);
  color: #fff !important;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  letter-spacing: 0.02em;
}

.btn-hero-primary:hover {
  background: var(--orange-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff !important;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff !important;
}

/* ==========================================
   5. STATS BAR
   ========================================== */
.stats-bar {
  background: var(--orange);
  padding: 32px 0;
}

.stats-bar-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.stats-bar .stat-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255,255,255,0.22);
  min-width: 0;
}

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

.stats-bar .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  display: block;
  font-family: 'Inter', sans-serif;
}

.stats-bar .stat-number i {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
}

.stats-bar .stat-accent {
  color: rgba(255,255,255,0.75);
}

.stats-bar .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 1.3;
}

/* Tablet: wrap to 3 per row */
@media (max-width: 991px) {
  .stats-bar-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .stats-bar .stat-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }
  .stats-bar .stat-item:nth-child(3n) { border-right: none; }
  .stats-bar .stat-item:nth-last-child(-n+3) { border-bottom: none; }
}

/* Mobile: 2 per row */
@media (max-width: 575px) {
  .stats-bar .stat-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .stats-bar .stat-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.22); }
  .stats-bar .stat-item:nth-child(2n) { border-right: none; }
  .stats-bar .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-bar .stat-number { font-size: 1.6rem; }
  .stats-bar .stat-label { font-size: 0.65rem; }
}

/* ==========================================
   6. SECTION HEADING SYSTEM
   ========================================== */
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-line {
  width: 44px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px 0 20px;
}

.mu-heading-title {
  color: var(--text-dark) !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
  text-transform: none !important;
}

.mu-heading-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ==========================================
   7. DARK BAND — Why Bangladesh
   ========================================== */
.dark-band {
  background: var(--navy);
  padding: 80px 0;
}

.dark-band h2,
.dark-band h3 {
  color: #fff !important;
}

.dark-band p {
  color: rgba(255,255,255,0.72);
}

.dark-band .section-tag {
  background: rgba(249,115,22,0.18);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
}

.dark-band .mu-heading-title {
  color: #fff !important;
}

.dark-band .mu-heading-title::after {
  background: var(--orange);
  margin: 10px auto 0;
}

/* Trust cards on dark background */
.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease;
  margin-bottom: 24px;
}

.trust-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.10);
}

.trust-card .trust-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.trust-card h4 {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.trust-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.trust-cards-row {
  margin-top: 40px;
}

/* ==========================================
   8. CARDS SYSTEM (Services & Products)
   ========================================== */
.mu-service-content-single {
  background: var(--white) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border) !important;
  border-top: 3px solid var(--navy) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 28px 20px !important;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-top-color 0.22s ease !important;
  height: auto !important;
  min-height: 0 !important;
}

.mu-service-content-single:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-5px) !important;
  border-top-color: var(--orange) !important;
}

.mu-service-content-single h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.45 !important;
}

.mu-service-content-single h4 a {
  color: var(--text-dark) !important;
  text-decoration: none !important;
}

.mu-service-content-single h4 a:hover {
  color: var(--orange) !important;
}

.mu-service-content-single p {
  font-size: 0.88rem !important;
  color: var(--text-mid) !important;
  line-height: 1.65 !important;
}

.mu-service-icon-box {
  background: var(--orange-light) !important;
  border: none !important;
  color: var(--orange) !important;
  border-radius: 10px !important;
  width: 60px !important;
  height: 60px !important;
  line-height: 60px !important;
  font-size: 24px !important;
  margin-bottom: 18px !important;
}

.mu-service-icon-box i {
  margin: 0 !important;
  line-height: 60px !important;
}

/* Remove pmsHeight fixed heights */
.pmsHeight {
  height: auto !important;
  min-height: 0 !important;
}

/* Cards grid equal height using flex */
.mu-service-content .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

.mu-service-content .row > [class*='col-'] {
  display: flex !important;
  flex-direction: column !important;
}

.mu-service-content .row > [class*='col-'] > .mu-service-content-single {
  flex: 1 !important;
}

/* Read more links */
.readMore {
  color: var(--orange) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  float: none !important;
  display: inline-block !important;
  margin-top: 8px !important;
  transition: color 0.15s ease !important;
}

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

/* Service section background */
.serviceCss {
  background: var(--off-white) !important;
}

/* ==========================================
   9. WHAT WE OFFER — Icon Card Grid
   ========================================== */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.offer-card {
  flex: 1 1 calc(33.333% - 14px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.offer-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-card-body h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.offer-card-body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================
   10. PROCESS TIMELINE
   ========================================== */
.process-timeline {
  margin-top: 50px;
  padding: 30px 0 10px;
}

.process-step-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  min-width: 100px;
}

.process-step-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(11,37,69,0.25);
  font-family: 'Inter', sans-serif;
}

.process-step-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.process-step-desc {
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.45;
}

.process-arrow {
  flex: 0 0 24px;
  text-align: center;
  padding-top: 14px;
  color: var(--orange);
  font-size: 1rem;
  opacity: 0.6;
}

/* ==========================================
   11. TECH STACK SECTION
   ========================================== */
.tech-stack-section {
  background: #fff;
  padding: 80px 0;
}

.tech-header {
  text-align: center;
  margin-bottom: 52px;
}

.tech-header .section-tag {
  margin-bottom: 12px;
}

.tech-sub {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* 3-column group layout */
.tech-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tech-group {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.tech-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.tech-group-label i {
  color: var(--orange);
  font-size: 0.9rem;
}

.tech-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.16s ease;
  cursor: default;
}

.tech-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.tech-pill i {
  font-size: 0.85rem;
  color: var(--orange);
  transition: color 0.16s ease;
}

.tech-pill:hover i {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
  .tech-groups {
    flex-direction: column;
    gap: 16px;
  }
  .tech-group {
    max-width: 100%;
  }
}

/* ==========================================
   12. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  background: var(--off-white);
  padding: 60px 0 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  /* height: 100%; */
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quote-mark {
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  opacity: 0.45;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.author-info strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: block;
  font-weight: 700;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================
   13. OUR CLIENTS
   ========================================== */
#mu-clients .mu-service-content-single {
  border-top: none !important;
  border: 1px solid var(--border) !important;
}

#mu-clients .mu-service-content-single:hover {
  border-top: none !important;
  border-top-color: transparent !important;
}

#mu-clients h6 {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--text-mid) !important;
  margin-top: 10px !important;
}

#mu-clients h6 a {
  color: var(--text-mid) !important;
}

/* ==========================================
   14. CONTACT SECTION
   ========================================== */
.contact .head_title h2 {
  color: var(--text-dark) !important;
}

.contact .form-control {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9rem !important;
  color: var(--text-dark) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
  height: 46px !important;
}

.contact .form-control:focus {
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(11,37,69,0.08) !important;
  outline: none !important;
}

.contact textarea.form-control {
  height: auto !important;
}

.btn-contact {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px !important;
  width: auto !important;
  padding: 11px 36px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border: none !important;
  transition: background 0.18s ease, transform 0.18s ease !important;
  letter-spacing: 0.02em !important;
}

.btn-contact:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px) !important;
}

.btn-book-demo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 10px;
  transition: all 0.2s ease;
  text-decoration: none !important;
  width: 100%;
  justify-content: center;
}

.btn-book-demo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff !important;
}

.timezone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.timezone-badge i {
  color: var(--orange);
}

/* ==========================================
   15. FOOTER
   ========================================== */
#footer-menu {
  background: var(--navy) !important;
}

#footer-menu h5 {
  color: #fff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

#footer-menu .menu-item ul li a,
#footer-menu .menu-item p,
#footer-menu .menu-item p a,
#footer-menu .menu-item ul li {
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.83rem !important;
  line-height: 2 !important;
  transition: color 0.15s ease !important;
}

#footer-menu .menu-item ul li a:hover {
  color: var(--orange) !important;
}

#footer-menu .eascaColor {
  color: var(--orange) !important;
}

#footer {
  background: rgba(0,0,0,0.35) !important;
}

#footer .footer-text {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.78rem !important;
}

#footer .footer-text a {
  color: var(--orange) !important;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* ==========================================
   16. WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  background: #25D366;
  color: #fff !important;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
  color: #fff !important;
}

/* ==========================================
   17. ABOUT / SECTIONS — General Improvements
   ========================================== */
.single_features_right h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
}

.single_features_right p {
  color: var(--text-mid) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
}

/* Gray section backgrounds */
.grayColor {
  background: var(--off-white) !important;
}

/* ==========================================
   18. RESPONSIVE
   ========================================== */
@media (max-width: 767px) {
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.65rem !important; }

  .home-content h1 { font-size: 2rem !important; }

  .overlay-fluid-block {
    min-height: auto !important;
  }

  .home-wrapper { padding: 130px 0 60px !important; }

  .hero-badges { gap: 8px; }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .offer-card {
    flex: 1 1 100%;
  }

  .process-step-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }

  .process-arrow { display: none; }

  .process-step { flex: 0 0 40%; }

  .trust-card { margin-bottom: 16px; }

  .tech-grid { gap: 10px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* offer cards: full width inside their col so they don't become too narrow */
  .offer-card { flex: 1 1 100%; }
  h1 { font-size: 2.6rem !important; }
  .home-content h1 { font-size: 2.4rem !important; }
  /* remove 85px side margins on tablet — columns are already narrow enough */
  .marginLeft85px  { margin-left: 0 !important; }
  .marginRight85px { margin-right: 0 !important; }
  .marginLeft95px  { margin-left: 0 !important; }
  .marginLeft110px { margin-left: 0 !important; }
}


/* ==========================================
   19. INNER PAGE HERO
   ========================================== */
.page-hero {
  background: var(--navy);
  padding: 52px 0 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,151,215,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: #fff !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
  position: relative;
}

.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin: 0 auto 20px;
  max-width: 520px;
  position: relative;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}

.page-breadcrumb a {
  color: var(--orange) !important;
  text-decoration: none;
}

.page-breadcrumb a:hover { color: #fff !important; }

.page-breadcrumb span { color: rgba(255,255,255,0.35); }

@media (max-width: 767px) {
  .page-hero { padding: 36px 0 24px; }
  .page-hero h1 { font-size: 1.7rem !important; }
}

/* ==========================================
   20. FOOTER LOGO + BOTTOM BAR
   ========================================== */
#footer {
  background: #040e1f !important;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.82;
  max-width: 130px;
  height: auto;
}

.footer-legal-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* ==========================================
   21. TEAM SECTION
   ========================================== */
#our-team {
  background: #f8fafc;
  padding: 70px 0;
}
.team-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.team-section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-top: 6px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  margin-bottom: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.team-card h5 {
  margin-bottom: 2px;
  color: var(--text-dark);
}
.team-card .team-role {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.team-card .team-bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 12px;
}
.team-card .team-linkedin {
  color: var(--navy-light);
  font-size: 1.1rem;
  transition: color 0.15s;
}
.team-card .team-linkedin:hover { color: var(--orange); }
.team-note {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ==========================================
   22. ENGAGEMENT MODEL SECTION
   ========================================== */
#engagement {
  padding: 70px 0;
  background: #fff;
}
.engagement-header {
  text-align: center;
  margin-bottom: 48px;
}
.engagement-header p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-top: 6px;
}
.engagement-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  /* height: 100%; */
}
.engagement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.engagement-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.engagement-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}
.engagement-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.engagement-best-for {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}
.engagement-cta {
  text-align: center;
  margin-top: 36px;
}
.engagement-note {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ==========================================
   23. WHY BANGLADESH SECTION
   ========================================== */
#why-bangladesh {
  background: var(--off-white);
  padding: 70px 0;
}
.why-bd-header {
  text-align: center;
  margin-bottom: 48px;
}
.why-bd-header p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-top: 6px;
}
.why-bd-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}
.why-bd-card:hover { box-shadow: var(--shadow-sm); }
.why-bd-card .why-bd-icon {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.why-bd-card h5 { color: var(--text-dark); margin-bottom: 8px; }
.why-bd-card p { font-size: 0.9rem; color: var(--text-mid); }
.why-bd-cta {
  text-align: center;
  margin-top: 36px;
}

/* ==========================================
   24. COOKIE CONSENT BANNER
   ========================================== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #071c38;
  color: rgba(255,255,255,0.87);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 9999;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-consent-banner p { margin: 0; color: rgba(255,255,255,0.87); font-size: 0.88rem; }
#cookie-consent-banner a { color: var(--orange); }
.cookie-btn-group { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-btn-accept:hover { background: var(--orange-dark); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
@media (max-width: 600px) {
  #cookie-consent-banner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================
   25. CLIENT LOGO SLIDER
   ========================================== */

/* Override customStyle.css floats that collapse the section */
.mu-service-area {
  display: block !important;
  float: none !important;
  padding: 30px 0 40px !important;
  width: 100% !important;
  overflow: hidden !important;
}
.mu-service-header {
  display: block !important;
  float: none !important;
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 24px !important;
}

.client-slider-wrapper {
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  background: #fff;
}
.client-slider-wrapper::before,
.client-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.client-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.client-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.client-slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: clientScroll 50s linear infinite;
          animation: clientScroll 50s linear infinite;
}
.client-slider-track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.client-logo-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 160px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  margin: 0 8px;
}
.client-logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: block;
}
.client-logo-item img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}
@-webkit-keyframes clientScroll {
  0%   { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes clientScroll {
  0%   { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .client-logo-item { width: 120px; height: 70px; margin: 0 4px; padding: 8px 12px; }
  .client-logo-item img { max-height: 44px; }
  .client-slider-wrapper::before,
  .client-slider-wrapper::after { width: 40px; }
}
