/* Scroll to Top Button Styles */

/* * {
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
} */

.scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(30, 41, 59, 0.18);
  border-radius: 50%;
  padding: 0;
  transition: opacity 0.2s;
  opacity: 0.85;
}
.scroll-to-top-btn:hover {
  opacity: 1;
  box-shadow: 0 6px 24px 0 rgba(252, 175, 23, 0.18);
}
@media (max-width: 700px) {
  .scroll-to-top-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}
/* Responsive for FREE ASSESSMENT section */
.assessment-btns {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.assessment-btn {
  min-width: 220px;
}
@media (max-width: 700px) {
  .assessment-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .assessment-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/* Marquee logo uniform size, grayscale, and hover effect */
/* 3. Space from left and right side */

.marquee {
  overflow: hidden;
  padding: 20px 0;
  margin: 0 0px; /* Adjust this value for more/less side spacing */
  position: relative;

  /* 4. Disappearing/Appearing effect using a mask gradient */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
  gap: 40px;
  will-change: transform; /* Helps browser optimize the animation */
}

/* Ensure the ULs don't have extra padding/margin interfering with the gap */
.marquee-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Moves exactly half of the total content width */
    transform: translateX(-50%);
  }
}

.marquee-logo {
  width: 140px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  transition:
    filter 0.4s,
    background 0.4s;
  background: transparent;
  border-radius: 8px;
  display: block;
}

.marquee-logo:hover {
  filter: grayscale(0%) brightness(1.2);
  background: rgba(255, 255, 255, 0.1);
}

body {
  background: #05070d;
  font-family: "Inter", sans-serif;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

/* LIST */
.slider .list {
  position: relative;
  height: 100%;
}

/* CARD BASE */
.item {
  position: absolute;
  width: 380px;
  height: 520px;
  top: 0;
  left: calc(50% - 140px);

  border-radius: 20px;
  overflow: hidden;

  background: linear-gradient(180deg, #0b111a, #06090f);
  border: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

/* IMAGE */
.card-img {
  position: relative;
  height: 180px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #06090f);
}

/* BODY */
.card-body {
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 180px);
}

/* TITLE */
.card-body h2 {
  font-size: 1.2rem;
  color: #fcbf2d;
  margin-bottom: 8px;
}

/* TEXT */
.card-body p {
  font-size: 0.85rem;
  color: #a8b0bd;
  flex-grow: 1;
}

/* METRICS */
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.metrics span {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  color: #fcbf2d;
}

/* POSITIONS */
.item:nth-child(1) {
  transform: translateX(-300px) scale(0.8);
  opacity: 0.5;
}
.item:nth-child(2) {
  transform: translateX(-150px) scale(0.9);
  opacity: 0.7;
}
.item:nth-child(3) {
  transform: translateX(0px) scale(1);
  opacity: 1;
  z-index: 2;
}
.item:nth-child(4) {
  transform: translateX(150px) scale(0.9);
  opacity: 0.7;
}
.item:nth-child(5) {
  transform: translateX(300px) scale(0.8);
  opacity: 0.5;
}

/* HOVER */
.item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(255, 184, 0, 0.2);
}

/* BUTTONS */
#prev,
#next {
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.05);
  color: #fff;

  backdrop-filter: blur(10px);
  transition: 0.3s;
}

#prev {
  left: 40px;
}
#next {
  right: 40px;
}

#prev:hover,
#next:hover {
  background: rgba(255, 184, 0, 0.2);
}

/* RESPONSIVE BREAKPOINT */
@media screen and (max-width: 768px) {
  .slider {
    height: 500px; /* Give a bit more room for text */
  }

  .item {
    width: 240px; /* Slightly narrower cards */
    height: 380px;
    left: calc(50% - 120px);
  }

  /* Adjust positions so they fit on mobile screens */
  .item:nth-child(1) {
    transform: translateX(-160px) scale(0.7);
    opacity: 0; /* Hide the furthest cards to avoid clutter */
    pointer-events: none;
  }
  .item:nth-child(2) {
    transform: translateX(-80px) scale(0.85);
    opacity: 0.6;
    z-index: 1;
  }
  .item:nth-child(3) {
    transform: translateX(0px) scale(1);
    opacity: 1;
    z-index: 2;
  }
  .item:nth-child(4) {
    transform: translateX(80px) scale(0.85);
    opacity: 0.6;
    z-index: 1;
  }
  .item:nth-child(5) {
    transform: translateX(160px) scale(0.7);
    opacity: 0;
    pointer-events: none;
  }

  /* Adjust Buttons for Mobile */
  #prev,
  #next {
    top: 85%; /* Move buttons below the cards */
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  #prev {
    left: 30%;
  }
  #next {
    right: 30%;
  }
}

