:root {
  --color-bg: #000;
  --color-text: #eae9e9;
  --color-white: #ffffff;

  --font-main: 'Plus Jakarta Sans', sans-serif;

  --heading-xl: 60px;
  --heading-lg: 50px;
  --text-base: 16px;

  --section-gap: 120px;

  --fw-semibold: 600;
}

/* =====================
   GLOBAL STYLES
===================== */

body {
  background-color: var(--color-bg);
  font-family: var(--font-main);
  color: var(--color-text);
}

.section {
  padding: 40px;
  margin-top: var(--section-gap) 0;
}

.container-custom {
  max-width: 1460px;
  margin: 0 auto;
  padding: 10px 16px;
}

/* =====================
   TYPOGRAPHY
===================== */

.heading-xl {
  font-size: var(--heading-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.heading-lg {
  font-size: var(--heading-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.text-base {
  font-size: var(--text-base);
  color: var(--color-text);
}

@media (max-width: 992px) {
  :root {
    --heading-xl: 48px;
    --heading-lg: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --heading-xl: 36px;
    --heading-lg: 30px;
    --text-base: 15px;
  }
}

@media (max-width: 576px) {
  :root {
    --heading-xl: 30px;
    --heading-lg: 24px;
    --text-base: 14px;
  }
}
/* =====================
   HERO SECTION
===================== */

.hero-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Bootstrap row control */
.hero-row {
  min-height: 724px;
  align-items: center;
}

/* =====================
   BACKGROUND (VIDEO)
===================== */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.section.cta-section {
  background: transparent;
}

/* overlay (slightly left-focused like Figma) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 30%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* =====================
   CONTENT
===================== */

.hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.hero-content .heading-xl {
  line-height: 1.1;
}

.hero-content .text-base {
  line-height: 1.6;
}

/* =====================
   BUTTON
===================== */

.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 24px;
  border-radius: 30px;

  background: #0d5ea6;
  color: #fff;

  font-weight: var(--fw-semibold);
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-custom:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* =====================
   RIGHT COLUMN (STATS FIX)
===================== */

/* remove floating behavior */
.hero-stats {
  position: static;
  width: 100%;
}

/* align stats vertically center inside col */
.stats-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}

/* TRACK */
.stats-track {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: max-content;
  animation: scrollStats 20s linear infinite;
  /* margin-top: 20rem !important; */
}

/* CARD */
.stat-card {
min-width: 220px;
    padding: 5px 20px 0px;
    border-radius: 18px 18px 18px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    /* backdrop-filter: blur(34.399994px); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    border: 0.5px solid #ffffff6e;
}

/* TEXT INSIDE CARD */
.stat-card .heading-lg {
  margin-bottom: 4px;
}

.stat-card .text-base {
  font-size: 14px;
}

/* =====================
   ANIMATION
===================== */

@keyframes scrollStats {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-content {
    max-width: 25%;
  }

  .stats-wrapper {
    margin-top: 40px;
    height: auto;
  }

  .stats-track {
    animation: scrollStats 25s linear infinite;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-bottom: 2rem;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .stats-track {
    gap: 12px;
    margin-top: 4rem;
  }

  .stat-card {
    min-width: 180px;
    padding: 16px;
  }
}
/* =====================
   CLIENTS STRIP
===================== */

.clients-section {
  background: #01559c; /* adjust to match Figma blue */
  overflow: hidden;
}

.clients-wrapper {
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollClients 25s linear infinite;
}

.client-item img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-item img:hover {
  opacity: 1;
}

/* smooth infinite scroll */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.container-custom {
  max-width: 1460px;
  margin: 0 auto;
}

.heading-xl {
  font-size: var(--heading-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}
.heading-lg {
  font-size: var(--heading-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}
.text-base {
  font-size: var(--text-base);
  color: var(--color-text);
}

@media (max-width: 992px) {
  :root {
    --heading-xl: 48px;
    --heading-lg: 40px;
  }
}
@media (max-width: 768px) {
  :root {
    --heading-xl: 36px;
    --heading-lg: 30px;
    --text-base: 15px;
  }
}
@media (max-width: 576px) {
  :root {
    --heading-xl: 30px;
    --heading-lg: 24px;
    --text-base: 14px;
  }
}

/* =====================
   SERVICES SECTION
===================== */

.services-section {
  background: #000;
  padding: 70px 0 80px;
}

.services-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-header .heading-lg {
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-subtext {
  opacity: 0.85;
  line-height: 1.6;
  font-size: var(--text-base);
  color: var(--color-text);
}

/* =====================
   SLIDER
===================== */

.services-slider-outer {
  overflow: hidden;
}

.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}

/* =====================
   CARD BASE
===================== */

.service-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  /* black bg + 1px white border at 20% opacity */
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease;
}

/* =====================
   ICON
===================== */

.service-icon {
  margin-bottom: 28px;
}

.service-icon svg {
  width: 42px;
  height: 42px;
}

/* =====================
   TITLE
===================== */

.service-title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.3;
}

/* =====================
   DESCRIPTION
===================== */

.service-desc {
  font-size: var(--text-base);
  color: rgba(234, 233, 233, 0.75);
  margin-bottom: 20px;
  line-height: 1.65;
  flex: 1;
  transition: color 0.3s ease;
}

/* =====================
   READ MORE
===================== */

.service-read-more {
  font-size: 15px;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.service-read-more:hover {
  color: #fff;
}

.read-more-arrow {
  font-style: normal;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  display: inline-block;
}

/* =====================
   RADIAL GRADIENT — #66B6FF → #014787
   Applied via ::before pseudo overlay
===================== */

/* =====================
   HOVER BACKGROUND IMAGE
===================== */

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;

  background: url('/wp-content/themes/twentytwentythree-child/img/Border.png')
    no-repeat;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 0.6s ease; /* smooth slow fade */

  z-index: 0;
  pointer-events: none;
}

/* Activate on hover / active */
.service-card:hover::before,
.service-card.active::before {
  opacity: 1;
}

/* Decorative light orb bottom-right */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(102, 182, 255, 0.3) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

/* Activate on hover or .active */
.service-card:hover::before,
.service-card.active::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card.active::after {
  opacity: 1;
}

/* All direct children sit above pseudo-elements */
.service-card > * {
  position: relative;
  z-index: 1;
}

/* Text contrast on active/hover */
.service-card:hover .service-desc,
.service-card.active .service-desc {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .read-more-arrow,
.service-card.active .read-more-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =====================
   BOTTOM ROW
===================== */

.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  background: #0d5ea6;
  color: #fff;
  font-weight: var(--fw-semibold);
  font-size: 16px;
  font-family: var(--font-main);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* =====================
   NAV ARROWS
===================== */

.slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: transparent;
}

.nav-btn.prev-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-btn.prev-btn svg path {
  stroke: rgba(255, 255, 255, 0.8);
}

.nav-btn.prev-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-btn.next-btn {
  background: #0d5ea6;
  border: 1px solid #0d5ea6;
}

.nav-btn.next-btn:hover:not(:disabled) {
  background: #0a4d8c;
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
  .container-custom {
    padding: 10px 24px;
  }
}

@media (max-width: 992px) {
  .services-header {
    margin-bottom: 40px;
  }
  .service-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
  .service-card {
    padding: 24px;
  }
  .service-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .service-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .service-card {
    padding: 20px;
  }
  .service-title {
    font-size: 20px;
  }
  .services-header .heading-lg {
    font-size: 28px;
  }
  .service-desc {
    font-size: 14px;
  }
  .container-custom {
    padding: 10px 16px;
  }
}
/* =====================
   CTA SECTION
===================== */

.cta-section {
  position: relative;
  padding: 45px 0;
}

/* WRAPPER */
.cta-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: url('/wp-content/themes/twentytwentythree-child/img/cta1.png');
  background-size: cover;
  overflow: hidden;
}

/* =====================
   LEFT SIDE
===================== */

.cta-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

/* TEXT */
.cta-title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: #fff;
  line-height: 1.5;

  max-width: 420px;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;

  background: #fff;
  color: #000;

  font-size: 14px;
  padding: 10px 18px;
  border-radius: 20px;

  text-decoration: none;
  width: fit-content;

  transition: 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.85;
}

/* =====================
   RIGHT IMAGE
===================== */

.cta-image {
  height: 100%;
}

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

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .cta-content {
    padding: 30px;
  }

  .cta-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }
  .cta-wrapper {
    flex-direction: column;
  }

  .cta-content,
  .cta-image {
    min-height: auto;
  }

  .cta-content {
    padding: 24px;
  }

  .cta-title {
    max-width: 100%;
  }

  .cta-image img {
    height: auto;
  }
}
/* =====================
   DEPARTMENT SECTION
===================== */

.dept-section {
  background: #000;
}

/* =====================
   HEADER
===================== */

.dept-header {
  margin-bottom: 60px;
}

.dept-title {
  max-width: 700px;
}

.dept-desc {
  max-width: 420px;
  opacity: 0.85;
}

.dept-desc a {
  color: #fff;
  text-decoration: underline;
}

/* =====================
   SLIDER (OWL BASE)
===================== */

.dept-slider {
  width: 100%;
}

/* IMPORTANT: REMOVE FLEX TRACK */
.dept-track {
  display: block;
}

/* Owl stage alignment */
.dept-track .owl-stage {
  display: flex;
  align-items: flex-start;
}

/* =====================
   CARD (FIXED LIKE FIGMA)
===================== */

.dept-card {
  width: 100%;
  max-width: 348px;
  min-height: 260px;

  padding: 28px;
  border-radius: 16px;

  background: #000;
  border: 1px solid #0d5ea6;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: all 0.3s ease;
}

/* STAGGER */
.dept-card.down {
  margin-top: 30px;
}

/* HOVER */
.dept-card:hover {
  transform: translateY(-6px);
}

/* =====================
   ICON
===================== */

.dept-icon {
  width: 40px !important;
  margin-bottom: 16px;
}

/* =====================
   TEXT
===================== */

.dept-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.dept-card p {
  font-size: 16px;
  color: #bcbcbc;
  line-height: 1.6;
}

.dept-card p a {
  text-decoration: underline;
  color: #ffffff;
}

/* =====================
   BOTTOM
===================== */

.dept-bottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =====================
   PROGRESS BAR
===================== */

/* PROGRESS BAR BASE */
.dept-progress {
  width: 60%;
  height: 4px;
  background: rgba(48, 113, 225, 0.2);
  border-radius: 10px;
  position: relative;
}

/* ACTIVE TRACK (HIDDEN – we won't stretch width anymore) */
.dept-progress-bar {
  display: none;
}

/* PILL HANDLE */
.dept-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

  width: 80px; /* key part: elongated */
  height: 6px;

  background: linear-gradient(90deg, #014787, #4786bf);
  border-radius: 20px;

  transition: left 0.3s ease;
}

.dept-progress-thumb:active {
  cursor: grabbing;
}

/* =====================
   NAV BUTTONS
===================== */

.dept-nav {
  display: flex;
  gap: 10px;
}

.dept-btn {
  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);

  background: transparent;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s ease;
}

