* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
body {
  background: var(--body-color, #cbf7ff);
  padding-top: .9375rem;
  scroll-behavior: smooth;
  min-height: 100vh;
}
/* cssrem-disable-next-line */
  .container {
    /* cssrem-disable-next-line */
    max-width: 1280px;
    /* width: 95%; */
    margin: 0 auto;
    box-shadow: #000 0rem .1875rem .625rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  .section-heading {
    text-align: center;
    font-size: 1.5rem;
    color: #cd1bda;
    margin: .625rem 0 1.25rem 0;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .125rem;
    font-family: Georgia, "Times New Roman", Times, serif;
  }
  .section-heading::before,
  .section-heading::after {
    content: "";
    display: inline-block;
    width: 6.25rem;
    height: .1875rem;
    background: #cd1bda;
    margin: 0 .625rem;
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
    vertical-align: middle;
  }
  /* header start here */
  header {
    width: 100%;
    background: #fff;
    padding: .125rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
    position: sticky;
    top: -8.875rem;
    left: 0;
    z-index: 99;
  }
  header .header-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem;
  }
  header .header-top .header-customer {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  header .header-top .header-customer span:first-child {
    color: #01abed;
    font-weight: 600;
    font-size: 1rem;
  }
  header .header-top .header-customer .header-call {
    color: #1f945a;
    font-weight: 500;
    font-size: .875rem;
  }
  header .header-top .header-customer .header-call:last-child {
    color: #7c1c79;
    font-weight: 500;
    font-size: .875rem;
  }
  header img {
    width: 10%;
  }
  header .logo {
    width: 6.25rem;
    height: 6.25rem;
  }
  header .logo-name {
    width: 70%;
    font-size: 3.125rem;
    color: #01abed;
    text-align: center;
  }
  header .header-customer {
    width: 15%;
    font-size: .875rem;
    font-weight: 400;
    position: relative;
  }
  header .header-customer::before {
    width: .125rem;
    height: 100%;
    content: "";
    background: #01abed;
    position: absolute;
    top: 0;
    left: 0;
  }
  header .header-customer .header-fb {
    color: #0866ff;
    /* font-weight: 600; */
    font-size: 1.25rem;
  }
  header .header-customer .header-wa {
    color: #25d366;
    /* font-weight: 500; */
    font-size: 1.25rem;
  }

  header nav {
    width: 100%;
    background: #3b3994;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }

  /* Dropdown start here */
  header .dropdown {
    position: relative;
  }
  header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: .3125rem 0 .625rem 0;
    background: #232258;
    min-width: 11.25rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(.625rem);
    transition: all 0.3s ease;
    border-radius: .375rem;
    overflow: hidden;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    border: #fff .0625rem solid;
  }
  header .dropdown-menu li a {
    font-size: .875rem;
  }
  header .dropdown-menu li a:hover {
    background: #01adea;
  }
  header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* Dropdown end here */

  header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav ul li a {
    font-family: "Salsa", sans-serif;
    color: #fff;
    padding: .625rem 1.875rem;
    display: inline-block;
    font-weight: 400;
    font-size: .875rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  header nav ul li a:hover {
    background: #3098b7;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  header nav ul li a span {
    font-family: "Salsa", sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 400;
    font-size: .875rem;
  }
  header .outer-login {
    background: #25593f;
    border: #e5573e .25rem solid;
    border-radius: 1.5625rem;
    -webkit-border-radius: 1.5625rem;
    -moz-border-radius: 1.5625rem;
    -ms-border-radius: 1.5625rem;
    -o-border-radius: 1.5625rem;
  }
  header .outer-login a:hover {
    background: #37a9cc;
    border-radius: 1.5625rem;
    -webkit-border-radius: 1.5625rem;
    -moz-border-radius: 1.5625rem;
    -ms-border-radius: 1.5625rem;
    -o-border-radius: 1.5625rem;
  }
  header .mobile-login {
    display: none;
  }
  /* header end here */

  section {
    margin-top: 1.875rem;
  }

  /* footer start here */
  footer {
    background: #2a257f;
    padding: 1.875rem 0 0 0;
    margin-top: 1.875rem;
    .container {
      width: 100%;
      color: #fff;
      box-shadow: none;
    }
    .footer-wrapper {
      width: 100%;
      background-image: url(/assets/img/map.png);
      background-size: contain;
      background-position: center;
      background-repeat: repeat;
    }
    .footer-top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(auto, 1fr);
      gap: 1.25rem;
      padding: 0 1.25rem 0 1.25rem;
      text-align: center;
      .address {
        h4,
        h5 {
          margin-bottom: .3125rem;
        }
      }
      .links {
        margin: .3125rem 0;
        li {
          margin: .3125rem 0;
        }
        a {
          color: #fff;
          transition: all 0.3s ease-in;
          -webkit-transition: all 0.3s ease-in;
          -moz-transition: all 0.3s ease-in;
          -ms-transition: all 0.3s ease-in;
          -o-transition: all 0.3s ease-in;
        }
        a:hover {
          color: #35aacd;
        }
      }
      .pay-with {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        background: #fff;
        border-radius: .625rem;
        -webkit-border-radius: .625rem;
        -moz-border-radius: .625rem;
        -ms-border-radius: .625rem;
        -o-border-radius: .625rem;
        margin-top: .625rem;
        img {
          height: 2.5rem;
          margin: .3125rem;
        }
      }
    }
    .footer-bottom {
      background: #28a28e;
      margin-top: 1.25rem;
      padding: .625rem;
      text-align: center;
      .copyright {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .owner {
        color: #3b3994;
        font-weight: 600;
      }
      .dev {
        color: #cacaca;
        transition: all 0.2s ease-in;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -ms-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
      }
      .dev:hover {
        color: #fff;
      }
    }
    a {
      color: #53bde3;
    }
  }
  /* footer end here */

  /* go-to-top start here */
  .scroll-button {
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    /* Initially disabled pointer events when hidden */
  }
  .scroll-button.show {
    opacity: 1;
    pointer-events: auto; /* Enable pointer events when visible */
  }
  .go-top {
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    color: #fff;
    background: #3b3994;
    padding: .9375rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    animation-duration: 0.3s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .go-top:hover {
    background: #4745ab;
    box-shadow: #3e3d72 0rem .1875rem .5rem;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }
  /* go-to-top end here */

  .service-wrapper,
  .business-wrapper,
  .about-wrapper,
  .contact-wrapper,
  .partner-wrapper {
    width: 100%;
    padding: .625rem;
    background: #fff;
    overflow: hidden;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  .service-wrapper .service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 1.25rem;
    transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
  }
  .service-wrapper .psa {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 1.25rem;
    transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
  }
  .service-wrapper .service .service-img,
  .service-wrapper .psa .psa-img {
    padding: .5rem;
    background: #013755;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  .service .service-img:hover,
  .psa .psa-img:hover {
    cursor: pointer;
    box-shadow: #000 0rem .1875rem .5rem;
    transform: translateY(-0.3125rem);
  }

  .service-img > img {
    width: 100%;
    height: 14.75rem;
    object-fit: cover;
    padding: .3125rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  .psa-img > img {
    width: 100%;
    height: 12.5rem;
    object-fit: fill;
    padding: .3125rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  .service-img,
  .psa-img > h4 {
    text-align: center;
    font-size: 1rem;
    color: #f562b8;
    margin-bottom: .625rem;
  }

  /* not importent  start here*/
  .service-wrapper .service-more {
    margin: .625rem 0 0 0;
    display: block;
    justify-self: center;
    width: 15%;
    padding: .625rem 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    background: #3b3994;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  .service-wrapper .service-more:hover {
    box-shadow: #073047 0rem .1875rem .5rem;
  }
  /* not importent  end here */

  #home-about .about-wrapper .section-heading::before,
  #home-about .about-wrapper .section-heading::after {
    display: none;
  }

  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto 1fr;
    text-align: justify;
    column-gap: 1.25rem;
    padding: 1.25rem 4.375rem;
    position: relative;
  }
  .about-wrapper > h2 {
    align-items: center;
    padding: 1.25rem 0;
    border: #3b3994 .3125rem dashed;
    border-top-right-radius: 3.125rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 3.125rem;
    border-top-left-radius: 0;
    border-left: transparent;
  }

  .about-wrapper > p {
    font-size: .875rem;
    font-weight: 500;
    background: #c0eff1;
    padding: .625rem 1.25rem;
    line-height: 1.5;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  .about-wrapper > p:hover {
    background: #d3f7f8;
    box-shadow: #82babc 0rem .1875rem .5rem;
  }
  .about-img {
    position: absolute;
    top: 50%;
    left: -6.875rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .business {
    padding: .625rem 0;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .625rem;
  }
  .business > a > img {
    height: 12.5rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  .business > a > img:hover {
    transform: translateY(-0.1875rem);
    -webkit-transform: translateY(-0.1875rem);
    -moz-transform: translateY(-0.1875rem);
    -ms-transform: translateY(-0.1875rem);
    -o-transform: translateY(-0.1875rem);
  }
  #contact-partner .container > hr {
    border-color: #89cedf;
  }
  #contact-partner .contact-wrapper {
    display: flex;
    column-gap: .625rem;
    text-align: center;
    justify-content: space-evenly;
    border-radius: .5rem .5rem 0 0;
    -webkit-border-radius: .5rem .5rem 0 0;
    -moz-border-radius: .5rem .5rem 0 0;
    -ms-border-radius: .5rem .5rem 0 0;
    -o-border-radius: .5rem .5rem 0 0;
  }
  #contact-partner .contact-wrapper .contact {
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #contact-partner .contact-wrapper .contact:nth-child(odd) {
    padding: .625rem;
    background: #dbfbf2;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  #contact-partner .contact-wrapper .contact:hover:nth-child(odd) {
    background: #c2f5f8;
    box-shadow: #5db3b6 0rem .1875rem .5rem;
    transform: translateY(-0.1875rem);
    -webkit-transform: translateY(-0.1875rem);
    -moz-transform: translateY(-0.1875rem);
    -ms-transform: translateY(-0.1875rem);
    -o-transform: translateY(-0.1875rem);
  }
  #contact-partner .contact-wrapper .contact:nth-child(even) {
    padding: .625rem;
    background: #d5c0f1;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  #contact-partner .contact-wrapper .contact:hover:nth-child(even) {
    background: #e8d6ff;
    box-shadow: #c9a3f1 0rem .1875rem .5rem;
    transform: translateY(-0.1875rem);
    -webkit-transform: translateY(-0.1875rem);
    -moz-transform: translateY(-0.1875rem);
    -ms-transform: translateY(-0.1875rem);
    -o-transform: translateY(-0.1875rem);
  }

  #contact-partner .contact-wrapper .contact > div {
    text-align: center !important;
  }
  #contact-partner .contact-wrapper .contact > hr {
    width: 65%;
    margin: .625rem auto;
    border: .0625rem dashed #01abed;
  }

  #contact-partner .contact-wrapper .contact > h4 {
    font-size: 1.125rem;
    font-weight: 600;
  }
  #contact-partner .partner-wrapper {
    border-radius: 0 0 .5rem .5rem;
    -webkit-border-radius: 0 0 .5rem .5rem;
    -moz-border-radius: 0 0 .5rem .5rem;
    -ms-border-radius: 0 0 .5rem .5rem;
    -o-border-radius: 0 0 .5rem .5rem;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-15.625rem * 7));
      -webkit-transform: translateX(calc(-15.625rem * 7));
      -moz-transform: translateX(calc(-15.625rem * 7));
      -ms-transform: translateX(calc(-15.625rem * 7));
      -o-transform: translateX(calc(-15.625rem * 7));
    }
  }
  .slider {
    background: white;
    margin: auto;
    overflow: hidden;
    position: relative;
  }

  .slider::before,
  .slider::after {
    background: linear-gradient(
      to right,
      white 0%,
      rgba(255, 255, 255, 0) 100%
    );
    content: "";
    height: 6.25rem;
    position: absolute;
    width: 12.5rem;
    z-index: 2;
  }

  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }

  .slider::before {
    left: 0;
    top: 0;
  }

  .slider .slide-track {
    display: flex;
    width: calc(15.625rem * 14);
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
}

  .slider .slide {
    height: 3.25rem;
    width: 12.5rem;
  }
  .slider .slide > img {
    height: 3.25rem;
    object-fit: fill;
  }
  /* about content start here */
  #about-page {
    margin-top: 1.25rem;
  }
  #about-page .about-wrapper {
    padding: 1.25rem;
    background: #fff;
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 0 1.875rem;
  }
  #about-page .about-content {
    background: #dbfbf2;
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #about-page .about-content > p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: .625rem;
  }
  #about-page .about-content > p > a {
    color: #01abed;
    font-weight: 600;
  }
  #about-page .about-service {
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }
  #about-page .about-service .about-service-img {
    padding: .3125rem;
    background: #292b31;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  #about-page .about-service .about-service-img:hover {
    box-shadow: #233131 0rem .1875rem .5rem;
  }
  #about-page .about-service .about-service-img > h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #db39e6;
    margin: .3125rem;
  }
  #about-page .about-service .about-service-img > img {
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
    padding: .3125rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  /* about content end here */

  /* contact content start here */
  #contact-page {
    margin-top: 1.25rem;
  }
  #contact-page .contact-wrapper {
    padding: 1.25rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }
  #contact-page .contact-head {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  #contact-page .contact-head > img {
    max-width: 31.25rem;
    max-height: 8.125rem;
    object-fit: fill;
  }
  #contact-page .contact-content {
    background: #c2f9df;
    display: flex;
    gap: 1.25rem;
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #contact-page .contact-content > img {
    width: 10.625rem;
    height: 6.875rem;
    padding: .625rem;
    background: #fff;
    object-fit: cover;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #contact-page .contact-info {
    width: 100%;
    text-align: start;
    background: #fff;
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  /* contact content end here  */

  /* all service start here */

  /* all service has on those pages
  service-detail,
  visa-service,
  tour-package,
  tour-package-detail,
  psa-detail */

  #all-services {
    margin-top: 1.25rem;
  }
  #all-services .service-wrapper {
    width: 100%;
    padding: 1.25rem;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: .625rem;
  }
  #all-services .service-content-wrapper {
    width: 100%;
    padding: .625rem;
    text-align: justify;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #all-services .service-content-wrapper .service-list {
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }
  #all-services .service-list .service-content {
    display: flex;
    border: #d7d7d7 .0625rem solid;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #292929;
    gap: .625rem;
    background: #fff;
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  #all-services .service-list .service-content:hover {
    box-shadow: #233131 0rem .1875rem .5rem;
  }
  #all-services .service-list .service-content > img {
    width: 1.875rem;
    height: 1.5625rem;
    object-fit: cover;
    border-radius: 25%;
    -webkit-border-radius: 25%;
    -moz-border-radius: 25%;
    -ms-border-radius: 25%;
    -o-border-radius: 25%;
  }
  #all-services .service-list .service-content > h4 {
    flex-grow: 1;
  }
  #all-services .service-list .service-content > span {
    color: #ffffff;
    background: #8c2fdd;
    padding: .3125rem .625rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }

  #all-services .service-wrapper .side-content {
    width: 18.75rem;
    text-align: center;
  }
  #all-services .side-content .side-contact-wrapper {
    margin-bottom: .625rem;
    background: #e4f9fe;
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
  }
  #all-services .side-content .side-contact-wrapper:hover {
    box-shadow: #000000 0rem .1875rem .5rem;
  }
  #all-services .side-contact-wrapper .side-contact {
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #all-services .side-contact-wrapper .side-contact > a {
    color: #199c33;
    font-size: 1rem;
    font-weight: 600;
  }
  #all-services .side-contact-wrapper .side-contact > a:first-child {
    color: #e46a06;
  }
  #all-services .side-contact-wrapper .side-contact > a:last-child {
    color: #ee7718;
  }

  #all-services .side-content .other-service-wrapper {
    padding: .625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    display: flex;
    flex-direction: column;
    row-gap: .9375rem;
  }
  #all-services .side-content .other-service-wrapper > h3 {
    color: #f21d99;
  }
  #all-services .other-service-wrapper .other-service {
    padding: .3125rem;
    background: #fff;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  #all-services .other-service-wrapper .other-service:hover {
    box-shadow: #000 0rem .1875rem .625rem;
  }
  #all-services .other-service-wrapper .other-service > h4 {
    color: #1da0f2;
    margin-bottom: .625rem;
  }
  #all-services .other-service-wrapper .other-service > img {
    max-width: 18.75rem;
    height: 6.25rem;
    object-fit: cover;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
  }
  #all-services .service-detail {
    width: 100%;
  }
  #all-services .service-detail > table {
    border-collapse: separate;
    border-spacing: 0;
    border: .125rem solid #5a5a5a;
    border-radius: .625rem;
    overflow: hidden;
    width: 100%;
    text-align: left;
  }
  #all-services .service-detail > table tr td {
    padding: .3125rem;
    border-left: .0625rem solid #5a5a5a;
    border-top: .0625rem solid #5a5a5a;
  }
  #all-services .service-detail > table tr td:first-child {
    border-left: none;
  }
  #all-services .service-content-wrapper .section-heading {
    margin: .625rem 0;
  }

  /* all service end here */

  /* faq start here */
  #faq .container {
    padding: .625rem;
    background: #fff;
  }
  #faq .subtitle,
  #tnc .subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 1rem;
  }
  /* Accordion Item Styles */
  .faq-container,
  .tour-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .accordion-item {
    background-color: #dff4ee;
    box-shadow: 0 .625rem .9375rem -0.1875rem rgba(0, 0, 0, 0.1),
      0 .25rem .375rem -0.125rem rgba(0, 0, 0, 0.05);
      border: .0625rem solid #e5e7eb;
      overflow: hidden;
      border-radius: .75rem;
    -webkit-border-radius: .75rem;
    -moz-border-radius: .75rem;
    -ms-border-radius: .75rem;
    -o-border-radius: .75rem;
  }
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .accordion-header:hover {
    background-color: #f3f4f6;
  }
  .accordion-header:focus {
    outline: .125rem solid #6366f1;
    outline-offset: .125rem;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background-color: #f9fafb;
  }
  .accordion-item.active .accordion-content {
    max-height: .625rem;
    padding: 1.25rem;
  }
  .accordion-content p {
    padding-top: .5rem;
    color: #374151;
    line-height: 1.625;
  }
  .accordion-content a {
    color: #4f46e5;
    text-decoration: none;
  }
  .accordion-content a:hover {
    color: #3730a3;
  }
  /* Arrow Icon Rotation */
  .accordion-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6366f1;
    transition: transform 0.3s ease-in-out;
  }
  .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
  }
  #faq table {
    border-collapse: separate;
    border-spacing: 0;
    border: .125rem solid #5a5a5a;
    border-radius: .625rem;
    overflow: hidden;
    width: 100%;
    text-align: left;
  }
  #faq table tr td {
    padding: .3125rem;
    border-left: .0625rem solid #5a5a5a;
    border-top: .0625rem solid #5a5a5a;
  }
  #faq table tr td:first-child {
    border-left: none;
  }
  /* faq end here  */

  /* t&c start here */
  #tnc .container {
    padding: .625rem;
    background: #fff;
  }
  /* t&c end here */

  /* user signin start here */
  #user .login-form {
    padding: 3.125rem 6.25rem 5rem 6.25rem;
    background: #fff;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  #user .login-form h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #4745ab;
  }
  #user .login-form hr {
    margin-bottom: 1.875rem;
  }
  #user .user-form {
    width: 50%;
    margin: 0 auto;
  }
  #user .user-form .email,
  #user .user-form .password {
    display: block;
    padding: .625rem;
    width: 100%;
    margin: .625rem auto;
    font-size: .875rem;
    font-weight: 400;
    display: flex;
    border: none;
    outline: none;
    box-shadow: #3f3f3f 0rem .0625rem .1875rem;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  #user p {
    text-align: center;
    margin-top: 3.125rem;
  }
  #user p > a {
    font-size: .75rem;
    font-weight: 600;
    color: #4745ab;
  }
  #user .user-form button {
    padding: .625rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    margin: 1.25rem auto;
    display: flex;
    border: none;
    outline: none;
    */box-shadow: #1d6215 0rem .0625rem .1875rem;
    background: #269427;
    color: #fff;
    border-radius: 1.5625rem;
    -webkit-border-radius: 1.5625rem;
    -moz-border-radius: 1.5625rem;
    -ms-border-radius: 1.5625rem;
    -o-border-radius: 1.5625rem;
  }
  #user .user-form button:hover {
    background: #1d6215;
    scale: 1.05;
    -webkit-scale: 1.05;
    -moz-scale: 1.05;
    -ms-scale: 1.05;
    -o-scale: 1.05;
    box-shadow: #085429 0rem .1875rem .625rem;
  }
  #user .login-accessability {
    display: flex;
    justify-content: space-between;
    margin: .625rem auto;
  }
  #user .login-accessability label,
  #user a {
    font-size: 1rem;
    font-weight: 500;
  }
  /* user signin end here */

  /* user sign up start here  */
  #user-signup .card {
    background: #ffffff;
    border-radius: .625rem;
    padding: 1.75rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.08);
  }

  #user-signup h1 {
    text-align: center;
    margin: 0 0 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    letter-spacing: .0187rem;
  }

  #user-signup .section {
    margin-top: 1.75rem;
  }

  #user-signup .section-title {
    color: #6d28d9;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  #user-signup .hint {
    color: #6b7280;
    font-size: .75rem;
    margin-left: .375rem;
  }

  #user-signup .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem 1.25rem;
  }

  #user-signup .field {
    display: flex;
    flex-direction: column;
  }

  #user-signup label {
    font-size: .75rem;
    margin-bottom: .375rem;
  }

  #user-signup label span {
    color: #dc2626;
  }

  #user-signup input,
  #user-signup select {
    background: #ffffff;
    border: .0625rem solid #cbd5e1;
    border-radius: .375rem;
    padding: .6875rem .75rem;
    color: #111827;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
  }

  #user-signup input::placeholder {
    color: #9ca3af;
  }

  #user-signup input:focus,
  #user-signup select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 .125rem rgba(59, 130, 246, 0.2);
  }

  #user-signup select {
    cursor: pointer;
  }

  #user-signup .full {
    grid-column: span 3;
  }

  #user-signup .actions {
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
  }
  #user-signup .signin {
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
  }
  #user-signup .signin a {
    color: #3b82f6;
    font-weight: 600;
    margin-left: .625rem;
  }
  #user-signup .signin a:hover {
    text-decoration: underline;
  }

  #user-signup button {
    background: #3b82f6;
    border: none;
    border-radius: .5rem;
    padding: .75rem 1.625rem;
    color: #ffffff;
    font-size: .875rem;
    cursor: pointer;
    box-shadow: 0 .375rem 1rem rgba(59, 130, 246, 0.3);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  }

  #user-signup button:hover {
    background: #2563eb;
    transform: translateY(-0.0625rem);
    box-shadow: 0 .625rem 1.375rem rgba(59, 130, 246, 0.4);
  }
