/* ═══════════════════════════════════════
   DiaSpect — style.css
   Fonts: Syne (headings) · DM Sans (body)
═══════════════════════════════════════ */

:root {
  --blue: #1D4ED8;
  --blue-mid: #2563EB;
  --blue-lt: #EFF6FF;
  --blue-dk: #1e3a8a;
  --accent: #F43F5E;
  --green: #10B981;
  --ink: #0F172A;
  --ink-md: #334155;
  --ink-lt: #64748B;
  --border: #E2E8F0;
  --bg-soft: #F8FAFC;
  --white: #FFFFFF;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --sh-sm: 0 2px 8px rgba(30, 58, 138, .07);
  --sh-md: 0 8px 32px rgba(30, 58, 138, .12);
  --sh-lg: 0 20px 60px rgba(30, 58, 138, .18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ── Helpers ── */
.ds-gradient-text {
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fw-600 {
  font-weight: 600;
}

.ds-text-muted {
  color: var(--ink-lt);
}

.ds-section {
  padding: 40px 0;
}

.ds-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-lt);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.ds-section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.ds-body-text {
  color: var(--ink-lt);
  font-size: .97rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.ds-btn-primary {
  background: var(--blue-mid);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 30px;
  font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.ds-btn-primary:hover {
  background: var(--blue-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .35);
}

.ds-btn-outline {
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-mid);
  background: transparent;
  border-radius: 14px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all .2s;
}

.ds-btn-outline:hover {
  background: var(--blue-mid);
  color: #fff;
}

.ds-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.ds-btn-ghost:hover {
  background: var(--bg-soft);
}

.ds-btn-lg {
  padding: .75rem 2rem;
  font-size: 1rem;
  width: 200px !important;
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-lt);
  color: var(--blue-mid);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 99px;
  border: 1px solid rgba(37, 99, 235, .15);
}

.ds-badge-light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

/* ══ NAVBAR ══ */
.ds-navbar {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  z-index: 1000;
}

.ds-navbar .nav-link {
  color: #6b7280;
  font-weight: 500;
  transition: 0.3s;
}

.ds-navbar .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
}

.ds-navbar-scrolled {
  box-shadow: var(--sh-md);
}

.ds-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dk));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.ds-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1;
}

.ds-brand-tag {
  font-size: .6rem;
  color: var(--ink-lt);
  font-weight: 400;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  color: var(--ink-md) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .4rem .8rem !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-mid) !important;
  background: var(--blue-lt);
}

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

.ds-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("images/banner-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 50px;
}

/* Mobile background image */
@media (max-width: 768px) {
  .ds-hero {
    background-image: url("images/mobile-bg.png");
    background-position: center;
    background-size: cover;
  }
}

.ds-hero-row {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.ds-hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ds-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.ds-shape-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #bfdbfe, transparent);
  top: -180px;
  right: -120px;
}

.ds-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fbcfe8, transparent);
  bottom: -120px;
  left: -100px;
}

.ds-hero-text {
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease both;
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #cbd5e1;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  backdrop-filter: blur(12px);
}

.ds-hero-heading {
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  color: #081226;
  margin-bottom: 0;
}

.ds-gradient-text {
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ds-hero-sub {
  font-size: 1.08rem;
  color: #64748b;
  line-height: 1.9;
  max-width: 520px;
}

.ds-btn-lg {
  padding: 10px 30px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.ds-btn-primary {
  background: #1565ea;
  color: #fff;
  border: none;
}

.ds-btn-primary:hover {
  background: #0f56cf;
  transform: translateY(-2px);
  color: #fff;
}

.ds-btn-ghost {
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.75);
  color: #0f172a;
  backdrop-filter: blur(10px);
}

.ds-btn-ghost:hover {
  background: #fff;
}

.ds-hero-features {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.ds-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ds-feature-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;

}

.ds-feature-item-icon i {
  font-size: 28px;
  color: #1557d6;
}

.ds-feature-item h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.ds-feature-divider {
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom,
      transparent,
      #dbeafe,
      transparent);
  margin-top: 2px;
}


