* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

/* Hotel Style Start */
.visaBody {
  position: relative;
  min-height: 210px;
}
.visaBG {
  background-image: linear-gradient(0deg, #15457b, #051423);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.visaPackageTitleDiv {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 70%;
}
.visaPackageTitle {
  font-size: 30px;
  color: white;
  font-family: var(--playfairFont);
}
.visaPackageSubTitle {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}
.errorMessage {
  position: absolute;
  bottom: -10px;
  font-size: 12px;
}
.visaPackageSearchFormDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 65px;
}
.visaPackageSearchForm {
  background: var(--secondaryColor);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #00000061;
}
.searchBtn {
  border: none;
  border-radius: 75px;
  color: var(--secondaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background-color: var(--primaryColor);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.2s ease all;
}
.addAmount {
  padding: 7px 20px;
  border-radius: 5px;
  color: var(--secondaryColor);
  z-index: 1;
  background: #13357b;
  position: relative;
  font-size: 16px;
  transition: all 250ms;
  overflow: hidden;
}
.searchBtn:hover {
  background-color: var(--lightBlueColor);
}
.rightSideBorder {
  border-right: 2px solid var(--primaryColor);
}
.form-control {
  border: none !important;
  text-transform: capitalize;
  background-color: transparent;
}
.form-control:focus {
  color: var(--blackColor);
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--primaryColor) !important;
  transform: scale(0.86) translateY(-1.5rem) translateX(1rem) !important;
}

.positionBottomClear {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 0 0;
}

/* Hotel Package Style End */

.backgroundColor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00000080, #00000014);
  display: flex;
  justify-content: end;
  flex-direction: column;
  /* align-items: center; */
  /* opacity: 0;
  transition: opacity 0.3s ease; */
}

.visaPositionBottomClear {
  margin: 75px 0 0 0 !important;
}
.visaSearchIcon {
  top: 50%;
  right: 20px;
  color: var(--primaryColor);
  position: absolute;
  transform: translateY(-50%);
}
.visaListMainDiv {
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--whiteColor);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  transition: all 0.2s linear;
  border: 1px solid #d3d3d3;
}
.visaListMainDiv:hover {
  box-shadow: 0px 0px 10px #b5b5b5;
}
.visaListMainDiv:hover .visaListImgDiv img {
  transform: scale(1.1);
}
.visaListDiv {
  height: 250px;
  width: 100%;
}

