.hero-section {
    width: 100%;
    height: 100vh;
    padding: 1rem;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    z-index: 1;
}

#hero-waves {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    width: calc(100% - 2rem);
    height: calc(100% - 1rem);
    pointer-events: auto;
    z-index: 2;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    pointer-events: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: radial-gradient(
        ellipse at center,
        transparent 45%,
        rgba(0, 145, 255, 0.05) 75%,
        rgba(0, 187, 255, 0.1) 100%
    );
    z-index: 3;
}

.hero-bottom-fade {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 25%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(243, 251, 255, 0.35) 35%,
        rgba(243, 251, 255, 0.75) 70%,
        rgb(243, 251, 255) 100%
    );
    pointer-events: none;
    z-index: 4;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 8%;
    box-sizing: border-box;
    text-align: center;
    pointer-events: none;
    z-index: 4;
}

/* ========================================================
   DEFAULT WEBSITE STANDARD TYPOGRAPHY
   ======================================================== */
.hero-content h1 {
    margin: 0 auto 2rem;
    max-width: 1200px;
    font-size: clamp(2.8rem, 5vw, 4.8rem); /* Standard large Hero display */
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: rgb(0, 0, 71);
}

.hero-content h1 .idea-line {
    display: block;
    margin-top: 0.35rem;
}

.hero-content h1 .font-txt {
    display: inline-block;
    font-family: "RusticRoadway", Georgia, serif;
    font-weight: normal;
    font-size: 1.15em;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: baseline;
    position: relative;
    top: 0.35em;
    margin-left: 0.1em;
    color: rgb(103, 0, 0);
}

/* Standard readable paragraph defaults (18px - 20px) */
.hero-content p {
    max-width: 860px;
    margin: 0 auto 1.25rem;
    font-size: clamp(1.05rem, 1.25vw, 1.25rem); /* 17px - 20px standard */
    line-height: 1.7;
    color: rgb(0, 6, 74);
}

.hero-content strong {
    color: rgb(0, 0, 71);
    font-weight: 700;
}

/* CTA Buttons with standard touch sizing */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    margin-top: 2.5rem;
    pointer-events: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem; /* Default standard 16px font size */
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-btn span {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn:hover span {
    transform: translateX(4px);
}

.hero-btn.primary {
    background: white;
    color: #06152f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-btn.secondary {
    color: #06152f;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.center-aura-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    width: clamp(380px, 50vw, 750px);
    height: clamp(380px, 50vw, 750px);
    background: radial-gradient(
        circle,
        rgba(147, 197, 253, 0.38) 0%,
        rgba(192, 132, 252, 0.24) 45%,
        transparent 70%
    );
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: 
        auraZoomIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
        auraPulse 6s ease-in-out 1.5s infinite alternate;
}

@keyframes auraZoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
}

@keyframes auraPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.65;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 0.95;
    }
}

/* ========================================================
   MOBILE & TABLET (<= 768px)
   ======================================================== */
@media (max-width: 768px) {
    .hero-section { padding: 0.5rem; height: 90vh; }
    .hero-section::after { top: 0.5rem; left: 0.5rem; right: 0.5rem; bottom: 0; }
    #hero-waves { top: 0.5rem; left: 0.5rem; right: 0.5rem; width: calc(100% - 1rem); height: calc(100% - 0.5rem); }
    .hero-bottom-fade { left: 0.5rem; right: 0.5rem; height: 25%; }
    .hero-content { top: 48%; padding: 0 1.25rem; }
    /* Standard readable mobile heading (32px - 36px) */
    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.35rem); line-height: 1.22; margin-bottom: 1.4rem; }
    .hero-content h1 .font-txt { font-size: 1.05em; top: 0.3em; }
    /* Standard readable mobile paragraph (16px base) */
    .hero-content p { font-size: 1rem; /* 16px default browser standard */ line-height: 1.6; margin-bottom: 0.85rem; }
    .center-aura-glow { top: 36%; width: 300px; height: 300px; filter: blur(30px); }
    .hero-buttons { flex-direction: column; gap: 0.9rem; width: 100%; margin-top: 1.8rem; }
    .hero-btn { width: 100%; max-width: 320px; padding: 0.95rem 1.4rem; font-size: 0.95rem; /* ~15.2px on mobile */ }
}
/* Section 2 Starts */