@media (max-width: 768px) {

  .ds-hero-features {

    gap: 20px;
  }

  .ds-feature-divider {
    display: none;
  }

  .ds-feature-item {
    width: 45%;
  }
}

@media (max-width: 576px) {

  .ds-feature-item {
    width: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 991px) {

  .ds-hero {
    background-position: center;
  }

  .ds-hero-row {
    min-height: auto;
    padding: 0px 0 80px;

  }

  .ds-hero-sub {
    margin-inline: auto;
  }

  .ds-hero-chips {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .ds-hero {
    background-position: 75% center;
    padding-top: 2px;
  }

  .ds-hero-heading {
    font-size: 2.8rem;
  }

  .ds-btn-lg {
    width: 100%;
  }
}

/* ══ STATS BAR ══ */
.ds-stats-bar {
  background: var(--blue-dk);
}

.ds-stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background .2s;
}

.ds-stat-item:last-child {
  border-right: none;
}

.ds-stat-item:hover {
  background: rgba(255, 255, 255, .05);
}

.ds-stat-icon-wrap {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px;
}

.ds-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ds-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== About Section ===== */

.about-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #cfe0ff;
  color: #1565c0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #0a1f5c;
}

.gradient-text {
  background: linear-gradient(90deg, #1565c0, #0ea5c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #5f6f81;
  line-height: 1.8;
  margin-bottom: 14px;
}


.about-visual {
  max-width: 520px;
  height: 420px;
}

.main-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 72%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sub-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 50%;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  top: 37%;
  left: 2%;
  background: linear-gradient(90deg, #1565c0, #0ea5c8);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(13, 92, 92, 0.3);
}

.about-badge h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.about-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Dot Decoration ===== */

.dot-pattern {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#1565c0 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .18;
}

/* ===== Responsive ===== */

@media (max-width:991px) {

  .about-heading {
    font-size: 32px;
  }

  .about-visual {
    height: 340px;
    margin-top: 20px;
  }

  .about-badge {
    top: 40%;
    left: 5%;
  }

}

@media (max-width:576px) {

  .about-heading {
    font-size: 28px;
  }

  .about-visual {
    height: 280px;
  }

  .main-img {
    width: 85%;
    height: 68%;
  }

  .sub-img {
    width: 60%;
    height: 45%;
  }

  .about-badge {
    padding: 10px 14px;
  }

  .about-badge h4 {
    font-size: 22px;
  }

}

/* ══ FEATURES ══ */
.ds-features-section {
  background: var(--bg-soft);
}

.ds-feature-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 26px;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  gap: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* IMPORTANT */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* CARD HOVER EFFECT */
.ds-feature-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* CLICK EFFECT */
.ds-feature-card:active {
  transform: scale(0.98);
}

/* ICON BOX */
.ds-feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ibg);

  transition: transform 0.4s ease;
}

/* ICON */
.ds-feature-icon img {
  width: 34px;
  transition: transform 0.4s ease;
}

/* ICON HOVER */
.ds-feature-card:hover .ds-feature-icon {
  transform: scale(1.12);
}

.ds-feature-card:hover .ds-feature-icon img {
  transform: rotate(-8deg) scale(1.1);
}

/* CARD BACKGROUNDS */
.card-blue {
  background: #f8fbff;
}

.card-green {
  background: #f5fff8;
}

.card-purple {
  background: #faf7ff;
}

.card-cyan {
  background: #f2feff;
}

.card-orange {
  background: #fff8f2;
}

.card-pink {
  background: #fff5fa;
}

.ds-feature-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
  background: var(--ibg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}

.ds-feature-icon img {
  width: 100px;
  height: 100px;
}

.ds-feature-icon i {
  font-size: 40px;
  color: var(--ic);
  line-height: 1;
}

.ds-feature-card:hover .ds-feature-icon {
  transform: scale(1.1);
}

