@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --primary: #198d66;
  --primary-hover: #126c53;
  --secondary-dark: #060b10; /* Deep Navy */
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-dark);
  font-weight: 700;
}

/* Navbar */
.header-s {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.header-s.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1020;
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  color: var(--secondary-dark) !important;
  font-weight: 800;
  font-size: 1.5rem;
}
.logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* Hero Section */
#topBanner {
  margin-top: 0px; /* Offset for fixed header if needed */
}
.outlineBtn {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.outlineBtn:hover {
  background: var(--primary);
  color: #fff;
}

#topBanner .carousel-caption {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  bottom: 50px;
  left: 10%;
  right: auto;
  max-width: 500px;
  text-align: left;
  box-shadow: var(--shadow-md);
}

#topBanner h5 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#topBanner {
  position: relative;
}

/* Image */
.banner-img {
  height: 90vh;
  object-fit: cover;
}

/* Dark gradient overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* Content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Button */
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff9f1c;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  transform: translateX(4px);
  background: #ffb347;
}

#topBanner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Feature Cards (Second Section) */
#secondsec {
  padding: 80px 0;
  background-color: var(--bg-white);
}

#secondsec h4 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.colorye {
  color: var(--primary);
}

.iconbox {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.iconbox:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.iconbox img {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.iconbox h6 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.iconbox p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sync Section (Third Section) */
#thirdsec {
  padding: 80px 0;
  background-color: var(--bg-light);
}

#thirdsec .container {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.listitemcol {
  padding: 50px;
}

.listitem {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

#thirdsec ul {
  list-style: none;
  padding: 0;
}

#thirdsec ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

#thirdsec ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Platform in Action (Fourth Section) */
#fouthsec {
  padding: 80px 0;
}

.rightcol {
  padding-left: 30px;
}

.rightcol h4 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.rightcol .toptext {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.boxitem {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.boxitem .box {
  flex: 1;
  min-width: 120px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
}

.boxitem .box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.boxitem .box .shorttext {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
}

/* App Section (Fifth Section) */
#fifthsec {
  background: var(--secondary-dark);
  color: #fff;
  padding: 80px 0;
}

#fifthsec h5 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#fifthsec .shorttest {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.listbox {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.listbox p {
  margin: 0;
  font-weight: 500;
}

/* Pricing (Sixth Section) */
#sixthsec {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.pricing-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.pricing-card:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pricing-card p {
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.priceam {
  text-align: right;
  margin-top: auto;
}
#fifthsec .btn-primary {
  background-color: #fff;
  border-color: #fff;
  color: var(--secondary-dark);
  padding: 10px 25px;
  font-weight: 600;
}
#fifthsec .btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
#fifthsec {
  position: relative;
}
.mob {
  width: 570px;
  height: auto;
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}

.priceam h1 {
  color: var(--primary);
  font-size: 3rem;
  margin: 0;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Background icon */
.price-bg-icon {
  position: absolute;
  bottom: 10px;
  left: 18px;
  font-size: 96px;
  opacity: 0.06;
  pointer-events: none;
}

/* Text */
.small-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.desc {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.75;
}
#btn11 {
  color: var(--secondary-dark);
  margin-top: 20px;
  padding: 10px 30px;
}

/* Price */
.priceam {
  margin-top: 20px;
}

.priceam h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.priceam span {
  font-size: 22px;
  vertical-align: top;
}

.footer {
  background: #0b1c2d;
  color: #cfd8e3;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a,
.footer-link a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-list a:hover,
.footer-link a:hover {
  color: #ff9f1c;
}

.footer-link {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-link i {
  margin-right: 8px;
  color: #ff9f1c;
}

/* Social icons */
.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ff9f1c;
  color: #000;
}

/* Bottom bar */
.footer-bottom {
  background: #081421;
  text-align: center;
  padding: 14px 10px;
  font-size: 13px;
  color: #9fb0c3;
}
.footer-logo img {
  width: 100px;
}
/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* Responsive */
@media (max-width: 768px) {
  #topBanner .carousel-caption {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: -50px;
    z-index: 10;
  }

  .listitem {
    flex-direction: column;
    gap: 10px;
  }

  .listitemcol {
    padding: 30px;
  }

  .rightcol {
    padding-left: 0;
    margin-top: 30px;
  }
}

.crypto-ticker {
  background: #0b1c2d;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: scrollTicker 35s linear infinite;
  font-size: 14px;
}

.crypto-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  gap: 8px;
  font-weight: 500;
}

.crypto-item img {
  width: 20px;
  height: 20px;
}

.crypto-up {
  color: #2ecc71;
}

.crypto-down {
  color: #e74c3c;
}

.market-cap {
  opacity: 1;
  font-size: 13px;
}

@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.crypto-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.price-card {
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover effect */
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* Grid background pattern */
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

/* Header */
.price-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.price-header i {
  font-size: 26px;
}

/* Price */
.price-value {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
  position: relative;
  z-index: 1;
}

.price-value span {
  font-size: 20px;
  vertical-align: top;
}

/* Features */
.price-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  position: relative;
  z-index: 1;
}

.price-features li {
  font-size: 14px;
  margin-bottom: 8px;
}

.price-features i {
  color: #2ecc71;
  margin-right: 6px;
}

/* CTA */
.price-cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.price-cta:hover {
  opacity: 0.85;
}

/* ===== DIFFERENT BACKGROUND COLORS ===== */

.bg-free {
  background: #eaf6ff;
}

.bg-starter {
  background: #eafaf1;
}

.bg-pro {
  background: #f2edff;
}

.bg-enterprise {
  background: #fff2e6;
}
