/* pricing section */

.pricing-section {
  background-color: #ffffff;
  /* padding: 80px 20px; */
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-section .section-header h1 {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
}

.pricing-section .section-header p {
  /* color: #011b7c; */
  /* font-size: 1.1rem; */
  /* max-width: 700px; */
  margin: 0 auto 0 0;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  align-items: start;
}
.pricing-container {
  margin: 0 10px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 6px solid #de2533;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 30px;
  text-align: center;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.pricing-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}

.pricing-price {
  background: #de2533;
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  padding: 20px 0;
}

.currency {
  /* font-size: 1.5rem; */
  vertical-align: top;
  margin-right: 5px;
}

.pricing-content {
  padding: 25px 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid #eee;
}

.pricing-features li i {
  font-size: 1.1rem;
  margin-right: 12px;
  color: #00bfa6;
}

.pricing-features li .bi-x-circle {
  color: #de2533;
}

.pricing-btn {
  margin: 0 30px 30px;
  padding: 14px;
  text-align: center;
  background: linear-gradient(135deg, #d60808, #912020);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 200px;
  transition: background 0.5s linear;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #912020, #d60808);
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.popular.pricing-card {
  overflow: hidden;
}

.popular::after {
  content: "Most Popular";
  position: absolute;
  top: 20px;
  right: -45px;
  background: #de2533;
  color: #fff;
  padding: 5px 50px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
@media (max-width: 1680px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    gap: 10px;
  }
  .pricing-content {
    padding: 20px 20px;
  }
  .pricing-header {
    padding: 20px;
  }
  .pricing-features li {
    font-size: 13px;
  }
}
@media (max-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
  }
  .pricing-content {
    padding: 15px 15px;
  }
  .pricing-header {
    padding: 15px;
  }
  .pricing-features li {
    font-size: 13px;
    padding: 8px 0;
  }
  .pricing-price {
    padding: 15px 0;
  }
  .pricing-container {
    margin: 0 25px;
  }
}
@media (max-width: 1300px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .pricing-content {
    padding: 20px 20px;
  }
  .pricing-header {
    padding: 20px;
  }
  .pricing-features li {
    font-size: 13px;
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 15px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-card {
    margin-bottom: 20px;
  }
}

/* === NAVIGATION CARDS SECTION === */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.nav-card {
  background-color: #f9f9f9;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem;
  width: 160px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333333;
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.nav-card img {
  width: 80px;
  /* margin-bottom: 1rem; */
}

.nav-card p {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .nav-links {
    /* flex-direction: column; */
    align-items: start;
  }

  .nav-card {
    width: 90%;
    max-width: 130px;
  }
}

/* === JOIN BANNER NEW DESIGN === */
.join-banner-section {
  background-color: #fff;
  /* padding: 0; */
}

.join-banner {
  position: relative;
  background: url("../img/join-bg.webp")
    no-repeat;
  background-size: cover;
  background-position: 100% 30%;
  padding: 4rem 2rem;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
}

.join-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 40, 0.7);
  z-index: 1;
}

.join-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.join-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.join-subtext {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.join-button {
  font-size: 16px;
  padding: 8px 10px;
  font-weight: 600;
  min-width: max-content;
  width: 50%;
}

@media (max-width: 768px) {
  .join-heading {
    font-size: 1.6rem;
  }

  .join-subtext {
    font-size: 1rem;
  }

  .join-button {
    width: 100%;
    font-size: 1rem;
  }
}
.uk-button-bg {
  background: linear-gradient(135deg, #d60808, #912020) !important;
  color: #fff;
}
.uk-button-bg:hover {
  background: linear-gradient(135deg, #912020, #d60808) !important;
  color: #fff;
}

.highlight-text {
  color: #de2533;
  padding-bottom: 4px;
}
/* mt5 section css */
.mt5-original-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #f9b200;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.mt5-original-card ul {
  padding-left: 20px;
  color: #555;
}

.mt5-original-card ul li::marker {
  color: #f9b200;
}

.readmore-btn {
  background: #f7f0e6;
  color: #9c7400;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.readmore-btn:hover {
  background: #9c7400;
  color: #fff;
}