.dept-btn:hover {
  border-color: #0d5ea6;
}

.dept-btn.next {
  background: #0d5ea6;
  border: none;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .dept-header {
    row-gap: 20px;
    margin-bottom: 40px;
  }

  .dept-title,
  .dept-desc {
    max-width: 100%;
    font-size: 28px;
    text-align: center;
  }

  .dept-progress {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .dept-card {
    max-width: 100%;
    padding: 18px;
  }

  .dept-card.down {
    margin-top: 20px;
  }

  .dept-card h3 {
    font-size: 28px;
  }

  .dept-card p {
    font-size: 14px;
  }
  .dept-title {
    font-size: 28px;
  }
}
/* =====================
   TOOLS SECTION
===================== */

/* SECTION */
.tools-section {
  background: #000;
}

.tools-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.tools-desc {
  opacity: 0.85;
}

/* CARD */
.tool-card {
  width: 245px;
}

.tool-inner {
  position: relative;
  width: 245px;
  height: 285px;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.tool-inner:hover {
  transform: translateY(-6px);
  border-color: #0d5ea6;
}

/* IMAGE */
.tool-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 211px;
}

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

.tool-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}

/* STACK */
.tool-stack {
  position: absolute;
  bottom: 60px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
}

.stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stack-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-icon img {
  width: 18px;
}

