/* =========================================================
   GOOGLE FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --brand-red: #E8342A;
  --brand-red-dark: #c92a20;

  --brand-blue: #2f6fed;
  --brand-blue-dark: #1d4ed8;

  --text-dark: #151530;
  --text-muted: #5f6475;

  --white: #ffffff;
  --light-bg: #fafafa;
  --border-color: #e5e7eb;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);

  --transition: all 0.25s ease;


  --brand-red: #E8342A;
  --brand-blue: #2f6fed;
  --text-dark: #151530;
  --text-muted: #6b6b78;

  --msg-primary: #e6342f;
  /* red - change to match your brand */
  --msg-navy: #0b1f3a;
  /* dark navy - headings */
  --msg-border: #e5e7eb;
  /* light gray border */
  --msg-icon: #9aa3b2;
  /* muted icon color */
  --msg-placeholder: #9aa3b2;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family: 'Inter', sans-serif;

  background: var(--light-bg);
  color: var(--text-dark);

  font-size: 15px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  padding: 16px 0;

  background: var(--white);

  box-shadow: var(--shadow-sm);

  position: relative;
  z-index: 1000;
}


/* =========================================================
   BRAND / LOGO
   ========================================================= */

.navbar-brand {
  font-family: 'Poppins', sans-serif;

  font-weight: 800;
  font-size: 1.55rem;

  color: var(--text-dark) !important;

  display: flex;
  align-items: center;

  white-space: nowrap;

  padding: 0;
}

.navbar-brand .brand-infotech {
  color: var(--brand-blue);

  font-style: italic;

  font-weight: 800;
}


/* =========================================================
   LOGO SLOT
   ========================================================= */

.logo-slot {
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 10px;

  font-size: 0.6rem;

  color: #aaa;

  text-align: center;

  line-height: 1.1;

  flex-shrink: 0;
}

