:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --orange: #ffc107;
  --text-main: #0a192f;
  --text-muted: #4a5568;
  --gray: #475569;
  --radius: 20px;
  --radius-2: 40px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
  font-family: "Outfit", sans-serif;
}

/* Color Utility Fixes */
.bg-navy {
  background-color: var(--navy);
}
.text-navy {
  color: var(--navy);
}
.text-orange {
  color: var(--orange);
}
.bg-orange {
  background-color: var(--orange);
}

/* Navbar & Mega Menu Architecture */
.nav-item-static {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item-rel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.group:hover .nav-link {
  color: var(--orange) !important;
}

/* MEGA MENU FIX: Text Color & Bridge */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 60;
  color: var(--navy) !important;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 50px;
  background: transparent;
  pointer-events: auto;
}

.nav-item-static:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* PORTAL DROPDOWN FIX */
.portal-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 60;
  color: var(--navy) !important;
}

.portal-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 25px;
  background: transparent;
  pointer-events: auto;
}

.nav-item-rel:hover .portal-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Infinite Seamless Marquee */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

/* Modern Grid Pattern */
.grid-bg {
  background-image: radial-gradient(var(--navy) 0.8px, transparent 0.8px);
  background-size: 40px 40px;
  opacity: 0.06;
}

/* Interactive Element Polish */
.sector-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
  background: #ffffff;
}
.sector-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.15);
}

/* Map Pin Pulse */
.map-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 25px var(--orange);
}
.map-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.meta-text {
  /* letter-spacing: 0.15em; */
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.heading-tight {
  letter-spacing: -0.04em;
}

/* Profile Visuals */
.profile-img {
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.7s ease;
}
.team-card:hover .profile-img {
  filter: grayscale(0%) contrast(1);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.swiper-wrapper {
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about page  */

.founder-card {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.founder-img-wrapper {
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.7s ease;
}
.founder-card:hover .founder-img-wrapper {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.standard-card {
  transition: all 0.4s ease;
  border: 1px solid #edf2f7;
}
.standard-card:hover {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.08);
  transform: translateY(-5px);
}

.map-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--orange);
}
.map-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(4.5);
    opacity: 0;
  }
}

/* end about  */

/* start capability page  */
.bg-capability {
  background: #0a192f;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 47, 1) 40%,
    rgba(248, 250, 252, 1) 50%
  );
}
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

/* end capability page  */

/* start careers page  */
/* Career Specific Styles */
.job-card {
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
}
.job-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 30px 60px -15px rgba(10, 25, 47, 0.1);
}

.culture-card {
  transition: all 0.4s ease;
}
.culture-card:hover .culture-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--orange);
}

/* end careers page  */

/* start stude case page  */

.case-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  position: relative;
}
.case-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(10, 25, 47, 0.2);
}
.card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 25, 47, 0.95) 0%,
    rgba(10, 25, 47, 0.4) 60%,
    transparent 100%
  );
  transition: all 0.3s ease;
}
.case-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 25, 47, 1) 0%,
    rgba(10, 25, 47, 0.6) 100%
  );
}

.filter-btn.active {
  background-color: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

/* end stude case page  */

/* start contact page  */
/* Form Visuals */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--navy);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

/* Coordinate Pulse */
.map-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--orange);
}
.map-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
/* end contact page  */

/* start custom-dev page */
.capability-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
  background: #ffffff;
}
.capability-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.12);
}

.code-window {
  background: #011627;
  border-radius: 1.5rem;
  box-shadow: 0 50px 100px -20px rgba(10, 25, 47, 0.5);
  font-family: monospace;
}
/* end custom-dev page */

/* start differentiators page  */

.model-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
}
.model-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.12);
}

.usp-icon-wrapper {
  transition: all 0.5s ease;
}
.usp-card:hover .usp-icon-wrapper {
  background-color: var(--orange);
  color: var(--navy);
  transform: rotate(10deg) scale(1.1);
}

.tier-card {
  border-left: 4px solid #edf2f7;
  transition: all 0.4s ease;
}
.tier-card:hover {
  border-left-color: var(--orange);
  background: rgba(10, 25, 47, 0.02);
  padding-left: 2.5rem;
}

