/* =========================
   GLOBAL / BASE
========================= */
:root {
  --brand-primary: #d11207;
  --brand-hover: #212529;
  --dark: #212e65;
  --light: #ffffff;
  --muted: #e2e8f0;
  --text-dark: #000000;
  --text-muted: #5a5a5a;
  --bg-soft: #f8fafc;
  --anim-speed: 700ms;
   --brand-red: #d11207;
            --brand-navy: #212e65;
            --brand-navy-light: #2a3a7d;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-600: #475569;
            --slate-900: #0f172a;
            --white: #ffffff;
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* =========================
   SMALL FIXES (existing classes)
========================= */
.ca-btn-primary-22 span {
  transform: none;
}

/* NOTE:
   align-items/justify-content do not support "left".
   For flex, use flex-start.
*/
.ca-work-ic-box,
.ca-work-ic-box-content,
.ca-work-ic-box-content h4,
.ca-work-ic-box-content p,
.ca-work-ic-box-img {
  text-align: left;
}

.ca-work-ic-box,
.ca-work-ic-box-content{
  align-items: flex-start;
  justify-content: flex-start;
}
.ca-work-ic-box-img{
    justify-content: flex-start;
}
.ca-work-ic-box {
  display: flex;
  flex-direction: column;
}

/* slider height override */
.ca-single-test-item,
.ca-testimonial-slides,
.main-slides,
.slider-main {
  height: auto !important;
  overflow: visible !important;
}

/* service icon */
.ca-servic-2-ic img {
  width: 47px;
  height: auto;
  transition: filter 0.3s;
}

.ca-servic-2.inactive .ca-servic-2-ic img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(7454%)
    hue-rotate(358deg) brightness(95%) contrast(108%);
}

/* hover card */
.card-hover {
  height: 100%;
  padding: 24px;
  border-radius: 16px;
  background: var(--light);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.ca-servic-2-title,
.ca-service-2-desc p,
.seread-more {
  color: var(--text-dark) !important;
}

.ca-service-2 p {
  color: var(--text-muted);
}

.seread-more:hover {
  color: var(--brand-primary) !important;
}

/* =========================
   SHIPPING SECTION
========================= */
.shipping-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* grid layout */
.layout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: stretch;
}

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

/* left image card */
.image-overlay-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-overlay-card .main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(33, 46, 101, 0.95) 0%,
    rgba(33, 46, 101, 0.65) 50%,
    transparent 100%
  );
}

.overlay-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 520px;
  color: var(--light);
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(209, 18, 7, 0.15);
  border: 1px solid rgba(209, 18, 7, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* titles */
.main-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.section-title span {
  color: var(--brand-primary);
}

.sub-section-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 4px;
}

.main-description {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
}

/* primary button */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 28px;
  background: var(--brand-primary);
  color: var(--light);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

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

/* right cards column */
.cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* service card */
.service-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: var(--light);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(209, 18, 7, 0.4);
}

/* icon box */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--light);
}

@media (max-width: 420px) {
  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .icon-box {
    margin: 0 auto 6px;
  }
}

/* trust badge */
.trust-badge {
  background: var(--dark);
  color: var(--light);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-badge-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #94a3b8;
}

.trust-badge-value {
  font-weight: 600;
}

.trust-icon {
  font-size: 28px;
  color: var(--brand-primary);
}

/* =========================
   HERO SECTION
========================= */
.hero-viewport {
  position: relative;
  height: 750px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: background-drift 20s infinite alternate linear;
}

.hero-visual-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    transparent 100%
  );
}

@keyframes background-drift {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* decorative blobs */
.hero-decorations {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}

.decor-blob-top {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: var(--brand-primary);
  filter: blur(130px);
  border-radius: 50%;
}

.decor-blob-bottom {
  position: absolute;
  bottom: 25%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: #6366f1;
  filter: blur(160px);
  border-radius: 50%;
}

/* hero content */
.hero-stage {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.slide-group {
  max-width: 720px;
  transition: opacity var(--anim-speed) ease-out, transform var(--anim-speed) ease-out;
}

.slide-state-hidden {
  opacity: 0;
  transform: translateY(25px);
  filter: blur(4px);
}

.slide-state-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.slide-main-title {
  font-size: clamp(1.2rem, 10vw, 2.2rem);
  font-weight: 500;
  color: var(--light);
  line-height: 0.95;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}

.slide-text-content {
  font-size: 1.25rem;
  color: var(--light);
  line-height: 1.6;
  margin: 0 0 3rem;
  font-weight: 500;
  max-width: 600px;
}

/* CTA */
.cta-link {
  display: inline-flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 30px;
  background: var(--brand-primary);
  color: var(--light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-link:hover {
  background: var(--brand-hover);
  transform: translateY(-4px);
}

.cta-link i {
  margin-left: 14px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translateX(6px);
}

/* hero navigation */
.nav-system-arrows {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  gap: 1.25rem;
  z-index: 10;
}

.nav-arrow-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.nav-arrow-btn:hover {
  background: var(--light);
  border-color: var(--light);
  transform: scale(1.05);
}

.nav-system-dots {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.nav-dot {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-dot-active {
  width: 60px;
  background: var(--brand-primary);
}

.nav-dot-inactive {
  width: 30px;
}

.nav-dot:hover:not(.nav-dot-active) {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .nav-system-arrows {
    display: none;
  }

  .hero-stage {
    padding: 0 1.5rem;
  }

  .nav-system-dots {
    left: 1.5rem;
    bottom: 2.5rem;
  }
}

 /* Final CTA */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, rgb(0 20 74 / 82%) 0%, rgb(0 0 0 / 72%) 100%) center center / cover, url(https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }
 /* Workflow Section */
        .workflow-section {
            background: var(--brand-navy);
            color: var(--white);
        }

        .workflow-section h2 {
            color: var(--white);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .workflow-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .workflow-steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .step-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.05);
        }

        .step-card h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