.logo-slot img {
  width: 100px;
  height: auto;

  display: block;

  object-fit: contain;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar-nav {
  gap: 6px;

  align-items: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;

  color: var(--text-dark) !important;

  font-weight: 600;

  font-size: 0.95rem;

  padding: 8px 14px !important;

  position: relative;

  transition: var(--transition);
}

.nav-link:hover {
  color: var(--brand-red) !important;
}

.nav-link.active {
  color: var(--brand-red) !important;
}


/* =========================================================
   ACTIVE NAVBAR UNDERLINE
   ========================================================= */

.nav-link.active::after {
  content: '';

  position: absolute;

  left: 14px;
  right: 14px;

  bottom: 2px;

  height: 2px;

  background: var(--brand-red);

  border-radius: 10px;
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

/*.dropdown-toggle::after {
  margin-left: 6px;

  vertical-align: 2px;

  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}*/


/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.dropdown-menu {
  border: none;

  box-shadow: var(--shadow-md);

  border-radius: 10px;

  padding: 8px;

  margin-top: 8px;

  background: var(--white);
}

.dropdown-item {
  font-family: 'Inter', sans-serif;

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--text-dark);

  padding: 9px 14px;

  border-radius: 7px;

  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #f4f7ff;

  color: var(--brand-blue);
}


/* =========================================================
   SEARCH ICON BUTTON
   ========================================================= */

.icon-btn {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid #e2e2e8;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-dark);

  background: var(--white);

  transition: var(--transition);

  cursor: pointer;
}

.icon-btn:hover {
  background: #f2f2f5;

  border-color: var(--brand-blue);

  color: var(--brand-blue);

  transform: translateY(-1px);
}


/* =========================================================
   CONTACT BUTTON
   ========================================================= */

.btn-contact {
  font-family: 'Inter', sans-serif;

  background: var(--brand-red);

  color: var(--white) !important;

  border-radius: 30px;

  padding: 10px 22px;

  font-weight: 700;

  font-size: 0.9rem;

  border: none;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  text-decoration: none;

  transition: var(--transition);

  box-shadow: 0 5px 15px rgba(232, 52, 42, 0.18);
}

.btn-contact:hover {
  background: var(--brand-red-dark);

  color: var(--white) !important;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(232, 52, 42, 0.25);
}

.btn-contact:active {
  transform: translateY(0);
}


/* =========================================================
   GENERAL BUTTONS
   ========================================================= */

.btn {
  font-family: 'Inter', sans-serif;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {
  background: var(--brand-blue);

  border-color: var(--brand-blue);

  font-weight: 600;
}

.btn-primary:hover {
  background: var(--brand-blue-dark);

  border-color: var(--brand-blue-dark);

  transform: translateY(-1px);
}

.btn-danger {
  background: var(--brand-red);

  border-color: var(--brand-red);
}

.btn-danger:hover {
  background: var(--brand-red-dark);

  border-color: var(--brand-red-dark);
}


/* =========================================================
   SECTION COMMON STYLES
   ========================================================= */

.section-title {
  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;

  color: var(--text-muted);

  font-size: 0.95rem;

  max-width: 700px;

  margin: 0 auto;
}


/* =========================================================
   SMALL SECTION LABEL
   ========================================================= */

.section-label {
  font-family: 'Inter', sans-serif;

  color: var(--brand-red);

  font-size: 0.75rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-bottom: 5px;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
  background: var(--white);

  border: 1px solid #edf0f5;

  border-radius: 14px;

  padding: 24px;

  height: 100%;

  transition: var(--transition);

  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(47, 111, 237, 0.12);

  border-color: rgba(47, 111, 237, 0.15);
}

.service-card h3,
.service-card h4 {
  font-family: 'Poppins', sans-serif;

  font-weight: 600;
}

.service-card p {
  font-family: 'Inter', sans-serif;

  color: var(--text-muted);

  font-size: 0.9rem;
}


/* =========================================================
   ICON BOX
   ========================================================= */

.icon-box {
  width: 48px;
  height: 48px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--brand-blue);

  color: var(--white);

  font-size: 20px;

  margin-bottom: 16px;
}

.icon-box.red {
  background: var(--brand-red);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-title {
  font-family: 'Poppins', sans-serif;

  font-size: clamp(2.2rem, 4vw, 4rem);

  line-height: 1.15;

  font-weight: 800;

  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--brand-red);
}

.hero-description {
  font-family: 'Inter', sans-serif;

  color: var(--text-muted);

  font-size: 1rem;

  line-height: 1.7;

  max-width: 650px;
}


/* =========================================================
   STATS
   ========================================================= */

.stat-number {
  font-family: 'Poppins', sans-serif;

  font-size: 1.3rem;

  font-weight: 700;

  color: var(--text-dark);
}

.stat-label {
  font-family: 'Inter', sans-serif;

  font-size: 0.72rem;

  color: var(--text-muted);

  font-weight: 500;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
  border-radius: 18px;

  overflow: hidden;

  background: linear-gradient(90deg,
      #e8342a 0%,
      #d71969 45%,
      #174de0 100%);
}

.cta-section h2 {
  font-family: 'Poppins', sans-serif;

  color: var(--white);

  font-weight: 700;
}

.cta-section p {
  font-family: 'Inter', sans-serif;

  color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #071536;

  color: #fff;

  font-family: 'Inter', sans-serif;
}

footer h5,
footer h6 {
  font-family: 'Poppins', sans-serif;

  color: #fff;

  font-weight: 600;
}

footer p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 0.9rem;
}

footer a {
  color: rgba(255, 255, 255, 0.75);

  font-size: 0.88rem;

  transition: var(--transition);
}

footer a:hover {
  color: var(--white);

  padding-left: 3px;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1199px) {

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    font-size: 0.9rem;

    padding: 8px 10px !important;
  }

  .nav-link.active::after {
    left: 10px;
    right: 10px;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .logo-slot img {
    width: 90px;
  }
}


/* =========================================================
   RESPONSIVE - MOBILE NAVBAR
   ========================================================= */

@media (max-width: 991px) {

  .navbar {
    padding: 12px 0;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .logo-slot {
    height: 42px;

    margin-right: 7px;
  }

  .logo-slot img {
    width: 85px;
  }

  .navbar-nav {
    gap: 0;

    align-items: flex-start;

    padding-top: 12px;
  }

  .nav-link {
    width: 100%;

    padding: 10px 5px !important;

    font-size: 0.92rem;
  }

  .nav-link.active::after {
    left: 5px;
    right: auto;

    width: 30px;

    bottom: 2px;
  }

  .icon-btn {
    margin-top: 10px;
  }

  .btn-contact {
    margin-top: 12px;

    width: fit-content;
  }

  .dropdown-menu {
    box-shadow: none;

    border: 1px solid #edf0f5;

    margin-top: 0;

    width: 100%;
  }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

  body {
    font-size: 14px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .logo-slot {
    height: 38px;

    margin-right: 5px;
  }

  .logo-slot img {
    width: 75px;
  }

  .hero-title {
    font-size: 2rem;

    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9rem;

    line-height: 1.6;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .service-card {
    padding: 18px;
  }

  .btn-contact {
    padding: 9px 18px;

    font-size: 0.82rem;
  }
}


/* =========================================================
   BUTTON FOCUS
   ========================================================= */

button:focus,
.btn:focus,
a:focus {
  outline: none;

  box-shadow: none;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: var(--brand-blue);

  color: var(--white);
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-blue);

  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-dark);
}


/*End*/


/*Hero sections page*/
/* ===== HERO SECTION ===== */
/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  background: linear-gradient(120deg,
      #eef3ff 0%,
      #f7f9ff 45%,
      #ffffff 100%);

  padding: 72px 0 42px;

  overflow: hidden;

  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   HERO TEXT SIDE
   ========================================================= */

.hero-eyebrow {
  font-family: 'Inter', sans-serif;

  font-weight: 700;

  font-size: 0.82rem;

  letter-spacing: 0.6px;

  margin-bottom: 15px;

  text-transform: uppercase;
}

.hero-eyebrow span {
  margin-right: 6px;
}

.eyebrow-blue {
  color: var(--brand-blue);
}

.eyebrow-red {
  color: var(--brand-red);
}

.eyebrow-dark {
  color: var(--text-dark);
}


/* =========================================================
   HERO HEADING
   ========================================================= */

.hero-heading {
  font-family: 'Poppins', sans-serif;

  font-weight: 800;

  line-height: 1.15;

  font-size: clamp(2rem, 3.5vw, 3rem);

  letter-spacing: -0.6px;

  color: var(--text-dark);

  margin-bottom: 18px;

  max-width: 650px;
}

.hero-heading .accent {
  color: var(--brand-red);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-desc {
  font-family: 'Inter', sans-serif;

  color: var(--text-muted);

  font-size: 0.98rem;

  line-height: 1.75;

  max-width: 500px;

  margin-bottom: 28px;
}


/* =========================================================
   HERO CTA BUTTONS
   ========================================================= */

.hero-ctas {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 42px;
}


/* Primary Button */

.btn-hero-primary {
  font-family: 'Inter', sans-serif;

  background: var(--brand-red);

  color: #fff;

  border: none;

  border-radius: 30px;

  padding: 12px 27px;

  font-weight: 700;

  font-size: 0.9rem;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  transition: all 0.25s ease;

  box-shadow: 0 8px 18px rgba(232, 52, 42, 0.16);
}

.btn-hero-primary:hover {
  background: var(--brand-red-dark);

  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(232, 52, 42, 0.25);
}


/* Secondary Button */

.btn-hero-secondary {
  font-family: 'Inter', sans-serif;

  background: #fff;

  color: var(--text-dark);

  border: 1px solid #dcdce4;

  border-radius: 30px;

  padding: 12px 27px;

  font-weight: 700;

  font-size: 0.9rem;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: #f5f5f8;

  border-color: var(--brand-blue);

  color: var(--brand-blue);

  transform: translateY(-2px);
}


/* =========================================================
   HERO STATS
   ========================================================= */

/* =========================================================
   EXACT DESIGN MATCH - DEVELOPER OFFICE HERO & FLOATING STATS
   ========================================================= */

/* TOPBAR HEADER (BRAND RED + SKY BLUE THEME) */
.topbar-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  position: relative;
  z-index: 1060;
  padding: 6px 0;
}

.topbar-item {
  font-weight: 600;
  color: #334155 !important;
  transition: color 0.2s ease;
}

.topbar-item:hover {
  color: #dc2626 !important;
}

.topbar-item .text-skyblue {
  color: #0284c7 !important;
}

.topbar-item .text-red {
  color: #dc2626 !important;
}

.topbar-badge {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: 30px;
  padding: 3px 14px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.topbar-social-links .social-icon-link {
  color: #475569;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
}

.topbar-social-links .social-icon-link:hover {
  color: #ffffff;
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
}

/* BRAND LOGO WRAP & IMAGE */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  padding: 2px 0;
}

.navbar-logo-img,
.brand-logo-wrap img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.navbar-brand:hover .navbar-logo-img,
.navbar-brand:hover .brand-logo-wrap img {
  transform: scale(1.04);
}

/* NAV LINKS */
.navbar-nav {
  gap: 4px;
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  color: #334155 !important;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #dc2626 !important;
}

.navbar-nav .nav-link.active {
  color: #dc2626 !important;
  font-weight: 700;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -4px;
  height: 3px;
  background: #dc2626;
  border-radius: 4px;
}

/* NAVBAR DROPDOWN STYLING (DESKTOP) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .custom-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .custom-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 310px;
    padding: 10px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
    margin-top: 8px !important;
  }
}

.custom-dropdown-menu .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.2s ease;
  white-space: normal;
}

.custom-dropdown-menu .dropdown-item:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.custom-dropdown-menu .dropdown-item:hover .dropdown-item-title {
  color: #dc2626;
}

.dropdown-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-item-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.dropdown-item-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: #64748b;
  display: block;
  margin-top: 2px;
  line-height: 1.2;
}

/* NAVBAR BUTTONS */
.btn-nav-search {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-nav-search:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dc2626;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-nav-contact:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.45);
}


/* HERO SECTION SPLIT BACKDROP (DARK BLUE THEME) */
.profile-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 2.2rem 0;
  display: flex;
  align-items: center;
  background: #081934;
}

.hero-split-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.hero-bg-left {
  width: 45%;
  height: 100%;
  /* background: linear-gradient(135deg, #0b1329 0%, #081934 100%); */
}

.hero-bg-right {
  width: 55%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* 3x3 GRID TILE SPLITTING ANIMATION */
.tile-grid-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0px;
  background: transparent;
  z-index: 1;
}

.tile-piece {
  position: relative;
  width: 100%;
  height: 100%;
  /* 
    Use cover-equivalent sizing by multiplying 100% container size by 3 (3x3 grid).
    background-position maps each cell correctly: col 0/1/2 => 0%, 50%, 100%
    row 0/1/2 => 0%, 50%, 100%
  */
  background-size: 300% 300%;
  background-position: calc(var(--col) * 50%) calc(var(--row) * 50%);
  background-repeat: no-repeat;
  background-attachment: local;
  border-radius: 0px;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition: transform 0.6s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.5s ease;
  transition-delay: var(--delay);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.tile-grid-container.splitting .tile-piece {
  opacity: 0;
  transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--rot)) scale(0.6);
}