.visaListImgDiv {
  position: relative;
  height: 100%;
  width: 100%; /* Ensure it takes full width of its parent */
  overflow: hidden;
  transition: transform 0.3s ease;
}
.visaListImgDiv img {
  position: absolute;
  top: 0; /* Ensure the image starts from the top */
  left: 0; /* Ensure the image starts from the left */
  width: 100%; /* Make the image span the entire width of its container */
  height: 100%; /* Make the image span the entire height of its container */
  object-fit: cover; /* Ensure the image covers the container without distortion */
  background-size: cover; /* Redundant here but good for reference */
  transition: transform 0.3s ease;
}
.visaCityNameDiv {
  font-size: 16px;
  font-weight: 600;
}
.visaDateTimeDiv {
  font-size: 14px;
  font-weight: 500;
  color: #686868;
}
.visaDateTimeSpan {
  color: var(--lightBlueColor);
}
.visaPriceAmount {
  font-size: 16px;
  color: var(--lightBlueColor);
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}
.visaPriceAmount span {
  font-size: 14px;
  color: var(--lightBlueColor);
}
.visaTitleDiv {
  display: flex;
  align-items: center;
  row-gap: 15px;
  flex-direction: column;
  justify-content: center;
}
.visaTitle {
  width: fit-content;
  font-size: 20px;
  padding: 5px 5px 10px 5px;
  font-weight: 600;
}
.visaFilterDiv {
  display: flex;
  border-radius: 5px;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--grayColor);
}
.visaFilterDiv .visaFilter {
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.visaFilterDiv .visaFilter:hover {
  color: var(--whiteColor);
  background-color: var(--lightBlueColor);
}
.visachecked {
  color: var(--whiteColor);
  background-color: var(--lightBlueColor);
}
.visaCountryBackgroundImg {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  transition: transform 0.3s ease;
}
.visaCountryBackgroundImg img {
  position: absolute;
  top: 0; /* Ensure the image starts from the top */
  left: 0; /* Ensure the image starts from the left */
  width: 100%; /* Make the image span the entire width of its container */
  height: 100%; /* Make the image span the entire height of its container */
  object-fit: cover; /* Ensure the image covers the container without distortion */
  background-size: cover; /* Redundant here but good for reference */
}
.visaSubHeaderTitle {
  font-size: 16px;
  color: var(--whiteColor);
}
.visaSubHeaderTitle2 {
  font-size: 22px;
  display: flex;
  gap: 5px;
  align-content: center;
  color: var(--whiteColor);
}
.visaSubHeaderTitle2 i {
  font-size: 18px;
}
.visaNavBarDiv {
  background-color: #e8ebf2;
  position: sticky;
  top: 70px;
}
.visaNavBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.visaNavBar .navItem {
  padding: 15px 20px;
  font-size: 18px;
}
.visaCardList {
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #cfcfcf;
}
.visaCardListTitle {
  width: 100%;
  float: left;
  background: #d3d3d3;
  padding: 10px 13px;
  font-size: 17px;
  font-weight: 600;
}
.visaDataList {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  justify-content: space-between;
}
.visaDataFeesAmount {
  font-size: 24px;
  color: var(--lightBlueColor);
  font-weight: 700;
}
.visaFormMainDiv {
  padding: 20px;
  border-radius: 12px;
  background-color: var(--lightBlueColor);
  display: flex;
  row-gap: 10px;
  flex-direction: column;
  position: sticky;
  top: 135px;
}
.visaFormSubDiv {
  border-radius: 8px;
  background-color: var(--whiteColor);
}
.visaFormSubDiv button:active,
.accordionBtnCollapsed:active {
  transform: scale(1);
}
.visaMainTitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--primaryColor);
}
.accordionBtn::after {
  content: none;
}
.accordionBtn:focus,
.accordionBtnCollapsed:focus {
  box-shadow: none;
}
.accordionBtn:not(.collapsed) {
  box-shadow: none;
  color: var(--lightBlueColor);
  background-color: transparent;
}
.accordionBtnCollapsed:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
}
.visaInputBox {
  border: 1px solid var(--grayColor);
  border-radius: 5px !important;
  font-size: 14px;
  padding: 10px;
  outline: none;
  transition: 0.2s linear;
}
.visaInputBox:focus {
  border: 1px solid var(--lightBlueColor);
}
.visaFormSubmitBtn {
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: var(--whiteColor);
  background-color: var(--lightBlueColor);
  transition: 0.2s linear;
}

