.btn-custom {
  background: #111827;
  border: 1px solid #1f2937;
  color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
}

.btn-active {
  background: #00d4ff;
  color: #000;
}

.box {
  background: #dbdde1;
  padding: 20px;
  border-radius: 15px;
}

.fundedgain-span {
    color: #00ffb4;
    border-bottom: 3px solid #00ffb4;
}
/* Hero Section */
.hero-sec {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  height: 100vh;
}

.hero-img {
  text-align: end;
}

.hero-content .title-xxl {
  font-size: 75px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}
.hero-text {
  margin-top: 80px;
}
@media (max-width: 1399px) {
  .hero-content .title-xxl {
    font-size: 60px;
  }
  .hero-sec {
    height: 650px;
  }
}
@media (max-width: 991px) {
  .hero-sec {
    height: 800px;
  }
  .hero-img.img-box,
  .hero-content {
    text-align: center;
  }
  .hero-img.img-box img {
    width: 100%;
    max-width: 500px;
  }
  .hero-content {
    margin-top: 15px;
  }
  .hero-content .title-xxl {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-content .title-xxl {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .hero-sec {
    height: 700px;
  }
  .hero-text {
    margin-top: 40px;
  }
}
/* payout css start  */

/* Badge */
.payout__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 157, 0.1);
  color: #00ff9d;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 15px;
}

.payout__badge-icon {
  background: #00ff9d;
  color: #000;
  font-size: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Live Dot */
.payout__live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00ff9d;
  border-radius: 50%;
  margin-left: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 255, 157, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
  }
}

.payout {
  background: #031b1a;
  padding: 60px 0;
  color: #fff;
}

.payout__title {
  font-size: 30px;
  font-weight: 700;
}

.payout__table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid #0f3d3a;
  border-radius: 12px;
}

.payout__table {
  width: 100%;
  border-collapse: collapse;
}

.payout__table th,
.payout__table td {
  padding: 14px;
  border-bottom: 1px solid #0f3d3a;
}

.payout__amount {
  color: #00ff9d;
  font-weight: 600;
}

/* Confirm Icons */
.payout__confirm {
  text-align: center;
}

.payout__icon {
  color: #00ff9d;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

/* Tooltip */
.payout__icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  transition: 0.2s;
  white-space: nowrap;
}

.payout__icon:hover::after {
  opacity: 1;
}

/* payout css end  */

/* Platform Css Start  */
.platform {
  background: #070014;
  padding: 80px 0;
  color: #fff;
}

.platform__title {
  font-size: 42px;
  font-weight: 800;
}

.platform__subtitle {
  color: #9ca3af;
  margin-top: 10px;
}

/* Tabs */
.platform__tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  background-color: #032926;
  padding: 15px;
  border-radius: 12px;
  margin: 40px 0;
}

.platform__tab {
  flex: 1;
  min-width: 140px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #001010;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.platform__tab.active {
  background: #00e0d6;
  color: #000;
  font-weight: 600;
}

/* Cards */
.platform__card {
  background: #1a0933;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.platform__card:hover {
  transform: translateY(-6px);
}

.platform__card img {
  max-width: 160px;
}

/* Platform Css End  */

/* Why Chose Funded Gain Section Start */

.whyfundedgain {
  background: linear-gradient(135deg, #021c1a, #043a36);
  padding: 80px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.whyfundedgain .title span {
  color: #00ffb4;
  border-bottom: 3px solid #00ffb4;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 18px;
  text-align: center;
}

.compare-table th {
  background-color: rgb(0 93 87);
}

/* Highlight Funded Gain Column */
.fg {
  background: rgba(0, 255, 180, 0.08);
  border-left: 2px solid rgba(0, 255, 180, 0.3);
  border-right: 2px solid rgba(0, 255, 180, 0.3);
  font-weight: 600;
}

/* Badges */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.win {
  background: rgba(0, 255, 180, 0.15);
  color: #00ffb4;
}

.highlight {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

/* Status */
.success {
  color: #00ffb4;
  font-weight: 600;
}

.danger {
  color: #ff5c5c;
  font-weight: 600;
}

/* Hover effect */
.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Trust Section */
.trust {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 255, 180, 0.08);
  padding: 15px 20px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .trust {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Why Chose Funded Gain Section End */

/* Why prefer funded gain over other prop firms Section Start */
.prefer-fundedgain {
  background: linear-gradient(rgba(2, 28, 26, 0.95), rgba(2, 28, 26, 0.95)), url("trading-bg.jpg");
  /* optional chart bg */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* Title */
.prefer-fundedgain .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.prefer-fundedgain .section-title span {
  color: #00fd69;
  border-bottom: 3px solid #00fd69;
}

/* Cards Grid */
.prefer-fundedgain .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.prefer-fundedgain .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  transition: 0.3s ease;
  position: relative;
}

/* Hover effect */
.prefer-fundedgain .card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 180, 0.5);
  box-shadow: 0 15px 40px rgba(0, 255, 180, 0.15);
}

/* Highlight middle card */
.prefer-fundedgain .card.highlight {
  border: 1px solid rgba(0, 255, 180, 0.6);
  background: linear-gradient(135deg, rgba(0, 255, 180, 0.15), rgba(0, 255, 180, 0.05));
}

/* Icon */
.prefer-fundedgain .icon {
  font-size: 34px;
  margin-bottom: 15px;
}

/* Title */
.prefer-fundedgain .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffd700;
}

/* Text */
.prefer-fundedgain .card p {
  font-size: 14px;
  color: #a5c3bd;
  line-height: 1.6;
}

/* Trust Bar */
.prefer-fundedgain .trust {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 255, 180, 0.08);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .prefer-fundedgain .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .prefer-fundedgain .trust {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .prefer-fundedgain .cards {
    grid-template-columns: 1fr;
  }

  .prefer-fundedgain .section-title {
    font-size: 26px;
  }
}

/* Why prefer funded gain over other prop firms Section End */