.hero-office-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #081934 0%, rgba(8, 25, 52, 0.85) 15%, rgba(8, 25, 52, 0) 45%);
  z-index: 3;
}

.hero-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.min-vh-hero {
  min-height: 460px;
}

.z-index-hero {
  z-index: 6;
}

/* HERO LEFT CONTENT (DARK THEME TYPOGRAPHY) */
.hero-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eyebrow-blue {
  color: #60a5fa;
}

.eyebrow-red {
  color: #f87171;
}

.hero-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 39px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-main-title .highlight-red {
  color: #f87171;
}

.hero-sub-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  max-width: 510px;
}

/* HERO BUTTONS */
.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-hero-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-red:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.55);
}

.btn-hero-talk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-talk:hover {
  border-color: #ffffff;
  color: #0b1329 !important;
  background: #ffffff;
  transform: translateY(-2px);
}

/* FLOATING DARK NAVY STATS PILL BAR OVER BOTTOM OF OFFICE IMAGE */
.floating-dark-stats-bar {
  position: absolute;
  bottom: -37px;
  right: 0;
  width: 95%;
  max-width: 680px;
  background: #081934;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(8, 25, 52, 0.4);
  z-index: 10;
}

.dark-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  flex: 1;
  justify-content: center;
}

.dark-stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.dark-stat-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.dark-stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.dark-stat-info .stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
}

.dark-stat-info .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}


/* TRUSTED CLIENT LOGOS BAR (INFINITE SCROLL MARQUEE) */
.trusted-logos-section {
  background: #ffffff;
  padding: 2rem 0 2.2rem;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.trusted-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.6rem;
}

.marquee-ticker-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeLoop 24s linear infinite;
}

.marquee-ticker-container:hover .marquee-track {
  animation-play-state: paused;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  opacity: 0.88;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
}

.brand-logo-item i {
  font-size: 1.5rem;
}

