* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-bottom: none;
}

.gradienta-bg {
  /* background: linear-gradient(90deg, rgba(15, 24, 84, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%); */
  /* background: linear-gradient(90deg, #00020f 0%, #00020f 50%, #00020f 100%); */
  background: #000;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 24px;
  width: auto;
}

nav.website-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

nav.website-menu ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav.website-menu ul li a:hover {
  color: #fff;
}

/* Active Menu Item */
nav.website-menu ul li.current-menu-item > a,
nav.website-menu ul li.current_page_item > a,
nav.website-menu ul li.current-menu-ancestor > a,
nav.website-menu ul li.current-menu-parent > a {
  color: #fff;
  font-weight: 700;
}

.header-right-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.book-meeting-btn {
  background: #0066ff;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-meeting-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* Main Content */
main {
  margin: 0 auto;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  /* gap: 3rem; */
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 50rem;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 900px;
  border-radius: 100%;
  object-fit: cover;
}

.subtitle {
  color: #e0e0e0;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-lead-text {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.2;
  background: linear-gradient(
    90deg,
    var(--token-f9309884-f46f-42e8-b972-778e14c80307, rgb(229, 235, 255))
      30.1661%,
    rgb(0, 115, 230) 63%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgb(229, 235, 255);
  /* Fallback */
  width: fit-content;
}

.highlight-text {
  background: none;
  -webkit-text-fill-color: inherit;
  color: inherit;
  display: inline;
}

@media (max-width: 768px) {
  .hero-lead-text {
    font-size: 2.25rem;
  }
}

.hero-heading {
  font-size: 70px;
  /* font-weight: 700; */
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.typing-text {
  color: #fff;
  min-height: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 60rem;
  /* word-wrap: normal;
    white-space: nowrap; */
}

.cursor {
  width: 3px;
  height: 4.5rem;
  background: #e0e0e0;
  animation: blink 1s infinite;
  margin-left: 0.5rem;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes type {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.typing-text span {
  display: inline-block;
  animation: type 0.05s steps(1) forwards;
}

/* Stagger animation for each character */
.typing-text span:nth-child(1) {
  animation-delay: 0s;
}

.typing-text span:nth-child(2) {
  animation-delay: 0.05s;
}

.typing-text span:nth-child(3) {
  animation-delay: 0.1s;
}

.typing-text span:nth-child(4) {
  animation-delay: 0.15s;
}

.typing-text span:nth-child(5) {
  animation-delay: 0.2s;
}

.typing-text span:nth-child(6) {
  animation-delay: 0.25s;
}

.typing-text span:nth-child(7) {
  animation-delay: 0.3s;
}

.typing-text span:nth-child(8) {
  animation-delay: 0.35s;
}

.typing-text span:nth-child(9) {
  animation-delay: 0.4s;
}

.typing-text span:nth-child(10) {
  animation-delay: 0.45s;
}

.typing-text span:nth-child(11) {
  animation-delay: 0.5s;
}

.typing-text span:nth-child(12) {
  animation-delay: 0.55s;
}

.typing-text span:nth-child(13) {
  animation-delay: 0.6s;
}

.typing-text span:nth-child(14) {
  animation-delay: 0.65s;
}

.typing-text span:nth-child(15) {
  animation-delay: 0.7s;
}

.typing-text span:nth-child(16) {
  animation-delay: 0.75s;
}

.typing-text span:nth-child(17) {
  animation-delay: 0.8s;
}

.typing-text span:nth-child(18) {
  animation-delay: 0.85s;
}

.typing-text span:nth-child(19) {
  animation-delay: 0.9s;
}

.typing-text span:nth-child(20) {
  animation-delay: 0.95s;
}

.description {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.6;
}

/* CTA Button with Animated Gradient Border */
/* CTA Button with Infinite SVG Border Animation */
.cta-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1.5rem 2.5rem;

  background: #050510;
  border: none;
  border-radius: 20px;

  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.15),
    inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.cta-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.border-rect {
  fill: none;
  stroke: url(#btn-border-grad);
  stroke-width: 1px;
  stroke-linecap: round;
  /* Create dashes: [dash_length gap_length] */
  stroke-dasharray: 8 92;
  /* Significantly shortened dash for a "bead" look */
  stroke-dashoffset: 0;
  animation: dash-border 3s linear infinite;
  /* Increased speed slightly for smoother look with short dash */
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-button:hover {
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.4),
    inset 0 0 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
  color: #fff;
  background: #0a0a20;
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover .cta-arrow {
  transform: translate(3px, -3px);
}

@keyframes dash-border {
  to {
    stroke-dashoffset: -100;
  }
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0rem 2rem;
  background: #000;
}

.case-studies-heading {
  color: #909090;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* New Card Animation Styles - Design Update */
.case-study-card {
  position: relative;
  width: 100%;
  height: 480px; /* Taller vertically as per design */
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background: #050510;
}

/* Scroll Animation classes support */
.case-study-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.case-study-card.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  height: 430px;
}

.case-study-card .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient Overlay - Always visible but changes on hover */
/* Gradient Overlay & Blur */
.case-study-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Transparent bluish gradient */
  background: linear-gradient(180deg, rgba(82, 100, 230, 0) 0%, #031755 100%);
  pointer-events: none;
  transition: all 0.5s ease;
}

.case-study-card:hover::after {
  /* Dark blue gradient to dark black bottom on hover */
  background: linear-gradient(to bottom, #071f77f7, #00000991 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
}

/* Case Study Card Interaction */
.case-study-card .infos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Padding is handled by the wrapper positioning */
  pointer-events: none; /* Let clicks pass through to link if needed, though wrapper has content */
}

.case-study-card .infos-wrapper {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  pointer-events: auto;

  /* Initially push to bottom:
       Container Height (480px) - Top/Bottom Padding Space (5rem) - My Height (100%)
       This effectively aligns the bottom of the wrapper with the bottom padding line. */
  transform: translateY(calc(430px - 5rem - 100%));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  display: flex;
  flex-direction: column;
}

/* On hover, move the entire wrapper to the top */
.case-study-card:hover .infos-wrapper {
  transform: translateY(0);
}

.case-study-card .info-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 2px; /* Small padding to prevent immediate edge clipping */
  margin: -2px; /* Compensate padding */
  transition:
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease 0.1s,
    overflow 0s 0s;
}

.case-study-card:hover .info-body {
  max-height: 300px; /* Enough to fit content */
  opacity: 1;
  margin-top: 0.5rem;
  overflow: visible;
  transition:
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease 0.1s,
    overflow 0s 0.6s;
}

.case-study-card .label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.case-study-card .title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.case-study-card .blue-line {
  width: 40px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  margin-top: 1.5rem; /* Add spacing here instead of title */
}

.case-study-card .txt {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Arrow Circle Button */
.case-study-card .arrow-circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-study-card .arrow-circle-btn:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.1);
}

/* Hover Effects */
.case-study-card:hover .thumb {
  transform: scale(1.4);
}

/* Staggered load animation delays (retained) */
.case-study-card.animate-on-scroll:nth-child(1) {
  transition-delay: 0s;
}
.case-study-card.animate-on-scroll:nth-child(2) {
  transition-delay: 0.15s;
}
.case-study-card.animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}
.case-study-card.animate-on-scroll:nth-child(4) {
  transition-delay: 0.45s;
}
.case-study-card.animate-on-scroll:nth-child(5) {
  transition-delay: 0.6s;
}
.case-study-card.animate-on-scroll:nth-child(6) {
  transition-delay: 0.75s;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Proof Section */
.social-proof-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: #000;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  letter-spacing: 0.25rem;
}

.rating-text {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #707070;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.company-logo:hover {
  color: #2563eb;
}

.company-icon {
  width: 24px;
  height: 24px;
  background: rgba(112, 112, 112, 0.3);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background: #000;
}

.why-us-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.why-us-heading {
  font-size: 52px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.why-us-description {
  color: #6d7792;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* .why-us-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
} */

/* Why Us Features Grid */
.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap between items for list view? Or keep small gap? Image implies a list look. */
  border-top: 1px solid #161c44;
}

/* Feature Card - Base Style */
.feature-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  /* background: #030014; */
  border-bottom: 1px solid #161c44;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 140px; /* Reduced height based on new image */
}

/* Hover State - Localized Bluish Blur Behind Title */
.feature-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem; /* Align near the left content */
  width: 450px;
  height: 300px;
  transform: translateY(-50%);
  /* Radial gradient simulating a soft blue glow/sun rise */
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.35) 0%,
    rgba(37, 99, 235, 0) 70%
  );
  filter: blur(30px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.feature-item:hover::after {
  opacity: 1;
}

/* Content Container (Icon + Title) */
.feature-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-grow: 1; /* Allow to take space */
  max-width: 60%; /* Limit width to leave room for description */
}

