body {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  background-color: #f9fafb;
  color: #1c2832;
}



:root {
  /* Change this value to match main header color or brand accent */
  --topbar-bg: #0f78a9;
  /* default green similar to the provided screenshot */
  --topbar-color: #ffffff;
}

.container {
  max-width: 1250px !important;
  margin: 0 auto;
}

.justify-content {
  text-align: justify;
}

.topbar-mail {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(28, 40, 50, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Topbar styles */
.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-color);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  
}

.topbar-left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--topbar-color);
  font-weight: 600;
}

.topbar .fa-phone,
.topbar .fa-envelope {
  opacity: 0.95;
}

.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--topbar-color);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Make sure header stays below topbar when sticky */
.site-header {
  position: sticky;
  top: 0;
}

/* When topbar present, push header down slightly on small screens */
@media (max-width: 768px) {
  .topbar-inner {
    padding: 10px;
  }

  .header-wrapper {
    padding: 18px 0;
  }

  .nav-list {
    gap: 14px;
  }
}

.header-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 25px 10px 25px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tagline {
  font-size: 12px;
  color: #9aa7b2;
  margin-top: 4px;
}
.main-nav {
  margin: 0 30px;
  flex: 1;
  display: flex;
  justify-content: end;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  position: static;
  width: auto;
  max-width: 640px;
  z-index: 10;
}

.nav-item {
  position: relative;
  font-size: 16px !important;
  padding: 0 20px;
}
.nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 2px;
  background-color: #505050;
}

.nav-item:last-child::after {
  display: none;
}