/* user sign up end here  */

/* tab view start here  */
/* cssrem-disable-next-line */
/* @media (max-width: 900px) {
  #user-signup .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #user-signup .full {
    grid-column: span 2;
  }

  #user-signup .full {
    grid-column: span 2;
  }
} */
/* tab view end here  */

/* mobile view start here */
/* cssrem-disable-next-line */
/* @media (max-width: 640px) { */
/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
  }
  .section-heading {
    font-size: 1.25rem;
  }
  .section-heading::before,
  .section-heading::after {
    display: none;
  }
  /* header start here */
  header {
    top: -9.5rem;
  }
  header .header-top {
    padding: .3125rem;
    flex-wrap: wrap;
  }
  header .logo {
    order: 2;
  }
  header .logo-name {
    width: 100%;
    order: 1;
  }
  header .header-customer {
    width: 50%;
    text-align: end;
    order: 3;
  }
  header .header-customer::before {
    display: none;
  }
  header nav ul li a {
    padding: .5rem;
    font-size: .625rem;
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
  }
  header nav ul li a:hover {
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
  }
  header nav ul li a span {
    display: none;
  }
  header .outer-login {
    display: none;
  }
  header .mobile-login {
    display: block;
    background: #25593f;
    border: #e5573e .1875rem solid;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  header .mobile-login:hover {

    background: #37a9cc;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
  }
  /* Dropdown */
  header .dropdown-menu {
    left: -0.9375rem;
    min-width: 6.25rem;
  }
  header .dropdown-menu li a {
    font-size: .625rem;
  }
  /* header end here */

  section {
    margin-top: 1.25rem;
  }

  /* footer start here */
  footer {
    margin-top: 1.25rem;
    .footer-top {
      display: flex;
      flex-direction: column;
      .links {
        display: none;
      }
      .pay-with {
        img {
          height: 2.1875rem;
        }
      }
    }
    .footer-bottom {
      padding: .625rem 0;
      font-size: .75rem;
      .copyright {
        flex-direction: column;
        gap: .3125rem;
      }
      .owner {
        font-size: .875rem;
      }
    }
  }
  /* footer end here */

  /* go-to-top start here */
  .go-top {
    padding: .625rem;
    z-index: 999;
    border: oldlace .125rem solid;
  }
  /* go-to-top end here */

  .service-wrapper,
  .business-wrapper,
  .about-wrapper,
  .contact-wrapper,
  .partner-wrapper {
    padding: .3125rem;
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
  }
  .service-wrapper .service {
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }
  .service-wrapper .psa {
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }
  .service-wrapper .service .service-img,
  .service-wrapper .psa .psa-img {
    padding: .0625rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}
  .service-img > img {
    height: 10rem;
}
  .service-img,
  .psa-img > h4 {
    font-size: .875rem;
    margin-bottom: .3125rem;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.875rem;
  }
  .about-wrapper > h2 {
    padding: .625rem 0;
    font-size: 1rem;
    border: #3b3994 .3125rem double;
    border-radius: 3.125rem;
    -webkit-border-radius: 3.125rem;
    -moz-border-radius: 3.125rem;
    -ms-border-radius: 3.125rem;
    -o-border-radius: 3.125rem;
  }

  .about-wrapper > p {
    font-size: .75rem;
    padding: .625rem .9375rem;
  }
  .about-img {
    display: none;
  }

  .business {
    gap: .3125rem;
}
  .business > a > img {
    height: 6.25rem;
    object-fit: fill;
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
}
  #contact-partner .contact-wrapper {
    flex-wrap: wrap;
    row-gap: .3125rem;
  }
  #contact-partner .contact-wrapper .contact:hover:nth-child(odd) {
    transform: translateY(-0.0625rem);
    -webkit-transform: translateY(-0.0625rem);
    -moz-transform: translateY(-0.0625rem);
    -ms-transform: translateY(-0.0625rem);
    -o-transform: translateY(-0.0625rem);
}
  #contact-partner .contact-wrapper .contact:hover:nth-child(even) {
    transform: translateY(-0.0625rem);
    -webkit-transform: translateY(-0.0625rem);
    -moz-transform: translateY(-0.0625rem);
    -ms-transform: translateY(-0.0625rem);
    -o-transform: translateY(-0.0625rem);
}
  #contact-partner .contact-wrapper .contact > h4 {
    font-size: 1rem;
  }
  .slider .slide-track {
    width: calc(11.25rem * 14);
    animation: scroll 60s linear infinite;
    -webkit-animation: scroll 60s linear infinite;
}
  .slider .slide {
    height: 1.875rem;
    width: 6.25rem;
  }
  .slider .slide > img {
    height: 100%;
  }

  /* about content start here */

  #about-page .about-wrapper {
    padding: .5rem;
    display: flex;
    flex-direction: column;
  }
  #about-page .about-content {
    border-radius: .3125rem;
    -webkit-border-radius: .3125rem;
    -moz-border-radius: .3125rem;
    -ms-border-radius: .3125rem;
    -o-border-radius: .3125rem;
}
  #about-page .about-content > p {
    font-size: .75rem;
  }
  #about-page .about-service {
    display: none;
  }
  /* about content end here */

  /* contact content start here */
  #contact-page .contact-wrapper {
    padding: .3125rem;
  }
  #contact-page .contact-head {
    text-align: center;
  }
  #contact-page .contact-head > img:last-child {
    display: none;
  }
  #contact-page .contact-head > img {
    max-width: 12.5rem;
  }
  #contact-page .contact-content {
    text-align: left;
    padding: .3125rem;
  }
  #contact-page .contact-content > img {
    display: none;
}
  #contact-page .contact-info {
    padding: .3125rem;
  }
  /* contact content end here  */

  /* all service start here */
  #all-services .service-wrapper {
    padding: .625rem;
  }
  #all-services .service-content-wrapper {
    padding: .0625rem;
  }
  #all-services .service-list .service-content > h4 {
    text-align: left;
    font-size: .75rem;
    font-weight: 600;
    color: #292929;
  }
  #all-services .service-list .service-content > span {
    font-size: .75rem;
  }
  #all-services .service-wrapper .side-content {
    display: none;
  }
  /* all service end here */

  /* faq start here */
  /* Accordion Item Styles */
  .accordion-item {
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}
  .accordion-header {
    padding: .625rem;
    font-size: .75rem;
  }
  .accordion-item.active .accordion-content {
    padding: 1.25rem .625rem;
  }
  .accordion-content p {
    font-size: .75rem;
  }
  /* Arrow Icon Rotation */
  .accordion-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
  /* faq end here  */

  /* user signin start here */
  #user .login-form {
    padding: 3.125rem;
  }
  #user .login-form h2 {
    font-size: 1.125rem;
  }
  #user .user-form {
    width: 100%;
  }
  #user p {
    font-size: .75rem;
  }
  #user p > a {
    font-size: .75rem;
    font-weight: 600;
    color: #4745ab;
  }
  #user .login-accessability label,
  #user a {
    font-size: .875rem;
  }
  /* user signin end here */

  /* user sign up start here  */
  #user-signup h1 {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
  }
  #user-signup .grid {
    grid-template-columns: 1fr;
  }
  #user-signup .full {
    grid-column: span 1;
  }
  #user-signup .full {
    grid-column: span 1;
  }
}
/* user sign up end here  */
/* mobile view end here  */
