.site-header.sticky {
  position: fixed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.oneh1 {
  font-size: clamp(18px, 2.4vw, 64px);
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 768px) {
  .oneh1 {
    font-size: 24px !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 30px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.transparent {
  background: transparent;
  box-shadow: none;
}

.site-header.solid {
  background: #fff;
  /* backdrop-filter: blur(50px); */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.site-header.transparent .nav-link,
.site-header.transparent .cta-btn {
  color: #fff;
}

.site-header.solid .nav-link {
  color: #000;
}

/* / */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

/* DESKTOP NAV */
.nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: #111;
}

.cta-btn {
  background: #4f46e5;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
}

/* MEGAMENU */
.megamenu-box {
  background: #f4f6ff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.menu-col h4 {
  margin-bottom: 16px;
}

.menu-col a {
  display: block;
  margin-bottom: 10px;
}

.megamenu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.megamenu.show {
  opacity: 1;
  visibility: visible;
}

.megamenu-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.06); */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #000;
}

/*  */
.site-header.transparent .hamburger span {
  background: #fff;
}

.site-header.solid .hamburger span {
  background: #000;
}

/*  */
/* SIMPLE DROPDOWN */
.simple-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  width: 220px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.dropdown-menu li a:hover {
  /* background: #f5f5f5; */
  color: #2f6edb;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*  */

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 2000;
  padding: 25px;
  overflow-y: auto;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  width: 36%;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: none;
  font-size: 18px;
}

/* MOBILE NAV */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.mobile-nav li {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.mobile-parent span {
  transition: 0.3s;
}

.rotate {
  transform: rotate(180deg);
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding: 10px 0 20px 15px;
}

.mobile-submenu.show {
  display: block;
}

.mobile-submenu h4 {
  margin: 20px 0 10px;
  font-size: 16px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 1132px) {
  .nav,
  .cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
  }
}

/*  */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* like background-cover */
  z-index: -1;
}

/* GRID */
.industry-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid;
  padding: 10px;
  margin: 15px 0;
  text-align: center;
  /* min-width: 220px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.industry-card img {
  width: 60px;
}

/* img box one */
.img-box-one {
  text-align: center;
  border: 1px solid #eeeeee;
  padding-top: 15px;
  height: 90px;
  width: 200px;
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.img-box-one img {
  width: 30%;
}

/*  */

/* IMAGE CONTAINER */
.testimonial-thumb {
  overflow: hidden;
}

/* IMAGE ANIMATION */
.testimonial-animate-img {
  animation: fadeZoom 0.6s ease-in-out;
  width: 100%;
  border-radius: 12px;
}

/* KEYFRAMES */

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(6px);
  }

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

.overflow-hidden {
  overflow: hidden;
}

/*  text  */

.split-lines {
  overflow: hidden;
}

.split-lines .line {
  display: block;
  overflow: hidden;
}

.split-lines .line span {
  /* display: inline-block; */
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.split-lines.animate .line span {
  transform: translateY(0);
  opacity: 1;
}

/*  */

/*  */
.award-style-one-item:hover .image-wrapper img {
  transform: rotate(15deg) scale(1.05);
}

/*  */
/* ...................................................................................................... */
.col-xl-7.col-lg-6 {
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* wrapper */
.blur-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* image base */
.blur-img {
  position: absolute;
  width: 100%;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(91%) sepia(4%) saturate(2041%)
    hue-rotate(221deg) brightness(114%) contrast(97%);
}

/* move up */
.blur-img.up {
  animation: moveUp 8s linear infinite;
}

/* move down */
.blur-img.down {
  animation: moveDown 8s linear infinite;
}

/* animations */
@keyframes moveUp {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

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

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

/* ___________________ */
.floating-social {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background: #f3f3f3;
  padding: 5px 5px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.1);
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #229ed9;
}

.discord {
  background: #5865f2;
}

@media (max-width: 820px) {
  .floating-social {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   ORIGINAL SLIDE-IN POPUP (side button)
   ═══════════════════════════════════════════════════ */

.blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: 0.3s ease;
}

.left-popup {
  position: fixed;
  left: 20px;
  top: 25%;
  width: 340px;
  background: linear-gradient(135deg, #0d5adb, #083b8a);
  padding: 25px;
  border-radius: 15px;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: translateX(-120%);
  transition: 0.4s ease;
  z-index: 1001;
}

.left-popup.active {
  transform: translateX(0);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h4 {
  color: white;
  font-size: 16px;
  margin: 0;
}

.popup-close-btn {
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  color: white;
}

.left-popup input,
.left-popup textarea {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.left-popup textarea {
  border-radius: 15px;
  height: 90px;
  resize: none;
}

.phone-field {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
}

.phone-field span {
  color: #333;
  margin-right: 8px;
}

.phone-field input {
  border: none;
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #0d5adb;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #f1f1f1;
}

/* ═══════════════════════════════════════════════════
   PREMIUM TALK-TO-US POPUP (# links)
   ═══════════════════════════════════════════════════ */

/* Overlay */
.talk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.talk-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal */
.talk-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90vw;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.35s ease;
}

.talk-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Inner layout */
.talk-modal-inner {
  display: flex;
  min-height: 480px;
}

/* Close button */
.talk-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.25s ease;
  z-index: 5;
}

.talk-close:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: rotate(90deg);
}

/* ── LEFT PANEL ── */
.talk-left {
  flex: 0 0 42%;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 24px 0 0 24px;
  position: relative;
  overflow: hidden;
}

.talk-left::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.talk-left::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 50%;
  filter: blur(50px);
}

.talk-illustration {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.talk-illustration img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: talkFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

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

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

.talk-left-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.talk-left-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.talk-contact-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.talk-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 16px;
  color: #e0e7ff;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.talk-badge i {
  font-size: 16px;
  color: #a5b4fc;
}

/* ── RIGHT PANEL (FORM) ── */
.talk-right {
  flex: 1;
  padding: 40px 35px;
}

.talk-form-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.talk-form-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.talk-field {
  margin-bottom: 16px;
}

.talk-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.talk-field input,
.talk-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  background: #f8fafc;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-sizing: border-box;
}

.talk-field input:focus,
.talk-field textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background: #fff;
}