/* ========================================================
   SECTION 2: VISION & FOUNDER SECTION
   ======================================================== */
.vision-section {
    position: relative;
    padding: 7rem 6% 8rem;
    background: #fbfcfe;
    z-index: 10;
}

.vision-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

/* Vision Content */
.vision-tagline {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #810000;
    margin-bottom: 1.5rem;
}
.clr{color: rgb(0, 3, 159);}
.vision-quote {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.45;
    font-weight: 500;
    color: #000047;
    margin: 0 0 2.2rem;
    letter-spacing: -0.02em;
}

.vision-author {
    display: flex;
    justify-content: right;
    gap: 0.8rem;
    width: 100%;
}

.author-dash {
    font-size: 1.4rem;
    color: #670000;
    line-height: 1;
}

.author-details {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7a006f;
    font-family: "RusticRoadway", sans-serif;
}

.author-title {
    font-size: 0.92rem;
    color: #5d6778;
    margin-top: 0.15rem;
}

/* Video Card & Trigger */
.vision-media {
    position: relative;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0, 0, 71, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0, 0, 71, 0.14);
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-cover {
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 21, 47, 0.1) 0%, rgba(6, 21, 47, 0.55) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

/* Pulsing Play Button */
.play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000047;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    animation: playPulse 2.2s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.3s ease;
}

.play-btn svg {
    margin-left: 3px;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
}

@keyframes playPulse {
    to {
        box-shadow: 0 0 0 24px rgba(255, 255, 255, 0);
    }
}

.play-label {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ========================================================
   FULL SCREEN VIDEO LIGHTBOX MODAL
   ======================================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 9, 24, 0.92);
    backdrop-filter: blur(12px);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2.2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.modal-video-container {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 1080px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.open .modal-video-container {
    transform: scale(1);
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .vision-container { grid-template-columns: 1fr; gap: 3rem; }
    .vision-section { padding: 5rem 6% 6rem; }
}

@media (max-width: 768px) {
    .vision-section { padding: 4rem 1.2rem 5rem; }
    .vision-quote { font-size: 1.28rem; margin-bottom: 1.6rem; }
    .video-card { aspect-ratio: 16 / 10; border-radius: 14px; }
    .modal-close { top: 1.2rem; right: 1.2rem; width: 42px; height: 42px; }
    .modal-video-container { width: 95%; }
}

/* Section 2 Ends */

/* Section 3 Starts */

/* =======================================================
   SECTION 3: OUR SERVICES (PERMANENT COLORS + HOVER MOVE)
======================================================= */
.services-section {
  position: relative;
  background-color: #f7f9fd;
  padding: 100px 24px 130px;
  overflow: hidden;
  color: #1e293b;
}

.services-container {
  max-width: 1220px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4f46e5;
  margin-bottom: 22px;
}

.section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #4f46e5;
  border-radius: 50%;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin: 0;
}

/* 3-Column Symmetrical Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 32px;
  justify-content: center;
}

@media (min-width: 1025px) {
  .services-grid .svc-card-wrapper:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
    width: 100%;
  }
  .services-grid .svc-card-wrapper:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 50%;
    width: 100%;
  }
}

/* =======================================================
   CARD WRAPPER & PERMANENT OFFSET SHADOW PLATE
======================================================= */
.svc-card-wrapper {
  position: relative;
  border-radius: 28px;
  display: flex;
  perspective: 1000px;
  cursor: pointer;
}

/* Permanent Back Layer Plate */
.card-back-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  transform: translate(6px, 12px); /* Always visible offset */
  opacity: 0.85;                     /* Always visible */
  z-index: 1;
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              box-shadow 0.35s ease;
}

/* Main Front Card */
.svc-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 380px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  overflow: hidden;
}

/* Radial Glow Mesh Tint (Permanently Active) */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  opacity: 1; /* Always active */
  pointer-events: none;
  z-index: 0;
}

.svc-card > * {
  position: relative;
  z-index: 1;
}

/* Number Label */
.card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

/* Squircle Icon Container */
.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

/* Typography */
.card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.card-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 12px;
  line-height: 1.4;
}

