/** Shopify CDN: Minification failed

Line 520:0 Unexpected "/"

**/
#purposeOfVisitSectionContainer section{
    display: flex;
    justify-content: center;
     font-family: "Archivo", sans-serif;
}
#purposeOfVisitSection, #visaTypeSection {
  box-sizing: border-box;
  width: 100%;
  padding: 1rem 1rem;
 
}

#purposeOfVisitSection .banner{
  overflow: hidden;
  object-fit: cover;
  height: 140px;
  position: relative;
}

#purposeOfVisitSection .banner-country{
  padding: 0px 2rem;
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  top: 0rem;
  right: 0rem;
  height: 100%;
  width: 300px;
  text-align: right;
}

#purposeOfVisitSection .banner-country h2{
  font-size: 30px;
  margin: 0;
  line-height: 2rem;
  padding: 0;
}

#purposeOfVisitSection .banner-country p{
  padding: 0;
  font-size: 14px;

}

#purposeOfVisitSection .banner img{
  height: 100%;
  width: 100%;
}

#purposeOfVisitSection .heading {
  margin-top: 3rem;
  font-size: medium;
  color: #353440;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between lines and text */

}

#purposeOfVisitSection .heading::before,
#purposeOfVisitSection .heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #46ba7b;
}

.tourist{
  display:grid;
   grid-template-columns:1fr 1fr;
   gap:8px;
}
@media(max-width:768px){
  .tourist{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
}

/*///////////////////////////////////////////////*/
#purposeOfVisitSection  .visa-type-container {
    margin: 0 auto;
    width:100%;
    background: #fff;
    overflow: hidden;
    margin-right:8px;
  }
    
#purposeOfVisitSection  .tab-labels {
    display: flex;
    gap:8px;
    justify-content: space-evenly;
    text-align:center;
   
  }

 
#purposeOfVisitSection  .tab-labels label {
    flex: 1;
    padding: 8px 0;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    border-radius:5px;
    border:1px solid #1B90BE;
  }

#purposeOfVisitSection .tab-labels label:hover {
    background:rgba(64, 164, 109, 0.15);
  }

 
#purposeOfVisitSection  input[type="radio"] {
    display: none;
  }

 /* Active tab style */
#purposeOfVisitSection:has(#tourist:checked) .tab-labels label[for="tourist"],
#purposeOfVisitSection:has(#bussiness:checked) .tab-labels label[for="bussiness"] {
  background-color: #46BA7B;
  color: #fff;
}

  /* Slide section */
  .slide {
    position: relative;
    height: 260px;
    overflow: hidden;
   
  }

  .slide > div {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index:0;
    width:220px;
    margin:0 auto;
    transform: scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

   .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Show active image */
#purposeOfVisitSection  #tourist:checked ~ .slide div:nth-child(1),
#purposeOfVisitSection  #bussiness:checked ~ .slide div:nth-child(2) {
    opacity: 1;
    z-index:1;
    transform: scale(1);
  }
/*//////////////////////////////////////////////*/

.tourist .right{
  display:flex;
  justify-content:space-between;
  flex-direction:column;
}

.tourist .right .day-headings{
   display: block;
   white-space: nowrap;
  font-weight:600;
  overflow: hidden;
  font-size: clamp(13px, 4.5vw, 16px);
  max-width: 100%;
}
.tourist .right .num-day{
  position:relative;
}
 .one-click{
    position: absolute;
    background-color: #060505;
    color: #fff;
    bottom: -6px;
    right: 20px;
    border-radius: 12px;
    font-size: 10px;
    text-transform: uppercase;
    padding: 0px 9px;
 }




.tourist .doc-reqirements {
 display:flex;
 justify-content:start;
  background-color:#F4F4F4;
  padding:5px;
}
.tourist .doc-reqirements p{
  font-size:11px;
  color:#000;
}
.tourist .doc-reqirements p span{
  font-size:11px;
  font-weight:600;
  color:#000;
}
.tourist .doc-reqirements ul{
  display:flex;
  padding-left:35px;
  list-style-type:disc;   
  flex-direction:column;
  font-size:9px;
  font-weight:500;
  line-height:1.2;
}





/* Layout for all cards */

#purposeOfVisitSection .card-container {
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

#purposeOfVisitSection .card-item{
    text-align: center;
}

#purposeOfVisitSection .card-item h3{
    font-size: 18px;
    margin-bottom: 6px;
    color: #251a1a;
}
/* Individual card (label) */
#purposeOfVisitSection .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 160px;
  border: 1px solid #46ba7b;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#purposeOfVisitSection .card:hover{
  background-color: rgba(64, 164, 109, 0.15);
}
/* Image container */
#purposeOfVisitSection .img-container {
  overflow: hidden;
  padding: 10px;
}

#purposeOfVisitSection .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/* Hide native radio */
#purposeOfVisitSection input[type="radio"] {
  display: none;
}

input[type="date"] {
  pointer-events: auto !important;
}

/* When radio is checked → style the whole card */
#purposeOfVisitSection .card input[type="radio"]:checked ~ .img-container,
#purposeOfVisitSection .card input[type="radio"]:checked ~ * {
  background-color: #46BA7B;

 
}

/* Optional — subtle scale effect when selected */
#purposeOfVisitSection .card input[type="radio"]:checked ~ .img-container img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