.nav-item:first-child {
  padding-left: 0;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 0 !important;
  color: #111!important;
  text-decoration: none;
  font-weight: 600 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f97316 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #f97316, #f89d5c);
  transform-origin: left center;
  transform: scaleX(0) skewX(-18deg);
  transition: transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-item.dropdown:focus-within > .nav-link::after {
  transform: scaleX(1) skewX(-18deg);
}

.caret {
  font-size: 12px;
  color: #6b7280;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* top: 100%; sit directly below the parent with a subtle visual gap */
  margin-top: 30px !important;
  /* increased gap for a more professional appearance */
  min-width: 220px !important;
  background: #fff;
  box-shadow: 0 8px 30px rgba(20, 30, 40, 0.08);
  border-radius: 10px;
  padding: 8px 0 !important;
  display: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform-origin: top center;
  z-index: 50;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #2b3942;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #0f78a9;
  color: #ffffff;
  padding-left: 18px;
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover,
.nav-item.dropdown.active > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.nav-cta-mobile {
  display: none;
}

.head-btn {
  padding: 15px 20px;
  font-size: 16px;
  background: #ffffff;
  border: 2px solid #f97316;
  color: #111;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.head-btn:hover {
  background: #f97316;
  color: #ffffff;
}

/* ========================  Footer  ==================================== */

/* Footer styles - minimal and focused */
.site-footer {
  background: #0f78a9;
  color: #fff;
}
.site-footer h5 {
  color: #ffffff;
}
.site-footer a {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.site-footer a:hover {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
.footer-bottom {
  border-color: rgba(255, 255, 255, 0.08);
  background-color: #0f78a9;
}
.site-footer .social a {
  transition: transform 0.15s ease, color 0.15s ease;
}
/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 35px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-heading{
  font-family: "Poppins", Sans-serif;
  font-size: 21px!important;
  font-weight: 600;
}
.footer-about {
  text-align: justify;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 10px;
  color: #fff;
  word-spacing: normal;
}

/* ========================  Hero Section  ==================================== */
.who-we-are-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  color: #f97316;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background-color: rgba(249, 115, 22, 0.1);
  padding: 10px;
  border-radius: 6px;
}

.who-we-are-content {
  padding: 0 20px;
}

.hero-section {
  min-height: 100vh;
  background-image: url("assets/img/Banner1.jpg");
  background-color: #1c2832;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgb(255, 255, 255);
  border-radius: 50px;
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
  color: #ffc107;
}

.hero-title {
  color: #ffffff;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
/* Why Outsource cards - custom styles to match site colors and hover effects */
.why-outsource-section {
  /* background: linear-gradient(180deg, rgba(12,12,12,0.92), rgba(18,18,18,0.92)); */
  color: #ffffff;
  padding: 28px 18px;
  border-radius: 12px;
}
.why-cards {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.why-card {
  flex: 0 1 calc(20% - 22px);
  background: #ffffff;
  border: 2px solid #e5e7eb;
  padding: 28px 18px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.why-card .icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 118, 118, 0.05);
}
.why-icon {
  font-size: 28px;
  color: #f97316;
}
.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 8px;
  color: #333;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #fff5f0;
  border-color: #f97316;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.why-card:hover h4 {
  color: #f97316;
}

.why-card:hover .card-svg {
  transform: scale(1.1);
}

.card-svg {
  transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
  .why-card {
    flex: 0 1 calc(33.333% - 18px);
  }
}
@media (max-width: 768px) {
  .why-card {
    flex: 0 1 calc(50% - 14px);
  }
  .why-outsource-section {
    padding: 20px 12px;
  }
}
@media (max-width: 480px) {
  .why-card {
    flex: 0 1 100%;
  }
}

.hero-description {
  color: #ffffff;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7f5ff;
  border-radius: 50%;
  color: #0d6efd;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta {
  padding: 15px 0px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.who-we-are-content {
  padding: 0 20px;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.section-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 560px;
  text-align: justify;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(111, 226, 255, 0.15);
  background: linear-gradient(135deg, #6fe2ff 0%, #6f9dff 100%);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #6fe2ff 0%, #2563eb 100%);
  border-radius: 12px;
  color: white;
  font-size: 24px;
}

.feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* ======================= Achievements Section ========================================== */
.achievements-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.achievement-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* .achievements-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 20px;
  line-height: 1.3;
} */

.achievements-section .description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(78, 77, 77, 0.12);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: white;
}

.achievement-box {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-icon.projects {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6a56 100%);
}

.stat-icon.clients {
  background: linear-gradient(135deg, #667eea 0%, #4e54e1 100%);
}

.stat-icon.awards {
  background: linear-gradient(135deg, #a855f7 0%, #c026d3 100%);
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

/* ======================= AI Mini Cards (Last Section) ======================= */
.ai-mini-cards {
  background: #f6f7f9;
}

.mini-card {
  background: #fff;
  border-radius: 20px;
  padding: 0px 10px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  width: 360px;
  flex: 0 0 360px;
  margin: 0 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column; /* stack content vertically */
  min-height: 440px; /* ensure cards are same height so link lines up */
}

.mini-visual {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6efe9, #efe3db);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.visual-light {
  background: #ffffff;
}

.visual-warm {
  background: #f4e6df;
}

/* Chat bubble for Customer Agent */
.mini-bubble {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #5c0d38;
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.mini-dot {
  font-size: 14px;
}

.mini-pointer {
  position: absolute;
  left: 55%;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #5c0d38;
}

/* Simple form shapes for Data Agent */
.mini-form {
  padding: 18px;
}

.mini-input {
  background: #f6f6f6;
  border: 1px solid #eee;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.mini-pill {
  display: inline-block;
  background: #8b3a62;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.pill-muted {
  background: #8b6b9d;
}

.mini-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: #5a3825;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
}

.mini-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.mini-desc {
  color: #666;
  font-size: 14px;
  flex: 1 1 auto; /* let description grow to fill space so the link sits at the bottom */
}

.mini-link {
  display: inline-block;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
}

.mini-link:hover {
  opacity: 0.8;
}

/* Carousel layout + states */
.mini-carousel {
  padding: 0 70px;
}

.mini-viewport {
  overflow: hidden;
}

.mini-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  scroll-behavior: smooth;
}

.mini-card.active {
  opacity: 1;
  transform: translateY(-10px);
}

/* Nav buttons */
.mini-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mini-nav:hover {
  transform: translateY(-50%) scale(1.07);
  background: #F97316;
}

.mini-prev {
  left: 0px;
}

.mini-next {
  right: 0px;
}

.mini-nav-icon {
  font-size: 22px;
  color: #2d1810;
}

@media (max-width: 768px) {
  .mini-card,
  .mini-card.active {
    width: 300px;
    flex-basis: 300px;
  }

  .mini-carousel {
    padding: 0 56px;
  }
}

/* =============== Feature Blog Cards (attachment-like) =============== */

.feature-cards-section {
  background: #f3f6f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-cards-section .card.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.36s ease;
}

.feature-cards-section .card.blog-card.clickable-card {
  cursor: pointer;
}

.feature-cards-section .card.blog-card.clickable-card:hover {
  cursor: pointer;
}

.feature-cards-section .blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.feature-cards-section .badge-cat {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(20, 30, 40, 0.12);
}

.card-body {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 249, 251, 0.95) 100%
  );
}

.feature-cards-section .blog-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-cards-section .blog-card .card-text {
  font-size: 0.95rem;
  line-height: 1.45;
}

.feature-cards-section .blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(30, 50, 70, 0.18);
}

.feature-cards-section .author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 18px rgba(20, 30, 40, 0.08);
}

@media (max-width: 767px) {
  .feature-cards-section .blog-card-img {
    height: 160px;
  }

  .feature-cards-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ======================= Image Card Hover Zoom ============================== */
/* Smooth zoom on hover for card images; only the hovered card scales. */
.blog-card .position-relative {
  overflow: hidden;
}

.blog-card-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
  will-change: transform;
}

.blog-card:hover .blog-card-img,
.blog-card .position-relative:hover .blog-card-img {
  transform: scale(1.06);
}

/* Mini carousel / mini cards */
.mini-visual {
  overflow: hidden;
  border-radius: 8px;
}

.mini-pill-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
  will-change: transform;
}