.card-desc {
  font-size: 0.92rem;
  line-height: 1.62;
  color: #64748b;
  margin: 0 0 28px;
  flex-grow: 1;
}

/* Link */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s ease, transform 0.25s ease;
}

.svc-link .arrow {
  transition: transform 0.25s ease;
}

/* =======================================================
   PERMANENT COLOR STYLES (SCREENSHOT REPLICATION)
======================================================= */

/* Theme: Cyan (Website Dev) */
.theme-cyan .card-icon-box { background: #e0f2fe; color: #0284c7; box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2); }
.theme-cyan .card-back-plate { background: #bae6fd; }
.theme-cyan .svc-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(224, 242, 254, 0.85) 0%, rgba(255, 255, 255, 0.9) 70%);
}
.theme-cyan .svc-link { color: #0284c7; }

/* Theme: Orange / CRM (Software Dev) */
.theme-orange .card-icon-box { background: #ffedd5; color: #ea580c; box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2); }
.theme-orange .card-back-plate { background: #fed7aa; }
.theme-orange .svc-card::before {
  background: radial-gradient(circle at 25% 20%, rgba(255, 237, 213, 0.9) 0%, rgba(255, 247, 237, 0.65) 50%, #ffffff 90%);
}
.theme-orange .svc-link { color: #ea580c; }

/* Theme: Teal (Digital Marketing) */
.theme-teal .card-icon-box { background: #ccfbf1; color: #0d9488; box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2); }
.theme-teal .card-back-plate { background: #99f6e4; }
.theme-teal .svc-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(204, 251, 241, 0.85) 0%, rgba(255, 255, 255, 0.9) 70%);
}
.theme-teal .svc-link { color: #0d9488; }

/* Theme: Violet (Mobile App Dev) */
.theme-violet .card-icon-box { background: #f3e8ff; color: #9333ea; box-shadow: 0 8px 20px rgba(147, 51, 234, 0.2); }
.theme-violet .card-back-plate { background: #e9d5ff; }
.theme-violet .svc-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(243, 232, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 70%);
}
.theme-violet .svc-link { color: #9333ea; }

/* Theme: Purple (AI & Data) */
.theme-purple .card-icon-box { background: #ede9fe; color: #6366f1; box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2); }
.theme-purple .card-back-plate { background: #c7d2fe; }
.theme-purple .svc-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(237, 233, 254, 0.9) 0%, rgba(255, 255, 255, 0.9) 70%);
}
.theme-purple .svc-link { color: #6366f1; }

/* =======================================================
   HOVER DYNAMIC MOVEMENT
======================================================= */
.svc-card-wrapper:hover .card-back-plate {
  transform: translate(10px, 18px); /* Backplate drops further back */
  opacity: 1;
  box-shadow: 0 20px 38px -6px rgba(0, 0, 0, 0.12);
}

.svc-card-wrapper:hover .card-icon-box {
  transform: translateY(-2px) scale(1.08);
}

.svc-card-wrapper:hover .svc-link .arrow {
  transform: translateX(6px);
}

/* =======================================================
   SCROLL REVEAL INITIAL STATES
======================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .svc-card-wrapper:nth-child(4),
  .services-grid .svc-card-wrapper:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 3 Ends */

/* Section 4 Starts */

/* =======================================================
   SECTION 4: 3-LOGO CONTINUOUS MARQUEE (SMOOTH DEFAULT SPEED)
======================================================= */
.clients-section {
  position: relative;
  background-color: #ffffff;
  padding: 85px 24px 5px;
  overflow: hidden;
  color: #1e293b;
}

.clients-container {
  max-width: 1220px;
  margin: 0 auto;
}

/* Header */
.clients-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 50px;
}

.clients-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4f46e5;
  margin-bottom: 22px;
}

.clients-header .section-pill .pill-dot {
  width: 10px;
  height: 10px;
  background: #4f46e5;
  border-radius: 50%;
}

.clients-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin: 0;
}

/* 
   EXACTLY 3-LOGOS VIEWPORT:
   3 cards (160px each) + 2 gaps (28px each) = 536px
*/
.marquee-three-viewport {
  position: relative;
  width: 100%;
  max-width: 936px;
  margin: 0 auto;
  overflow: hidden;
  padding: 16px 0 28px;
}

/* Smooth edge gradient masks */
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(270deg, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
}

/* 
   Continuous Moving Track:
   Changed to 24s for a smooth, relaxed corporate glide
*/
.marquee-continuous-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 24s linear infinite;
  will-change: transform;
}

/* Pause track when hovered */
.marquee-three-viewport:hover .marquee-continuous-track {
  animation-play-state: paused;
}

/* Logo Group */
.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

/* Logo Card */
.client-logo-card {
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

/* SVG Logo */
.client-logo {
  width: 40px;
  height: 40px;
  fill: #94a3b8;
  transition: fill 0.3s ease, transform 0.3s ease;
}

/* Hover State */
.client-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 14px 28px -6px rgba(99, 102, 241, 0.16),
              0 6px 12px -2px rgba(0, 0, 0, 0.04);
}

.client-logo-card:hover .client-logo {
  fill: #4f46e5;
  transform: scale(1.12);
}
.client-logo-card {
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 18px;
  border: 1px solid rgba(39, 59, 84, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.client-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 95px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.65;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* Hover */
.client-logo-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(42, 109, 245, 0.35);
  box-shadow:
    0 12px 30px rgba(42, 109, 245, 0.12),
    0 0 0 1px rgba(42, 109, 245, 0.05);
}

.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
/* =======================================================
   LEFT-TO-RIGHT CONTINUOUS LOOP KEYFRAMES
======================================================= */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.s4-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.s4-fade-up {
  transform: translateY(40px);
}

.s4-scale-in {
  transform: translateY(30px) scale(0.96);
}

.s4-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .marquee-three-viewport {
    max-width: 276px;
  }
  .client-logo-card {
    width: 130px;
    height: 78px;
    border-radius: 16px;
  }
  .marquee-group {
    gap: 16px;
    padding-right: 16px;
  }
  .client-logo {
    width: 32px;
    height: 32px;
  }
  .marquee-continuous-track {
    animation-duration: 18s;
  }
}

/* Section 4 Ends */




/* Sectiopn 6 Starts */

/* =======================================================
   SECTION 6: TESTIMONIALS SLIDER WITH DOTS
======================================================= */
.testimonials-section {
  position: relative;
  background-color: #f7f9fd;
  padding: 100px 24px 130px;
  overflow: hidden;
  color: #1e293b;
}

.testimonials-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}

.testimonials-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4f46e5;
  margin-bottom: 20px;
}

.testimonials-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #4f46e5;
  border-radius: 50%;
}

.testimonials-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.testimonials-header .section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Slider Viewport */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

.testimonials-viewport {
  overflow: hidden;
  padding: 20px 10px 40px;
  margin: 0 -10px;
}

/* Sliding Track */
.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Slide item layout: 3 per view desktop, 2 tablet, 1 mobile */
.testi-slide {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 16px;
  box-sizing: border-box;
}

/* Card Wrapper & Offset Colored Plate */
.testi-card-wrapper {
  position: relative;
  border-radius: 28px;
  display: flex;
  perspective: 1000px;
  cursor: grab;
}

.testi-card-wrapper:active {
  cursor: grabbing;
}

.testi-card-wrapper .card-back-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  transform: translate(6px, 12px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              box-shadow 0.35s ease;
}

/* Main Front Testimonial Card */
.testi-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 330px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
  overflow: hidden;
}

/* Permanent Soft Radial Mesh Tint */
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}