.brand-logo-item .brand-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo-item .brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  display: block;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 991.98px) {

  .navbar-logo-img,
  .brand-logo-wrap img {
    max-height: 38px;
  }

  /* NAVBAR DROPDOWN MOBILE STYLING */
  .custom-dropdown-menu {
    background: #f8fafc;
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: none !important;
  }

  .custom-dropdown-menu .dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
  }

  .dropdown-icon-box {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .dropdown-item-title {
    font-size: 0.85rem;
  }

  .dropdown-item-sub {
    font-size: 0.7rem;
  }

  .profile-hero {
    padding: 2.8rem 1rem 2.2rem;
    text-align: center;
    background: linear-gradient(180deg, #0b1329 0%, #081934 100%);
    min-height: auto;
  }

  .hero-split-backdrop {
    display: block;
    opacity: 0.22;
  }

  .hero-bg-left {
    display: none;
  }

  .hero-bg-right {
    width: 100%;
  }

  /* On mobile, use simpler full cover instead of tile grid */
  .tile-grid-container {
    display: block;
  }

  .tile-piece {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* Hide all tiles except the first one on mobile */
  .tile-piece:not(:first-child) {
    display: none;
  }

  .hero-eyebrow-text {
    justify-content: center;
    font-size: 0.78rem;
    margin-bottom: 0.9rem;
  }

  .hero-main-title {
    font-size: clamp(1.85rem, 5.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-sub-description {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 auto 1.8rem;
    max-width: 92%;
    color: #cbd5e1;
  }

  .hero-action-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-hero-red,
  .btn-hero-talk {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .floating-dark-stats-bar {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 1.8rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 14px;
    background: rgba(11, 19, 41, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .dark-stat-item:not(:last-child) {
    border-right: none;
  }

  .dark-stat-item {
    justify-content: flex-start;
    gap: 10px;
    padding: 4px;
  }

  .dark-stat-circle {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .dark-stat-info .stat-number {
    font-size: 1.1rem;
  }

  .dark-stat-info .stat-label {
    font-size: 0.64rem;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 575.98px) {
  .profile-hero {
    padding: 2.2rem 0.8rem 1.8rem;
  }

  .hero-main-title {
    font-size: 1.75rem;
  }

  .hero-sub-description {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .floating-dark-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 10px;
    gap: 10px;
  }

  .dark-stat-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .dark-stat-info .stat-number {
    font-size: 1rem;
  }

  .dark-stat-info .stat-label {
    font-size: 0.62rem;
  }
}

/* OUR SERVICES SECTION */
.services-section {
  background: #f8fafc;
  padding: 4.5rem 0;
}

.services-eyebrow-pill-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-dash {
  color: #dc2626;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.services-eyebrow-pill {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.services-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: #0b1329;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.btn-view-all-services {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #2563eb;
  color: #2563eb !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 24px;
  border-radius: 50px;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.25s ease;
}

.btn-view-all-services:hover {
  background: #2563eb;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.service-card-box {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px 48px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #dc2626 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-box:hover::before {
  opacity: 1;
}

.service-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 19, 41, 0.1);
  border-color: #2563eb;
}

/* WATERMARK BACKGROUND ICON EFFECT (CENTERED & REFINED WITH DIFFERENT COLORS) */
.card-bg-watermark-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 4.8rem;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-box:hover .card-bg-watermark-icon {
  opacity: 0.16;
  transform: translate(-50%, -50%) scale(1.18) rotate(6deg);
}

.card-bg-watermark-icon.color-blue {
  color: #2563eb;
}

.card-bg-watermark-icon.color-cyan {
  color: #0ea5e9;
}

.card-bg-watermark-icon.color-indigo {
  color: #6366f1;
}

.card-bg-watermark-icon.color-purple {
  color: #8b5cf6;
}

.card-bg-watermark-icon.color-red {
  color: #dc2626;
}

.card-bg-watermark-icon.color-teal {
  color: #0d9488;
}

.card-bg-watermark-icon.color-amber {
  color: #f59e0b;
}

.card-bg-watermark-icon.color-rose {
  color: #e11d48;
}

.service-card-top,
.service-card-desc,
.service-card-arrow {
  position: relative;
  z-index: 2;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card-box:hover .service-icon-box {
  transform: scale(1.08);
}

.service-icon-box.bg-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.service-icon-box.bg-cyan {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
}

.service-icon-box.bg-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.35);
}

.service-icon-box.bg-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(139, 92, 246, 0.35);
}

.service-icon-box.bg-red {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.35);
}

.service-icon-box.bg-teal {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.35);
}

.service-icon-box.bg-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

.service-icon-box.bg-rose {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.35);
}

.service-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b1329;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.service-card-box:hover .service-card-title {
  color: #2563eb;
}

.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.89rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

.service-card-arrow {
  position: absolute;
  bottom: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-card-box:hover .service-card-arrow {
  background: #2563eb;
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

@media (max-width: 991.98px) {
  .services-main-title {
    font-size: 1.75rem;
  }
}

/* =========================================================
   FLOATING CTA BANNER & DARK CORPORATE FOOTER (EXACT MOCKUP MATCH)
   ========================================================= */
.cta-banner-wrapper {
  position: relative;
  z-index: 20;
  margin-bottom: -52px;
}

.cta-banner-box {
  background: linear-gradient(90deg, #dc2626 0%, #7c3aed 40%, #0284c7 78%, #1d4ed8 100%);
  border-radius: 28px;
  padding: 30px 48px;
  box-shadow: 0 16px 40px rgba(11, 19, 41, 0.18);
}

.cta-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.cta-banner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1d4ed8 !important;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.btn-cta-white:hover {
  background: #0b1329;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* DARK CORPORATE FOOTER */
.footer-dark-corporate {
  background: #061124;
  color: #94a3b8;
  padding-top: 105px;
  padding-bottom: 0px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  position: relative;
  z-index: 10;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  line-height: 1.6;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-link-arrow {
  color: #dc2626;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-links-list a:hover .footer-link-arrow {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-contact-item {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.footer-newsletter-text {
  font-size: 0.85rem;
  color: #94a3b8;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: #0284c7;
  box-shadow: none;
}

.btn-newsletter-submit {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0 18px;
  transition: background 0.2s ease;
}

.btn-newsletter-submit:hover {
  background: #b91c1c;
  color: #ffffff;
}

.footer-bottom-bar {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-copyright {
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.btn-scroll-top {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-scroll-top:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .cta-banner-box {
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center !important;
  }

  .cta-banner-left {
    flex-direction: column;
    text-align: center;
  }

  .btn-cta-white {
    width: 100%;
    justify-content: center;
  }

  .footer-dark-corporate {
    padding-top: 85px;
  }
}

/* =========================================================
   TESTIMONIALS SECTION (UNIQUE DESIGN & DOTS)
   ========================================================= */
.testimonials-section {
  background: #ffffff;
  padding: 5rem 0;
}

.max-width-700 {
  max-width: 700px;
}

.testimonial-slider-overflow {
  overflow: hidden;
  position: relative;
  padding: 10px 4px 20px;
}

.testimonial-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

@media (max-width: 991.98px) {
  .testimonial-slide-item {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767.98px) {
  .testimonial-slide-item {
    flex: 0 0 100%;
  }
}

.testimonial-card-box {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 34px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.testimonial-card-box:hover::before {
  opacity: 1;
}

.testimonial-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border-color: #2563eb;
}

.testimonial-card-box.featured-t-card {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.08);
}

.testimonial-card-box.featured-t-card::before {
  background: linear-gradient(90deg, #dc2626 0%, #f59e0b 100%);
  opacity: 1;
}

.quote-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.quote-icon-badge.red-badge {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.star-rating {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.testimonial-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  font-style: italic;
  margin-bottom: 24px;
}

.client-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #0b1329;
}

.client-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

/* CAROUSEL PAGINATION DOTS */
.testimonial-dots-wrap .t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots-wrap .t-dot:hover {
  background: #94a3b8;
}

.testimonial-dots-wrap .t-dot.active {
  width: 32px;
  border-radius: 20px;
  background: #dc2626;
}

/* =========================================================
   FEATURED CASE STUDIES SECTION
   ========================================================= */
.case-studies-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.case-study-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border-color: #2563eb;
}

.case-study-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-study-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-img {
  transform: scale(1.08);
}

.case-study-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(37, 99, 235, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
}

.case-study-tag.tag-red {
  background: rgba(220, 38, 38, 0.9);
}

.case-study-tag.tag-teal {
  background: rgba(13, 148, 136, 0.9);
}

.case-study-metric {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #0b1329;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-study-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.case-study-client {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #334155;
}

.case-study-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
}

.case-study-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b1329;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.case-study-card:hover .case-study-title {
  color: #2563eb;
}

.case-study-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
}

.btn-case-study-link {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-case-study-link:hover {
  color: #dc2626;
  transform: translateX(4px);
}

/* =========================================================
   WHY CHOOSE INNOVINFOTECH — CLEAN & SIMPLE
   ========================================================= */

.wcu-clean-section {
  background: #f8fafc;
  padding: 5rem 0;
}

/* ── Left Image Box ── */
.wcu-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.wcu-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.wcu-img-box:hover .wcu-img {
  transform: scale(1.03);
}

/* ── Image Bottom Badges ── */
.wcu-img-badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  padding: 16px 14px;
  background: linear-gradient(to top, rgba(8, 25, 52, 0.65) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
}

.wcu-img-badge {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.wcu-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.wcu-badge-red {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.wcu-badge-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
}

.wcu-badge-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wcu-badge-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 1px;
}

/* ── Feature Cards ── */
.wcu-feature-card {
  background: #ffffff;
  border: 1.5px solid #e8edf3;
  border-radius: 16px;
  padding: 18px 16px;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.wcu-feature-card:hover,
.wcu-feature-card.wcu-card-active {
  border-color: #dc2626;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.09);
  transform: translateY(-3px);
  background: #fff9f9;
}

/* Icon */
.wcu-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.wcu-feature-card:hover .wcu-feat-icon {
  transform: scale(1.1);
}

.wcu-feat-red {
  background: rgba(220, 38, 38, 0.09);
  color: #dc2626;
}

.wcu-feat-blue {
  background: rgba(2, 132, 199, 0.09);
  color: #0284c7;
}

/* Number */
.wcu-feat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 2px;
}

/* Title */
.wcu-feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

/* Description */
.wcu-feat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

/* Arrow */
.wcu-feat-arrow {
  font-size: 0.78rem;
  color: #cbd5e1;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 3px;
  transition: all 0.25s ease;
}

.wcu-feature-card:hover .wcu-feat-arrow {
  color: #dc2626;
  transform: translateX(3px);
}

/* ── CTA Strip ── */
.wcu-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border: 1.5px solid #e8edf3;
  border-left: 4px solid #dc2626;
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  flex-wrap: wrap;
}

.wcu-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.30);
}

.wcu-cta-strip-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wcu-cta-strip-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: #64748b;
  margin-top: 3px;
}

.wcu-cta-strip-btn {
  display: inline-flex;
  align-items: center;
  background: #dc2626;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.wcu-cta-strip-btn:hover {
  background: #b91c1c;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.40);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .wcu-img-badges {
    flex-direction: column;
    gap: 8px;
  }

  .wcu-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}



/* =========================================================
   OUR PROVEN PROCESS SECTION (HORIZONTAL AUTO-SCROLLING SLIDER)
   ========================================================= */

.proven-process-section {
  background: #f8fafc;
  padding: 5.5rem 0;
}

.btn-process-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #081934;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.btn-process-nav:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.process-slider-track {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-slide-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
}

@media (max-width: 991.98px) {
  .process-slide-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 767.98px) {
  .process-slide-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.process-card-inner {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-slide-card:hover .process-card-inner {
  transform: translateY(-6px);
  border-color: #0284c7;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
}

.process-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bg-red-subtle {
  background: rgba(220, 38, 38, 0.08);
}

.text-red {
  color: #dc2626 !important;
}

.bg-blue-subtle {
  background: rgba(2, 132, 199, 0.08);
}

.text-blue {
  color: #0284c7 !important;
}

.process-step-pill {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  color: #081934;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 20px;
}

.process-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #081934;
}

.process-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
}

.deliverable-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 12px;
  display: inline-block;
}

.p-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.p-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #dc2626;
}