.visaFormSubmitBtn:hover {
  background-color: var(--primaryColor);
}
.visaApplyWhatsApp,
.visaCall {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background-color: #4785ff;
}
.visaApplyWhatsApp i {
  color: var(--whiteColor);
  font-size: 20px;
  border-radius: 50px;
  background-color: green;
}
.visaCall i {
  color: var(--whiteColor);
  font-size: 18px;
}
.visaApplyWhatsappTitle {
  font-size: 14px;
  text-align: end;
  color: var(--whiteColor);
}
.visaApplyWhatsappSubTitle {
  font-size: 18px;
  text-align: end;
  color: var(--whiteColor);
}
.visaDocumentListTitle {
  font-size: 16px;
  font-weight: 500;
  list-style: decimal;
}
.visaDocumentListTitle ul li {
  font-size: 14px;
  font-weight: 400;
}
.visaWhyChoosUs {
  width: 100%;
  height: 175px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #00000027;
  background-color: var(--whiteColor);
  transition: 0.2s linear;
}
.visaWhyChoosUs:hover {
  box-shadow: 0 0 10px #00000047;
}
.visaWhyChoosUsImg {
  position: relative;
  width: 100%;
  height: 100px;
}
.visaWhyChoosUsImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  object-fit: contain;
}
.visaWhyChoosUsTitle {
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
  text-align: center;
}
.visaProcessMainDiv {
  background-color: #ffb74d;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.visaProcessDivTitle {
  font-size: 14px;
  text-align: center;
}
.visaProcessImgDiv {
  position: relative;
  height: 75px;
  width: 75px;
}
.visaProcessImgDiv img {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 70%;
  object-fit: contain;
}
.visaProcessListDiv {
  box-shadow: 0 0 10px #00000047;
  background-color: var(--whiteColor);
  border-radius: 100px;
  padding: 10px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.filterMobileView {
  height: 50px;
  position: sticky;
  bottom: 10px;
  left: 90%;
  z-index: 55555;
}
.visaApplyMobileViewForm {
  background: var(--primaryColor);
  width: 100%;
  color: var(--whiteColor);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.listVisaRadioBtn[type="radio"]:checked + .visaCardList .visaCardListTitle {
  background-color: #4785ff;
  color: var(--whiteColor);
}

.listVisaRadioBtn[type="radio"]:checked + .visaCardList {
  border: 1px solid #4785ff;
  overflow: hidden;
}
#canvas {
  width: 80%;
  height: 55px;
}
/* Mobile Responsive Start */
/* Default styles  */
/* Add your default styles here */

/* Media query for screens smaller than 576px (e.g., smartphones) */
@media (max-width: 575px) {
  /* Adjust styles for smaller screens here */
  .hotelPackageTitleDiv {
    justify-content: start;
    height: 100%;
    padding-top: 20px;
  }
  .hotelPackageTitle {
    font-size: 35px;
  }
  .rightSideBorder {
    border-right: 0px !important;
  }
  .hotelPackageSubTitle {
    font-size: 16px;
  }

  .visaPositionBottomClear {
    margin: 120px 0 0 0 !important;
  }
  .searchBtn {
    padding: 10px 20px;
  }
  .visaPackageSearchFormDiv {
    top: 10px;
  }
  .visaPackageTitle {
    font-size: 28px;
  }
  .visaPackageSubTitle {
    font-size: 14px;
  }
  .visaPackageTitleDiv {
    height: 45%;
  }
  .form-control::placeholder {
    color: gray !important;
  }
  .form-control {
    color: var(--blackColor);
    min-height: 50px !important;
    height: 50px !important;
    padding: 12px !important;
  }
}

/* Media query for screens between 576px and 767px (e.g., tablets) */
@media (min-width: 576px) and (max-width: 767px) {
  /* Adjust styles for tablets here */
  .hotelPackageSearchFormDiv {
    bottom: -130px;
  }
  .visaPackageSearchFormDiv {
    bottom: -110px;
  }
  .visaPositionBottomClear {
    margin: 130px 0 0 0 !important;
  }
  .searchBtn {
    padding: 10px 20px;
  }
  .oneColumnImg {
    height: 200px;
  }
  .doubleColumnImg {
    height: auto;
  }
  .hotelInfoDiv {
    height: auto;
  }
  .roomAvailable {
    margin-top: 10px;
  }
  .hotelPackageSearchFormDiv {
    bottom: -140px;
  }
  .hotelPackageTitle {
    font-size: 30px;
  }
  .hotelPackageTitleDiv {
    height: 100%;
    justify-content: start;
    margin: 10px auto;
  }
  .rightSideBorder {
    border-right: 0px !important;
  }
  .visaPackageTitle {
    font-size: 34px;
  }
  .visaPackageSubTitle {
    font-size: 16px;
  }
  .visaPackageTitleDiv {
    height: 45%;
  }
  .form-control::placeholder {
    color: gray !important;
  }
  .form-control {
    color: var(--blackColor);
    min-height: 50px !important;
    height: 50px !important;
    padding: 12px !important;
  }
}

/* Media query for screens between 768px and 991px (e.g., small laptops) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Adjust styles for small laptops here */
  .hotelBtn {
    font-size: 12px;
  }
  .hotelPackageSearchFormDiv {
    bottom: -130px;
  }
  .hotelPackageTitle {
    font-size: 40px;
  }
  .hotelPackageTitleDiv {
    height: 100%;
    justify-content: start;
    margin: 10px auto;
  }
  .visaFormMainDiv {
    padding: 10px;
  }
  .accordion-button {
    padding: 10px 15px;
  }
}

/* Media query for screens between 992px and 1199px (e.g., medium laptops) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Adjust styles for medium laptops here */
}

/* Media query for screens larger than 1200px (e.g., large laptops and desktops) */
@media (min-width: 1200px) {
  /* Adjust styles for large laptops and desktops here */
}

/* Mobile Responsive End */

.visaError {
  color: red;
  font-size: 12px;
}

.visaListData li {
  font-size: 14px;
  list-style: disc !important;
}
.listIcon ol ul li,
.listIcon ul li {
  list-style: disc !important;
}

.listIcon ol li {
  list-style: decimal;
}

.visaClear {
  position: absolute;
  top: 5px;
  right: 50px;
  color: gray;
  cursor: pointer;
}