.talk-field textarea {
  resize: none;
}

.talk-field-row {
  display: flex;
  gap: 12px;
}

.talk-field-row .talk-field {
  flex: 1;
}

.talk-phone-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.talk-phone-input:focus-within {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background: #fff;
}

.talk-country-code {
  padding: 12px 12px;
  font-size: 14px;
  color: #475569;
  border-right: 1.5px solid #e2e8f0;
  white-space: nowrap;
  background: #f1f5f9;
}

.talk-phone-input input {
  border: none;
  background: transparent;
  padding: 12px 14px;
  flex: 1;
  font-size: 15px;
  outline: none;
}

/* Submit */
.talk-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.talk-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
}

.talk-submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.talk-submit-btn:hover i {
  transform: translateX(4px);
}

/* ── SIDE TRIGGER BUTTON ── */
.side-button {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2000;
  overflow: hidden;
  transition: 0.3s ease;
}

.side-button:hover {
  transform: translateY(-50%) translateX(5px);
}

.side-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 15px 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  display: block;
}

.side-icon {
  background: linear-gradient(135deg, #0d5adb, #4f8cff);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .talk-modal {
    width: 95vw;
    max-height: 95vh;
    border-radius: 20px;
  }

  .talk-modal-inner {
    flex-direction: column;
    min-height: unset;
  }

  .talk-left {
    border-radius: 20px 20px 0 0;
    padding: 30px 24px;
  }

  .talk-illustration img {
    width: 120px;
    height: 120px;
  }

  .talk-left-title {
    font-size: 18px;
  }

  .talk-right {
    padding: 28px 22px;
  }

  .talk-field-row {
    flex-direction: column;
    gap: 0;
  }

  .side-button {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   CRYPTOCURRENCY EXCHANGE PAGE STYLES (CE prefix)
   ═══════════════════════════════════════════════════ */

/* Why Build Section */
.ce-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ce-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #3b82f633;
}

.ce-why-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #3b82f610;
  color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Features Tabs & Grid */
.ce-tab-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: none;
}

.ce-feature-card {
  background: #fff;
  padding: 24px 15px;
  text-align: center;
  border-radius: 18px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.ce-feature-card:hover {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: scale(1.03);
}

.ce-feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 15px;
  color: #3b82f6;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.ce-feature-card:hover .ce-feature-icon {
  transform: scale(1.2);
}

/* Checklist items (WeDeliver) */
.ce-check-icon {
  width: 22px;
  height: 22px;
  background: #3b82f6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Script Cards */
.ce-script-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  overflow: hidden;
}

.ce-script-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3b82f6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ce-script-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.ce-script-card:hover::before {
  opacity: 1;
}

.ce-script-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.08);
}

/* Platform Cards */
.ce-platform-card {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  border: 2px solid #f8fafc;
  transition: all 0.3s ease;
}

.ce-platform-card:hover {
  background: #0a1f44;
  border-color: #0a1f44;
  transform: translateY(-5px);
}

.ce-platform-card:hover h5,
.ce-platform-card:hover p {
  color: #fff !important;
}

.ce-platform-icon {
  font-size: 32px;
  color: #3b82f6;
  margin-bottom: 20px;
}

