@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --bg-black: #000000;
  --dark-card: #1A1A1A;
  --dark-card-alt: #141414;
  --border-dark: #262626;
  --border-light: rgba(255, 255, 255, 0.16);
  --border-amber: rgba(253, 174, 73, 0.2);
  --cta-gradient: linear-gradient(90deg, #F14736 0%, #FDAE49 100%);
  --cta-gradient-hover: linear-gradient(90deg, #FDAE49 0%, #F14736 100%);
  --amber: #FDAE49;
  --amber-badge-bg: rgba(253, 174, 73, 0.1);
  --amber-badge-border: rgba(253, 174, 73, 0.2);
  --text-white: #FFFFFF;
  --text-white-60: rgba(255, 255, 255, 0.6);
  --text-grey: #98989A;
  --glow-effect: rgba(255, 255, 255, 0.39);
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; }

body {
  background-color: var(--bg-black);
  color: var(--text-grey);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  margin-top: 0;
}

h1.hero-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h5.card-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 16px;
}

p { margin-bottom: 1.5rem; }

a {
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s ease;
}
a:hover { text-decoration: none; }

.text-grey { color: var(--text-grey) !important; }
.text-amber { color: var(--amber) !important; }
.text-white { color: var(--text-white) !important; }

/* ===== BACKGROUND GLOW EFFECTS ===== */
.bg-shadow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ffffff;
  filter: blur(250px);
  opacity: 0.06;
  z-index: 0;
  border-radius: 50%;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-pattern {
  background-image: url('Images/wave-lines.png');
  background-repeat: repeat;
  background-size: 800px;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* ===== AMBIENT ORB FLOATING BACKGROUNDS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(253, 174, 73, 0.015);
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.ambient-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(241, 71, 54, 0.01);
  top: 60%;
  right: -10%;
  animation-delay: -7s;
}

/* ===== BUTTONS ===== */
.btn-gradient {
  background: var(--cta-gradient);
  color: var(--text-white);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gradient:hover {
  background: var(--cta-gradient-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 174, 73, 0.2);
}

.btn-hero {
  padding: 14px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}

.btn-card {
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== BADGE COMPONENT ===== */
.badge-label {
  background: var(--amber-badge-bg);
  border: 1px solid var(--amber-badge-border);
  border-radius: 6px;
  padding: 8px 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(16px);
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
}

.rotating-pill {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-white-60);
  margin-bottom: 24px;
}

.rotating-pill .pill-swiper {
  height: 20px;
  width: 140px;
  margin-left: 8px;
  overflow: hidden;
  position: relative;
}

.rotating-pill .swiper-slide {
  color: var(--amber);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ===== SECTION DIVIDER ===== */
.partners-divider {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.partners-divider .horizontal-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
}

.partners-divider .vertical-line {
  width: 1px;
  height: 65px;
  background: rgba(255,255,255,0.12);
}

.partners-divider .crossbar {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* ===== NAVBAR ===== */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  padding: 20px 0;
}

.navbar-custom.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 12px 0;
}

.navbar-brand img {
  max-width: 158px;
  height: auto;
}

.nav-link {
  color: var(--text-white-60) !important;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white) !important;
}

.dropdown-menu-dark {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  backdrop-filter: blur(32px);
  padding: 10px 0;
}

.dropdown-item {
  color: var(--text-white-60);
  padding: 8px 24px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--amber);
}

/* Mobile navbar toggler */
.navbar-toggler {
  border: 1px solid var(--border-dark);
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile nav expanded — solid background */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-collapse.show,
  .navbar-custom .navbar-collapse.collapsing {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 12px;
    border: 1px solid var(--border-dark);
  }
  .navbar-custom.scrolled .navbar-collapse.show,
  .navbar-custom.scrolled .navbar-collapse.collapsing {
    background: rgba(10, 10, 10, 0.98);
  }
}

/* ===== LAYOUT SPACING ===== */
.section-padding {
  margin-bottom: 80px;
  position: relative;
}