.ds-feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.ds-feature-desc {
  font-size: .86rem;
  color: var(--ink-lt);
  line-height: 1.6;
  margin: 0;
}

/* ══ HOW IT WORKS ══ */
.ds-hiw-section {
  background: #fff;
}

/* ── Desktop horizontal layout ── */
.ds-hiw-desktop {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.ds-hiw-step {
  flex: 1;
  text-align: center;
  max-width: 150px;
}

.ds-hiw-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 48px;
  /* align with circle center */
  color: #93C5FD;
  font-size: 1.3rem;
  border-top: 2px dashed #BFDBFE;
  margin-top: 45px;
  /* half of circle height */
  flex: 0 0 40px;
  justify-content: center;
  position: relative;
}

.ds-hiw-arrow i {
  position: absolute;
  top: -14px;
  background: #fff;
  padding: 0 4px;
  color: #3B82F6;
  font-size: 1rem;
}

/* The circle */
.ds-hiw-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .1);
  transition: all .3s;
  cursor: default;
}

.ds-hiw-circle::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px dashed #BFDBFE;
  animation: ringPulse 3s ease-in-out infinite;
}

.ds-hiw-circle.active {
  background: linear-gradient(135deg, #1e40af, var(--blue-mid));
  border-color: var(--blue-mid);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .3);
}

.ds-hiw-circle.active::before {
  border-color: #93C5FD;
}

.ds-hiw-circle:hover {
  background: linear-gradient(135deg, #1e40af, var(--blue-mid));
  border-color: var(--blue-mid);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .35);
  transform: scale(1.07);
}

.ds-hiw-circle:hover .ds-hiw-icon-wrap {
  color: #fff;
}

.ds-hiw-num {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #fff;
  z-index: 2;
}

.ds-hiw-icon-wrap {
  font-size: 1.7rem;
  color: var(--blue-mid);
  transition: color .3s;
  line-height: 1;
}

.ds-hiw-circle.active .ds-hiw-icon-wrap {
  color: #fff;
}

.ds-hiw-circle.sm {
  width: 64px;
  height: 64px;
}

.ds-hiw-circle.sm .ds-hiw-icon-wrap {
  font-size: 1.3rem;
}

.ds-hiw-label {
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.ds-hiw-sub {
  font-size: .76rem;
  color: var(--ink-lt);
  line-height: 1.5;
}

/* ── Mobile vertical layout ── */
.ds-hiw-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 8px;
}

.ds-hiw-mobile-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ds-hiw-m-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ds-hiw-vline {
  width: 2px;
  background: #BFDBFE;
  flex: 1;
  min-height: 28px;
  margin: 4px 0;
}

.ds-hiw-m-body {
  padding-bottom: 20px;
}

.ds-hiw-m-body .ds-hiw-label {
  text-align: left;
  margin-bottom: 3px;
}

.ds-hiw-m-body .ds-hiw-sub {
  text-align: left;
}

/* ===== APP DOWNLOAD SECTION ===== */

.ds-app-download {
  padding: 70px 0;
  background: #f5f7fb;
}

.ds-app-card {
  background: linear-gradient(90deg, #0047c6 0%, #002f97 100%);
  border-radius: 18px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  transition: all 0.4s ease;
}

.ds-app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.18);
}

/* MOBILE IMAGE */

.ds-app-mobile img {
  width: 180px;
  transform: rotate(-8deg);

  transition: transform 0.4s ease;
}

.ds-app-card:hover .ds-app-mobile img {
  transform: rotate(-8deg) scale(1.04);
}

/* CONTENT */

.ds-app-content {
  flex: 1;
}

.ds-app-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ds-app-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* BUTTONS */