/* =========================================================
   DARK CORPORATE FOOTER REDESIGN (MASTERPIECE ENTERPRISE LOOK)
   ========================================================= */
.footer-dark-corporate {
  background: #080e1e;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-quick-strip {
  background: #111a30;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quick-strip-icon.icon-red {
  background: rgba(220, 38, 38, 0.15);
  color: #ef4444;
}

.quick-strip-icon.icon-blue {
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
}

.contact-v2-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.quick-strip-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: #94a3b8;
  display: block;
}

.quick-strip-val {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
}

.footer-logo-img {
  max-height: 44px;
  width: auto;
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.35);
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #dc2626;
  border-radius: 2px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link-arrow {
  font-size: 0.72rem;
  color: #dc2626;
  transition: transform 0.25s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links-list a:hover .footer-link-arrow {
  transform: translateX(2px);
}

.footer-newsletter-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.newsletter-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 4px;
}

.newsletter-input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  padding-left: 16px;
  box-shadow: none !important;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.btn-newsletter-submit {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 50% !important;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.btn-newsletter-submit:hover {
  background: #b91c1c;
  color: #ffffff;
  transform: scale(1.06);
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #64748b;
}

.footer-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #dc2626;
}

.back-to-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.35);
}

/* =========================================================
   OUR SERVICES (INTERACTIVE SIDE TABS SWITCHER)
   ========================================================= */
.srv-tab-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.srv-tab-item:hover,
.srv-tab-item.active-srv-tab {
  background: #ffffff !important;
  border-color: #dc2626 !important;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.12) !important;
  transform: translateX(6px);
}

.srv-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.srv-tab-icon.icon-red {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.srv-tab-icon.icon-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
}

.srv-tab-item:hover .srv-tab-icon,
.srv-tab-item.active-srv-tab .srv-tab-icon {
  transform: scale(1.1);
  background: #dc2626 !important;
  color: #ffffff !important;
}

.srv-tab-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #081934;
  transition: color 0.25s ease;
}

.srv-tab-item:hover .srv-tab-title,
.srv-tab-item.active-srv-tab .srv-tab-title {
  color: #dc2626 !important;
}

.srv-tab-arrow {
  font-size: 0.85rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.srv-tab-item:hover .srv-tab-arrow,
.srv-tab-item.active-srv-tab .srv-tab-arrow {
  color: #dc2626 !important;
  transform: translateX(4px);
}

/* Service Detail Showcase Card */
.service-detail-card {
  border: 1.5px solid #e2e8f0 !important;
  transition: opacity 0.25s ease;
}

.srv-detail-img-box {
  max-height: 280px;
}

.srv-detail-img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-detail-card:hover .srv-detail-img {
  transform: scale(1.03);
}

.srv-detail-tag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #dc2626;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.btn-srv-explore-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-srv-explore-link:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

/* =========================================================
   OUR SERVICES (CLEAN ENTERPRISE 3D FLOATING GRID CARDS)
   ========================================================= */
.master-service-card {
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.master-service-card:hover {
  transform: translateY(-8px);
  border-color: #dc2626 !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08) !important;
}

.master-srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}

.master-srv-icon.icon-red {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.master-srv-icon.icon-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
}

.master-service-card:hover .master-srv-icon {
  transform: scale(1.1);
}

.master-srv-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #cbd5e1;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.master-service-card:hover .master-srv-num {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.05);
}

.master-srv-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  color: #081934 !important;
  transition: color 0.25s ease;
}

.master-service-card:hover .master-srv-title {
  color: #dc2626 !important;
}

.master-srv-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b !important;
}