.hero-section {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

/* ===== HERO (FutureTech layout) ===== */
.hero-row {
  align-items: start;
}

/* Hero carousel */
.heroSwiper {
  margin-bottom: 40px;
}

.hero-slide {
  padding-top: 10px;
}

.hero-badge {
  display: inline-block;
  color: var(--amber);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(253,174,73,0.3);
  border-radius: 6px;
  background: rgba(253,174,73,0.08);
}

.hero-subtitle {
  color: var(--amber);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero-desc {
  color: var(--text-grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 12px;
  background: linear-gradient(90deg, #F14736 0%, #FDAE49 100%);
  text-decoration: none;
  border: none;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: linear-gradient(90deg, #FDAE49 0%, #F14736 100%);
  color: #fff;
}

/* Stats inline (3 columns under description) */
.hero-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 4px;
}

.hero-stat-lbl {
  font-size: 13px;
  color: var(--text-grey);
}

/* Hero signup card (right side) */
.hero-card {
  position: relative;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  min-height: 540px;
}

/* Animated solar rays — the "dark sun" layer */
.solar-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  z-index: 1;
  animation: solar-pulse 5s ease-in-out infinite alternate;
  pointer-events: none;
  transform-origin: top left;
}

@keyframes solar-pulse {
  0%   { opacity: 0.55; transform: scale(1.0);  filter: brightness(0.7) contrast(1.1); }
  40%  { opacity: 0.9;  transform: scale(1.04); filter: brightness(1.2) contrast(1.2); }
  70%  { opacity: 0.7;  transform: scale(1.02); filter: brightness(1.0) contrast(1.15); }
  100% { opacity: 0.6;  transform: scale(1.01); filter: brightness(0.8) contrast(1.1); }
}

/* Card content — pinned to bottom of card, above the rays */
.hero-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 32px 28px 48px;
}

/* Avatar row — pill container */
.hero-card-avatars {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px;
  border-radius: 50px;
  border: 1px solid #262626;
  background: #1A1A1A;
  margin-bottom: 24px;
}

.hero-card-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #666;
  margin-right: -12px;
  object-fit: cover;
}

.hero-card-avatars img:last-child {
  margin-right: 0;
}

.hero-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-card-desc {
  font-size: 18px;
  color: #98989A;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-card-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #98989A;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid #262626;
  border-radius: 12px;
  background: #000;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero-card-btn:hover {
  border-color: rgba(255,255,255,0.45);
  color: #ccc;
}

.hero-card-btn svg {
  transition: transform 0.2s;
}

.hero-card-btn:hover svg {
  transform: translateX(3px);
}

/* ===== HERO FEATURE CARDS ===== */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--border-dark);
}

.hero-feature-card {
  padding: 28px 24px;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
}

.hero-feature-card:last-child {
  border-right: none;
}

.hero-feature-card:hover {
  background: rgba(253, 174, 73, 0.03);
  text-decoration: none;
}

.hero-feature-icon {
  margin-bottom: 16px;
}

.hero-feature-text {
  margin-bottom: 8px;
}

.hero-feature-text h6 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-feature-text span {
  color: var(--text-grey);
  font-size: 13px;
}

