/* ===== CONNECT SECTION ===== */
.connect-wrapper {
  text-align: center;
  padding: 60px 0;
}

.connect-wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.connect-wrapper h2 span {
  color: #2d9cff;
}

.connect-wrapper p {
  font-size: 16px;
  color: #3d3c3c;
  margin-bottom: 40px;
}

/* ===== INFO CARDS ===== */
.connect-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.connect-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #cfcccc;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  flex: 1;
  min-width: 280px;
}

.connect-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2e2b2b;
}

.connect-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #252525;
}

.connect-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: #0b1f47;
  font-weight: 500;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.connect-btn:hover {
  background: #2d9cff;
  color: #fff;
}

.connect-btn i {
  font-size: 16px;
}

/* ===== NEWSLETTER ===== */
.newsletter-box {
  margin: 40px auto 0;
  background: linear-gradient(135deg, #144c9d, #2385f5);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
}

.newsletter-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.newsletter-box h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.newsletter-box p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #0b1f47;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #2d9cff;
  color: #fff;
}

/* ===== FUNDING CARD ===== */
.funding-card {
  max-width: 650px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

.funding-card:hover {
  transform: translateY(-5px);
}

.funding-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1b65af;
}

.funding-card h4 {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* ===== FUNDING LIST ===== */
.funding-methods {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 30px 0;
  padding-left: 0;
}

.funding-methods li {
  background: #f9fafc;
  border: 1px solid #e0e4eb;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
}

.funding-methods li:hover {
  background: #eaf4ff;
  border-color: #1b65af;
}

.funding-methods i {
  font-size: 22px;
  color: #1b65af;
  margin-top: 8px;
}

.funding-text {
  flex: 1;
}

.funding-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.funding-text span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* ===== FUNDING BUTTON ===== */
.funding-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b65af;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.funding-btn:hover {
  background: #15508a;
  transform: translateY(-2px);
}

/* ===== WITHDRAW CARD ===== */
.withdraw-card {
  background: #fff;
  border: 1px solid #e0e4eb;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  margin: 10px 0;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.withdraw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.withdraw-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.withdraw-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.withdraw-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ===== NOTE SECTION ===== */
.note-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #5e56a1;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.note-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.note-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 8px;
}

.note-image {
  position: absolute;
  top: -40px;
  right: 0;
}

.note-image img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .connect-wrapper h2 {
    font-size: 28px;
  }

  .funding-card h3 {
    font-size: 24px;
  }

  .note-image {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .connect-cards {
    flex-direction: column;
  }

  .funding-methods {
    grid-template-columns: 1fr;
  }

  .note-section {
    flex-direction: column;
    text-align: center;
  }

  .note-content h3 {
    font-size: 20px;
  }

  .note-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .connect-wrapper h2 {
    font-size: 22px;
  }

  .connect-wrapper p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .note-image img {
    max-width: 150px;
  }
}

/* ==============================why choose css================================================= */

.chooseus-section {
  background: #f5f7fa;
  padding: 40px 0px;
  /* font-family: Arial, sans-serif; */
  text-align: center;
}

.chooseus-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.chooseus-container {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== CARD ===== */
.chooseus-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  gap: 15px; 
}

.chooseus-card i {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  width:75px;
  height:75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.chooseus-card img {
    width: 125px;
}


.chooseus-card:hover i {
  transform: scale(1.1);
}

.chooseus-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1b65af;
  /* margin-bottom: 12px; */
}

.chooseus-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== BUTTON ===== */
.chooseus-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: #1b65af;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chooseus-btn:hover {
  background: #15508a;
}


/* ========================================== table css start====================================== */


  .pay-wrapper {

    /* margin: 10px 0; */
    padding: 25px 0;
    border-radius: 8px;
 
  }

  .pay-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
  }

  .pay-wrapper p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
  }

  .pay-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
  }

  .pay-table th, .pay-table td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
  }

  .pay-table th {
    background-color: #2d4a7d;
    color: #fff;
    font-weight: 600;
  }

  .pay-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  .pay-note {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
  }

  .pay-note b {
    color: #000;
  }
  

  /* Wrapper for the table with horizontal scroll */
.pay-table-wrapper {
  overflow-x: auto; /* Enables horizontal scroll if needed */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  width: 100%;
}

/* The table inside the wrapper */
.pay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Keeps table from shrinking too much */
}

/* Table cells and header */
.pay-table th,
.pay-table td {
  border: 1px solid #ccc;
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
}

/* Table header styling */
.pay-table th {
  background-color: #2d4a7d;
  color: #fff;
  font-weight: 600;
}

/* Zebra rows */
.pay-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .pay-table th,
  .pay-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .pay-table th,
  .pay-table td {
    padding: 8px 10px;
    font-size: 12px;
  }
}