.mini-card:hover .mini-pill-img,
.mini-card:focus-within .mini-pill-img {
  transform: scale(1.06);
}
/* Who-we-are banner small zoom */
.who-we-are-section img {
  transition: transform 0.35s ease;
  transform-origin: center center;
}

.who-we-are-section img:hover {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .blog-card-img,
  .mini-pill-img,
  .testi-avatar img,
  .who-we-are-section img {
    transition: none !important;
    transform: none !important;
  }
}

/* ======================= About Page ==================================== */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("assets/img/about1.png");
  min-height: 400px;
  padding: 80px 0;
  color: #ffffff;
  background-repeat: no-repeat;
  background-color: rgba(15, 7, 7, 0.35);
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

/* dark overlay for better contrast on hero background */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  margin: 0 0 8px 0;
  /* font-weight: 800; */
  letter-spacing: 0.3px;
  font-size: clamp(34px, 5vw, 64px);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #f4a33a;
}

.page-hero__breadcrumb .breadcrumb-item a {
  color: #f4a33a;
  /* matches brand accent used in footer */
  text-decoration: none;
  font-weight: 700;
}

.page-hero__breadcrumb .breadcrumb-item a:hover {
  color: #ffc56b;
}

.page-hero__breadcrumb .breadcrumb-item.active {
  color: #f4a33a;
  opacity: 0.92;
  font-weight: 600;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 240px;
    padding: 56px 0;
    background-position: center top;
  }
}

.about-hero {
  background: #f5fbff;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f78a9;
  flex-shrink: 0;
}

.about-hero-card {
  background: #ffffff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 50, 70, 0.05);
}

.about-pill {
  border: 1px solid #e8eef2;
  border-radius: 12px;
  padding: 14px 12px;
  background: #f9fcff;
}

.about-pill-title {
  font-weight: 600;
  display: block;
  color: #153243;
}

.about-pill-text {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.about-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f4fb;
  color: #0f78a9;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-panel {
  background: #ffffff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 50, 70, 0.05);
  display: grid;
  gap: 18px;
}

.about-panel-item + .about-panel-item {
  border-top: 1px solid #eef2f6;
  padding-top: 14px;
}

.about-stat {
  padding: 12px 0;
}
.row.g-4 {
  display: flex;
  justify-content: center;
}
.service-card {
  align-items: center;
  text-align: center;
}
.service-card h5 {
  text-align: center;
}
.service-card p {
  text-align: justify;
}
.page-btn {
  color: #444;
  text-decoration: none;
  position: relative;
  display: block; /* let the link take full width of the card */
  width: 100%;
  /* text-align: right; 
  margin-top: auto;  */
}
.page-btn:hover {
  color: #f4a33a;
}
.about-stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f78a9;
}

.about-stat-label {
  color: #6b7280;
  font-size: 0.95rem;
}

.about-values {
  background: #f8fbfd;
}

.about-value-card {
  border: 1px solid #e8eef2;
  border-radius: 12px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 40, 60, 0.05);
}

.about-cta {
  background: #ffffff;
}

.about-cta-box {
  border: 1px solid #e8eef2;
  border-radius: 16px;
  background: #f5fbff;
}

.tab-container {
  margin: auto;
  background: #ffffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tab-header {
  display: flex;
}

.tab-header button {
  flex: 1;
  padding: 10px;
  background: #0177ecff;
  border: 1px solid #0177ecff;
  cursor: pointer;
  font-size: 25px;
  color: #ffffffff;
  font-weight: bold;
  transition: background 0.3s;
  border-radius: 50px;
}

.tab-header button.active {
  background: #fff;
  border-bottom: 2px solid #0078d7;
  font-weight: bold;
  color: #0078d7;
}