/* Blockchain Chain Grid */
.ce-chain-card {
  background: #fff;
  padding: 20px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.ce-chain-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

.typing-text {
  color: red;
  position: relative;
}

.typing-container {
  background-size: cover;
  background-position: center;
  display: inline-block;
  border-radius: 8px;
  padding: 0 10px;
}

.typing-text::after {
  content: "|";
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* cube */

.slide-container {
  border-radius: 10px;
  display: block;
  overflow: hidden;
  perspective: 1000px;
  width: 100%;
}

.slide-track {
  display: flex;
  flex-direction: column;
}

.word {
  height: auto;
  color: #ff4d4d;
  transform-origin: center;
  animation: rotateEffect 0.6s ease;
}

@keyframes rotateEffect {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/*  */

.service-item {
  padding: 22px 30px;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  color: #6c757d;
  font-weight: 600;
}

/* inactive style */
.service-item .number {
  margin-right: 20px;
  opacity: 0.6;
}

.service-item .text {
  transition: all 0.3s ease;
}

/* hover effect */
.service-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* 🔥 ACTIVE STYLE */
.service-item.active {
  color: #fff;
  background: linear-gradient(90deg, #2b0a91, #3d1ec9, #5a3bff, #7a5cff);
  background-size: 200% 200%;
  animation: waveMove 6s ease infinite;
  box-shadow: 0 15px 40px rgba(70, 50, 255, 0.3);
}

/* smooth animated gradient */
@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.service-item.active .number {
  opacity: 1;
  font-weight: 700;
}

.service-item.active .text {
  font-weight: 700;
}

.service-image-wrapper img {
  width: 100%;
  height: auto;
  transition: 0.4s ease;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay for Award Items */
.award-style-one-item:nth-child(1) {
  transition-delay: 0.1s;
}

.award-style-one-item:nth-child(2) {
  transition-delay: 0.2s;
}

.award-style-one-item:nth-child(3) {
  transition-delay: 0.3s;
}

.award-style-one-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* Responsive Adjustments for Award Section */
@media (max-width: 1200px) {
  .award-style-one-item {
    grid-template-columns: 100px 1.2fr 1.5fr 150px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .award-style-one-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
    border: 1px solid #dbdbfb;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .award-style-one-item:first-child {
    border: 1px solid #dbdbfb;
    padding-top: 40px;
  }

  .award-style-one-item .title {
    margin-top: 15px;
  }

  .award-style-one-item h2 {
    text-align: center;
    font-size: 32px;
    margin-top: 10px;
  }

  .image-wrapper {
    margin: 0 auto;
    width: 120px;
  }

  .image-wrapper img {
    transform: none !important;
  }

  .pl-70 {
    padding-left: 0 !important;
  }

  .service-item {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .award-style-one-area {
    padding: 60px 0;
  }

  .award-style-one-item {
    padding: 30px 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .service-tab-content-list {
    margin-top: 25px;
  }

  .service-item {
    font-size: 15px;
    padding: 14px;
  }

  .number {
    margin-right: 10px;
  }
}

/* scroll img animation */
.shape img {
  transition: transform 0.3s ease;
}

/* When visible */
.shape.animate img {
  animation: floatY 3s ease-in-out infinite;
}

/* Up-down floating animation */
@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

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

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

/* ========================================================
   DECENTRALIZED EXCHANGE (DEX) PAGE STYLES
   ======================================================== */

:root {
  --dex-primary: #0052ff;
  --dex-primary-light: #2563eb;
  --dex-dark: #0f172a;
  --dex-dark-soft: #1e293b;
  --dex-bg: #ffffff;
  --dex-bg-soft: #f8fafc;
  --dex-text: #0f172a;
  --dex-text-muted: #64748b;
  --dex-border: #e2e8f0;
}

/* Hero Section */
.dex-hero {
  position: relative;
  background: var(--dex-dark);
  color: #fff;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: left;
}

.dex-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/blockChain/EthereumBg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.dex-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #091122 10%, rgba(9, 17, 34, 0.4) 100%);
  z-index: 1;
}

.dex-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dex-hero-content {
  max-width: 650px;
}

.dex-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.dex-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.dex-btn {
  background: var(--dex-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.dex-btn:hover {
  background: #0044d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 255, 0.3);
  color: #fff;
}

/* What is DEX */
.dex-what-is {
  padding: 80px 0;
  background: var(--dex-bg);
}

.dex-what-is-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.dex-what-is-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dex-what-is-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Titles */
.dex-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dex-text);
  margin-bottom: 16px;
  text-align: center;
}

.dex-section-subtitle {
  font-size: 16px;
  color: var(--dex-text-muted);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Split Layouts */
.dex-split-section {
  padding: 80px 0;
  background: var(--dex-bg);
}

.dex-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dex-split-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.dex-split-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.dex-split-content p {
  color: var(--dex-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Accordion */
.dex-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dex-accordion-item {
  border: 1px solid var(--dex-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.dex-accordion-item.active {
  border-color: var(--dex-primary);
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.08);
}

.dex-accordion-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  color: var(--dex-text);
}

.dex-accordion-item.active .dex-accordion-header {
  color: var(--dex-primary);
}

.dex-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dex-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dex-text-muted);
  transition: all 0.3s;
}

.dex-accordion-item.active .dex-accordion-icon {
  background: var(--dex-primary);
  color: #fff;
  transform: rotate(180deg);
}

.dex-accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--dex-text-muted);
  line-height: 1.6;
}

.dex-accordion-item.active .dex-accordion-body {
  padding: 0 20px 16px;
  max-height: 400px;
}

/* Feature List Items */
.dex-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dex-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dex-feature-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.1);
  color: var(--dex-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.dex-feature-item-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--dex-text);
}

.dex-feature-item-content p {
  font-size: 14px;
  color: var(--dex-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Grid Sections (White Label / Functionalities) */
.dex-grid-section {
  padding: 80px 0;
  background: var(--dex-bg-soft);
}

.dex-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.dex-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid var(--dex-border);
}

.dex-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 82, 255, 0.1);
  border-color: rgba(0, 82, 255, 0.2);
}

.dex-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(0, 82, 255, 0.05);
  color: var(--dex-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 16px;
}

.dex-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dex-text);
}