#purposeOfVisitSection .days-container{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#purposeOfVisitSection .num-day img{
  width: 200px;
  height:40px
}

#purposeOfVisitSection .num-day {
    display: flex;
    margin-bottom:10px;
    flex-grow: 1;
    flex-direction: column;
    border-radius: 5px;
    align-items: center;
    padding: 10px;
    text-align: center;
    cursor:pointer;
    border: 1px solid #1B90BE;
    transition: all 0.3s ease;
}

#purposeOfVisitSection .num-day:hover{
   background-color: rgba(64, 164, 109, 0.15);
}

#purposeOfVisitSection .num-day:has(input[type="radio"]:checked) {
    background-color: #46ba7b;
    color: white; 
    transition: 0.3s;
}

#purposeOfVisitSection .btn-container{
    text-align: right;
    margin-top: 1rem;
}


@media (max-width:768px){
  #purposeOfVisitSection, #visaTypeSection{
     width: 100%;
     padding:1rem 0rem;
  }
  #purposeOfVisitSection .card-container{
      justify-content: center;
      column-gap: 10px;
    }
  }

@media (max-width:1000px) and (min-width:769px){
     .tourist{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
 #purposeOfVisitSection .card-container{
     display:block;
    }
}

/* CSS for Page2 */
#visaTypeSection .visa-card {
  position:relative;
  margin-top: 10px;
  padding:10px;
  color:#000;
  border:2px solid #6CAD7F;
  border-radius:5px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  box-sizing: border-box;
  width: 100%;
  transition: background-color 0.3s ease;
}

#visaTypeSection .visa-card:hover {
  background-color: #1D90BE;
  cursor: pointer;
  border-color: #1D90BE;
  color:#fff;
}  
#visaTypeSection .visa-card .age-data > div svg{
   color:#1D90BE !important;
}
#visaTypeSection .visa-card:hover .age-data > div svg{
  fill:#6CAD7F;
  stroke: #fff;
}

#visaTypeSection .visa-card:hover .dropdown-btn{
  border:1.5px solid white;
}  
      
#visaTypeSection .visa-card:hover .head-text{color:white;}
#visaTypeSection .visa-card:hover .details>span{
  background-color:white;
  color:#000;
}  
 #visaTypeSection .visa-card:hover .visa-right>p{
   background-color:white;
   color:black;
 }

#visaTypeSection .visa-left{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
}
#visaTypeSection .details{
  display:flex;
  flex-wrap:wrap;
  gap:10px
}
#visaTypeSection .details > span{
  padding:4px 10px;
  color:#fff;
  border-radius:20px;
  font-weight:bold;
  background-color: #6CAD7F;
}
#visaTypeSection .age-data{
      display:flex;
      flex-wrap:wrap;
      margin-top:4px;
      gap:10px;
      font-weight:bold;
}

#visaTypeSection .age-data > div {
   display:flex;
   gap:6px;
}

#visaTypeSection .lighter-text{
  font-weight:lighter;
}

#visaTypeSection .visa-right{
  display:flex;
  flex:0;
  min-width:120px;
  flex-direction:column;
  justify-content: space-between;
}
#visaTypeSection .visa-right>p{
  border:1px solid #6CAD7F;
  border-radius:20px;
  padding:0.5rem 1.4rem;
  text-align:center;
  color:#000;
  font-weight:bold;
  font-size:1.5rem;
}
#visaTypeSection .visa-right > span{
  font-size:0.8rem;
  text-align:center;
}
 



#visaTypeSection #select-visa{
  outline: none;
  padding: 0.2rem 1.1rem;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  background-color: #0976bc;
}


/* Tablet view adjustments (768px and below) */
@media (max-width: 768px) {
  #visaTypeSection .visa-card {
    padding: 1rem;
    border-radius: 5px;
  } 
}


.express{
  border:2px solid blue;
  color:white;
  
}
/* ==============================
   ✅ Mobile view (480px and below)
============================== */
@media (max-width: 480px) {
  #visaTypeSection .visa-card {
    padding: 0.8rem;
  }
  #visaTypeSection .visa-right {
    flex-direction:row;
    align-items:center;
    flex-grow:1;
  }
}

/* ==============================
   ✅ Large screen refinement
============================== */
@media (min-width: 1200px) {
  #visaTypeSection .visa-card {
    padding: 1.5rem;
  }
  #visaTypeSection .visa-left{
    max-width:80%;
  }
}

/* ******************************************SCROLL EFFECT********************************************************* */
.container.custom-visa-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}
/

/* Sidebar fixed until bottom */
.sidebar {
  position: sticky;
  top: 30px; /* distance from top while scrolling */
  align-self: flex-start;
  height: fit-content;
}

/* Main content takes remaining space */
.main-content {
  flex: 1;
  overflow: visible;
}
@media (max-width: 768px) {
  .container.custom-visa-container {
    flex-direction: column; /* stack sidebar above content */
    gap: 0;
    width:100%;
  }

  .sidebar {
    position: relative; /* disable sticky on mobile */
    top: 0;
    width: 100%;
    min-width: unset;
    margin-bottom: 20px; /* spacing below sidebar */
  }

  .main-content {
    width: 100%;
  }
}