.tab-content {
  padding: 20px;
  display: none;
  color: #444;
}

.tab-content.active {
  display: block;
}

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

.tab-content ul li {
  margin-bottom: 10px;
}

/*====================== Legal Outsourcing =================================*/
.legal-content-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(243, 246, 249, 0.6) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.legal-content-section h1 {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.service-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.28s ease;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(20, 30, 40, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elev-2);
  border-color: rgba(38, 204, 255, 0.12);
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  /* width: 60px; */
}

.card-svg {
  width: 100px;
  margin-bottom: 16px;
}

.service-card h5 i {
  color: var(--primary-start);
  font-size: 35px;
  background: linear-gradient(
    135deg,
    rgba(38, 204, 255, 0.12),
    rgba(124, 58, 237, 0.08)
  );
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.service-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

/*============== legal process outsourcing =========================== */
.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin: 40px 0;
}

.benefit-item {
  position: relative;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 50%;
  text-align: center;
  padding: 10px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.benefit-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.benefit-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.9rem;
  color: #555;
}
/* Service Detail Section */
.service-detail-section {
  scroll-margin-top: 100px;
}
/* Why Choose Us Cards */
.why-choose-card {
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(20, 30, 40, 0.04);
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elev-2);
  /* background-color: #a0d4ff; */
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-start) 0%,
    var(--primary-end) 100%
  );
  color: #F97316;
  font-size: 24px;
}
.service-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2rem;
  color: #0d6efd;
}

.card-title {
  font-weight: 600;
  margin-top: 10px;
}

/* Subtle lift + glow on hover */
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.25);
  box-shadow:
    0 10px 20px rgba(6, 15, 25, 0.08),
    0 0 0 6px rgba(13, 110, 253, 0.09);
}
/* ======================= Contact Page ========================================== */
.contact-page-banner {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(circle at 20% 20%, rgba(111, 226, 255, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 209, 138, 0.18), transparent 35%),
    linear-gradient(135deg, #0f78a9 0%, #0b2c4e 55%, #127299 100%);
  color: #f4fbff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.1), transparent 55%);
  pointer-events: none;
}

.contact-page-banner .container {
  position: relative;
  z-index: 2;
}

.cpb-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e7f6ff;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
}

.cpb-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 18px 0 12px;
  color: #ffffff;
}

.cpb-copy {
  max-width: 780px;
  color: rgba(244, 251, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.cpb-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cpb-btn {
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 18px;
  color: #0b2c4e;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.cpb-meta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(244, 251, 255, 0.85);
  font-weight: 600;
}

.cpb-meta i {
  color: #ffd18a;
}

.cpb-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, rgba(11, 44, 78, 0.18) 80%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.cpb-stat {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cpb-stat small {
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 251, 255, 0.82);
}

.cpb-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 14px 0;
}

.cpb-cta {
  font-weight: 600;
  color: rgba(244, 251, 255, 0.92);
}

.cpb-link {
  color: #ffd18a;
  text-decoration: none;
  font-weight: 700;
}

.cpb-link:hover {
  color: #ffe4b5;
}

.cpb-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 251, 255, 0.72);
  margin-top: 24px;
  font-weight: 600;
}

.cpb-crumbs a {
  color: #f4fbff;
  text-decoration: none;
}

.cpb-crumbs .sep {
  opacity: 0.6;
}

.contact-hero {
  position: relative;
  padding: 80px 0 90px;
  background: #f8fbfd;
  color: #153243;
}

.contact-hero--content {
  overflow: hidden;
}
.contact-hero--content::before,
.contact-hero--content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.contact-hero--content::before {
  width: 320px;
  height: 320px;
  background: #26ccff;
  top: -120px;
  right: 8%;
}

.contact-hero--content::after {
  width: 280px;
  height: 280px;
  background: #0f78a9;
  bottom: -100px;
  left: 5%;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 120, 169, 0.08);
  color: #0f78a9;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-title {
  font-size: 44px;
  line-height: 1.18;
  color: #153243;
  margin: 22px 0 18px;
  max-width: 640px;
}

.contact-copy {
  
  color: #586a78;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 14px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e0e8ef;
  color: #153243;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-chip:hover {
  background: #0f78a9;
  color: #ffffff;
  border-color: #0f78a9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 120, 169, 0.2);
}

.contact-chip i {
  color: #f4a33a;
}

