

/* === Wrapper / heading === */
.visa-landing-wrapper {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
}
.visa-landing-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #1a3d7c;
}

/* === Cards grid (single source of truth) === */
.visa-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 equal columns */
  gap: 20px;
  margin: 20px 0 0;
  align-items: start; /* keeps cards aligned to top */
}

/* responsive: collapse to 1 or 2 columns */
@media (max-width: 980px) {
  .visa-cards-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .visa-cards-container { grid-template-columns: 1fr; }
}

/* === Card === */
.visa-card {
  background: #fff;
  border: 1px solid #e7eef9;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(10,30,60,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;            /* ensures grid item stretches equally */
  min-height: 220px;       /* collapsed height baseline */
}

/* slight lift */
.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(10,30,60,0.09);
}

/* title */
.visa-card-title {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #0f3f6b;
  font-weight: 700;
padding-top: 18px;
}

/* content wrapper: allows smooth height transition */
.visa-card-content {
  overflow: hidden;
  max-height: 110px;               /* collapsed preview height */
  transition: max-height 0.45s ease, opacity 0.25s ease;
  opacity: 1;
  margin-bottom: 12px;
  flex: 1 1 auto;                  /* take remaining vertical space */
text-align: left;
}

/* when expanded only this card grows */
.visa-card.expanded .visa-card-content {
  max-height: 900px;               /* large enough to show full content */
}

/* readmore button aligned to bottom-left */
.visa-readmore {
  margin-top: 12px;
  align-self: flex-start;
  background: linear-gradient(135deg,#0073aa,#005f87);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease;
}
.visa-readmore:hover { transform: translateY(-2px); }


/* Only for cards marked Important */
.visa-card-important {
  position: relative;
  overflow: hidden; /* makes sure ribbon doesn’t stick outside */
}

/* Angled ribbon */
.visa-card-important .visa-important {
  position: absolute;
  top: 12px;
  left: -60px;               /* pulls it out to create crank effect */
  background-color: #ff4d4f; /* bold red */
  color: #fff;
  font-weight: bold;
  padding: 4px 60px;         /* long padding so it stretches across corner */
  font-size: 13px;
  text-transform: uppercase;
  transform: rotate(-28deg); /* crank / angled effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 10;
}







/* === Buttons row (separate row) === */
.visa-landing-buttons {
  margin: 28px auto 10px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

/* namespaced button */
.visa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(10,30,60,0.06);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.visa-btn:hover { transform: translateY(-3px); }

/* color variants */
.visa-btn-primary { background: linear-gradient(135deg,#0073aa,#005f87); color:#fff; }
.visa-btn-warning { background: linear-gradient(135deg,#ffc107,#e0a800); color:#000; }
.visa-btn-success { background: linear-gradient(135deg,#28a745,#218838); color:#fff; }

/* small screens: full width */
@media (max-width: 560px) {
  .visa-landing-buttons .visa-btn { width: 100%; max-width: 420px; }
}



.visa-landing-custom {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visa-landing-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}


.privacy-box {
  text-align: left;
  margin-top: 20px;
  background-color: #E0F7FA;  /* soft turquoise for elegance */
  border-radius: 12px;        /* smooth rounded corners */
  border: 1px solid #00ACC1;  /* luxury-style accent border */
  padding: 15px;
padding-bottom: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); /* subtle shadow for depth */
  font-family: 'Arial', sans-serif;
  color: #004D40;             /* elegant dark-teal text color */
}

.privacy-box p {
  margin-top: 12px;
  line-height: 1.7;
  font-size: 16px;
font-weight: 550;
}
/* Restrict privacy box width + center */
.privacy-box {
  max-width: 900px;   /* keep it elegant, not stretched */
  margin: 30px auto;  /* center horizontally */
}

.privacy-box strong {
  color: red;
}


/* === Modal Overlay === */
.visa-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
}

/* modal box */
.visa-modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* close button */
.visa-modal-close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #444;
}
.visa-modal-close:hover { color: #000; }

/* make "Let's Start" button pop more */
.visa-btn-primary {
  background: linear-gradient(135deg,#06C423,#4B9DF2);
  color: #ffffff;
  font-size: 18px;
  padding: 14px 24px;
  box-shadow: 0 6px 16px rgba(255,87,34,0.80);
}
.visa-btn-primary:hover {
  background: linear-gradient(135deg,#ffffff,#FFD700);
}





/* === Modal content text === */
.visa-modal-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3d7c;
  margin-bottom: 16px;
  text-align: center;
}

.visa-modal-content p,
.visa-modal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
text-align: left;
}

.visa-modal-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.visa-modal-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.visa-modal-content li {
  margin-bottom: 10px;
}

.visa-modal-content strong {
  color: #001BFF;
  font-weight: 600;
}

/* spacing for body */
#visaModalBody {
  margin-top: 10px;
}




.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-actions button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-success { background: #28a745; color: #fff; }
.btn-success:hover { background: #218838; }

.btn-secondary { background: #ccc; color: #000; margin-left: 10px; }
.btn-secondary:hover { background: #999; }

.modal-result {
  margin-top: 15px;
  font-weight: bold;
  color: #1a3d7c;
}


/* Heading above buttons */
.visa-landing-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a3d7c;
  margin-bottom: 14px;
margin-top: 15px;
  text-align: center;
}