.stack-item span {
  font-size: 10px;
  color: #fff;
}

/* LABEL */
.tool-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  color: #fff;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border-bottom: #fff;
}

/* OWL */
.tools-carousel .owl-stage {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tools-carousel .owl-item {
    display: flex;
    justify-content: center;
  }
}
/* OWL FIX */
.tools-carousel .owl-stage {
  display: flex;
}

.tools-carousel .owl-item {
  display: flex;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .tools-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .tool-image img {
    height: 130px;
  }

  .tool-icons span {
    font-size: 11px;
  }
  .tools-title {
    font-size: 28px;
  }
}
/* =====================
   CTA SECTION
===================== */
.cta2-wrapper {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: url('/wp-content/themes/twentytwentythree-child/img/cta2.png')
    no-repeat center center;
  background-size: cover;
  padding: 40px 20px;
}

.cta2-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  backdrop-filter: blur(2.5px);
  background: rgba(255, 255, 255, 0.03);
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.cta2-heading {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
}

.cta2-heading span {
  display: block;
}

/* Button */
.cta2-btn {
  display: inline-block;
  background: #fff;
  color: #014787;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta2-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .cta2-heading {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cta2-wrapper {
    padding: 70px 15px;
  }

  .cta2-box {
    padding: 40px 20px;
  }

  .cta2-heading {
    font-size: 24px;
    line-height: 1.5;
  }

  .cta2-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =====================
   SECTION