.master-srv-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.master-service-card:hover .master-srv-btn {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================================================
   OUR SERVICES (CATEGORIZED VISUAL BENTO HUB WITH LIVE FILTER)
   ========================================================= */
.srv-filter-pill {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  color: #64748b;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  border: 1px solid transparent !important;
  transition: all 0.25s ease !important;
}

.srv-filter-pill:hover,
.srv-filter-pill.active-filter {
  background: #dc2626 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3) !important;
}

.visual-srv-card {
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-srv-card:hover {
  transform: translateY(-8px);
  border-color: #dc2626 !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1) !important;
}

.visual-srv-img-box {
  height: 200px;
}

.visual-srv-img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.visual-srv-card:hover .visual-srv-img {
  transform: scale(1.05);
}

.visual-srv-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.visual-srv-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 8px;
}

.btn-visual-srv-link:hover .master-srv-btn {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================================================
   OUR SERVICES (ICON-BASED CONCISE ENTERPRISE CARDS)
   ========================================================= */
.icon-srv-card {
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-srv-card:hover {
  transform: translateY(-8px);
  border-color: #dc2626 !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08) !important;
}

.icon-srv-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.icon-srv-badge.icon-red {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.icon-srv-badge.icon-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
}

.icon-srv-card:hover .icon-srv-badge {
  transform: scale(1.1);
  background: #dc2626 !important;
  color: #ffffff !important;
}

.icon-srv-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #cbd5e1;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 9px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.icon-srv-card:hover .icon-srv-num {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.05);
}

.icon-srv-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #081934 !important;
  transition: color 0.25s ease;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.icon-srv-card:hover .icon-srv-title {
  color: #dc2626 !important;
}

.icon-srv-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569 !important;
  margin-bottom: 1rem !important;
  min-height: 48px;
}

.icon-srv-link:hover .master-srv-btn {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================================================
   OUR SERVICES (VISUAL INTERACTIVE HUB ON LIGHT WHITE BG)
   ========================================================= */
.blue-bullet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 6px rgba(220, 38, 38, 0.4);
  display: inline-block;
  flex-shrink: 0;
}

.btn-red-primary {
  background: #dc2626 !important;
  color: #ffffff !important;
  border: 1px solid #dc2626 !important;
  transition: all 0.3s ease !important;
}

.btn-red-primary:hover {
  background: #b91c1c !important;
  border-color: #b91c1c !important;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35) !important;
}

.cyber-srv-card {
  height: 165px;
  background: #081934;
  border: 2px solid #e2e8f0 !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.cyber-srv-card:hover {
  border-color: #dc2626 !important;
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.2) !important;
}

.active-cyber-card {
  border-color: #dc2626 !important;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25) !important;
}

.cyber-srv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: all 0.4s ease;
}

.cyber-srv-card:hover .cyber-srv-img,
.active-cyber-card .cyber-srv-img {
  opacity: 0.85;
  transform: scale(1.08);
}

.cyber-srv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 25, 52, 0.95) 15%, rgba(8, 25, 52, 0.2) 100%);
  z-index: 2;
  cursor: pointer;
}

.cyber-srv-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.cyber-srv-arrow {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.active-cyber-card .cyber-srv-arrow,
.cyber-srv-card:hover .cyber-srv-arrow {
  opacity: 1;
  color: #ff4d4d;
  transform: translateX(0);
}

.cyber-details-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.3px;
  color: #081934 !important;
  transition: opacity 0.2s ease;
}

.cyber-details-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #64748b !important;
  transition: opacity 0.2s ease;
}

#cyberDetailBullets {
  transition: opacity 0.2s ease;
}


/*About page design css*/
.about-hero-banner {
  min-height: 380px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: inherit;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(6, 20, 45, 0.96) 0%,
      rgba(6, 20, 45, 0.88) 35%,
      rgba(6, 20, 45, 0.55) 65%,
      rgba(6, 20, 45, 0.25) 100%);
  z-index: 0;
}

.about-hero-breadcrumb .breadcrumb-item a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.about-hero-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}

.about-hero-breadcrumb .breadcrumb-item.active {
  color: #ffffff99;
  font-size: 14px;
}

.about-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff66;
  content: ">";
}

.about-hero-title {
  font-size: 42px;
  line-height: 1.2;
}

.about-hero-underline {
  width: 60px;
  height: 4px;
  background: #e6342f;
  border-radius: 2px;
}

.about-hero-subtext {
  font-size: 16px;
  max-width: 480px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 30px;
  }

  .about-hero-banner {
    min-height: 320px;
  }
}


/*About page 2nd css*/
/* Only layout/positioning here — no colors/fonts hardcoded, all inherited from site theme */
.who-outline-btn {
  background: #fff;
  border: 2px solid currentColor;
  transition: all 0.25s ease;
}

.who-outline-btn:hover {
  background: currentColor;
  color: #fff !important;
}

.who-team-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.who-badge-card {
  left: 20px;
  bottom: -30px;
  max-width: 260px;
}

.who-badge-icon {
  width: 46px;
  height: 46px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .who-badge-card {
    left: 16px;
    bottom: -20px;
    padding: 10px 14px !important;
  }

  .who-team-img {
    height: 320px;
  }
}

.mv-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mv-card-mission {
  background: #fdeceb;
}

.mv-card-vision {
  background: #eaf0fd;
}

.mv-icon-wrap {
  width: 52px;
  height: 52px;
  font-size: 20px;
}

.mv-icon-mission {
  background: #ffffff;
  color: #e6342f;
}

.mv-icon-vision {
  background: #ffffff;
  color: #2f6fed;
}

.mv-title {
  color: #0b1f3a;
  font-size: 19px;
}

.mv-text {
  font-size: 14.5px;
  line-height: 1.7;
}

.mv-image {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .mv-image {
    min-height: 260px;
  }
}


.stats-bar-section {
  background: #0b0f1a;
}

.stat-icon-dark {
  width: 46px;
  height: 46px;
  background: rgba(47, 111, 237, 0.15);
  color: #4f8bff;
  font-size: 18px;
}

.stat-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}

.stat-label {
  color: #9aa3b2;
  font-size: 13px;
}

/* vertical divider lines between stats on large screens (single row) */
@media (min-width: 992px) {
  .stats-item {
    position: relative;
    padding: 0 12px;
  }

  .stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.12);
  }
}

/* Tablet: 3 per row */
@media (min-width: 576px) and (max-width: 991.98px) {
  .stat-icon-dark {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stats-item {
    padding-bottom: 8px;
  }
}

/* Mobile: 2 per row, icon stacked above text, smaller sizing */
@media (max-width: 575.98px) {
  .stats-bar-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .stat-icon-dark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.3;
  }

  .stats-item {
    padding: 8px 4px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .stat-number {
    font-size: 15px;
  }

  .stat-label {
    font-size: 10.5px;
  }
}


/*contact us*/
/* HERO */
.contact-hero-banner {
  min-height: 340px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(6, 20, 45, 0.96) 0%,
      rgba(6, 20, 45, 0.88) 40%,
      rgba(6, 20, 45, 0.45) 75%,
      rgba(6, 20, 45, 0.15) 100%);
  z-index: 0;
}