/* Icon */
.feature-icon {
  width: 48px; /* Smaller icon container */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text Content */
.feature-text-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.feature-title {
  font-size: 30px; /* Bigger */
  font-weight: 400; /* Less bold */
  color: #8b9bb4; /* Muted by default */
  transition: color 0.4s ease;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

.feature-item:hover .feature-title {
  color: #fff; /* Lighted on hover */
}

/* Description - Now positioned on the right */
.feature-description {
  position: relative; /* Changed from absolute/transform logic */
  z-index: 2;
  font-size: 0.95rem; /* Smaller text */
  color: #cbd5e1;
  line-height: 1.5;
  max-width: 400px; /* Limit width */
  opacity: 0; /* Hidden by default */
  transform: translateX(20px);
  transition: all 0.4s ease;
  margin-left: auto; /* Push to right */
  padding-left: 2rem;
  text-align: left;
}

/* Image Container (Right Side) */
.feature-image-container {
  position: absolute; /* Changed to absolute to sit on right */
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 220px; /* Smaller image */
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.feature-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Interactions */
.feature-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

/* Reveal Description on Hover */
.feature-item:hover .feature-description {
  opacity: 1;
  transform: translateX(0);
}

/* Hide Right Image on Hover */
.feature-item:hover .feature-image-container {
  opacity: 0;
  transform: translate(
    20px,
    -50%
  ); /* Slide right and keep centered vertically */
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .feature-item {
    height: auto;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .feature-content-wrapper {
    max-width: 100%;
  }

  .feature-description {
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
    opacity: 1; /* Always show on mobile */
    transform: none;
  }

  .feature-image-container {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 180px;
    margin-top: 1rem;
  }

  .feature-item:hover .feature-image-container {
    opacity: 1;
    transform: none;
  }
}

.video-section {
  background-color: #000315;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0rem 2rem;
}

.video-subtitle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.subtitle-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 300px;
}

.section-subtitle {
  text-align: center;
  color: #7a8fad;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin: 0;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 102, 255, 0.3);
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover::after {
  opacity: 1;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: filter 0.3s ease;
}

.video-container:hover .video-player {
  filter: brightness(1.1);
}

/* ===== GLOBAL RECOGNITION SECTION ==== */
/* Animated stars background */
@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: var(--star-opacity, 0.8);
  }
  90% {
    opacity: var(--star-opacity, 0.8);
  }
  100% {
    transform: translateY(-120vh) translateX(100px) scale(1);
    opacity: 0;
  }
}

.certification-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  /* background: radial-gradient(circle at center, #0B1221 0%, #00020f 100%); */
  /* Deep dark background with subtle blue center */
  overflow: hidden;
}

.certification-section .stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.certification-section .star {
  position: absolute;
  /* Size set by JS */
  background: #ffffff;
  border-radius: 50%;
  bottom: -50px; /* Start below the section */
  /* animation: name duration timing-function delay iteration-count direction fill-mode; */
  animation: bubbleUp linear infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.certification-section .star:nth-child(2n) {
  animation-duration: 12s; /* Fallback if JS fails or to add variety */
}

.certification-section .star:nth-child(3n) {
  animation-duration: 18s;
}

.certification-section .header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certification-section .subtitle-pill {
  font-size: 14px;
  color: #b0b0b0;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  display: inline-block;
}

.certification-section .subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #8b94b8;
  margin-bottom: 16px;
  /* text-transform: uppercase; */
  font-weight: 500;
}

.certification-section .title {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.certification-section .description {
  font-size: 16px;
  color: #6d7792;
  max-width: 600px;
  line-height: 1.5;
}

.certification-section .cards-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.certification-section .card {
  background: transparent;
  border-radius: 24px;
  padding: 0;
  position: relative;
  border: none;
  display: block;
  min-height: 320px;
  perspective: 1000px;
  /* Enable 3D perspective */
  box-shadow: none;
  height: 330px;
  width: 630px;
}

.certification-section .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgb(0, 6, 51);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden; /* Ensure content stays inside */
  transition:
    box-shadow 0.3s ease,
    border 0.3s ease,
    background 0.3s ease;
}

.certification-section .card:hover .card-inner {
  /* transform: rotateY(180deg); REMOVED */
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
  border: 4px solid #1a3b9b;
  background: #000;
}

.certification-section .card-front,
.certification-section .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.5s ease;
}