.testi-card > * {
  position: relative;
  z-index: 1;
}

/* Header Row: Stars + Quote Mark */
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.star-rating {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
  display: flex;
}

.quote-icon {
  font-size: 2.6rem;
  line-height: 1;
  font-family: serif;
  color: #cbd5e1;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Review Text */
.testi-text {
  font-size: 0.94rem;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 26px;
  flex-grow: 1;
  font-style: italic;
}

/* Author Section */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}

.author-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 2px;
}

.author-role {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

/* =======================================================
   COLOR THEMES
======================================================= */
/* Cyan */
.theme-cyan .card-back-plate { background: #bae6fd; }
.theme-cyan .avatar-cyan { background: #e0f2fe; color: #0284c7; }
.theme-cyan .testi-card::before {
  background: radial-gradient(circle at 20% 15%, rgba(224, 242, 254, 0.85) 0%, rgba(255, 255, 255, 0.92) 70%);
}

/* Orange */
.theme-orange .card-back-plate { background: #fed7aa; }
.theme-orange .avatar-orange { background: #ffedd5; color: #ea580c; }
.theme-orange .testi-card::before {
  background: radial-gradient(circle at 20% 15%, rgba(255, 237, 213, 0.85) 0%, rgba(255, 255, 255, 0.92) 70%);
}

/* Teal */
.theme-teal .card-back-plate { background: #99f6e4; }
.theme-teal .avatar-teal { background: #ccfbf1; color: #0d9488; }
.theme-teal .testi-card::before {
  background: radial-gradient(circle at 20% 15%, rgba(204, 251, 241, 0.85) 0%, rgba(255, 255, 255, 0.92) 70%);
}

/* Violet */
.theme-violet .card-back-plate { background: #e9d5ff; }
.theme-violet .avatar-violet { background: #f3e8ff; color: #9333ea; }
.theme-violet .testi-card::before {
  background: radial-gradient(circle at 20% 15%, rgba(243, 232, 255, 0.85) 0%, rgba(255, 255, 255, 0.92) 70%);
}

/* Purple */
.theme-purple .card-back-plate { background: #c7d2fe; }
.theme-purple .avatar-purple { background: #ede9fe; color: #6366f1; }
.theme-purple .testi-card::before {
  background: radial-gradient(circle at 20% 15%, rgba(237, 233, 254, 0.85) 0%, rgba(255, 255, 255, 0.92) 70%);
}

/* Hover Dynamics */
.testi-card-wrapper:hover .card-back-plate {
  transform: translate(10px, 18px);
  opacity: 1;
  box-shadow: 0 20px 38px -6px rgba(0, 0, 0, 0.12);
}

.testi-card-wrapper:hover .author-avatar {
  transform: scale(1.08);
}

.testi-card-wrapper:hover .quote-icon {
  color: #94a3b8;
  transform: scale(1.1);
}

/* =======================================================
   BOTTOM DOT NAVIGATION
======================================================= */
.slider-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot:hover {
  background: #94a3b8;
}

.slider-dot.active {
  width: 32px;
  background: #4f46e5;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.s6-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.s6-fade-up {
  transform: translateY(40px);
}

.s6-scale-in {
  transform: translateY(30px) scale(0.97);
}

.s6-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Tablet: 2 slides */
@media (max-width: 1024px) {
  .testi-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: 1 slide */
@media (max-width: 680px) {
  .testi-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 8px;
  }
}

/* Section 6 Ends */

/* Section 7 Starts */

/* =======================================================
   SECTION: OUR PROCESS (CLEAN ALIGNMENT & LOGO READY)
======================================================= */
.process-section {
  position: relative;
  background-color: #ffffff;
  padding: 130px 24px 140px; /* Generous top padding prevents sticky header overlap */
  overflow: hidden;
  color: #1e293b;
}

.process-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 40px;
}

/* Vertical Left Title */
.process-vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 40px 10px 0 0;
  user-select: none;
  flex-shrink: 0;
  z-index: 2;
}

.process-vertical-title .txt-dark {
  color: #1e293b;
}

.process-vertical-title .txt-orange {
  color: #2116f9;
}

/* Main Graphic Stage Container */
.process-stage {
  position: relative;
  flex-grow: 1;
  min-height: 820px;
  width: 100%;
}

/* =======================================================
   CENTER COMPANY LOGO AREA (REPLACES CIRCLE BACKGROUND)
======================================================= */
.process-brand-center {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.brand-logo-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
  border-radius: 50%;
}

.brand-logo-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.85;
}

.brand-sub-txt {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}
.brand-logo-slot {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-brand-logo {
  width: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-logo-slot:hover .process-brand-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(79, 70, 229, 0.45));
}

.brand-sub-txt {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #273b54;
  letter-spacing: 0.5px;
}
/* =======================================================
   MOVING ANIMATED DOTTED CONNECTOR LINES (SVG)
======================================================= */
.process-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.moving-dotted-line {
  stroke: #334155;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: moveDotsFlow 1.6s linear infinite;
}

@keyframes moveDotsFlow {
  from {
    stroke-dashoffset: 32;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* =======================================================
   PROCESS STEP CARDS
======================================================= */
.proc-step {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 380px;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.proc-step:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 32px -8px rgba(99, 102, 241, 0.12);
}

.step-icon-wrap {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: transform 0.3s ease;
}

.proc-step:hover .step-icon-wrap {
  transform: scale(1.08);
}

.sketch-icon {
  width: 100%;
  height: 100%;
}

.step-body {
  flex-grow: 1;
}

.step-heading {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Accurate Layout Coordinates */
.step-meet {
  top: 15px;
  left: 0;
}

.step-plan {
  top: 75px;
  left: 450px;
}

.step-design {
  top: 290px;
  right: 0;
}

.step-testing {
  bottom: 120px;
  left: 430px;
}

.step-launch {
  bottom: 20px;
  left: 0;
}

/* =======================================================
   SUB-CARD: WHO IS BEHIND THE WORK?
======================================================= */
.center-team-card {
  position: absolute;
  top: 48%;
  left: 180px;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 16px 22px 18px;
  border-radius: 22px;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.center-team-card:hover {
  transform: translateY(calc(-50% - 4px));
}

.dev-sketch-art {
  width: 105px;
  height: 72px;
  margin: 0 auto 6px;
}

.team-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
}

.team-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #4f16f9;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.team-link:hover {
  color: #400cea;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.proc-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.proc-fade-left {
  transform: translateX(-40px);
}

.proc-scale-in {
  transform: scale(0.97) translateY(30px);
}

.proc-reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1100px) {
  .process-section {
    padding: 90px 20px 100px;
  }
  .process-container {
    flex-direction: column;
    gap: 20px;
  }
  .process-vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2.2rem;
    padding: 0;
    margin-bottom: 20px;
  }
  .process-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .process-brand-center,
  .process-connectors {
    display: none; /* Collapses into a clean vertical stack on smaller devices */
  }
  .proc-step {
    position: static;
    max-width: 100%;
    width: 100%;
  }
  .center-team-card {
    position: static;
    transform: none;
    margin: 10px auto 0;
    max-width: 320px;
  }
  .center-team-card:hover {
    transform: translateY(-4px);
  }
}

/* Section 7 Ends */

/* Section 8 Starts */

/* =======================================================
   FAQ SECTION STYLING
======================================================= */
.faq-section {
  position: relative;
  background-color: #ffffff;
  padding: 110px 24px 130px;
  overflow: hidden;
  color: #1e293b;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.faq-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4f46e5;
  margin-bottom: 22px;
}

.faq-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #4f46e5;
  border-radius: 50%;
}

.faq-header .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.faq-header .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Accordion Wrapper */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual Accordion Card */
.faq-item {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease,
              background-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 24px -6px rgba(99, 102, 241, 0.08);
}

.faq-item.active {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 14px 30px -8px rgba(79, 70, 229, 0.12);
}

/* Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.faq-q-text {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-item.active .faq-q-text {
  color: #4f46e5;
}

/* Icon / Chevron Indicator */
.faq-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #eef2ff;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              color 0.3s ease;
}

.faq-item.active .faq-icon-box {
  background: #4f46e5;
  color: #ffffff;
  transform: rotate(45deg); /* Turns the '+' into an 'x' */
}

/* Answer Body (Animated Accordion Collapse) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 28px 26px;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-answer-inner p {
  margin: 0;
}

/* Bullet list inside answer */
.faq-bullet-list {
  margin: 12px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-bullet-list li {
  position: relative;
  list-style: none;
  padding-left: 8px;
}

.faq-bullet-list li::before {
  content: '•';
  color: #4f46e5;
  font-weight: 800;
  position: absolute;
  left: -12px;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.faq-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-fade-up {
  transform: translateY(35px);
}

.faq-scale-in {
  transform: translateY(25px) scale(0.98);
}

.faq-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustment */
@media (max-width: 640px) {
  .faq-section {
    padding: 80px 18px 95px;
  }
  
  .faq-question {
    padding: 20px 20px;
  }

  .faq-q-text {
    font-size: 0.98rem;
  }

  .faq-answer-inner {
    padding: 0 20px 22px;
    font-size: 0.91rem;
  }
}

/* Section 8 ENds */