.contact-hero-breadcrumb .breadcrumb-item a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.contact-hero-breadcrumb .breadcrumb-item.active {
  color: #ffffff99;
  font-size: 14px;
}

.contact-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff66;
  content: ">";
}

.contact-hero-title {
  font-size: 40px;
}

.contact-hero-subtext {
  font-size: 16px;
  max-width: 480px;
  line-height: 1.6;
}

/* FLOATING INFO BAR */
.contact-info-bar-wrap {
  margin-top: -50px;
  z-index: 2;
}

.info-icon {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.info-icon-blue {
  background: #eaf0fd;
  color: #2f6fed;
}

.info-icon-red {
  background: #fdeceb;
  color: #e6342f;
}

.text-navy {
  color: #0b1f3a;
}

/* FORM */
.contact-form .input-group-text {
  border-right: 0;
}

.contact-form .form-control {
  border-left: 0;
}

.contact-form .input-group:focus-within {
  box-shadow: 0 0 0 2px rgba(230, 52, 45, 0.15);
  border-radius: 6px;
}

.btn-red-primary {
  background: #e6342f;
  color: #fff;
  border: none;
}

.btn-red-primary:hover {
  background: #c92924;
  color: #fff;
}

.btn-outline-navy {
  background: #fff;
  color: #0b1f3a;
  border: 2px solid #0b1f3a;
}

.btn-outline-navy:hover {
  background: #0b1f3a;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 30px;
  }

  .contact-info-bar-wrap {
    margin-top: -30px;
  }
}

.text-navy {
  color: var(--msg-navy);
}

/* Text/Email/Phone/Company inputs */
.msg-input-wrap {
  position: relative;
}

.msg-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--msg-icon);
  font-size: 14px;
  pointer-events: none;
}

.msg-input {
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--msg-border);
  border-radius: 10px;
  font-size: 14.5px;
  background: #fff;
}

.msg-input::placeholder {
  color: var(--msg-placeholder);
}

.msg-input:focus {
  border-color: var(--msg-primary);
  box-shadow: 0 0 0 3px rgba(230, 52, 45, 0.1);
}

/* Select Service - underline only style */
.msg-select {
  border: none;
  border-bottom: 1.5px solid var(--msg-border);
  border-radius: 0;
  padding: 12px 4px;
  font-size: 14.5px;
  color: var(--msg-navy);
  background-position: right 4px center;
}

.msg-select:focus {
  border-bottom-color: var(--msg-primary);
  box-shadow: none;
}

/* Message textarea */
.msg-textarea-wrap {
  position: relative;
}

.msg-textarea {
  padding: 14px 42px 14px 16px;
  border: 1px solid var(--msg-border);
  border-radius: 10px;
  font-size: 14.5px;
  resize: none;
}

.msg-textarea::placeholder {
  color: var(--msg-placeholder);
}

.msg-textarea:focus {
  border-color: var(--msg-primary);
  box-shadow: 0 0 0 3px rgba(230, 52, 45, 0.1);
}

.msg-textarea-icon {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--msg-icon);
  font-size: 13px;
  pointer-events: none;
}

/* Checkbox */
.msg-checkbox .form-check-input {
  border-radius: 4px;
  border: 1.5px solid var(--msg-border);
}

.msg-checkbox .form-check-input:checked {
  background-color: var(--msg-primary);
  border-color: var(--msg-primary);
}

/* Submit button */
.msg-submit-btn {
  background: var(--msg-primary);
  color: #fff;
  border: none;
  transition: background 0.2s ease;
}

.msg-submit-btn:hover {
  background: #c92924;
  color: #fff;
}

/* =========================================================
   TRUSTED BY LOGOS — INFINITE MARQUEE SECTION
   ========================================================= */

/* Keyframe: scrolls the full-width track to the left by exactly 50%
   (since the track contains 2× the logos, this creates a seamless loop) */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Section wrapper */
.trusted-logos-section {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

/* Label above the strip */
.trusted-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b1f3a;
  margin-bottom: 24px;
}

/* Outer container — clips the scrolling strip and adds fade masks */
.marquee-ticker-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade-out edges (left & right) using a pseudo-element overlay */
.marquee-ticker-container::before,
.marquee-ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* The scrolling track — wide enough to hold 2× the logos side-by-side */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  /* shrink-wraps to content */
  animation: marquee-scroll 30s linear infinite;
}

/* Pause on hover */
.marquee-ticker-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Individual logo card */
.brand-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  min-width: 130px;
}

.brand-logo-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

