/* visa Section */

/* SECTION */
.visa-section {
  padding: 60px 70px;
  background: linear-gradient(to right, #ffffff 60%, #fff3eb 40%);
  font-family: 'Segoe UI', sans-serif;
}

.visa-container {
  max-width: 1100px;
  margin: 0;

}

/* TITLE */
.visa-title {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  position: relative;
  margin-bottom: 15px;
}

/* SHINE LINE */
.shine-line {
  display: block;
  width: 120px;
  height: 4px;
  margin: 10px 0;        /* ❌ remove auto */
  background: linear-gradient(90deg, #ff6a00, #ffffff, #ff6a00);
  position: relative;
  overflow: hidden;
}

.shine-line::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: rgba(255,255,255,0.8);
  left: -50px;
  top: 0;
  animation: shine 2s infinite;
}

@keyframes shine {
  100% {
    left: 120px;
  }
}

/* INTRO */
.visa-intro-text {
  text-align: left;
  font-size: 18px;
  color: #000;
  max-width: 850px;
  margin: 0 0 40px;
  line-height: 1.7;
}

/* TABLE BOX */
.visa-table-box {
  margin-bottom: 40px;
}

.visa-table-box h3 {
  margin-bottom: 10px;
  color: #000;
}

/* TABLE */
.visa-table-box table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.visa-table-box th {
  background: #ff6b00;
  color: #fff;
  padding: 12px;
  text-align: left;
}

.visa-table-box td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color:#000;
}

.visa-table-box tr:hover {
  background: #f1f7ff;
}

/* FLAG */
.visa-table-box img {
  width: 25px;
  margin-right: 8px;
  vertical-align: middle;
}

/* CTA */
.visa-cta {
  text-align: center;
  font-weight: 600;
  color: #ff6b00;
  font-size: 18px;
  margin-top: 20px;
}
