/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

:root {
  --brand: #2563eb; /* primary blue */
  --brand-dark: #1e40af;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-soft: #f5f9ff;
}

/* ================= HEADER ================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e9edf3;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo img {
  height: 60px;
}

/* ================= NAV ================= */
.nav ul {
  list-style: none;
  display: flex;
  gap: 14px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #0b1b2b;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  background-color: #f6f9ff;
  border: 1px solid #cfd9ee;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 12px;
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: 0.25s;
  text-decoration: none;
  color: #0b1b2b;
}

.dropdown-item:hover {
  background: #f6f9ff;
}

.dropdown-item i {
  font-size: 20px;
  color: #3b5bfd;
}

.dropdown-item strong {
  font-size: 14px;
}

.dropdown-item span {
  font-size: 12px;
  color: #6b7280;
}

/* ================= ACTIONS ================= */
.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login {
  text-decoration: none;
  color: #0b1b2b;
  font-weight: 500;
  background-color: #f6f9ffe3;
  border: 1px solid #cfd9ee;
  padding: 10px 18px;
  border-radius: 12px;
}

.btn {
  background: #3b5bfd;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.flags img {
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.flags img:hover {
  transform: scale(1.1);
}

/* ================= MOBILE ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0b1b2b;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: #f6f9ff;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9edf3;
  margin-bottom: 20px;
}

.mobile-logo img {
  height: 34px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #0b1b2b;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.close-menu:hover {
  background: #f6f9ff;
}

/* Mobile Actions */
.mobile-actions {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9edf3;
}

.mobile-login {
  text-decoration: none;
  color: #0b1b2b;
  font-weight: 500;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s;
  text-align: center;
  background-color: #f6f9ff;
  border: 1px solid #cfd9ee;
}

.mobile-login:hover {
  background-color: #b6b7ba;
  border: 1px solid #cfd9ee;
}

.mobile-btn {
  background: #3b5bfd;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}

.mobile-btn:hover {
  background: #2a4df5;
}

.mobile-flags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.mobile-flags img {
  width: 28px;
  border-radius: 50%;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 20px;
    transition: left 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
  }

  .nav.active {
    left: 0;
  }

  .mobile-menu-header {
    display: flex;
  }

  .mobile-actions {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    flex: 1;
  }

  .actions {
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f9fafc;
    border-radius: 10px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-link {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .nav-link i {
    font-size: 14px;
    transition: transform 0.3s;
  }

  .dropdown.open .nav-link i {
    transform: rotate(180deg);
  }
}
/* hero section */
/* HERO SECTION */
.hero {
  padding: 50px 6%;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 26px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
}

.hero-visual img {
  max-width: 560px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* INFO STRIP */
.info-strip {
  background: linear-gradient(90deg, #020617, #0f172a);
  padding: 30px 6%;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14%;
}

.info-container h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}

.info-container h3 span {
  font-weight: 700;
}

/* VIDEO BUTTON */
.btn-video {
  background: #ffffff;
  color: #020617;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-video:hover {
  background: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-visual img {
    max-width: 420px;
  }

  .info-container {
    text-align: center;
    justify-content: center;
  }
}
/* problem section */

:root {
  --brand: #2563eb;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-soft: #f6f9ff;
}

.problem-section {
  padding: 90px 6%;
  background: linear-gradient(#fff, var(--bg-soft));
}

.problem-wrap {
  max-width: 1200px;
  margin: auto;
}

.problem-title {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.problem-main {
  display: grid;
  gap: 2px;
}

@media (min-width: 900px) {
  .problem-main {
    grid-template-columns: auto 80px 1fr;
    align-items: center;
  }
}

/* LEFT */
.image-card {
  width: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.image-card img {
  width: 100%;
  display: block;
}

.blue-box {
  margin-top: 18px;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
}

/* RIGHT */
.black-pill {
  background: #000;
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 30px;
}

.task-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 600px) {
  .task-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.task-grid ul {
  list-style: none;
}

.task-grid li {
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--text-muted);
  position: relative;
}

.task-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 22px;
}

/* NOTE */
.problem-note {
  margin: 50px 0 30px;
  font-size: 18px;
  color: var(--text-muted);
}

/* TIMELINE */
.timeline {
  display: grid;
  gap: 30px;
}

@media (min-width: 900px) {
  .timeline {
    grid-template-columns: auto 1fr 60px 1fr;
    align-items: center;
  }
}

.time-pill {
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.timeline-box {
  background: #fff;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.timeline-box.highlight {
  color: var(--brand);
  font-weight: 700;
}

/* ARROWS */
.flow-arrow {
  height: 2px;
  width: 40px;
  background: var(--brand);
  position: relative;
  animation: arrowMove 1.2s infinite;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  border-left: 8px solid var(--brand);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.flow-arrow.small {
  width: 30px;
}

/* ANIMATION */
@keyframes arrowMove {
  0% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.Solutions {
  display: grid;
}
/* altrady hero */
.altrady-hero {
  background: #eef3f8;
  padding: 35px 6%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.altrady-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT */
.altrady-hero-text {
  flex: 1;
  animation: fadeUp 0.8s ease forwards;
}

.altrady-hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0b1f44;
}

.altrady-hero-desc {
  font-size: 17px;
  color: #4a5d73;
  margin-bottom: 14px;
  max-width: 520px;
}

/* IMAGE */
.altrady-hero-media {
  flex: 1;
  text-align: right;
  animation: fadeRight 1s ease forwards;
}

.altrady-hero-media img {
  max-width: 100%;
  height: auto;
}

/* FEATURE PILLS */
.altrady-feature-row {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: left;
}

.altrady-pill {
  background: #e9eef5;
  color: #0b1f44;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.altrady-pill:hover {
  background: #0b1f44;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .altrady-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .altrady-hero-media {
    text-align: center;
  }

  .altrady-hero-title {
    font-size: 32px;
  }
}

.curve-content-section {
  background: #000;
  padding: 70px 20px;
  padding-bottom: 130px;
  color: #fff;
  overflow: hidden;
}

.curve-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.curve-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0px;
}

.curve-visual {
  position: relative;
}

.curve-visual img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
}

/* CONTENT LAYER */
.curve-points {
  position: absolute;
  inset: 0;
}

/* POINT BASE STYLE */
.curve-point {
  position: absolute;
  max-width: 260px;
}

.curve-point h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.curve-point p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd6e4;
}

/* 🔵 MATCHING YOUR DOT POSITIONS */
.p1 {
  left: 9%;
  bottom: -25%;
}

.p2 {
  left: 36%;
  bottom: -17%;
}

.p3 {
  left: 63%;
  bottom: 0%;
}

.p4 {
  left: 86%;
  bottom: 18%;
}

/* 📱 MOBILE STACK */
@media (max-width: 768px) {
  .curve-points {
    position: static;
    display: grid;
    gap: 30px;
    margin-top: 50px;
  }

  .curve-point {
    position: static;
    max-width: 100%;
  }

  .curve-title {
    font-size: 30px;
  }
}
/* features  */

.features6-section {
  padding: 40px 20px;
  background: #ffffff;
}

.features6-wrap {
  max-width: 1200px;
  margin: auto;
}

.features6-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #0b1220;
}

/* GRID */
.features6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.features6-card {
  border: 1px solid #d6def0;
  border-radius: 22px;
  padding: 28px 26px;
  background: #fff;
  transition: all 0.3s ease;
}

.features6-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.features6-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.features6-icon i {
  font-size: 22px;
  color: #0b66ff;
}

/* TEXT */
.features6-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features6-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

/* 🔥 ANIMATIONS */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features6-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features6-title {
    font-size: 30px;
  }

  .features6-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ  */
.faq-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.faq-wrap {
  width: 100%;
  max-width: 790px;
}
.faq-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #111827;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  content: "−";
  transform: rotate(0deg);
}

/* Footer Styles */
.footer {
  background: #0b0c1a;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col.social a {
  display: inline-block;
  margin-right: 12px;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col.social a:hover {
  color: #1da1f2; /* Example hover color for Twitter, adjust as needed */
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-logo {
  width: 75px;
  margin-bottom: 12px;
}

.branding p {
  font-size: 14px;
  color: #ccc;
  max-width: 240px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* HERO SECTION */
.hero-img {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* TEXT */
.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1e40af;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 40px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
}

/* SECTION */
.orders-section {
  padding: 40px 20px;
}

.orders-container {
  max-width: 1180px;
  margin: auto;
}

/* HEADER */
.orders-header {
  max-width: 560px;
  margin-bottom: 60px;
}

.orders-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.orders-header p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* GRID */
.orders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* CARD */
.order-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  background: #ffffff;
  height: min-content;
}

.order-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.order-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 18px;
}

.order-card img {
  width: 100%;
  border-radius: 10px;
  background: #f8fafc;
}

/* BOTTOM CARD */
.bottom-card {
  padding: 28px;
}

.bottom-content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 30px;
}

.bottom-text h3 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .orders-grid {
    grid-template-columns: 1fr;
  }

  .bottom-content {
    grid-template-columns: 1fr;
  }

  .orders-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .orders-header h2 {
    font-size: 26px;
  }

  .order-card {
    padding: 20px;
  }
}

/* MAIN WRAPPER */
.featured-cta {
  width: 100%;
}

/* FEATURED BAR */
.featured-bar {
  background: #f1f5f9;
  padding: 26px 20px 30px;
  text-align: center;
}

.featured-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #334155;
  margin-bottom: 22px;
}