.dex-card p {
  font-size: 14px;
  color: var(--dex-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Script Logos */
.dex-scripts-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.dex-script-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.dex-script-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--dex-dark);
  border: 1px solid var(--dex-border);
  transition: all 0.3s ease;
}

.dex-script-logo:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--dex-primary);
  color: var(--dex-primary);
}

/* Why Choose Us */
.dex-why-choose {
  padding: 80px 0;
  background: #fff;
}

/* CTA */
.dex-cta-section {
  padding: 60px 20px;
  background: var(--dex-bg-soft);
}

.dex-cta-box {
  background: var(--dex-primary);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

.dex-cta-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.dex-cta-box p {
  margin: 0;
  opacity: 0.9;
}

.dex-cta-btn {
  background: var(--dex-dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dex-cta-btn:hover {
  background: #fff;
  color: var(--dex-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .dex-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dex-split-grid.reverse .dex-split-image {
    order: -1;
  }

  .dex-cta-box {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .dex-hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .dex-hero-title {
    font-size: 32px;
  }

  .dex-what-is-box {
    padding: 40px 20px;
  }

  .dex-section-title {
    font-size: 28px;
  }
}

/*  */
/* ROOT */
.platforms-section {
  background: #f5f7fb;
  padding: 80px 0;
}

/* CONTAINER */
.platforms-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

/* CARD */
.platforms-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

/* BIG CARD */
.platforms-card.featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* RIGHT GRID */
.platforms-right {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* BADGE */
.platforms-badge {
  background: #eef2f7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.platforms-badge.purple {
  background: #ede9fe;
  color: #7c3aed;
}

/* TEXT */
.platforms-text {
  margin: 16px 0;
  color: #374151;
  line-height: 1.6;
}

/* STARS */
.platforms-stars {
  color: #fbbf24;
  margin-top: 10px;
}

/* PROFILE */
.platforms-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.platforms-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.platforms-small-profile img {
  width: 36px;
  height: 36px;
}

/* STATS */
.platforms-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .platforms-container {
    grid-template-columns: 1fr 1fr;
  }

  .platforms-right {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .platforms-container {
    grid-template-columns: 1fr;
  }
}

/* icons */
.service-style-five-item svg {
  transition: 0.3s ease;
}

.service-style-five-item:hover svg {
  transform: scale(1.15);
  color: #1d4ed8;
}

.pricing-modern {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}

.pricing-modern .title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0f172a;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #c7d2fe;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: #4f46e5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  transition: 0.3s;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 20px 25px;
  border-radius: 16px;
  width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.timeline-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #64748b;
}

/* Hover Effects */
.timeline-item:hover .timeline-icon {
  transform: scale(1.2);
  background: #4338ca;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
}

/*  */
.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* IMAGE */
.process-image img {
  width: 80%;
  border-radius: 20px;
  object-fit: cover;
}

/* ITEM */
.process-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: flex-start;
}

/* ICON */
.icon-box {
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00f5ff, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* TEXT */
.process-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.process-item p {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-image {
    margin-bottom: 40px;
  }
}

/*  */

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
}
