.visa-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  font-family: Arial, sans-serif;
}

.visa-section h2 {
  color: #148e7d;
  margin-bottom: 20px;
}

.visa-section select {
  width: 60%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.visa-section select:focus {
  border-color: #148e7d;
  box-shadow: 0 0 10px rgba(20,142,125,0.3);
}

.visa-section button {
  padding: 10px 25px;
  background: linear-gradient(135deg, #148e7d, #1abf9f);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.visa-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.visa-result {
  margin-top: 5px;

}

.visa-result img {
width: 100%;        /* Box ki poori width cover kare */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .visa-section select {
    width: 100%;
  }
}