.hero-feature-desc {
  color: var(--text-grey);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

.hero-feature-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.hero-feature-arrow span {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.hero-feature-card:hover .hero-feature-arrow {
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.dark-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dark-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dark-card-inner {
  background-color: var(--dark-card-alt);
  background-image: url('Images/services-bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 24px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.service-card {
  cursor: pointer;
}

.service-card:hover .dark-card-inner {
  background-image: var(--cta-gradient);
}

.service-card:hover .learn-more-link {
  color: var(--text-white);
}

.service-card:hover .learn-more-link img {
  filter: brightness(0) invert(1);
}

.learn-more-link {
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more-link:hover {
  color: var(--amber);
  text-decoration: underline;
}

.learn-more-link img {
  margin-left: 8px;
  width: 16px;
  transition: all 0.3s ease;
}

/* ===== SERVICES TABBED INTERFACE ===== */
.services-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 0;
}
.services-tabs-wrapper::-webkit-scrollbar { display: none; }

.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  border: none;
  flex-wrap: nowrap;
  min-width: max-content;
}

.services-tabs .nav-item {
  flex: 0 0 auto;
}

.services-tabs .nav-link {
  width: auto;
  min-width: 160px;
  padding: 12px 24px;
  border: 1px solid var(--border-dark) !important;
  color: var(--text-white-60) !important;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px !important;
  background: transparent;
  text-align: center;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  margin: 0 4px;
}

.services-tabs .nav-link:hover {
  color: var(--text-white) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.services-tabs .nav-link.active {
  border: 1px solid var(--amber) !important;
  background: rgba(253, 174, 73, 0.08) !important;
  color: var(--text-white) !important;
  font-weight: 500;
}

.services-tabs .nav-link.active::after {
  display: none;
}

.tab-content-panel {
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  background-image: url('Images/services-bg.png');
  background-size: cover;
  background-position: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.tab-content-panel .gradient-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 310px;
  opacity: 0.6;
  pointer-events: none;
}

.service-inner-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.service-inner-card .orange-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 30px;
  background: var(--amber);
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

.service-inner-card .service-label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.service-inner-card .service-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-top: 8px;
}

.service-inner-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-inner-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-inner-card ul li {
  color: var(--text-white-60);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
}

.service-inner-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.service-corner-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  pointer-events: none;
  opacity: 0.5;
}

.service-corner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  pointer-events: none;
  opacity: 0.5;
}

/* ===== TECH STACK SECTION ===== */
.tech-stack-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.tech-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.tech-stack-item:hover {
  transform: translateY(-4px);
}

.tech-stack-item img {
  max-width: 80px;
  max-height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.tech-stack-item:hover img {
  opacity: 1;
}

.tech-stack-item span {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 400;
}

/* ===== PARTNER LOGOS ===== */
.partner-logo-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-logo-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.partner-logo-card img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.8);
  transition: all 0.4s ease;
}

.partner-logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.partner-nav-btn {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.partner-nav-btn:hover {
  border-color: var(--amber);
  background: rgba(253, 174, 73, 0.1);
}

.partner-nav-prev {
  left: -24px;
}

.partner-nav-next {
  right: -24px;
}

.partner-nav-btn img {
  width: 14px;
}

.partner-nav-prev img {
  transform: rotate(180deg);
}

/* ===== BLOG PREVIEW ===== */
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 13px;
  color: var(--text-grey);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--text-grey);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: var(--amber);
  text-decoration: underline;
}

.blog-card-link img {
  margin-left: 8px;
  width: 14px;
}

/* ===== SUB-SERVICE GRID (services detail pages) ===== */
.sub-service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sub-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 174, 73, 0.15);
}