===================== */

.ethics-section {
  background: url('/wp-content/themes/twentytwentythree-child/img/ensure.png')
    no-repeat center;
  background-size: cover;
}

/* LEFT */

.ethics-left {
  max-width: 520px;
}

.ethics-desc {
  line-height: 1.6;
}

/* =====================
   RIGHT LIST
===================== */

.ethics-list-wrapper {
  height: 420px;
  overflow: hidden;
}

.ethics-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  height: 378px;
  scrollbar-width: none;
}

/* ITEM */

.ethics-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ethics-item h3 {
  font-size: 20px;
}
/* =====================
   BUBBLE (FIXED)
===================== */

.bubble {
  width: 42px;
  height: 42px;
  min-width: 42px;

  background: url('/wp-content/themes/twentytwentythree-child/img/bubble.png')
    no-repeat center;
  background-size: contain;

  display: block;

  animation: rotateBubble 6s linear infinite;
}

/* =====================
   TEXT (FOLLOWING SYSTEM)
===================== */

.ethics-item h4 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);

  margin-bottom: 6px;
}

.ethics-item p {
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

/* =====================
   ANIMATIONS
===================== */

@keyframes rotateBubble {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .ethics-list-wrapper {
    height: auto;
    overflow: visible;
  }

  .ethics-list {
    animation: none;
  }

  .ethics-left {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .ethics-left {
    max-width: 100%;
  }

  .ethics-item h4 {
    font-size: 20px;
  }

  .ethics-item p {
    font-size: 14px;
  }
  .ethics-left h2 {
    font-size: 28px;
  }
}

/*industries section*/
.industries-section {
  background: url('/wp-content/themes/twentytwentythree-child/img/industries.png')
    no-repeat center;
  background-size: cover;
}

.industries-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.industries-desc {
  color: #dce3ff;
}

/* IMAGE */
.industries-image img {
  width: 100%;
  border-radius: 12px;
  height: 320px;
  object-fit: cover;
}

/* LIST */
.industries-list-wrapper {
  max-height: 340px;
  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color: #ffffff #2f5dbf;
}

.industries-list-wrapper::-webkit-scrollbar {
  width: 4px;
}

.industries-list-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.industries-list-wrapper::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}

/* ITEM */
.industry-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.industry-title {
  color: #fff;
  font-weight: var(--fw-semibold);
  font-size: 20px;
}

/* HIDE CONTENT */
.industry-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

/* ACTIVE */
.industry-item.active .industry-content {
  max-height: 200px;
  margin-top: 10px;
}

.industry-content li {
  color: #e6ecff;
  font-size: var(--text-base);
}
/* PROCESS SECTION */
.process-section {
  background: url('/wp-content/themes/twentytwentythree-child/img/process.png')
    no-repeat center;
  background-size: cover;
}

/* LEFT */
.process-left {
  max-width: 520px;
}

.process-desc {
  line-height: 1.6;
}

/* =====================
   FLOATING VISUAL
===================== */

.process-visual {
  perspective: 1200px;
}

.main-device {
  transition: transform 0.6s ease;
  width: 100%;
  transform-style: preserve-3d;
}

/* HOVER 3D EFFECT */
.process-visual:hover .main-device {
  transform: rotateY(18deg) rotateX(8deg) scale(1.05);
}

/* OPTIONAL: glow */
.process-visual:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(13, 94, 166, 0.25), transparent 70%);
  z-index: -1;
}
.float {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}
.dot1 {
  top: 10%;
  left: 20%;
  animation: float 5s infinite;
}
.dot2 {
  top: 60%;
  left: 10%;
  animation: float 6s infinite;
}
.dot3 {
  top: 30%;
  right: 10%;
  animation: float 7s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 992px) {
  .industries-visual {
    perspective: none;
  }

  .main-device {
    transform: none;
  }

  .industries-visual:hover .main-device {
    transform: none;
  }
}
@media (max-width: 768px) {
  .industries-left {
    max-width: 100%;
  }
  .industries-header h2 {
    font-size: 28px;
  }
  .industries-image img {
    display: none;
  }
  .main-device {
    display: none;
  }
  .industey-content ul {
    font-size: 14px;
  }
}

