/* ===== Facts Section ===== */
.facts-section {
  background-color: #ffffff; /* White background */
  padding: 80px 0;
}

.fact-card {
  background:#fff; /* light gray card */
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.fact-card:hover {
  /*background:#fe920b; */
  /*background:#000; */
  background:#87d0ae; 
  transform: translateY(-8px);
  color:white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.fact-card img {
  width: 70px;
  height: auto;
}

.fact-card h1 {
  color: #0d0d0d;
  font-weight: 700;
  font-size: 2rem;
}

.fact-card p {
  color: #007bff; /* blue text */
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .fact-card {
    margin-bottom: 20px;
  }
}


/* ==== Start Trading Button ==== */
.btn-trade {
  display: inline-block;
  background: #fe920b;          
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(254, 146, 11, 0.3);
}

/* Hover Effect */
.btn-trade:hover {
  background: #ffffff;          
  color: #fe920b;             
  border: 2px solid #fe920b;  
  box-shadow: 0 6px 15px rgba(254, 146, 11, 0.5);
  transform: translateY(-3px);
}


.btn-trade:active {
  transform: scale(0.97);
}



/* ===== Why Choose Section ===== */
.why-choose-section {
  background-color: #f8f9fb;
  padding: 80px 0;
}

.why-choose-section .section-header h1 {
  font-weight: 700;
  color: #fe920b;
}

.why-choose-section .section-header p {
  color: #007bff;
}

/* ===== Card Style ===== */
.why-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 35px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.why-card img {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== Hover Effect ===== */
.why-card:hover {
  /*background-color: #007bff;*/
  background-color: #000;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.why-card:hover img {
  transform: scale(1.1);
}

.why-card:hover h5,
.why-card:hover p {
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .why-card {
    padding: 25px 20px;
  }

  .why-card img {
    width: 55px;
    height: 55px;
  }
}


/*slider start*/
/* ------------------------------
   TRADING SECTION STYLES
--------------------------------*/


.trading-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  color: #fff;
  background-size: cover;
  background-position: center;
  animation: tradingBg 20s infinite linear;
  overflow: hidden;
}

/* Overlay for dark effect */
.trading-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0, 20, 60, 0.7);*/
  z-index: 1;
}

/* Content container */
.trading-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Title */
.trading-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Description paragraph */
.trading-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* List styling */
.trading-list {
  margin-bottom: 2rem;
  list-style: none;
}

.trading-list li {
  margin-bottom: 0.8rem;
}

.trading-list li::before {
  content: "✔️";
  margin-right: 10px;
  color: #4CAF50;
}

/* Buttons area */
.trading-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Common button styles */
.btn {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
}

/* Primary button */
.btn-primary {
  background: #00b050;
  color: #fff;
}

.btn-primary:hover {
  background: #009045;
}

/* Outline button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #001440;
}

/* Note text */
.trading-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ✅ Background image animation (fixed paths) */
@keyframes tradingBg {
  0% {
    background-image: url("../images/PM.jpeg");
  }
  33% {
    background-image: url("../images/PM.jpeg");
  }
  66% {
    background-image: url("../images/PM.jpeg");
  }
  100% {
    background-image: url("../images/PM.jpeg");
  }
}

/* Responsive design */
@media (max-width: 768px) {
    
    .trading-section {
  margin-top:10px;
}
  .trading-title {
    font-size: 2rem;
  }

  .trading-text {
    font-size: 1rem;
  }

  .trading-section {
    /*padding: 0 2rem;*/
  }
}


.platform-section {
    background-color: #ffffff;
    padding: 60px 80px;
}

.platform-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.platform-text {
    flex: 1;
    max-width: 600px;
}

.platform-text h2 {
    font-size: 32px;
    color: #0a1f44;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.platform-feature {
    display: flex;
    margin-bottom: 25px;
}

.platform-feature .icon {
    font-size: 24px;
    margin-right: 15px;
    color: #0047bb;
    flex-shrink: 0;
}

.platform-feature h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #0a1f44;
}

.platform-feature p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.platform-feature a {
    color: #0047bb;
    text-decoration: none;
}

.platform-image {
    flex: 1;
    text-align: center;
}

.platform-image img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    .platform-section {
        padding: 30px 20px;
    }

    .platform-content {
        flex-direction: column;
        align-items: center;
    }

    .platform-text {
        max-width: 100%;
        text-align: center;
    }

    .platform-text h2 {
        font-size: 24px;
    }

    .sub-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .platform-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .platform-feature .icon {
        margin-bottom: 10px;
    }

    .platform-feature h3 {
        font-size: 16px;
    }

    .platform-feature p {
        font-size: 13px;
    }

    .platform-image {
        margin-top: 30px;
        width: 100%;
    }

    .platform-image img {
        width: 100%;
        height: auto;
    }
}


/* ========== TRADINGVIEW SECTION ========== */
.tv-section {
    background-color: #0a1f44;
    padding: 60px 80px;
    color: #ffffff;
}

.tv-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tv-left {
    flex: 1;
    text-align: center;
}

.tv-left img {
    max-width: 100%;
    height: auto;
}

.tv-right {
    flex: 1;
}

.tv-logo {
    max-width: 80px;
    margin-bottom: 20px;
}

.tv-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.tv-desc {
    font-size: 16px;
    margin-bottom: 15px;
}

.tv-subdesc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tv-btn {
    display: inline-block;
    padding: 12px 25px;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tv-btn:hover {
    background-color: #ffffff;
    color: #0a1f44;
}

/* ========== RESPONSIVE CSS (Mobile) ========== */
@media (max-width: 768px) {
    .tv-section {
        padding: 40px 20px;
    }

    .tv-container {
        flex-direction: column;
        text-align: center;
    }

    .tv-right h2 {
        font-size: 24px;
    }

    .tv-desc, .tv-subdesc {
        font-size: 14px;
    }

    .tv-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tv-logo {
        max-width: 60px;
    }
}




