/* ============================================================
   TRACK VISA — FINAL CLEAN CSS (SINGLE COLUMN + EXTENDED)
   Compatible with current HTML + JS
============================================================ */

/* ------------------------------
   PAGE WRAPPER
------------------------------ */
.track-visa-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}

/* ------------------------------
   FORM CARD
------------------------------ */
.track-form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  text-align: center;
}

.track-form-wrap h1 {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 800;
  color: #111;
}

/* ------------------------------
   FORM
------------------------------ */
#trackVisaForm {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

#trackVisaForm input {
  width: 250px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: .25s;
}

#trackVisaForm input[type="date"] {
  padding-right: 10px;
}

#trackVisaForm input:focus {
  border-color: #ee0979;
  box-shadow: 0 0 0 3px rgba(238,9,121,.15);
}

#trackVisaForm button {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  background: linear-gradient(90deg,#ee0979,#ff6a00);
  color: #fff;
  transition: .25s;
}

#trackVisaForm button:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* ------------------------------
   RESULT VISIBILITY
------------------------------ */
.track-result,
.no-data {
  display: none;
}

.track-result.active,
.no-data.active {
  display: block;
}

/* ------------------------------
   RESULT BOX
------------------------------ */
.track-result {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

/* ------------------------------
   TITLE
------------------------------ */
#visaTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ------------------------------
   PROGRESS
------------------------------ */
.progress-box {
  background: #f6f7fb;
  padding: 18px;
  border-radius: 14px;
}

.progress-line {
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#ee0979,#ff6a00);
  transition: width .4s ease;
}

#visaStatus {
  margin-top: 10px;
  font-weight: 700;
}

#visaUpdated {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* ------------------------------
   TIMELINE
------------------------------ */
.visa-timeline {
  list-style: none;
  margin-top: 26px;
  padding: 0;
}

.visa-timeline li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  opacity: 0.35;
  font-size: 15px;
}

.visa-timeline li.active,
.visa-timeline li.completed {
  opacity: 1;
  font-weight: 700;
}

.visa-timeline li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.visa-timeline li.completed::before,
.visa-timeline li.active::before {
  background: #2e7d32;
}

/* ------------------------------
   NO DATA (SMALL + RESPONSIVE)
------------------------------ */
.no-data {
  max-width: 420px;
  margin: 60px auto 0;
  text-align: center;
  background: #fff;
  padding: 26px 20px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.no-data svg {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  stroke: #ff4d4d;
  fill: none;
  stroke-width: 2;
}

.no-data h3 {
  margin: 8px 0 6px;
  font-size: 18px;
}

.no-data p {
  font-size: 14px;
  color: #666;
}

.btn-apply {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 24px;
  background: linear-gradient(90deg,#ee0979,#ff6a00);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* ------------------------------
   STATUS COLORS
------------------------------ */
.status-text { font-weight: 700; }

.status-submitted { color: #ff9800; }
.status-under_review { color: #2196f3; }
.status-documents_required { color: #ff5722; }
.status-interview_scheduled { color: #9c27b0; }
.status-approved { color: #2e7d32; }
.status-rejected { color: #c62828; }
.status-processing_delay { color: #f57c00; }

/* ============================================================
   EXPLORE VISA — AUTO STEP INFINITE SLIDER (FIXED)
============================================================ */

.mini-slider{
  background:#ffffff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  overflow:hidden; /* viewport clip */
  position:relative;
}

/* TRACK */
.mini-track{
  display:flex;
  gap:20px;
  transition:transform .6s ease;
  will-change:transform;
}

/* CARD — SIZE INCREASED */
.mini-card{
  width:260px;              /* ⬅️ BIGGER CARD */
  flex-shrink:0;
  background:#f8f9ff;
  border-radius:18px;
  padding:14px;
  text-align:center;
  cursor:pointer;
  position:relative;
  min-height:260px;         /* ⬅️ 30% HEIGHT BOOST */
}

/* IMAGE — HEIGHT INCREASED (REAL FIX) */
.mini-card img{
  width:260px;
  height:260px;             /* ⬅️ IMAGE HEIGHT BOOST */
  object-fit:cover;
  border-radius:14px;
}

/* TEXT */
.mini-info strong{
  display:block;
  font-size:15px;
  margin-top:10px;
  font-weight:800;
}

.mini-info span{
  font-size:14px;
  display:block;
}

.mini-info small{
  font-size:13px;
  color:#666;
}

/* ============================================================
   FORCE EXACT 4 CARDS — DESKTOP ONLY (REAL FIX)
============================================================ */

@media (min-width:1024px){

  .explore-visas .mini-slider{
    width: calc((260px * 4) + (20px * 3)); /* 4 cards + gaps */
    margin-left:auto;
    margin-right:auto;
  }

}

/* ============================================================
   TABLET
============================================================ */

@media (max-width:1023px){
  .mini-card{
    width:220px;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width:768px){
  .mini-card{
    width:80vw;
    max-width:320px;
  }
}

/* ============================================================
   DOTS — THEME COLOUR (PRO LOOK)
============================================================ */

.mini-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:16px;
}

.mini-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ddd;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease;
}

.mini-dot.active{
  background:linear-gradient(135deg,#ff6a00,#ee0979);
  transform:scale(1.4);
}

/* ============================================================
   VISA CATEGORY BADGE
============================================================ */

.visa-badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:4px 12px;
  font-size:11px;
  font-weight:800;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,#ff6a00,#ee0979);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

/* ============================================================
   VIEW ALL BUTTON
============================================================ */

.explore-action{
  text-align:center;
  margin-top:22px;
}

.explore-btn{
  display:inline-block;
  padding:12px 32px;
  border-radius:40px;
  font-weight:800;
  font-size:14px;
  color:#fff;
  background:linear-gradient(135deg,#ff6a00,#ee0979);
  text-decoration:none;
  box-shadow:0 10px 26px rgba(238,9,121,.35);
  transition:transform .25s ease;
}

.explore-btn:hover{
  transform:translateY(-3px);
}

/* ============================================================
   EXPLORE VISA — HEADING & SUBHEADINGS (LOCKED)
============================================================ */

.explore-visas .explore-title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 50px;

  background: linear-gradient(
    90deg,
    #000 0%,
    #000 45%,
    #ff6a00 55%,
    #ee0979 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.explore-visas .explore-box h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Individual colors */
.explore-visas .explore-box:nth-child(1) h3 { color:#ff6a00; }
.explore-visas .explore-box:nth-child(2) h3 { color:#ee0979; }
.explore-visas .explore-box:nth-child(3) h3 { color:#8f00ff; }