/* =====================
   RIGHT TIMELINE
===================== */

.process-wrapper {
  position: relative;
  height: 420px;
  overflow: hidden;
}

/* LINE */
.process-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #0d5ea6;
}

/* LIST */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  height: 378px;
  scrollbar-width: none;
}

/* ITEM */
.process-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* NODE */
/* .process-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: #fff;
  color: #0d5ea6;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
} */
.process-node {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;

  flex: 0 0 auto;

  border-radius: 50%;
  background: #fff;
  color: #0d5ea6;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 16px;

  z-index: 2;
}

/* CONTENT */
.process-content h3 {
  font-size: 18px;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}

.process-content p {
  font-size: var(--text-base);
  color: var(--color-text);
}

/* SCROLL */
@keyframes scrollProcess {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-wrapper {
    height: auto;
    overflow: visible;
  }

  .process-list {
    animation: none;
  }
}
@media (max-width: 768px) {
  .process-left h2 {
    font-size: 28px;
  }

  .process-content p {
    font-size: 14px;
  }
}

/* table SECTION */
.comparison-section {
  background: #000;
}

/* HEADER */
.comparison-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.comparison-desc {
  opacity: 0.8;
}

/* WRAPPER (SCROLL FOR MOBILE) */
.comparison-table-wrapper {
  overflow-x: auto;
}

/* TABLE */
.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