/* Logo image — full colour, no grayscale */
.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .marquee-track {
    gap: 12px;
    animation-duration: 22s;
  }

  .brand-logo-item {
    padding: 10px 16px;
    min-width: 90px;
    border-radius: 10px;
  }

  .brand-logo-img {
    height: 26px;
    max-width: 80px;
  }

  .marquee-ticker-container::before,
  .marquee-ticker-container::after {
    width: 40px;
  }

  /* =========================================================
   SERVICES MEGA-MENU (PREMIUM 3-COLUMN DESIGN)
   ========================================================= */

  /* Base Mega-menu panel styles */
  .mega-menu-panel {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--brand-red);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    padding: 0;
    overflow: hidden;
    z-index: 1050;
    display: none;
    /* NO !important — JS must override */
  }

  /* Smooth Desktop View (min-width: 992px) */
  @media (min-width: 992px) {
    .navbar {
      position: relative !important;
    }

    .navbar .container-fluid {
      position: relative !important;
    }

    .navbar-collapse {
      position: static !important;
    }

    .navbar-nav {
      position: static !important;
    }

    .mega-dropdown {
      position: static !important;
    }

    .mega-menu-panel {
      position: absolute !important;
      left: 15px !important;
      right: 15px !important;
      top: 100% !important;
      width: calc(100% - 30px) !important;
      max-width: 1320px !important;
      margin: 0 auto !important;
      border-radius: 0 0 16px 16px !important;
      transform-origin: top center;
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
      display: none;
    }

    .mega-dropdown:hover>.mega-menu-panel,
    .mega-dropdown.show>.mega-menu-panel,
    .mega-dropdown .mega-menu-panel.show,
    .navbar-nav .nav-item.dropdown.mega-dropdown:hover>.mega-menu-panel,
    .navbar-nav .nav-item.dropdown.mega-dropdown .mega-menu-panel.show,
    .mega-menu-panel.show {
      display: block !important;
      animation: megaMenuSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
  }

  @keyframes megaMenuSlideDown {
    from {
      opacity: 0;
      transform: translateY(6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Top Header Bar */
  .mega-badge-pill {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-red);
    background: rgba(232, 52, 42, 0.08);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .mega-menu-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
  }

  .mega-view-all-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    background: rgba(47, 111, 237, 0.06);
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(47, 111, 237, 0.15);
    transition: all 0.2s ease;
  }

  .mega-view-all-btn:hover {
    background: var(--brand-blue);
    color: #ffffff !important;
  }

  /* 4-Columns Grid (No Box Type - Clean Minimalist SaaS Style) */
  .mega-service-link {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.18s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mega-service-link:hover {
    background: #f1f5f9 !important;
    text-decoration: none !important;
    transform: translateX(2px) !important;
  }

  /* Icon Box */
  .mega-clean-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    transition: transform 0.2s ease !important;
  }

  .mega-service-link:hover .mega-clean-icon {
    transform: scale(1.1) !important;
  }

  /* 12 Icon Colors */
  .mega-icon-emerald {
    background: #dcfce7;
    color: #15803d;
  }

  .mega-icon-indigo {
    background: #e0e7ff;
    color: #4338ca;
  }

  .mega-icon-purple {
    background: #ede9fe;
    color: #7c3aed;
  }

  .mega-icon-teal {
    background: #ccfbf1;
    color: #0f766e;
  }

  .mega-icon-red {
    background: #fee2e2;
    color: #dc2626;
  }

  .mega-icon-blue {
    background: #dbeafe;
    color: #2563eb;
  }

  .mega-icon-cyan {
    background: #cffafe;
    color: #0891b2;
  }

  .mega-icon-amber {
    background: #fef9c3;
    color: #b45309;
  }

  .mega-icon-sky {
    background: #e0f2fe;
    color: #0284c7;
  }

  .mega-icon-orange {
    background: #ffedd5;
    color: #ea580c;
  }

  .mega-icon-rose {
    background: #ffe4e6;
    color: #e11d48;
  }

  .mega-icon-violet {
    background: #f3e8ff;
    color: #9333ea;
  }

  /* Text Block */
  .mega-clean-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mega-clean-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 2px;
    display: block;
    transition: color 0.18s ease;
  }

  .mega-service-link:hover .mega-clean-title {
    color: var(--brand-red);
  }

  .mega-clean-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748b;
    line-height: 1.3;
    margin: 0;
    display: block;
  }

  /* Micro Pills */
  .mega-pill {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
  }

  .mega-pill-hot {
    background: #fee2e2;
    color: #dc2626;
  }

  .mega-pill-emerald {
    background: #dcfce7;
    color: #16a34a;
  }

  .mega-pill-purple {
    background: #ede9fe;
    color: #7c3aed;
  }

  .mega-pill-teal {
    background: #ccfbf1;
    color: #0f766e;
  }

  .mega-pill-red {
    background: #fee2e2;
    color: #dc2626;
  }

  .mega-pill-blue {
    background: #dbeafe;
    color: #2563eb;
  }

  .mega-pill-cyan {
    background: #cffafe;
    color: #0891b2;
  }

  .mega-pill-amber {
    background: #fef9c3;
    color: #ca8a04;
  }

  .mega-pill-sky {
    background: #e0f2fe;
    color: #0284c7;
  }

  .mega-pill-orange {
    background: #ffedd5;
    color: #ea580c;
  }

  .mega-pill-rose {
    background: #ffe4e6;
    color: #e11d48;
  }

  .mega-pill-violet {
    background: #f3e8ff;
    color: #9333ea;
  }

  /* Bottom Action Footer Strip */
  .mega-menu-footer {
    background: #f8fafc !important;
  }

  .mega-highlight-item {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: #475569;
  }

  .mega-footer-cta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
  }

  .mega-footer-cta:hover {
    color: var(--brand-red);
  }

  /* Mobile & Tablet Responsiveness */
  @media (max-width: 991.98px) {
    .navbar .navbar-collapse {
      background: #ffffff !important;
      padding: 16px !important;
      border-radius: 14px !important;
      margin-top: 12px !important;
      box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12) !important;
      border: 1px solid #edf2f7 !important;
    }

    .navbar-nav {
      gap: 4px !important;
      width: 100% !important;
    }

    .navbar-nav .nav-link {
      padding: 10px 14px !important;
      border-radius: 8px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      background: rgba(232, 52, 42, 0.06) !important;
    }

    .mega-menu-panel {
      position: static !important;
      width: 100% !important;
      max-width: 100% !important;
      border-radius: 12px !important;
      padding: 0 !important;
      margin: 8px 0 !important;
      box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04) !important;
      border: 1px solid #e2e8f0 !important;
      border-top: 3px solid var(--brand-red) !important;
      background: #f8fafc !important;
      max-height: 380px !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      display: none;
      /* NO !important — JS inline style must override */
      transform: none !important;
      inset: auto !important;
    }

    .navbar-nav .mega-dropdown.show .mega-menu-panel,
    .navbar-nav .mega-dropdown.open .mega-menu-panel,
    .navbar-nav .mega-menu-panel.show,
    .navbar-nav .mega-menu-panel.open,
    .mega-dropdown.show .mega-menu-panel,
    .mega-dropdown.open .mega-menu-panel,
    .mega-menu-panel.show,
    .mega-menu-panel.open {
      display: block !important;
    }

    .mega-menu-inner {
      padding: 12px 10px !important;
    }

    .mega-service-link {
      background: #ffffff !important;
      border: 1px solid #f1f5f9 !important;
      padding: 10px !important;
      border-radius: 8px !important;
      margin-bottom: 2px !important;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    }

    .mega-service-link:active {
      background: #f1f5f9 !important;
    }

    .mega-clean-icon {
      width: 32px !important;
      height: 32px !important;
      min-width: 32px !important;
      font-size: 14px !important;
      border-radius: 6px !important;
    }

    .mega-clean-title {
      font-size: 12.5px !important;
      white-space: normal !important;
    }

    .mega-clean-desc {
      font-size: 10.5px !important;
      white-space: normal !important;
    }

    .mega-menu-footer {
      padding: 10px 12px !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 8px !important;
    }

    .mega-menu-footer .d-flex {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 4px !important;
    }

    .mega-footer-cta {
      width: 100% !important;
      justify-content: center !important;
      padding: 8px 12px !important;
      background: #ffffff !important;
      border-radius: 6px !important;
      border: 1px solid #e2e8f0 !important;
    }

    .btn-nav-contact {
      width: 100% !important;
      justify-content: center !important;
      margin-top: 10px !important;
      padding: 11px 20px !important;
    }
  }