/* end differentiators page  */

/* start e-commerce page  */
.scale-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
}
.scale-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.1);
}

.tech-pill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
/* end e-commerce page  */

/* start e-dtech page  */
.shield-feature {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
}
.shield-feature:hover {
  border-color: var(--orange);
  background: rgba(10, 25, 47, 0.02);
  transform: scale(1.02);
}
.tech-badge {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
/* end e-dtech page  */

/* start e-health page  */
.engine-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
}
.engine-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.1);
}

.tech-pill {
  background: rgba(10, 25, 47, 0.03);
  border: 1px solid rgba(10, 25, 47, 0.05);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
/* end e-health page  */

/* start insights page  */
.article-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.1);
}
.article-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}
.article-card:hover img {
  transform: scale(1.05);
}
img {
  transition: transform 0.8s ease;
}

.filter-btn {
  transition: all 0.3s ease;
  border: 1px solid #edf2f7;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--orange);
  background: var(--navy);
  color: white;
}
/* end insights page  */

/* start privacy page  */
.policy-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--orange);
  padding-left: 1.5rem;
}
.policy-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.toc-link {
  transition: all 0.3s ease;
  border-left: 2px solid #edf2f7;
}
.toc-link:hover,
.toc-link.active {
  border-left-color: var(--orange);
  color: var(--navy);
  padding-left: 1.5rem;
}
/* end privacy page  */

/* start process page  */

.protocol-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #edf2f7;
  transform: translateX(-50%);
  z-index: 0;
}

.protocol-stage {
  position: relative;
  z-index: 1;
}

.stage-circle {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--orange);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  transition: all 0.4s ease;
}

.protocol-stage:hover .stage-circle {
  transform: scale(1.1);
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.1);
}

/* Deliverable Box */
.deliverable-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.deliverable-box:hover {
  border-color: var(--orange);
  background: #ffffff;
  transform: translateX(5px);
}

.tech-item {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.tech-item:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.05);
}

/* end process page  */

/* start security page  */
.framework-card {
  transition: all 0.4s ease;
  border: 1px solid #edf2f7;
}
.framework-card:hover {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.08);
  transform: translateY(-5px);
}

.defense-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-left: 4px solid #edf2f7;
}
.defense-card:hover {
  border-left-color: var(--orange);
  background: rgba(10, 25, 47, 0.02);
  padding-left: 2rem;
}
/* end security page  */

/* start service page  */
.service-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
  background: #ffffff;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.1);
}
/* end service page  */

/* start single-caseStudy page  */
.sidebar-item {
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-item:last-child {
  border-bottom: 0;
}

.tech-icon-box {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.tech-icon-box:hover {
  border-color: var(--orange);
  background: white;
  transform: translateY(-3px);
}

blockquote {
  position: relative;
  background: #f8fafc;
  border-radius: 2rem;
  padding: 3rem;
  border-left: 8px solid var(--orange);
}
blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: "Outfit", sans-serif;
  font-size: 120px;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
}
/* end single-caseStudy page  */

/* start single-insight page  */

.article-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.article-body h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.article-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

blockquote {
  background: #f8fafc;
  border-left: 6px solid var(--orange);
  padding: 3rem;
  border-radius: 0 2rem 2rem 0;
  margin: 4rem 0;
  position: relative;
}
blockquote p {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.share-btn:hover {
  border-color: var(--orange);
  background: #f8fafc;
  transform: translateY(-3px);
}
/* end single-insight page  */

/* start solutions page  */
.pillar-card {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -25px rgba(10, 25, 47, 0.12);
}

.integration-link {
  position: relative;
  z-index: 1;
}
.integration-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
  z-index: -1;
}
/* end solutions page  */

/* swiper  */
.swiper-pagination-bullet-active {
  background: var(--navy-light) !important;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 40px !important;
  font-weight: bold;
}
.swiper-button-next {
  right: -50px !important;
}
.swiper-button-prev {
  left: -50px !important;
}
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
}

@media (max-width: 670px) {
  .swiper-button-next {
    right: -30px !important;
  }
  .swiper-button-prev {
    left: -30px !important;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
  }
}