/* HEAD */
.comparison-table thead th {
  padding: 18px;
  text-align: left;

  background: linear-gradient(90deg, #014787 0%, #000000 50%, #014787 100%);
  color: #fff;

  font-weight: var(--fw-semibold);
}

/* CELLS */
.comparison-table td {
  padding: 18px;
  color: var(--color-text);

  background: rgba(17, 99, 251, 0.1); /* 10% */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FIRST COLUMN */
.comparison-table td:first-child {
  color: #fff;
  font-weight: var(--fw-semibold);
}

/* FLEX CELL */
.cell-flex {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cell-flex img {
  width: 18px;
  margin-top: 3px;
}

/* HOVER */
.comparison-table tbody tr:hover {
  background: rgba(17, 99, 251, 0.15);
}

/* SCROLLBAR (CLEAN) */
.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background: #1163fb;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .comparison-header h2 {
    font-size: 28px;
  }
  .comparison-table thead th,
  .comparison-table td {
    padding: 12px;
    font-size: 14px;
  }
}
/* =====================
   CTA SECTION
===================== */

.cta2-ribbon-section {
  position: relative;
  padding: 40px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    linear-gradient(to right, #66b6ff75, #014775),
    url(/wp-content/themes/twentytwentythree-child/img/cta3.png) no-repeat
      center;
  background-size: cover;
  overflow: visible;
}

/* Layout */
.cta2-ribbon-inner {
  position: relative;
}

/* Content */
.cta2-ribbon-title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Button */
.cta2-ribbon-btn {
  background-color: #ffffff !important;
  color: #014787 !important;
  padding: 12px 26px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.cta2-ribbon-btn:hover {
  background-color: #e6f2ff;
}

/* Wrapper */
.cta2-ribbon-image-wrapper {
  position: absolute;
  bottom: -119px;
  right: 40px;
  max-width: 450px;
  z-index: 3;
}

/* Main Image (front) */
.cta2-ribbon-image {
  width: 59%;
  position: relative;
  z-index: 3;
  left: -6%;
  bottom: 52%;
}

/* Floating animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* FLOATING ICONS */
.cta-icon {
  position: absolute;
  top: -165px;
}

/* POSITIONS */
.icon1 {
  top: 20%;
  left: 20%;
  animation: floatIcon 5s ease-in-out infinite;
}

.icon2 {
  top: 10%;
  right: 25%;
  animation: floatIcon 5s ease-in-out infinite;
}

/* ANIMATION */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* =========================
   TABLET (≤ 991px)
========================= */
@media (max-width: 991px) {
  .hide-ui {
    display: none;
  }
  .cta2-ribbon-section {
    text-align: center;
    padding: 50px 20px;
  }

  .cta2-ribbon-title {
    font-size: 28px;
  }

  .cta2-ribbon-image-wrapper {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {
  .hide-ui {
    display: none;
  }
  .cta2-ribbon-section {
    padding: 40px 15px;
  }

  .cta2-ribbon-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .cta2-ribbon-btn {
    padding: 10px 22px !important;
    font-size: 14px;
  }

  .cta2-ribbon-image-wrapper {
    max-width: 260px;
    margin-top: 20px;
  }
}
/* FAQ SECTION */
.faq-section {
  background: #000;
}

/* HEADER */
.faq-header {
  margin-bottom: 50px;
}

/* LIST */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* ITEM */

.faq-item {
  padding: 20px 0;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding-left: 10px;
}
/* HEAD */
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.faq-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* NUMBER */
.faq-number {
  font-size: 32px;
  font-weight: 600;

  background: radial-gradient(
    94.43% 516.59% at 3.62% 13.88%,
    #014787 0%,
    #2f85d4 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */
.faq-left h3 {
  font-size: 18px;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}

/* ICON */
.faq-icon {
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}

/* BODY */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-body p {
  margin-top: 10px;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-body {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* HOVER */
.faq-item:hover {
  border-color: #1163fb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 28px;
  }
  .faq-left {
    gap: 12px;
  }

  .faq-number {
    font-size: 24px;
  }

  .faq-left h4 {
    font-size: 16px;
  }
}
/* =====================
   HEADING ANIMATION
===================== */

.section-title {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.section-title.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ts-section {
  background: linear-gradient(180deg, #020617, #020617);
  color: #fff;
}

.ts-subtitle {
  color: #facc15;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ts-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ts-description {
  color: #eae9e9;
  max-width: 650px;
  line-height: 1.6;
}

/* Tabs */
.ts-tabs {
  border-bottom: 1px solid #1e293b;
}

.ts-tabs .nav-link {
  color: #eae9e9;
  border: none;
  padding: 10px 15px;
  background: transparent;
  position: relative;
}

.ts-tabs .nav-link.active {
  color: #3b82f6;
}

.ts-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3b82f6;
}

/* Pills */
.ts-pill-wrapper {
  margin-top: 10px;
}

.ts-pill {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  color: #eae9e9;
  background: #020617;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ts-pill.active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  color: #60a5fa;
}

.ts-pill:hover {
  border-color: #3b82f6;
  cursor: pointer;
}
.agentic-sec2 {
  background: #165c96; /* match your design */
  padding: 25px 0;
  overflow: hidden;
}

/* Wrapper */
.agentic-sec2-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Moving track */
.agentic-sec2-track {
  display: flex;
  width: max-content;
  animation: agentic-sec2-scroll 25s linear infinite;
}

/* Logo items */
.agentic-sec2-item {
  flex: 0 0 auto;
  padding: 0 40px;
}

.agentic-sec2-item img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: 0.3s;
}

.agentic-sec2-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes agentic-sec2-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .agentic-sec2-item {
    padding: 0 20px;
  }

  .agentic-sec2-item img {
    height: 30px;
  }
}
