    body {
      font-family: Arial, sans-serif;
    }
        /* ===== GLOBAL ===== */
section {
  padding: 80px 0;
}

h2 {
  font-weight: 700;
  color: #1c1c1c;
}

p {
  color: #6c757d;
}

    li.nav-item .nav-link {
      color: #035c4d;
      font-weight: 700;
      font-size: 18px;
    }

   

    li.nav-item {
      padding: 8px 10px;
    }
    .nav-link i {
  font-size: 15px;
  color: #035c4d;
}
.nav-item:hover i, .nav-item:hover .nav-link {
  color: #ff6a2a;
}

    .hero {
      background: linear-gradient(180deg, #f3efe4, #a8d5c2);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Floating Animation */
@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Apply to image */
.float-img {
  animation: floatY 4s ease-in-out infinite;
}

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .btn-orange {
      background-color: #ff6a2a;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
    }

    .btn-outline-green {
      border: 2px solid #0d6b5c;
      color: #0d6b5c;
      border-radius: 30px;
      padding: 10px 25px;
    }

    .stats {
      margin-top: 40px;
    }

    .ticker {
      background: #d6efe5;
      padding: 10px;
      border-radius: 50px;
      margin-top: 40px;
      white-space: nowrap;
      overflow: hidden;
    }

    .ticker span {
      margin-right: 25px;
      font-size: 14px;
    }

    .feature-card {
      border-radius: 15px;
      padding: 30px;
      color: #fff;
    }

    .card-dark {
      background: #0d6b5c;
    }

    .card-light {
      background: #b9ddd3;
      color: #000;
    }

    .card-green {
      background: #14a87c;
    }

    .navbar-brand span {
      color: #ff6a2a;
      font-weight: bold;
    }

    .hero-img {
      max-width: 100%;
    }
 




/* ===== BADGE STYLE ===== */
.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #0d6b5c;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid #e5f2ee;
}

/* ===== ABOUT SECTION ===== */
.about-box .col-6 {
  margin-top: 0;
}

.about-box > .col-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  background: #fff;
  border: 1px solid #e6efeb;
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-box > .col-6:hover {
  transform: translateY(-4px);
  border-color: #cde3db;
  box-shadow: 0 10px 24px rgba(13, 107, 92, 0.12);
}

.about-box h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
  color: #1c1c1c;
}

.about-box i {
  background: #e6f4ef;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0d6b5c;
  font-size: 14px;
  flex-shrink: 0;
}

.about-box small {
  color: #6c757d;
  font-size: 13px;
}

/* ===== FEATURE CARDS (3 BOX) ===== */
.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-box i {
  color: #ff6a2a;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(90deg,#a8d5c2,#e8f5e9);
  border-radius: 20px;
}

/* ===== FEATURE GRID ===== */
.feature-grid-box {
  background: #cde8df;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: 0.3s;
}

.feature-grid-box:hover {
  transform: scale(1.03);
}

/* ===== CHART SECTION ===== */
.chart-box img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== BUTTON IMPROVE ===== */
.btn-orange {
  background: #ff6a2a;
  border: none;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #e85b1f;
}


.tradoz-footer {
  background: linear-gradient(135deg, #d9f3e6, #e6f5ef);
  padding: 80px 0 30px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
}

/* Headings */
.tradoz-footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.tradoz-footer p {
  color: #5f6c7b;
  font-size: 14px;
}

/* Links */
.tradoz-footer ul {
  list-style: none;
  padding: 0;
}

.tradoz-footer ul li {
  margin-bottom: 10px;
}

.tradoz-footer ul li a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 14px;
  transition: 0.3s;
}

.tradoz-footer ul li a:hover {
  color: #ff6b2c;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6b2c;
  color: #fff;
}

/* Subscribe Box */
.subscribe-box {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 15px;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  outline: none;
}

.subscribe-box button {
  background: #ff6b2c;
  border: none;
  padding: 12px 25px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #e55a20;
}

/* Policy */
.policy-text {
  font-size: 12px;
  margin-top: 10px;
  color: #6c757d;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #cfe7dc;
  margin-top: 50px;
  padding-top: 20px;
}

.footer-bottom a {
  margin-left: 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: #ff6b2c;
}


.app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef8f3, #ffffff);
  overflow: hidden;
}

/* LEFT IMAGE */
.app-image-wrapper {
  position: relative;
  display: inline-block;
}

.bg-circle {
  width: 450px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: rotateSlow 20s linear infinite;
}

.main-img {
  width: 420px;
  position: relative;
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ROTATE BG */
@keyframes rotateSlow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* RIGHT CONTENT */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #ffffff, #f4faf7);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #0d6b5c;
  margin-bottom: 15px;
  border: 1px solid #d7ebe4;
  box-shadow: 0 4px 14px rgba(13, 107, 92, 0.1);
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b2c;
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.15);
  flex-shrink: 0;
}

.tag .dot {
  width: 8px;
  height: 8px;
  background: #ff6b2c;
  border-radius: 50%;
  margin-right: 8px;
}

/* Shared reveal animation for Home + About pages */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-left.show,
.reveal-right.show {
  transform: translateX(0);
}

.hero-right .circle {
  animation: floatY 5s ease-in-out infinite;
}

.hero-right .c2 {
  animation-delay: 0.5s;
}

.hero-right .c3 {
  animation-delay: 1s;
}

.hero-right .c4 {
  animation-delay: 1.5s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-right .circle,
  .float-img {
    animation: none;
  }
}

.title {
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.desc {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 25px;
}

/* STORE BUTTONS */
.store-buttons img {
  width: 160px;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.store-buttons img:hover {
  transform: scale(1.05);
}



.breadcrumb-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #005651;
  color: #fff;
}

/* Background Image */
.breadcrumb-bg {
  position: absolute;
  inset: 0;
  background: url('/images/breadcrumb.webp') no-repeat center/cover;
  opacity: 0.25;
  z-index: 1;
}



/* Content */
.breadcrumb-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Links */
.breadcrumb-links {
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.breadcrumb-links a:hover {
  opacity: 1;
}

.breadcrumb-links span {
  margin: 0;
}

.breadcrumb-links .active {
  opacity: 1;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .breadcrumb-section {
    padding: 120px 0 68px;
  }

  .breadcrumb-links {
    font-size: 14px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .breadcrumb-section {
    padding: 64px 0 56px;
  }

  .breadcrumb-links {
    font-size: 13px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .main-img {
    width: 300px;
  }

  .bg-circle {
    width: 320px;
  }
}

@media (max-width: 576px) {
  .about-box > .col-6 {
    min-height: auto;
    padding: 14px;
  }

  .about-box .col-6 {
    width: 100%;
  }

  .about-box h6 {
    font-size: 14px;
  }
}