.certification-section .card-front {
  gap: 32px;
  z-index: 2;
  transform: rotateY(0deg);
  opacity: 1;
}

.certification-section .card-back {
  color: #cbd5e1; /* Lighter text color for readability */
  transform: rotateY(180deg);
  opacity: 0;
  z-index: 1;
  /* Alignment overrides */
  justify-content: flex-start; /* Start from top */
  align-items: flex-start; /* Start from left */
  text-align: left;
  padding: 40px 30px; /* Slight horizontal padding adjust */
}

.certification-section .card-back p {
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.01em; /* Better word spacing */
  text-align: justify; /* Justified text */
  width: 100%;
}

.certification-section .card:hover .card-front {
  transform: rotateY(-180deg);
  opacity: 0;
}

.certification-section .card:hover .card-back {
  transform: rotateY(0deg);
  opacity: 1;
}

.certification-section .card-arrow-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  z-index: 2;
  /* Ensure it stays on top if needed */
}

.certification-section .card:hover .card-front .card-arrow-icon {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.certification-section .card-arrow-icon svg {
  width: 16px;
  height: 16px;
}

.certification-section .logo-container {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 10px;
}

.certification-section .cert-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certification-section .card-label {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ==== MISSION SECTION ==== */
.mission-section {
  /* background-color: #0a0e27; */
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.mission-image {
  width: 100%;
  height: auto;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-label {
  font-size: 17px;
  color: #ccd7ff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mission-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.mission-description {
  font-size: 17px;
  color: #6c7690;
  line-height: 1.6;
}

.mission-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0066ff;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.mission-button:hover {
  background-color: #0052cc;
  transform: translateX(4px);
}

.mission-button svg {
  width: 18px;
  height: 18px;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 1s ease-out;
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-100px);
}

.slide-right {
  transform: translateX(100px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==== TOOLS SECTION ==== */
.tools-section {
  padding: 10rem 20px;
  background: #00020f;
  text-align: center;
  overflow: hidden;
}

.tools-section .header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tools-section .subtitle-pill {
  font-size: 17px;
  color: #ccd7ff;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  display: inline-block;
}

.tools-section .title {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.tools-section .description {
  font-size: 17px;
  color: #6d7792;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 auto;
}

.tools-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

/* Gradient Fade Effect */
.tools-slider::before,
.tools-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.tools-slider::before {
  left: 0;
  background: linear-gradient(to right, #00020f, transparent);
}

.tools-slider::after {
  right: 0;
  background: linear-gradient(to left, #00020f, transparent);
}

.tools-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 30s linear infinite reverse;
}

.tool-card {
  background: #030014;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-color: rgba(59, 130, 246, 0.3);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.tool-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgb(0, 6, 51);
}

.tool-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.tool-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
  min-width: 66px;
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(
      -50%
    ); /* Move by half the track width (one full set of items) */
  }
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonials-section {
  padding: 0px 20px;
  background: #00020f;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonials-section .glow-effect {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%); */
  z-index: 0;
  pointer-events: none;
}

.testimonials-section .header {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-section .subtitle-pill {
  font-size: 14px;
  color: #c4cff7;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  display: inline-block;
}

.testimonials-section .title {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.testimonials-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 0;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  padding: 0 20px;
}

.testimonial-card {
  background: rgb(0, 4, 31);
  /* Darker background */
  border-radius: 32px;
  /* Larger border radius */
  padding: 60px;
  /* Increased padding */
  min-width: 800px;
  /* Wider card */
  display: flex;
  justify-content: space-between;
  gap: 60px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
  background: rgb(0, 6, 51);
}

.testimonial-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
}

.author-info {
  margin-bottom: 32px;
}

.author-name {
  font-size: 32px;
  /* Larger name */
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.author-title {
  font-size: 16px;
  color: #8b94b8;
  font-weight: 400;
}

.testimonial-quote {
  font-size: 18px;
  /* Larger quote text */
  color: #8b94b8;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.read-more {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

.testimonial-image {
  width: 320px;
  /* Larger image container */
  height: 360px;
  background: #0047ab;
  /* Cobalt Blue */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benteler-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.benteler-logo .logo-text {
  font-size: 36px;
  /* Larger logo text */
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  font-family: sans-serif;
}

.benteler-logo .logo-subtext {
  font-size: 14px;
  font-weight: 400;
  margin-top: 6px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.benteler-logo .logo-icon {
  margin-top: 0;
  font-size: 24px;
  margin-left: 8px;
  display: inline-block;
}

.testimonials-nav {
  position: absolute;
  top: 60%;
  /* Align with card center roughly */
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  /* Allow clicking through the container */
  z-index: 10;
}

.nav-btn {
  width: 48px;
  /* Smaller size */
  height: 48px;
  border-radius: 50%;
  background: transparent;
  /* Transparent background */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  /* Subtle hover background */
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.nav-btn svg {
  width: 24px;
  /* Smaller icon */
  height: 24px;
}

/* ==== SOCIAL PROOF SECTION ==== */
.social-proof-section {
  padding: 60px 20px;
  background: #00020f;
  text-align: center;
  overflow: hidden;
}

.stars {
  color: #ffd700;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.rating-text {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 40px;
}

.companies-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 20px;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.company-logo:hover {
  opacity: 1;
  color: #fff;
}

.company-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.client-logo-image {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Responsive */
/* ===== TABLET RESPONSIVE (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  header {
    padding: 1.5rem 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .hero-heading {
    font-size: 3.5rem;
  }

  .hero-video video {
    max-width: 500px;
  }

  .case-studies-section,
  .why-us-section,
  .video-section {
    padding: 5rem 3rem !important;
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===== MOBILE RESPONSIVE (< 768px) ===== */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    flex-direction: column-reverse;
    padding: 24px;
  }

  .testimonial-image {
    width: 100%;
    height: 160px;
  }

  header {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  main {
    padding: 3rem 1.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .hero-video {
    display: none;
  }

  .hero-content {
    order: 1;
  }

  .hero-video video {
    max-width: 100%;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  /* Responsive styles for case studies section */
  .case-studies-section {
    padding: 4rem 1.5rem !important;
  }

  .case-studies-grid {
    grid-template-columns: 1fr !important;
  }

  .case-study-card {
    min-height: 300px;
  }

  .case-study-card-text {
    font-size: 1.2rem !important;
  }

  /* Responsive styles for why us section */
  .why-us-section {
    padding: 3rem 1.5rem !important;
  }

  .why-us-heading {
    font-size: 1.75rem;
  }

  .why-us-description {
    font-size: 0.95rem;
  }

  .feature-item {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-image {
    display: none;
  }

  /* Video Section Mobile */
  .video-section {
    padding: 4rem 1.5rem !important;
  }

  .video-subtitle-container {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .subtitle-line {
    max-width: 100px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .video-container {
    border-radius: 16px;
  }

  .video-container:hover {
    transform: scale(1.01);
  }

  /* Typography Mobile */
  .subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  /* Navigation Mobile */
  nav a {
    font-size: 0.9rem;
  }

  .book-meeting-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  /* ==== GLOBAL RECOGNITION SECTION ==== */
  .certification-section .title {
    font-size: 36px;
  }

  .certification-section .description {
    font-size: 16px;
  }

  .certification-section .cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certification-section .card {
    padding: 40px 30px;
  }

  /* ==== MISSION SECTION ==== */
  .mission-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-title {
    font-size: 32px;
  }

  .mission-description {
    font-size: 14px;
  }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 480px) {
  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  nav {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .book-meeting-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .hero-container {
    padding: 2rem 1rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .case-studies-heading {
    font-size: 1.5rem;
  }

  .case-studies-section,
  .why-us-section,
  .video-section {
    padding: 3rem 1rem !important;
  }

  .video-subtitle-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .subtitle-line {
    display: none;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .video-container {
    border-radius: 12px;
  }

  /* ============================================
       Inner Pages & Content Area Styling
       ============================================ */

  /* Page Content Container */
  .page-content-wrapper {
    background: linear-gradient(180deg, #0a0e27 0%, #000000 100%);
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }

  .page-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      radial-gradient(
        circle at 20% 50%,
        rgba(59, 130, 246, 0.05) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 80%,
        rgba(139, 92, 246, 0.05) 0%,
        transparent 50%
      );
    pointer-events: none;
  }

  .page-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  /* Page hero (for single pages) */
  .page-hero {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0 3rem;
  }

  .page-hero-media {
    flex: 0 0 320px;
    max-width: 35%;
  }

  .page-hero-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
    object-fit: cover;
  }

  .page-hero-inner {
    flex: 1 1 auto;
  }

  .page-subtitle {
    margin-top: 0.5rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 900px;
  }

  .article-inner {
    margin-top: 1.5rem;
    padding: 2.25rem 0 3rem;
  }

  @media (max-width: 768px) {
    .page-hero {
      flex-direction: column;
      gap: 1.25rem;
    }

    .page-hero-media {
      max-width: 100%;
      flex-basis: auto;
    }

    .page-hero-media img {
      border-radius: 8px;
    }
  }

  .page-content-container article {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  /* Entry Header */
  .entry-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
  }

  .entry-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
  }

  .entry-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Entry Content Typography */
  .entry-content {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.05rem;
  }

  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .entry-content h1 {
    font-size: 2.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .entry-content h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
  }

  .entry-content h2 {
    font-size: 2rem;
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .entry-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
    margin-left: 1.5rem;
  }

  .entry-content h3 {
    font-size: 1.5rem;
    color: #60a5fa;
    position: relative;
    padding-left: 1rem;
  }

  .entry-content h3::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 1.2rem;
  }

  .entry-content h4 {
    font-size: 1.25rem;
  }

  .entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #cbd5e1;
    font-size: 1.05rem;
  }

  .entry-content p:first-of-type {
    font-size: 1.15rem;
    color: #e2e8f0;
  }

  /* Lists */
  .entry-content ul,
  .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }

  .entry-content ul li,
  .entry-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
  }

  .entry-content ul li::marker {
    color: #3b82f6;
  }

  .entry-content ol li::marker {
    color: #3b82f6;
    font-weight: 600;
  }

  /* Links */
  .entry-content a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }

  .entry-content a:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
  }

  /* Blockquotes */
  .entry-content blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.15) 0%,
      rgba(59, 130, 246, 0.05) 100%
    );
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
  }

  .entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
  }

  .entry-content blockquote p {
    margin: 0;
    font-style: italic;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
  }

  /* Code blocks */
  .entry-content code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    color: #60a5fa;
  }

  .entry-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
  }

  .entry-content pre code {
    background: none;
    padding: 0;
  }

  /* Tables */
  .entry-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
  }

  .entry-content table th,
  .entry-content table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .entry-content table th {
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
    font-weight: 600;
  }

  .entry-content table tr:last-child td {
    border-bottom: none;
  }

  .entry-content table tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  /* Images */
  .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
  }

  .post-thumbnail {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
  }

  .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Separator */
  .entry-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    margin: 3rem 0;
  }

  /* Page Links (for paginated content) */
  .page-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    text-align: center;
  }

  .page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .page-links a:hover {
    background: #3b82f6;
  }

  /* Responsive Design for Inner Pages */
  @media (max-width: 768px) {
    .page-content-wrapper {
      padding: 3rem 0;
    }

    .page-content-container {
      padding: 0 1.5rem;
    }

    .page-content-container article {
      padding: 2rem 1.5rem;
      border-radius: 12px;
    }

    .entry-title {
      font-size: 2rem;
    }

    .entry-content h1 {
      font-size: 1.75rem;
    }

    .entry-content h2 {
      font-size: 1.5rem;
    }

    .entry-content h3 {
      font-size: 1.25rem;
    }

    .entry-content {
      font-size: 1rem;
    }

    .entry-content ul,
    .entry-content ol {
      padding-left: 1.5rem;
    }

    .entry-content blockquote {
      padding: 1rem 1.5rem;
    }

    .entry-content table {
      font-size: 0.9rem;
    }

    .entry-content table th,
    .entry-content table td {
      padding: 0.75rem 0.5rem;
    }
  }

  /* Footer */
  footer {
    padding: 3rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-heading {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }
}

/* ==== CAREER SECTION ==== */
.career-section {
  padding: 120px 20px;
  background: #00020f;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/career-full-width.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.career-section .glow-left,
.career-section .glow-right {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 71, 171, 0.4) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.career-section .glow-left {
  left: -200px;
  bottom: -200px;
}

.career-section .glow-right {
  right: -200px;
  bottom: -200px;
}

.career-section .header {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-section .subtitle-pill {
  font-size: 17px;
  color: #ccd7ff;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  display: inline-block;
}

.career-section .title {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.career-section .description {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 600px;
}

.career-section .cta-button {
  background: #0052cc;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background 0.3s ease;
}

.career-section .cta-button:hover {
  background: #0043a8;
}

/* ==== FOOTER SECTION ==== */
footer {
  background: linear-gradient(180deg, #000835 0%, #00020f 50%);
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  /* Increased gap for better spacing with larger logo */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-section {
  flex: 0 0 auto;
  /* Prevent logo section from shrinking or growing too much */
}

.footer-logo {
  width: 30vw;
  height: auto;
  display: flex;
  /* Ensure SVG behaves correctly */
}

.footer-logo svg {
  width: 260px;
  height: 160px;
  max-width: 100%;
  /* Ensure it doesn't overflow on small screens */
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  flex: 1;
  /* Allow links grid to take remaining space */
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-heading {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-column li a {
  color: #6b7280;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
  font-weight: 400;
  line-height: 25px;
}

.footer-column li a:hover {
  color: #ffffff;
}

.new-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  display: inline-block;
}

.new-text {
  color: #ffffff;
  font-size: 12px;
}

.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 0;
  gap: 100px;
  /* Match the gap of footer-content */
}

.footer-bottom-left {
  width: 30vw;
  /* Match the width of footer-logo */
  flex-shrink: 0;
  /* Prevent shrinking */
}

.copyright {
  color: #c4c8d4;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-left: auto;
  /* Push to the right */
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #161c44;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 60px;
  }

  .footer-links-grid {
    width: 100%;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 60px 20px 30px;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
  }
}

/* =========================================
   Redesigned Hero Services Section
   ========================================= */

.services-hero-redesign {
  position: relative;
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 140px 20px 100px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.services-hero-top {
  text-align: center;
  margin-bottom: 300px;
  /* Large vertical gap as per image */
  position: relative;
  z-index: 2;
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #c0c0c0;
  /* Light purple color matching "Empowering..." */
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

.services-hero-bottom {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-secondary-title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-description-container {
  display: flex;
  justify-content: center;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #8892b0;
  /* Muted grey text */
  max-width: 750px;
  margin: 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 3.5rem;
  }

  .services-hero-top {
    margin-bottom: 150px;
  }
}

@media (max-width: 768px) {
  .services-hero-redesign {
    padding-top: 80px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .services-hero-top {
    margin-bottom: 100px;
  }

  .hero-secondary-title {
    font-size: 1.75rem;
  }
}

/* =========================================
   Core Domains / Services Section
   ========================================= */

.core-domains-section {
  background-color: #030014;
  padding: 20px 20px 100px;
  color: #ffffff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.core-domains-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header Styling */
.core-domains-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 24px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.core-domains-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.core-domains-subtitle {
  font-size: 1.1rem;
  color: #8892b0;
  font-weight: 400;
  margin: 0;
}

/* Grid Layout */
.core-domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card Styling */
.domain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.domain-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(100, 50, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Inner glow effect on hover */
.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.domain-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #2696e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.domain-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}

.domain-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #8892b0;
  /* Light grey text */
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .core-domains-title {
    font-size: 2.5rem;
  }

  .core-domains-grid {
    grid-template-columns: 1fr;
    /* Stack cards on mobile */
  }
}

/* =========================================
   Innovation Section
   ========================================= */

.innovation-section {
  background-color: #030014;
  padding: 100px 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.innovation-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.innovation-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 24px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.innovation-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
}

.innovation-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #8892b0;
  margin: 0;
}

.innovation-image-wrapper {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.innovation-image {
  width: 100%;
  aspect-ratio: 1/1;
  /* Square aspect ratio as per design */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.innovation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   Trusted By Section
   ========================================= */

.trusted-by-section {
  background-color: #030014;
  padding: 60px 20px 100px;
  text-align: center;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.trusted-by-container {
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-heading {
  font-size: 1.1rem;
  color: #8892b0;
  font-weight: 400;
  margin-bottom: 40px;
}

.trusted-logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border like the image */
  border-radius: 20px;
}

.trusted-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo:hover {
  opacity: 1;
}

.trusted-logo svg {
  max-height: 32px;
  width: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .innovation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .innovation-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .innovation-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .trusted-logos-grid {
    justify-content: center;
  }
}

/* =========================================
   Advantage Section
   ========================================= */

.advantage-section {
  background-color: #030014;
  /* Keeping consistent dark theme */
  padding: 100px 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  position: relative;
  /* Deep purple glow background effect */
  background-image: radial-gradient(
    circle at 50% 30%,
    rgba(76, 29, 149, 0.15) 0%,
    rgba(3, 0, 20, 0) 60%
  );
}

.advantage-container {
  max-width: 1000px;
  margin: 0 auto;
}

.advantage-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.advantage-subtitle {
  font-size: 1.1rem;
  color: #8892b0;
  margin: 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 58, 237, 0.3);
  /* Purple border on hover */
  transform: translateY(-5px);
}

.advantage-icon {
  color: #2696e6;
  margin-bottom: 20px;
  background: rgba(124, 58, 237, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.advantage-card-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   Case Studies Preview Section
   ========================================= */

.case-studies-preview-section {
  background-color: #030014;
  padding: 80px 20px 120px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.case-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-preview-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-large {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle-large {
  font-size: 1.1rem;
  color: #94a3b8;
  margin: 0;
}

.case-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-preview-card {
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.3) 0%,
    rgba(30, 27, 75, 0.1) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
}

.case-preview-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.4) 0%,
    rgba(30, 27, 75, 0.2) 100%
  );
  transform: translateY(-5px);
}

.case-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 16px;
}

.case-card-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .case-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantage-title {
    font-size: 2.25rem;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .case-preview-grid {
    grid-template-columns: 1fr;
  }

  .section-title-large {
    font-size: 2.5rem;
  }
}

/* =========================================
   Contact Us Section
   ========================================= */

.contact-us-section {
  background-color: #030014;
  padding: 80px 20px 140px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.contact-us-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container {
  background: rgba(10, 10, 35, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #64748b;
}

.contact-submit {
  background: #2563eb;
  color: white;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-submit:hover {
  background: #1d4ed8;
}

/* Contact Form 7 Integration Styles */
.contact-form-wrapper {
  background: rgba(10, 10, 35, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 48px;
  margin-top: 60px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  color: #f8fafc;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
  margin-top: 8px;
  box-sizing: border-box;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: #64748b;
}

.contact-form-wrapper label {
  color: #94a3b8;
  margin-bottom: 10px;
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-wrapper input[type="submit"] {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-form-wrapper input[type="submit"]:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* CF7 Response Messages */
.wpcf7-response-output {
  border-radius: 8px;
  padding: 16px !important;
  margin: 20px 0 0 !important;
  font-size: 0.9rem;
  text-align: left;
}

.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: -15px;
  margin-bottom: 15px;
  display: block;
  text-align: left;
}

/* Form Layout Helpers */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 24px;
  }
}

/* =========================================
   Career Hero Section
   ========================================= */

.career-hero-section {
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 140px 20px 100px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  text-align: center;
}

.career-hero-top {
  margin-bottom: 300px;
  position: relative;
  z-index: 2;
}

.career-main-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.career-subtitle {
  font-size: 1.1rem;
  color: #c0c0c0;
  font-weight: 400;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.01em;
}

.career-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.career-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.career-btn-primary {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.career-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.career-btn-secondary {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.career-hero-bottom {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.career-secondary-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.career-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #8892b0;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.career-btn-explore {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.career-btn-explore:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

/* Responsive */
@media (max-width: 1024px) {
  .career-main-title {
    font-size: 3.5rem;
  }

  .career-hero-top {
    margin-bottom: 150px;
  }
}

@media (max-width: 768px) {
  .career-hero-section {
    padding-top: 80px;
  }

  .career-main-title {
    font-size: 2.5rem;
  }

  .career-hero-top {
    margin-bottom: 100px;
  }

  .career-secondary-title {
    font-size: 1.75rem;
  }

  .career-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .career-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================================
   Why Join InfinitiBit Section
   ========================================= */

.why-join-section {
  background-color: #030014;
  padding: 100px 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.why-join-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.3) 0%,
    rgba(30, 27, 75, 0.1) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.4) 0%,
    rgba(30, 27, 75, 0.2) 100%
  );
  transform: translateY(-5px);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   Open Positions Section
   ========================================= */

.open-positions-section {
  background-color: #030014;
  padding: 80px 20px 120px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.positions-container {
  max-width: 900px;
  margin: 0 auto;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.position-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.position-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.position-info {
  flex: 1;
  text-align: left;
}

.position-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.position-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 12px;
}

.position-type {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.position-apply-btn {
  background: #2563eb;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.position-apply-btn:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .position-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .position-apply-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   Life at InfinitiBit Section
   ========================================= */

.life-at-section {
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 100px 20px 140px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.life-at-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.4) 0%,
    rgba(30, 27, 75, 0.15) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.5) 0%,
    rgba(30, 27, 75, 0.25) 100%
  );
  transform: translateY(-5px);
}

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   About Us Hero Section
   ========================================= */

.aboutus-hero-section {
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 140px 20px 200px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  text-align: center;
}

.aboutus-hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.aboutus-main-title {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.aboutus-subtitle {
  font-size: 1.05rem;
  color: #c0c0c0;
  font-weight: 400;
  margin: 0 auto 2.5rem;
  max-width: 800px;
  line-height: 1.7;
  opacity: 0.9;
}

.aboutus-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.aboutus-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.aboutus-btn-primary {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.aboutus-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.aboutus-btn-secondary {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.aboutus-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   Our Mission Section
   ========================================= */

.our-mission-section {
  background-color: #030014;
  padding: 100px 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-content {
  text-align: left;
}

.mission-title {
  font-size: 52px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #8892b0;
  margin-bottom: 1.5rem;
}

.mission-text:last-child {
  margin-bottom: 0;
}

.mission-image-wrapper {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .aboutus-main-title {
    font-size: 3.5rem;
  }

  .mission-container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .aboutus-hero-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .aboutus-main-title {
    font-size: 2.5rem;
  }

  .aboutus-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .aboutus-btn {
    width: 100%;
    max-width: 300px;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-title {
    font-size: 2.25rem;
  }

  .mission-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* =========================================
   Our Impact Section
   ========================================= */

.our-impact-section {
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 100px 20px 120px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.impact-stat-card {
  background: linear-gradient(
    135deg,
    rgba(40, 30, 90, 0.4) 0%,
    rgba(20, 15, 50, 0.3) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.impact-stat-card:hover::before {
  opacity: 1;
}

.impact-stat-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px -10px rgba(124, 58, 237, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #a0a0b8;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* =========================================
   Our Products Section
   ========================================= */

.our-products-section {
  background-color: #030014;
  padding: 100px 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.products-container {
  max-width: 1000px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.3) 0%,
    rgba(30, 27, 75, 0.1) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.4) 0%,
    rgba(30, 27, 75, 0.2) 100%
  );
  transform: translateY(-5px);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
}

.product-features li {
  font-size: 0.9rem;
  color: #e0e0e0;
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.product-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-weight: bold;
}

.product-btn {
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.product-btn:hover {
  background: #1d4ed8;
}

/* =========================================
   Our Values Section (Company Values)
   ========================================= */

.our-values-section {
  background-color: #00020f;
  background-image: radial-gradient(circle at 50% 20%, #00020f 0%, #00020f 50%);
  padding: 100px 20px 140px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.values-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.company-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.company-value-card {
  background: linear-gradient(
    135deg,
    rgba(40, 30, 90, 0.35) 0%,
    rgba(20, 15, 50, 0.25) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.company-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.company-value-card:hover::before {
  opacity: 1;
}

.company-value-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 10px 35px -10px rgba(124, 58, 237, 0.25);
}

.company-value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.company-value-desc {
  font-size: 0.95rem;
  color: #9ca3b8;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .company-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Product Section Styles */
.hero-product-section {
  background-color: #020412;
  /* Deep dark background matching the image */
  color: #ffffff;
  padding: 8rem 2rem 6rem;
  /* Top padding to account for header, bottom for spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  justify-content: center;
}

.hero-product-content {
  margin-bottom: 12rem;
  /* Spacing between top hero and bottom informational text */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-product-title {
  font-size: 5rem;
  /* Large headline size */
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-product-subtitle {
  font-size: 1.125rem;
  color: #b0b0b0;
  /* Light grey for subtitle */
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-product-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn.btn-primary {
  background-color: #2563eb;
  /* Blue button */
  color: #ffffff;
  border: 1px solid #2563eb;
}

.hero-btn.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.hero-btn.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Bottom Section Styles */
.hero-product-bottom {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-product-bottom-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-product-bottom-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .hero-product-title {
    font-size: 3rem;
  }

  .hero-product-content {
    margin-bottom: 6rem;
  }

  .hero-product-bottom-title {
    font-size: 1.8rem;
  }
}

/* Two Platforms Section Styles */
.two-platforms-container {
  width: 100%;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two-platforms-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  /* color: #b0b0b0; */
  font-weight: 300;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 6rem;
}

.platform-card {
  background: rgba(5, 10, 35, 0.6);
  /* Very dark blueish background */
  border: 1px solid rgba(30, 58, 138, 0.3);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.platform-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
}

.platform-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.platform-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.platform-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.platform-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e2e8f0;
  /* Bullet color */
}

.platform-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.platform-btn:hover {
  background-color: #1d4ed8;
}

/* Integrations & Standards */
.integrations-section {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.integrations-title {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.integrations-bar {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
}

.integration-item {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .integrations-bar {
    gap: 1.5rem;
    justify-content: center;
  }
}

/* Built to Win Section */
.built-to-win-section {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 8rem;
  max-width: 900px;
  padding: 0 1rem;
}

.section-title-small {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.section-desc-small {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-primary-small {
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-primary-small:hover {
  background-color: #1d4ed8;
}

/* Featured Case Studies Stats */
.case-studies-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 8rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-text {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.case-studies-grid-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.case-study-stat-card {
  background: linear-gradient(
    135deg,
    rgba(10, 15, 50, 0.95) 0%,
    rgba(5, 8, 30, 0.98) 100%
  );
  border: 1px solid rgba(50, 70, 150, 0.25);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.3);
}

.stat-card-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 500;
  color: #ffffff;
  min-width: 100px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-text {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.5;
}

/* Ready to Spark Section */
.ready-to-spark-section {
  text-align: center;
  padding-bottom: 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-title-large {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-desc-medium {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 3rem;
}

.spark-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.spark-btn {
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 140px;
  text-align: center;
}

.btn-blue {
  background-color: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}

.btn-blue:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.spark-btn.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.2);
}

.spark-btn.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .case-studies-grid-stats {
    grid-template-columns: 1fr;
  }

  .section-title-large,
  .center-text {
    font-size: 2.5rem;
  }
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.privacy-content {
  color: #d1d5db;
  font-size: 1.15rem;
  line-height: 1.85;
  text-align: justify;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
  color: #fff;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.privacy-content h2 {
  font-size: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.privacy-content h3 {
  font-size: 1.5rem;
  color: #e5e7eb;
  margin-top: 2.5rem;
}

.privacy-content p {
  margin-bottom: 2rem;
}

.privacy-content ul,
.privacy-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.5rem;
}

.privacy-content ul li::marker {
  color: #3b82f6;
}

.privacy-content a {
  color: #3b82f6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.privacy-content a:hover {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

.privacy-content strong {
  color: #fff;
  font-weight: 600;
}

.privacy-content blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #9ca3af;
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

@media (max-width: 768px) {
  .glass-panel {
    padding: 1.5rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }
}

/* ===== HEADER LAYOUT FIX ===== */
header.site-header {
  width: 100%;
  max-width: none;
  padding: 0;
  display: block;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

/* Ensure site content allows full width backgrounds */
.site-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #00020f;
}

/* Fix Typography for Legal Pages */
.privacy-policy-page h1,
.privacy-policy-page h2,
.privacy-policy-page h3,
.privacy-policy-page h4,
.privacy-policy-page h5,
.privacy-policy-page h6 {
  color: #ffffff !important;
}

.privacy-policy-page .hero-heading {
  color: #ffffff !important;
}

/* Accessibility */
.skip-to-content {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: #000;
  color: #fff;
  padding: 1rem;
  z-index: 9999;
}

.skip-to-content:focus {
  top: 0;
  left: 0;
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero-section {
  background-color: #00020f;
  padding: 8rem 2rem;
  color: #fff;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.contact-hero-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.contact-hero-description {
  color: #9ca3af;
  margin-bottom: 4rem;
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper {
  background: rgba(10, 10, 25, 0.4);
  border: 1px solid rgba(50, 50, 90, 0.3);
  border-radius: 16px;
  padding: 3rem;
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  margin-top: 2rem;
}

.contact-hero-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.form-group {
  width: 100%;
}

.contact-form-input {
  width: 100%;
  background-color: #18181b;
  /* Very dark grey/zinc */
  border: none;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-input:focus {
  background-color: #27272a;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}

.contact-form-input::placeholder {
  color: #71717a;
  font-weight: 500;
}

textarea.contact-form-input {
  resize: vertical;
  min-height: 200px;
}

.contact-submit-btn {
  width: 100%;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  padding: 1.25rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background-color: #1d4ed8;
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.25rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* Fix CF7 Response Output Visibility */
.wpcf7-response-output {
  border: none !important;
  padding: 0 !important; /* Remove padding to ensure it takes no space when empty */
  margin: 0 !important;
}

.wpcf7-response-output:not(:empty) {
  padding: 1rem !important; /* Add padding back only when there is content */
  margin: 1rem 0 !important;
}

/* Cookies Policy Styling */
.post-content h2,
.entry-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.post-content h3,
.entry-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d2d2d;
}

.post-content p,
.entry-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

.post-content ul,
.entry-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-content li,
.entry-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.post-content a,
.entry-content a {
  color: #0045e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content a:hover,
.entry-content a:hover {
  color: #0032a8;
  text-decoration: underline;
}

.post-content hr,
.entry-content hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

.post-content strong,
.entry-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Cookies Policy Page Specific Styling */
.page-template-default .entry-content h2,
.single-post .entry-content h2 {
  color: #fff;
  font-size: 1.8rem;
  border-left: 4px solid #0045e6;
  padding-left: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page-template-default .entry-content h2:first-child,
.single-post .entry-content h2:first-child {
  margin-top: 0;
}

.page-template-default .entry-content h3,
.single-post .entry-content h3 {
  color: #e0e0e0;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

.page-template-default .entry-content h3::before,
.single-post .entry-content h3::before {
  display: none;
}

.page-template-default .entry-content p,
.single-post .entry-content p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.page-template-default .entry-content ul li,
.single-post .entry-content ul li {
  color: #d0d0d0;
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.page-template-default .entry-content a,
.single-post .entry-content a {
  color: #0045e6;
  font-weight: 500;
}

.page-template-default .entry-content a:hover,
.single-post .entry-content a:hover {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

.page-template-default .entry-content hr,
.single-post .entry-content hr {
  border: none;
  border-top: 1px solid #404040;
  margin: 2.5rem 0;
}

.page-template-default .entry-content strong,
.single-post .entry-content strong {
  color: #fff;
}

/* Cookies Policy - Bullet Points Fix */
.page-template-default .entry-content ul,
.single-post .entry-content ul {
  margin: 1.5rem 0 1.5rem 2.5rem;
  padding-left: 0;
  list-style: disc;
}

.page-template-default .entry-content ul li,
.single-post .entry-content ul li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  position: relative;
  color: #d0d0d0;
  padding-left: 0.5rem;
}

.page-template-default .entry-content ul li::marker,
.single-post .entry-content ul li::marker {
  color: #0045e6;
  font-weight: 600;
}

.page-template-default .entry-content ol,
.single-post .entry-content ol {
  margin: 1.5rem 0 1.5rem 2.5rem;
  padding-left: 0;
  list-style: decimal;
}

.page-template-default .entry-content ol li,
.single-post .entry-content ol li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  position: relative;
  color: #d0d0d0;
  padding-left: 0.5rem;
}

.page-template-default .entry-content ol li::marker,
.single-post .entry-content ol li::marker {
  color: #0045e6;
  font-weight: 600;
}