/* LOGOS */
.featured-logos {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.featured-logos img {
  max-height: 34px;
  width: auto;
  opacity: 0.9;
}

/* CTA SECTION */
.cta-section {
  background: #1e40af;
  padding: 30px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 16px;
}

.cta-note {
  font-size: 16px;
  color: #dbeafe;
  margin-bottom: 40px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .featured-logos {
    justify-content: center;
  }

  .cta-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .cta-section h2 {
    font-size: 26px;
  }

  .cta-btn {
    padding: 14px 28px;
  }
}

/* SECTION */
.trade-automation {
  padding: 40px 20px 0;
  text-align: center;
}

/* TEXT */
.trade-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.trade-content p {
  font-size: 20px;
  color: #475569;
  margin-bottom: 28px;
}

/* BUTTON */
.trade-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 10px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.trade-btn:hover {
  background: #1e40af;
}

/* IMAGE */
.trade-image {
  margin-top: 70px;
  width: 100%;
}

.trade-image img {
  width: 100%;
  max-width: 1200px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trade-content h1 {
    font-size: 40px;
  }

  .trade-content p {
    font-size: 18px;
  }

  .trade-image img {
    border-radius: 18px 18px 0 0;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .trade-content h1 {
    font-size: 30px;
  }

  .trade-content p {
    font-size: 16px;
  }
  .exchange-wise {
    display: grid !important;
  }
}
.exchange-wise {
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* ===== SUPPORTED EXCHANGES SECTION ===== */
.supported-exchanges {
  padding: 80px 20px;
  background: #ffffff;
  font-family: system-ui, sans-serif;
}

.supported-exchanges .container {
  max-width: 1200px;
  margin: auto;
  display: grid !important;
  justify-content: center;
}

.supported-exchanges .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* SUPPORT BAR */
.supported-exchanges .support-bar {
  background: #f4f7fb;
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.supported-exchanges .support-bar span {
  font-weight: 600;
}

.supported-exchanges .support-items {
  display: flex;
  gap: 25px;
}

.supported-exchanges .support-items span {
  color: #0d5cff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.supported-exchanges .support-items i {
  background: #e3ebff;
  color: #0d5cff;
  border-radius: 50%;
  padding: 4px 6px;
  font-style: normal;
}

/* GRID */
.supported-exchanges .exchange-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.supported-exchanges .exchange-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.supported-exchanges .exchange-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* COIN IMAGE */
.supported-exchanges .coin-bg {
  top: -20px;
  right: -20px;
  width: 90px;
  z-index: 0;
}

/* LOGO */
.supported-exchanges .exchange-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.binance {
  background: #f3ba2f;
}
.kucoin {
  background: #22b38c;
}
.bybit {
  background: #fdb014;
}
.bingx {
  background: #0d5cff;
}

.supported-exchanges h3 {
  margin: 20px 0 15px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* TAGS */
.supported-exchanges .tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.supported-exchanges .tags span {
  background: #0d5cff;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* LEARN MORE */
.supported-exchanges .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f4f7fb;
  border-radius: 12px;
  color: #0d5cff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.supported-exchanges .learn-more span {
  transition: transform 0.3s ease;
}

.supported-exchanges .learn-more:hover span {
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .supported-exchanges .exchange-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .supported-exchanges .exchange-grid {
    grid-template-columns: 1fr;
  }

  .supported-exchanges .support-items {
    flex-direction: column;
    gap: 10px;
  }

  .supported-exchanges .coin-bg {
    width: 70px;
  }
}

.about-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: url("../img/about.webp") center right / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Dark gradient overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 8, 30, 0.95) 40%,
    rgba(3, 8, 30, 0.7) 60%,
    rgba(3, 8, 30, 0.2) 100%
  );
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1013px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
}

.about-content {
  max-width: 600px;
  text-align: center;
  margin-left: 0px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 35px;
}

.about-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #1d4ed8;
}

.courses-section {
  padding: 40px 20px;
  background: #ffffff;
}

.courses-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.course-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* IMAGE AREA */
.course-image {
  position: relative;
  /* height: 200px; */
  background: linear-gradient(135deg, #1f3c2b, #3a5f41);
  color: #fff;
  padding: 25px;
}

.course-image.dark {
  background: linear-gradient(135deg, #0f172a, #064e3b);
}

.course-image.light {
  background: linear-gradient(135deg, #4b6b8a, #7aa5c6);
}

.course-image img {
  position: absolute;
  right: 20px;
  bottom: 5px;
  width: 90px;
}

.course-image h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* CONTENT */
.course-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
}

.category.green {
  color: #16a34a;
}
.category.blue {
  color: #2563eb;
}
.category.orange {
  color: #f59e0b;
}

.course-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.course-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
}

.author {
  font-size: 14px;
  color: #64748b;
  margin-bottom: auto;
}

/* FOOTER */
.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.price del {
  color: #94a3b8;
  margin-right: 6px;
}

.learn-btn {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .courses-container {
    grid-template-columns: 1fr;
  }
}

.mission-section {
  padding: 20px 20px;
  display: flex;
  justify-content: center;
}

.mission-box {
  background: #1f3fae;
  max-width: 1200px;
  width: 100%;
  padding: 80px 60px;
  border-radius: 28px;
  text-align: center;
}

.mission-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 25px;
}

.mission-box p {
  color: #dbe4ff;
  font-size: 16px;
  margin-bottom: 40px;
}

.mission-btn {
  display: inline-block;
  background: #2d6bff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.mission-btn:hover {
  background: #1e55e0;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-box {
    padding: 50px 25px;
  }

  .mission-box h2 {
    font-size: 24px;
  }
}