.contact-chip:hover i {
  color: #ffd18a;
}
 .contact-social {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social .label {
  flex: 1 1 100%;
  margin: 0 0 4px 0;
  font-weight: 600;
  font-size: 18px;
  color: #4e4e4e;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* LinkedIn */
.contact-social a.Linkedin {
    background: #0A66C2;
}


/* Facebook */
.contact-social a.facebook {
    background: #1877F2;
}

/* Instagram (gradient) */
.contact-social a.instagram {
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}

/* YouTube */
.contact-social a.youtube {
    background: #FF0000;
}

/* Hover effect */
.contact-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(15, 120, 169, 0.12);
  border: 1px solid #e8eef2;
}

.contact-card h4 {
  margin: 0 0 6px;
  color: #333;
  font-weight: 700;
}

.contact-sub {
  color: #5e6a75;
  font-size: 14px;
  margin: 0;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e9f8ff;
  color: #0b2c4e;
  font-weight: 700;
  font-size: 12px;
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.contact-input,
.contact-textarea,
.contact-select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dbe5ee;
  background: #f5f7fb;
  padding: 12px 14px;
  color: #0b1f32;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  outline: none;
  border-color: #0f78a9;
  box-shadow: 0 0 0 3px rgba(15, 120, 169, 0.16);
  background: #fff;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form small {
  color: #6b7280;
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.contact-cta .btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(15, 120, 169, 0.25);
}

@media (max-width: 992px) {
  .contact-hero {
    padding: 100px 0 90px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-card {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 70px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-chip {
    width: 100%;
  }
}
/* ======================= Thank You Page ================================== */
.thank-you {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  min-height: 70vh;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(38,204,255,0.08));
}

.thank-you__container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.thank-you__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elev-2);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.thank-you__title {
  margin: 0 0 10px 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-heading);
}

.thank-you__text {
  margin: 0 0 24px 0;
  font-size: 18px;
  color: var(--color-muted);
}

.thank-you__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-start) 0%, var(--primary-end) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(175, 230, 255, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.thank-you__btn::after {
  content: "→";
  font-size: 16px;
}

.thank-you__btn:hover {
  box-shadow: 0 6px 20px rgba(175, 230, 255, 0.35);
  transform: translateY(-2px);
}

.thank-you__btn:focus-visible {
  outline: 3px solid rgba(38, 204, 255, 0.5);
  outline-offset: 3px;
}

.thank-you__accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(320px 220px at 15% 20%, rgba(124, 58, 237, 0.10), transparent),
    radial-gradient(320px 220px at 85% 80%, rgba(38, 204, 255, 0.10), transparent);
}

@media (max-width: 768px) {
  .thank-you {
    padding: 40px 16px;
    min-height: 60vh;
  }
  .thank-you__card {
    padding: 28px 22px;
  }
  .thank-you__title {
    font-size: 28px;
  }
  .thank-you__text {
    font-size: 16px;
  }
}
/* Floating callback tab */
.callback-tab {
  position: fixed;
  top: 40%;
  right: -6px;
  padding: 12px 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, #54befc 0%, #584cf5 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px 10px 0 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.callback-tab:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}
@media (max-width: 576px) {
  .callback-tab {
    top: auto;
    bottom: 20px;
    right: 20px;
    writing-mode: horizontal-tb;
    border-radius: 30px;
    padding: 12px 16px;
  }
}
/* ======================= Modal Form ========================================== */
.callback-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
}

.modal-content-callback {
  background: #fff;
  width: 350px;
  padding: 30px 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #ff5959;
  cursor: pointer;
  line-height: 1;
}

.close-modal:hover {
  color: #fa2c2c;
}

.modal-title {
  font-size: 22px;
  color: #333;
  font-weight: 1000;
}

.modal-subtitle {
  font-size: 13px;
  color: #666;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #0A2E6B;
}

.phone-group {
  display: flex;
  gap: 8px;
}

.country-code {
  width: 110px;
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.phone-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.phone-input:focus,
.country-code:focus {
  border-color: #0A2E6B;
}

.form-input::placeholder {
  color: #999;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}
.submit-btn {
  background: #0A2E6B;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #0A2E6B;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .callback-modal {
    padding: 20px;
    justify-content: center;
  }
  
  .modal-content-callback {
    width: 100%;
    max-width: 350px;
  }
}
/* ====================E-Dicovery Service page============================ */

.glob-images{
  border-radius: 100px;
  height: 160px;
  width: 200px;
  display: block;
  margin: 0 auto;
}
/* ====================document drafting Service page============================ */
#headingList li {
    cursor: pointer;
  }

  #headingList li.active {
    background-color: #b8b8b8;
    color: white;
    border: 1px solid #b8b8b8;
  }

  .list-group-item {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
  }