.ds-app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ds-store-btn {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.ds-store-btn:hover {
  transform: translateY(-4px) scale(1.04);
  color: #fff;
}

.ds-store-btn i {
  font-size: 28px;
}

.ds-store-btn span {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.ds-store-btn strong {
  font-size: 16px;
}

/* QR SECTION */

.ds-app-qr {
  text-align: center;
  min-width: 250px;
}

.ds-qr-box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 12px;
}

.ds-qr-box img {
  width: 90px;
}

.ds-qr-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* FEATURES */

.ds-app-features {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.ds-app-features i {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .ds-app-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .ds-app-mobile img {
    width: 140px;
  }

  .ds-app-content h2 {
    font-size: 28px;
  }

  .ds-app-buttons {
    justify-content: center;
  }

  .ds-app-features {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* ══ CONTACT ══ */
.ds-contact-section {
  background: var(--bg-soft);
}

.ds-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ds-contact-info a {
  text-decoration: none;
}

.ds-contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-left: 3px solid #1565ea !important;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--sh-sm);
  margin-bottom: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* CARD HOVER */
.ds-contact-info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON BOX */
.ds-ci-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 16px;
  background: var(--cicbg, #EFF6FF);
  color: var(--cic, #1565ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.35s ease;
}

/* ICON ANIMATION */
.ds-contact-info-card:hover .ds-ci-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* TEXT ANIMATION */
.ds-ci-label,
.ds-ci-value {
  transition: all 0.3s ease;
}

.ds-contact-info-card:hover .ds-ci-value {
  color: #1565ea;
}

/* OPTIONAL SHINE EFFECT */
.ds-contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.ds-contact-info-card:hover::before {
  left: 120%;
}

.ds-ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--cicbg, var(--blue-lt));
  color: var(--cic, var(--blue-mid));
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.ds-ci-label {
  font-size: .72rem;
  color: var(--ink-lt);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.ds-ci-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.ds-contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-sm);
}

.ds-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ds-form-sub {
  font-size: .86rem;
  color: var(--ink-lt);
  margin-bottom: 0;
}

.ds-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-md);
  margin-bottom: 5px;
  display: block;
}

.ds-input {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .6rem .9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.ds-input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
  outline: none;
}

.ds-input::placeholder {
  color: #94A3B8;
}

textarea.ds-input {
  resize: none;
}

/* ══ FOOTER ══ */
.ds-footer {
  background: var(--ink);
  padding: 72px 0 0;
}

.ds-footer-text {
  color: #fff;
  font-size: .86rem;
  line-height: 1.7;
}

.ds-footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.ds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-footer-links li {
  margin-bottom: 9px;
}

.ds-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.ds-footer-links a:hover {
  color: #fff;
}

.ds-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-footer-contact li {
  display: flex;
  gap: 9px;
  color: #fff;
  font-size: .86rem;
  margin-bottom: 11px;
  line-height: 1.5;
}

.ds-footer-contact i {
  color: var(--blue-mid);
  margin-top: 2px;
  flex-shrink: 0;
}

.ds-social-links {
  display: flex;
  gap: 8px;
}

.ds-social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.ds-social-links a:hover {
  background: var(--blue-mid);
  color: #fff;
}

.ds-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatBadge1 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Scroll reveal */
.ds-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.ds-animate.ds-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .ds-about-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ds-about-card {
    position: static;
    width: 100%;
  }

  .ds-fb-1,
  .ds-fb-2 {
    display: none;
  }

  .ds-cta-card {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {
  .ds-section {
    padding: 52px 0;
  }

  .ds-hero-row {
    padding: 48px 0;
    min-height: auto;
  }

  .ds-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .ds-stat-item:last-child {
    border-bottom: none;
  }

  .ds-contact-form-card {
    padding: 24px 18px;
  }

  .ds-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .ds-hiw-desktop {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .ds-hiw-arrow {
    display: none !important;
  }

  .ds-hiw-step {
    max-width: 130px;
  }
}

@media (max-width: 575px) {
  .ds-device-card {
    width: 100%;
    max-width: 295px;
  }

  .ds-hero-heading {
    font-size: 2.4rem;
  }
}