body {
  scroll-behavior: smooth;
}

:root {
  /* Primary Brand */
  --gold: #fcbf2d;
  --gold-soft: #ffd86b;
  --gold-deep: #c6921a;

  /* Background */
  --bg-main: #0c0c0f;
  --bg-elevated: rgba(255, 255, 255, 0.03);

  /* Glass */
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-top-line: rgba(255, 255, 255, 0.16);

  /* Text */
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);

  /* Glow */
  --glow-gold: rgba(252, 191, 45, 0.35);
  --glow-soft: rgba(252, 191, 45, 0.18);
}

/* Base */
body {
  background: var(--bg-main);
  color: var(--text-primary);
}

/* Ambient Background Orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -80px;
  background: rgba(252, 191, 45, 0.25);
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: 0;
  right: -60px;
  background: rgba(252, 191, 45, 0.12);
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 40%;
  background: rgba(255, 220, 120, 0.08);
}

/* Section */
.reviews-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "DM Sans", sans-serif;
}

/* Heading */
.heading-block {
  text-align: center;
  margin-bottom: 56px;
}

.label {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.heading-block h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.heading-block h2 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Carousel */
.carousel-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track-wrap {
  padding: 30px 0 50px;
}

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Glass Card */
.glass-card {
  flex: 0 0 380px; /* increased from 320 */
  min-height: 320px;
  background: var(--card-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  position: relative;
  transition:
    transform 0.42s ease,
    box-shadow 0.42s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Premium border glow */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, var(--gold), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.glass-card:hover::before {
  opacity: 0.6;
}

.glass-card:hover {
  transform: translateY(-14px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 40px var(--glow-gold);
}

/* Accent Bar */
.accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover .accent-bar {
  opacity: 1;
}

.bar-purple,
.bar-blue,
.bar-violet {
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-soft),
    var(--gold),
    transparent
  );
}

/* Card Header */
.card-header {
  padding: 28px 30px 20px;
  border-bottom: 1px solid rgba(252, 191, 45, 0.25);
  position: relative;
}

.card-index {
  font-family: "Syne", sans-serif;
  font-size: 10px;
  color: var(--text-muted);
}

.card-name {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-role {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.stars {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.stars svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

/* Quote */
.quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  top: 10px;
  right: 20px;
  color: var(--gold);
  opacity: 0.85;
  position: absolute;
}

/* Card Body */
.card-body {
  padding: 22px 26px 26px;
}

.card-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: var(--gold);
  color: #000;
}

/* Dots */
.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  width: 24px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 10px var(--glow-gold);
}

/* Responsive */
@media (max-width: 700px) {
  .glass-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 480px) {
  .glass-card {
    flex: 0 0 calc(100vw - 60px);
  }
}

/* video scrolling */
/* === Vertical (desktop default) === */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-scroll-up {
  animation: scroll-up 20s linear infinite;
}
.animate-scroll-down {
  animation: scroll-down 20s linear infinite;
}

/* Pause on hover (desktop) */
.group:hover .animate-scroll-up,
.group:hover .animate-scroll-down {
  animation-play-state: paused;
}

/* === Horizontal (mobile override) === */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  /* Switch grid container to vertical flex of rows */
  .max-w-7xl > div {
    display: flex !important;
    flex-direction: column;

    height: auto;
  }

  /* Each "column" div becomes a horizontal row */
  .animate-scroll-up {
    flex-direction: row !important;
    animation: scroll-left 20s linear infinite;
  }

  .animate-scroll-down {
    flex-direction: row !important;
    animation: scroll-right 20s linear infinite;
    padding-top: 0 !important;
    padding-left: 60px; /* stagger offset replaces md:pt-20 */
  }

  /* Video cards go fixed-width instead of fixed-height */
  .video-card {
    flex-shrink: 0;
    width: 60vw; /* adjust to taste */
    height: 110px;
  }

  /* Swap gradient overlays: left/right instead of top/bottom */
  .absolute.bottom-0 {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 24px;
    height: 100%;
    background: linear-gradient(to left, #0b0c10, transparent) !important;
  }
  .absolute.top-0 {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    /* width: 0px; */
    height: 100%;
    background: linear-gradient(to right, #0b0c10, transparent) !important;
  }
}

.navbar {
  width: 100%;
  background: #07090a;
  height: 64px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.logo img {
  display: block;
}

/* Links */
.navbar-links ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 8px 16px;
  border: 2px solid #16191b;
  border-radius: 50px;
  margin-left: 0px;
}

.navbar-links ul li a {
  text-decoration: none;
  color: #c1c3c3;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-links ul li a:hover {
  color: #12161f;
  background-color: #fcaf17;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
}

/* CTA */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #1d2027;
  background: #14171b;
  border-radius: 8px;
  padding: 4px 12px;
}

.navbar-cta a {
  text-decoration: none;
  color: #c1c3c3;
  font-weight: 600;
  padding: 8px 16px;
  transition: color 0.3s;
}

.navbar-cta a:hover {
  color: #fcaf17;
}

.navbar-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hamburger */
.navbar-toggle {
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: 0.3s ease-in-out;
}
.getInTouch {
  width: 20%;
}
.activeBtn {
  background: #fcaf17 !important; /* highlight color */
  color: #fff !important; /* text contrast */
  font-weight: 700;
}

.autoShow {
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 10% cover 100vh;
}
.newsLetterbtn {
  background-color: #fcaf17;
  color: #fff;
  padding: 0px 20px 0px 20px;
  border-radius: 10px;
  border: none;
  height: 50px;
  cursor: pointer;
}
.returnBoxOne {
  width: 80%;
}
@keyframes text-appear {
  from {
    opacity: 0;
    /* transform: translateY(400px); */
    scale: 0.8;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  animation: fadeUp 0.6s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(-300px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}

.fadeUp2 {
  animation: fadeUp2 0.6s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}
@keyframes fadeUp2 {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
.fadeUp3 {
  animation: fadeUp3 0.6s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
@keyframes fadeUp3 {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}

.paraAnimation {
  animation: paraAni 0.6s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
@keyframes paraAni {
  from {
    opacity: 0;
    transform: translateX(-600px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}

.hidden {
  opacity: 0;
  transition: all 3s;
}
.show {
  opacity: 1;
}

.hamburgerIcon {
  display: none;
}
.benifitsSection {
  gap: 10px;
  width: 10%;
}
.PaidAidsBox {
  color: #666b73;
  width: 30%;
  border-radius: 7px;
}
.OurClientsSection {
  gap: 20px;
  width: 15%;
  margin-top: 40px;
}
.card-section {
  position: relative;
  width: 990px;
  height: 500px;
}

.card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    z-index 0.4s ease;
  padding-bottom: 130px;
  margin-bottom: 30px;
}
.CardOneImage {
  width: 400px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}
.cardOnePara {
  font-size: 16px;
  width: 70%;
  color: #727680;
}
.cardOneGradient {
  background: linear-gradient(#06090f, #0c1016);
  border-radius: 10px;
}
.ApproachSection {
  gap: 20px;
  width: 15%;
  margin-top: 40px;
}
.reviewSection {
  gap: 20px;
  width: 15%;
  margin-top: 40px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 10fr);
  gap: 20px;
}
.comparisonSection {
  gap: 20px;
  width: 15%;
  margin-top: 40px;
}
.gridTwo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 30px;
}
.faqSection {
  gap: 6px;
  width: 6%;
  margin-top: 40px;
}
.questionSection {
  gap: 30px;
}
.questions {
  width: 45%;
}
.responsiveGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  gap: 20px;
}
.ContactForm {
  width: 516px;
  height: 800px;
  background: linear-gradient(to right, #04070d, #05080e, #0c0f16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  padding-top: 25px;
  border-top: 2px solid #2f363f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-left: 1px solid #1d222b;
  border-right: 1px solid #1d222b;
  border-bottom: 1px solid #0a0d13;
}
.ContactEmailUs {
  background: linear-gradient(to right, #04070d, #05080e, #0c0f16);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 20px;
  padding-top: 25px;
  border-top: 2px solid #2f363f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-left: 1px solid #1d222b;
  border-right: 1px solid #1d222b;
  border-bottom: 1px solid #0a0d13;
  width: 452px;
  height: 204px;
  gap: 20px;
}
.ContactUsQuestionBox {
  width: 400px;
  height: 300px;
  padding: 10px;
}
.faqQuestionBookBox {
  padding: 5px 10px 5px 10px;
  border-radius: 8px;
}
.ContactFAQ {
  width: 80%;
}
.faq {
  background: linear-gradient(#06090f, #0c1016);
  width: 368px;
  height: 300px;
}
.contactUsStillHaveQuestionSection {
  width: 368px;
  height: 252px;
  padding: 0px 10px 0px 10px;
}

.stairCase {
  gap: 20px;
  width: 60%;
}

@media (max-width: 480px) {
  .stairCase {
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .getInTouch {
    width: 100%;
    text-align: center;
  }
  #automotiveDealershipPerformance {
    display: flex;
    flex-direction: column;
  }
  #stairText {
    font-size: 15px;
  }
  #stairSection {
    display: flex;
    flex-direction: column;
  }
  #paidAdImg {
    width: 100%;
    height: 100%;
  }
  .icons {
    width: 100%;
    height: 100%;
  }
  .navbar-links,
  .navbar-cta {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #07090a;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 0px 0;
    z-index: 1000; /* make sure it's above other elements */
  }

  /* .navbar-links ul {
    flex-direction: column;
    gap: 20px;
    border: none;
  } */
  .navbar-links ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    border: none;
    /* padding: 8px 16px; */
    /* border: 2px solid #16191b; */
    /* border-radius: 50px; */
    /* margin-left: 120px; */
  }
  .navbar-cta {
    margin-top: 20px;
    border-radius: 0;
  }

  .navbar-toggle {
    display: block; /* show hamburger on mobile */
    z-index: 1100; /* keep button clickable */
  }

  /* 👇 must come after display:none so it overrides it */
  .navbar-links.active {
    display: flex !important;
  }
  .navbar-cta.active {
    display: flex !important;
    margin-top: 127px;
    width: 100%;
    flex-direction: row;
    gap: 7px;
    padding: 0px;
    align-items: center;
    justify-content: center;
  }

  .desktopNavbar {
    display: none;
  }
  .desktopNavbar2 {
    display: none;
  }
  .hamburgerIcon {
    display: block;
  }
  .heroSection {
    width: 80%;
  }
  .heroSectionPara {
    text-align: left;
    font-size: 17px;
    padding: 20px;
  }
  .heroSectionPara2 {
    font-size: 25px;
  }
  .heroSection2 {
    width: 70%;
  }
  .responsiveImg {
    width: 30px;
    height: 20px;
  }
  .returnsSection {
    width: 85%;
  }
  .returnSectionPara {
    font-size: 25px;
  }
  .returnSectionPara2 {
    font-size: 17px;
    width: 80%;
  }
  .returnSectionBoxes {
    display: flex;
    flex-direction: column;
  }
  .returnBoxOne {
    width: 80%;
  }
  .svgImages {
    width: 50px;
    height: 50px;
  }
  .benifitsSection {
    gap: 10px;
    width: 30%;
  }
  .BenifitsSectionPara2 {
    width: 100%;
    font-size: 17px;
  }
  .benifitsBoxes {
    display: flex;
    flex-direction: column;
  }
  .processSection {
    display: flex;
    flex-direction: column;
  }
  .processSectionActive {
    display: flex;
    flex-direction: column;
  }
  .PaidAidsBox {
    color: #666b73;
    width: 30%;
    border-radius: 7px;
    width: 80%;
  }
  .OurClientsSection {
    gap: 20px;
    width: 50%;
    margin-top: 40px;
  }
  .card-section {
    position: relative;
    width: 100%;
    height: 1050px;
  }

  .card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition:
      transform 0.4s ease,
      z-index 0.4s ease;
    padding-bottom: 130px;
  }
  #card3 {
    /* background: linear-gradient(135deg, #f7971e, #ffd200); */
    background: #04070d;
    border-top: 2px solid #38404a;
    border-left: 1px solid #191e26;
    border-right: 1px solid #191e26;
    border-bottom: 1px solid #191e26;
  }
  .card:nth-child(1) {
    transform: translateY(-170px);
    z-index: 1;
  }
  .card:nth-child(2) {
    transform: translateY(-140px);
    z-index: 2;
  }
  .card:nth-child(3) {
    transform: translateY(-100px);
    z-index: 3;
  }

  /* Active card on top */
  .card.active {
    transform: translateY(-60px) scale(1.05);
    z-index: 10;
  }
  .CardOneImage {
    width: 400px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
  }
  .carasoulSectionBoxes {
    display: flex;
    flex-direction: column;
  }
  .cardOnePara {
    font-size: 16px;
    width: 100%;
    color: #727680;
  }
  .cardOneGradient {
    background: linear-gradient(#06090f, #0c1016);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
  }
  .ApproachSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .reviewSection {
    gap: 20px;
    width: 45%;
    margin-top: 40px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .responsiveGrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
  }
  .comparisonSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .gridTwo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 30px;
  }
  .faqSection {
    gap: 6px;
    width: 35%;
    margin-top: 40px;
  }
  .questionSection {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  .question1Box {
    width: 100%;
  }
  .questions {
    width: 90%;
  }
  .footerSection {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footerPara {
    text-align: center;
  }
  .contactFormSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .ContactForm {
    width: 100%;
  }
  .ContactEmailUs {
    width: 100%;
  }
  .TwoBox {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
  .ContactRespPara {
    font-size: 16px;
    text-align: center;
  }
  .ContactUsQuestions {
    display: flex;
    flex-direction: column;
  }
  .ContactUsQuestionBox {
    width: 100%;
    height: 252px;
    padding: 10px;
  }
  .faqQuestionBookBox {
    font-size: 12px;
    border-radius: 8px;
  }
  .ContactFooterSection {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ContactUsLastSection {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .questionsContact {
    width: 100%;
  }
  .faq {
    background: linear-gradient(#06090f, #0c1016);
    width: 311px;
    height: 340px;
  }
  .questionPara {
    font-size: 14px;
  }
  .autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
  }
  @keyframes text-appear {
    from {
      opacity: 0;
      /* transform: translateY(400px); */
      scale: 0.8;
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUp {
    animation: fadeUp 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateX(-300px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .fadeUp2 {
    animation: fadeUp2 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp2 {
    from {
      opacity: 0;
      transform: translateX(80px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
  .fadeUp3 {
    animation: fadeUp3 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes fadeUp3 {
    from {
      opacity: 0;
      transform: translateX(80px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .paraAnimation {
    animation: paraAni 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes paraAni {
    from {
      opacity: 0;
      transform: translateX(-600px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .stairCase {
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .getInTouch {
    width: 100%;
    text-align: center;
  }
  #stairText {
    font-size: 18px;
  }
  .navbar-links,
  .navbar-cta {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #07090a;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000; /* make sure it's above other elements */
  }

  /* .navbar-links ul {
    flex-direction: column;
    gap: 20px;
    border: none;
  } */
  .navbar-links ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    border: none;
    /* padding: 8px 16px; */
    /* border: 2px solid #16191b; */
    /* border-radius: 50px; */
    /* margin-left: 120px; */
  }

  .navbar-cta {
    margin-top: 20px;
    border-radius: 0;
  }

  .navbar-toggle {
    display: block; /* show hamburger on mobile */
    z-index: 1100; /* keep button clickable */
  }

  /* 👇 must come after display:none so it overrides it */
  .navbar-links.active {
    display: flex !important;
  }
  .navbar-cta.active {
    display: flex !important;
    margin-top: 160px;
    width: 100%;
    flex-direction: row;
    gap: 7px;
    padding: 0px;
    align-items: center;
    justify-content: center;
  }

  .desktopNavbar {
    display: none;
  }
  .desktopNavbar2 {
    display: none;
  }
  .hamburgerIcon {
    display: block;
  }
  .heroSection {
    width: 80%;
  }
  .heroSectionPara {
    text-align: center;
    font-size: 17px;
    padding: 40px;
  }
  .heroSectionPara2 {
    font-size: 25px;
  }
  .heroSection2 {
    width: 70%;
  }
  .responsiveImg {
    width: 30px;
    height: 20px;
  }
  .returnsSection {
    width: 85%;
  }
  .returnSectionPara {
    font-size: 25px;
  }
  .returnSectionPara2 {
    font-size: 17px;
    width: 80%;
  }
  .returnSectionBoxes {
    display: flex;
    flex-direction: column;
  }
  .returnBoxOne {
    width: 80%;
  }
  .svgImages {
    width: 50px;
    height: 50px;
  }
  .benifitsSection {
    gap: 10px;
    width: 30%;
  }
  .BenifitsSectionPara2 {
    width: 100%;
    font-size: 17px;
  }
  .benifitsBoxes {
    display: flex;
    flex-direction: column;
  }
  .processSection {
    display: flex;
    flex-direction: column;
  }
  .processSectionActive {
    display: flex;
    flex-direction: column;
  }
  .PaidAidsBox {
    color: #666b73;
    width: 30%;
    border-radius: 7px;
    width: 80%;
  }
  .OurClientsSection {
    gap: 20px;
    width: 50%;
    margin-top: 40px;
  }
  .card-section {
    position: relative;
    width: 100%;
    height: 600px;
  }

  .card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition:
      transform 0.4s ease,
      z-index 0.4s ease;
    padding-bottom: 130px;
  }
  #card3 {
    /* background: linear-gradient(135deg, #f7971e, #ffd200); */
    background: #04070d;
    border-top: 2px solid #38404a;
    border-left: 1px solid #191e26;
    border-right: 1px solid #191e26;
    border-bottom: 1px solid #191e26;
  }
  .card:nth-child(1) {
    transform: translateY(-170px);
    z-index: 1;
  }
  .card:nth-child(2) {
    transform: translateY(-140px);
    z-index: 2;
  }
  .card:nth-child(3) {
    transform: translateY(-100px);
    z-index: 3;
  }

  /* Active card on top */
  .card.active {
    transform: translateY(-60px) scale(1.05);
    z-index: 10;
  }
  .CardOneImage {
    width: 400px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
  }
  .carasoulSectionBoxes {
    display: flex;
    flex-direction: row;
  }
  .cardOnePara {
    font-size: 16px;
    width: 100%;
    color: #727680;
  }
  .cardOneGradient {
    background: linear-gradient(#06090f, #0c1016);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .ApproachSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .reviewSection {
    gap: 20px;
    width: 45%;
    margin-top: 40px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
  .responsiveGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }

  .comparisonSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .gridTwo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 30px;
  }
  .faqSection {
    gap: 6px;
    width: 35%;
    margin-top: 40px;
  }
  .questionSection {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  .question1Box {
    width: 100%;
  }
  .questions {
    width: 100%;
  }
  .footerSection {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footerPara {
    text-align: center;
  }
  .contactFormSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
  }
  @keyframes text-appear {
    from {
      opacity: 0;
      /* transform: translateY(400px); */
      scale: 0.8;
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUp {
    animation: fadeUp 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateX(-300px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .fadeUp2 {
    animation: fadeUp2 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp2 {
    from {
      opacity: 0;
      transform: translateX(100px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
  .fadeUp3 {
    animation: fadeUp3 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes fadeUp3 {
    from {
      opacity: 0;
      transform: translateX(100px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .paraAnimation {
    animation: paraAni 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes paraAni {
    from {
      opacity: 0;
      transform: translateX(-600px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .getInTouch {
    width: 100%;
    text-align: center;
  }
  #stairText {
    font-size: 18px;
  }
  .navbar-links,
  .navbar-cta {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #07090a;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000; /* make sure it's above other elements */
  }

  .navbar-links ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    border: none;
    /* padding: 8px 16px; */
    /* border: 2px solid #16191b; */
    /* border-radius: 50px; */
    /* margin-left: 120px; */
  }

  .navbar-cta {
    margin-top: 20px;
    border-radius: 0;
  }

  .navbar-toggle {
    display: block; /* show hamburger on mobile */
    z-index: 1100; /* keep button clickable */
  }

  /* 👇 must come after display:none so it overrides it */
  .navbar-links.active {
    display: flex !important;
  }
  .navbar-cta.active {
    display: flex !important;
    margin-top: 200px;
    width: 100%;
    flex-direction: row;
    gap: 7px;
    padding: 0px;
    align-items: center;
    justify-content: center;
  }
  .desktopNavbar {
    display: none;
  }
  .desktopNavbar2 {
    display: none;
  }
  .hamburgerIcon {
    display: block;
  }
  .heroSection {
    width: 80%;
  }
  .heroSectionPara {
    text-align: center;
    font-size: 17px;
    padding: 40px;
  }
  .heroSectionPara2 {
    font-size: 25px;
  }
  .heroSection2 {
    width: 70%;
  }
  .responsiveImg {
    width: 30px;
    height: 20px;
  }
  .returnsSection {
    width: 85%;
  }
  .returnSectionPara {
    font-size: 25px;
  }
  .returnSectionPara2 {
    font-size: 17px;
    width: 80%;
  }
  .returnSectionBoxes {
    display: flex;
    flex-direction: column;
  }
  .returnBoxOne {
    width: 80%;
  }
  .svgImages {
    width: 50px;
    height: 50px;
  }
  .benifitsSection {
    gap: 10px;
    width: 30%;
  }
  .BenifitsSectionPara2 {
    width: 100%;
    font-size: 17px;
  }
  .benifitsBoxes {
    display: flex;
    flex-direction: column;
  }
  .processSection {
    display: flex;
    flex-direction: column;
  }
  .processSectionActive {
    display: flex;
    flex-direction: column;
  }
  .PaidAidsBox {
    color: #666b73;
    width: 30%;
    border-radius: 7px;
    width: 80%;
  }
  .OurClientsSection {
    gap: 20px;
    width: 50%;
    margin-top: 40px;
  }
  .card-section {
    position: relative;
    width: 100%;
    height: 600px;
  }

  .card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition:
      transform 0.4s ease,
      z-index 0.4s ease;
    padding-bottom: 130px;
  }
  #card3 {
    /* background: linear-gradient(135deg, #f7971e, #ffd200); */
    background: #04070d;
    border-top: 2px solid #38404a;
    border-left: 1px solid #191e26;
    border-right: 1px solid #191e26;
    border-bottom: 1px solid #191e26;
  }
  .card:nth-child(1) {
    transform: translateY(-170px);
    z-index: 1;
  }
  .card:nth-child(2) {
    transform: translateY(-140px);
    z-index: 2;
  }
  .card:nth-child(3) {
    transform: translateY(-100px);
    z-index: 3;
  }

  /* Active card on top */
  .card.active {
    transform: translateY(-60px) scale(1.05);
    z-index: 10;
  }
  .CardOneImage {
    width: 400px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
  }
  .carasoulSectionBoxes {
    display: flex;
    flex-direction: row;
  }
  .cardOnePara {
    font-size: 16px;
    width: 100%;
    color: #727680;
  }
  .cardOneGradient {
    background: linear-gradient(#06090f, #0c1016);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .ApproachSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .reviewSection {
    gap: 20px;
    width: 45%;
    margin-top: 40px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
  .responsiveGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }

  .comparisonSection {
    gap: 20px;
    width: 60%;
    margin-top: 40px;
  }
  .gridTwo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 30px;
  }
  .faqSection {
    gap: 6px;
    width: 35%;
    margin-top: 40px;
  }
  .questionSection {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  .question1Box {
    width: 100%;
  }
  .questions {
    width: 100%;
  }
  .footerSection {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .footerPara {
    text-align: left;
  }
  .contactFormSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
  }
  @keyframes text-appear {
    from {
      opacity: 0;
      /* transform: translateY(400px); */
      scale: 0.8;
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUp {
    animation: fadeUp 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateX(-300px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .fadeUp2 {
    animation: fadeUp2 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }
  @keyframes fadeUp2 {
    from {
      opacity: 0;
      transform: translateX(100px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
  .fadeUp3 {
    animation: fadeUp3 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes fadeUp3 {
    from {
      opacity: 0;
      transform: translateX(100px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }

  .paraAnimation {
    animation: paraAni 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes paraAni {
    from {
      opacity: 0;
      transform: translateX(-600px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateX(0px) scale(1);
    }
  }
  .footerLast {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background-color: yellow; */
  }
  .mainFooterDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .desktopNavbar2 {
  }
  .navbutton {
    padding: 0px;
    font-size: 12px;
  }
  .returnSectionBoxes {
    display: flex;
    flex-direction: column;
  }
}

/* scroll bar */
/* For WebKit browsers (Chrome, Safari, Opera) */
::-webkit-scrollbar {
  width: 12px; /* Adjust scrollbar width as desired */
}

::-webkit-scrollbar-track {
  background-color: transparent; /* Transparent background for the track */
}

::-webkit-scrollbar-thumb {
  background-color: #fcaf17; /* Scrollbar thumb color */
  border-radius: 6px; /* Rounded corners for the thumb */
}

/* For Firefox */
/* Note: Firefox's scrollbar-color property styles both the thumb and track.
To achieve a transparent track, we're effectively styling the thumb. */
.my-scrollable-element {
  scrollbar-color: #fcaf17 transparent; /* thumb color track color */
  scrollbar-width: thin; /* Adjust width as desired: auto, thin, none */
}

/* Example of applying the custom scrollbar to a specific div */
.my-scrollable-element {
  height: 300px;
  width: 80%;
  margin: 50px auto;
  overflow-y: scroll; /* Enable vertical scrolling for this div */
  border: 1px solid #ccc;
  padding: 20px;
  background-color: white;
}

/* --- Responsive for Services Section (How Stratmedia Can Help You) --- */
/* Custom Scroll / Layout fixes if needed */
.services-card {
  /* This prevents the card from feeling "heavy" */
  backdrop-filter: blur(10px);
}

.services-card h2 {
  /* Using a more modern font weight */
  font-family: "Inter", sans-serif;
}

@media (max-width: 992px) {
  .services-cards-row {
    flex-direction: column !important;
    align-items: center;
    gap: 24px !important;
  }
  .services-card {
    width: 90% !important; /* Mobile sizing */
    max-width: 450px;
  }
}

@media (max-width: 600px) {
  .services-card {
    padding: 24px !important;
    border-radius: 20px !important;
  }
  .services-card h2 {
    font-size: 1.5rem !important;
  }
}

.blog-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #04070d;
}

.blog-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fcaf17;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #04070d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border: 1px solid #293039;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.blog-content {
  margin-top: 15px;
}

.blog-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fcaf17;
}

.blog-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.blog-full-content {
  font-size: 1rem;
  color: #5e6773;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Success Stories Cards Responsive */
  .case-study-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }
  .case-study-card > div:last-child {
    width: 100% !important;
    max-width: 100% !important;
    height: 180px !important;
  }
  .case-study-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .case-study-card {
    padding: 18px !important;
    gap: 18px !important;
  }
  .case-study-card h3 {
    font-size: 1.1rem !important;
  }
  .case-study-card p {
    font-size: 0.95rem !important;
  }
  .case-study-card .metric-box {
    min-width: 80px !important;
    padding: 8px 10px !important;
  }
  .case-study-card > div:last-child {
    height: 120px !important;
  }
}
.linkColor a:hover {
  color: #fcaf17;
}

@font-face {
  font-family: "Vaulto";
  src: url("./src/assets/fonts/Vaulto-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

#heading1 {
  font-family: "Vaulto", sans-serif;
}

/* .marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} */