.sub-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(253, 174, 73, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sub-service-icon img {
  width: 32px;
  height: 32px;
}

.process-diagram img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.process-diagram .mobile-only { display: none; }
.process-diagram .desktop-only { display: block; }

/* ===== FOOTER ===== */
.pre-footer-cta {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pre-footer-cta .bg-shadow {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.footer-main {
  padding: 80px 0 40px;
  position: relative;
}

.footer-main .brand-tagline {
  color: var(--text-grey);
  margin-top: 20px;
  font-size: 16px;
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
}

.footer-link {
  color: var(--text-grey);
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--amber);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  color: var(--text-grey);
}

.footer-contact-item img {
  margin-right: 12px;
  margin-top: 4px;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(200px);
  z-index: -1;
  pointer-events: none;
}

/* ===== FORMS ===== */
.form-control {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 15px 20px;
  border-radius: 8px;
}

.form-control:focus {
  background: transparent;
  border-color: var(--amber);
  color: var(--text-white);
  box-shadow: none;
}

.form-label {
  color: var(--text-grey);
  margin-bottom: 8px;
}

.form-success-msg {
  display: none;
  background: rgba(0, 200, 83, 0.1);
  color: #00c853;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.form-error-msg {
  display: none;
  background: rgba(255, 82, 82, 0.1);
  color: #ff5252;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid rgba(255, 82, 82, 0.2);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.section-padding,
.pre-footer-cta,
.badge-label,
.section-title,
.row.g-4 > [class*="col-"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-padding.revealed,
.pre-footer-cta.revealed,
.badge-label.revealed,
.section-title.revealed,
.row.g-4 > [class*="col-"].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cards in rows */
.row.g-4 > [class*="col-"]:nth-child(2) { transition-delay: 0.1s; }
.row.g-4 > [class*="col-"]:nth-child(3) { transition-delay: 0.2s; }
.row.g-4 > [class*="col-"]:nth-child(4) { transition-delay: 0.3s; }
.row.g-4 > [class*="col-"]:nth-child(5) { transition-delay: 0.4s; }
.row.g-4 > [class*="col-"]:nth-child(6) { transition-delay: 0.5s; }

/* Users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .section-padding,
  .pre-footer-cta,
  .badge-label,
  .section-title,
  .row.g-4 > [class*="col-"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }
  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .hero-title br { display: none; }
  h2.section-title {
    font-size: 28px;
  }
  .hero-stats-inline {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .hero-stat-num { font-size: 22px; }
  .hero-card { min-height: 400px; }
  .hero-card-content { padding: 0 24px 24px 24px; }
  .hero-card-avatars img { width: 40px; height: 40px; }
  .hero-card-title { font-size: 20px; }
  .hero-card-desc { font-size: 16px; }
  .hero-card-btn { font-size: 16px; padding: 12px 20px; }
  .hero-card-buttons { flex-direction: column; }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .hero-feature-card {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 24px 0;
  }
  .hero-feature-card:last-child { border-bottom: none; }
  .bg-shadow {
    width: 250px;
    height: 250px;
    filter: blur(150px);
  }
  .section-padding {
    margin-bottom: 48px;
  }
  .partners-divider {
    margin: 12px 0;
  }
  .partners-divider .vertical-line {
    height: 40px;
  }
  .hero-section {
    padding-top: 120px;
  }
  .services-tabs-wrapper {
    margin: 0 -12px;
    padding: 0 12px;
  }
  .services-tabs {
    justify-content: flex-start;
    gap: 0;
  }
  .services-tabs .nav-link {
    min-width: auto;
    font-size: 13px;
    padding: 10px 16px;
    margin: 0 3px;
  }
  .tab-content-panel {
    padding: 24px;
    min-height: auto;
  }
  .tab-content-panel .row {
    flex-direction: column;
  }
  .tab-content-panel .col-lg-5 {
    display: none;
  }
  .tech-stack-grid {
    gap: 30px;
  }
  .tech-stack-item img {
    max-width: 50px;
    max-height: 50px;
  }
  .pre-footer-cta {
    padding: 48px 20px;
    min-height: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .process-diagram .mobile-only { display: block; }
  .process-diagram .desktop-only { display: none; }
  .partner-nav-btn { display: none; }
  .ambient-orb { display: none; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  h1.hero-title {
    font-size: 48px;
  }
  .services-tabs .nav-link {
    min-width: 140px;
    font-size: 14px;
    padding: 11px 18px;
  }
}

@media (max-width: 991.98px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ===== TALENT SECTION (homepage teaser + talent.html) ===== */
.candidate-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F14736, #FDAE49);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.skill-chip {
  background: rgba(253, 174, 73, 0.1);
  border: 1px solid rgba(253, 174, 73, 0.2);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.candidate-preview-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.candidate-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 174, 73, 0.2);
}

/* Talent page specific */
.talent-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.talent-filters {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-grey);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(253, 174, 73, 0.1);
  border-color: rgba(253, 174, 73, 0.3);
  color: var(--amber);
}

.candidate-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  height: 100%;
}
.candidate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 174, 73, 0.2);
  box-shadow: 0 8px 32px rgba(253, 174, 73, 0.06);
}

.candidate-card .candidate-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.candidate-card .candidate-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-grey);
}
.candidate-card .candidate-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.candidate-card .candidate-summary {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

.candidate-card .request-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.candidate-card .request-btn:hover {
  background: var(--cta-gradient);
  border-color: transparent;
}

.talent-search-input {
  background: var(--bg-black);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.3s ease;
}
.talent-search-input:focus {
  outline: none;
  border-color: var(--amber);
}
.talent-search-input::placeholder {
  color: var(--text-grey);
}

/* ===== UTILITY ===== */
.hover-amber:hover { color: var(--amber) !important; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
