body {
  background-color: var(--white);
}
.smart-carousel-container {
  position: relative;
  width: 100%;
  height: 320px;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.smart-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.smart-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  z-index: 0;
  transition: none;
}

.smart-slide.active {
  opacity: 1;
  transform: scale(1.1) rotate(0deg);
  z-index: 2;
  transition: transform 4s ease, opacity 4s ease;
}

.smart-slide.exiting {
  opacity: 0;
  z-index: 3;
  transition: transform 4s ease, opacity 4s ease;
}

/* Fix: Ensure rotation is on its own class */
.smart-slide.rotate-cw {
  transform: rotate(130deg);
}

.smart-slide.rotate-ccw {
  transform: rotate(-130deg);
}

.smart-nav,
.stackedCarouselX-nav {
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 20px;
  box-shadow: 0px 0px 2px var(--white);
  z-index: 10;
  width: 40px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center 11px;
}
.smart-nav.prev,
.stackedCarouselX-nav.left {
  background-image: url(../images/b2c/home/nav-arr-left.svg);
}
.smart-nav.next,
.stackedCarouselX-nav.right {
  background-image: url(../images/b2c/home/nav-arr-right.svg);
}

.smart-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 2rem;
  padding: 4px 20px;
  cursor: pointer;
}

/* .smart-nav:hover {
  background: rgba(255, 255, 255, 0.5);
} */

.smart-nav.prev {
  left: 5px;
}

.smart-nav.next {
  right: 5px;
}
.slide-cont {
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
}
.slide-cont .title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 16px;
}
.slide-cont .title .big {
  font-size: 30px;
}
.zoom-circle {
  --align: 50px;
  --inner-size: 50px;
  width: 225px;
  position: absolute;
  top: var(--align);
  left: 50%;
  bottom: var(--align);
  transform: translate(-50%, 0);
  z-index: 15;
  border-radius: 500px;
  pointer-events: none;
}

.zoom-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  /* Slight glow */
  backdrop-filter: blur(3px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(3px);

  /* Mask: inner circle transparent, outer ring visible */
  mask-image: radial-gradient(
    circle,
    transparent var(--inner-size),
    black var(--inner-size)
  );
  -webkit-mask-image: radial-gradient(
    circle,
    transparent var(--inner-size),
    black var(--inner-size)
  );
}

.smart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.custom-tab.ak-tab {
  position: relative;
  z-index: 18;
  /* overflow-y: hidden; */
  border-radius: var(--radius) var(--radius) 0 0;
}

.inspad .secndblak {
  --radius: 20px;
  position: relative;
  border-radius: 5px;
  box-shadow: none;
  background: transparent;
}

.tab-content.custmtab {
  background: var(--white);
  padding: 15px 10px;
  border-radius: var(--radius);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.ak-search-form-heading {
  font-size: 25px;
}

.ak-tab .nav-tabs.tabstab {
  border-radius: 12px 12px 0 0;
  background-color: var(--white);
  padding: 10px 15px;
  position: relative;
  flex-wrap: wrap;
  gap: 10px 0;
  justify-content: start;
}
.searcharea .custom-tab .nav-tabs.tabstab > li:last-child {
  margin-right: 0;
}
/* .ak-tab .nav-tabs.tabstab::before {
  content: "";
  background-color: transparent;
  display: block;
 border-style: solid;
   border-width: 0 0px 17px 40px;
   border-color: transparent transparent var(--white) transparent;
  position: absolute;
  left: -28px;
  bottom: 0;
  border-radius: 0;
} */

.custom-tab .nav-tabs.tabstab li::after {
  display: none;
}

.custom-tab .nav-tabs.tabstab li {
  margin-bottom: 0;
}

.custom-tab .nav-tabs.tabstab > li:hover {
  height: auto;
  margin-bottom: 0;
}

.ak-tab .nav > li > a {
  background-color: transparent;
}

.allformst .nav-tabs.tabstab > li > a label {
  color: var(--black);
}

.custom-tab .nav-tabs.tabstab li a {
  padding: 5px 15px;
  border-radius: 48px;
  border: 1px solid var(--gray);
}

.custom-tab .nav-tabs.tabstab > li span,
.custom-tab .nav-tabs.tabstab > li > a label {
  margin: auto;
  font-size: var(--font-l);
  font-weight: 500;
  font-family: var(--app-font-family);
}

.ak-tab .nav-tabs > li.active > a,
.ak-tab .nav-tabs > li.active > a:hover,
.ak-tab .nav-tabs > li.active > a:focus,
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown .dropdown-menu a:hover,
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown .dropdown-menu a:focus {
  background: var(--hm-blue) !important;
  color: var(--white);
}
.ak-tab .nav-tabs > li.active > a {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.ak-tab .nav-tabs > li > a:hover,
.ak-tab .nav-tabs.tabstab > li > a:focus {
  background: var(--hm-blue) !important;
}

.ak-tab .nav-tabs > li > a:hover label,
.ak-tab .nav-tabs > li > a:hover span {
  color: var(--white) !important;
}

.ak-tab .nav-tabs > li.active > a:hover label,
.ak-tab .nav-tabs > li.active > a:hover span,
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown > a:hover::after {
  color: var(--white) !important;
}
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown .dropdown-menu {
  border: 0;
  box-shadow: none;
  background: transparent;
  min-width: 120px;
  margin-top: 1px;
}
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown .dropdown-menu li {
  margin-bottom: 5px;
}
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown .dropdown-menu a {
  background-color: var(--white);
  justify-content: center;
}
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown > a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  font-size: 12px;
  color: var(--black);
  transform: translateY(1px);
}
.custom-tab.ak-tab .nav-tabs.tabstab li.dropdown.open > a::after {
  content: "\f077";
}
.tab-icon-img {
  width: 16px;
}

.tab-icon-img.active {
  display: none;
}
.ak-tab li.active .tab-icon-img.active,
.ak-tab li.active a:focus .tab-icon-img.active,
.ak-tab .nav-tabs > li > a:hover .tab-icon-img.active {
  display: block;
}
.ak-tab li.active .tab-icon-img.default,
.ak-tab li.active a:focus .tab-icon-img.default,
.ak-tab .nav-tabs > li > a:hover .tab-icon-img.default {
  display: none;
}
.ak-carousel .carousel-indicators {
  bottom: 70px;
}

.wament input[type="radio"]:checked + label {
  font-weight: normal !important;
}

.wament label {
  font-size: var(--font-s) !important;
}

.section-wrap {
  margin-bottom: 40px;
}

.smart-heading {
  text-align: center;
}
.smart-heading .title {
  font-size: 25px;
  font-weight: normal;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.smart-heading .sub-title {
  font-size: var(--font-m);
  font-weight: 400;
  margin-bottom: 25px;
}
.package-item {
  position: relative;
  background-color: var(--white);
  border-right: 0.5px solid var(--white);
}

.package-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0.6;
}

.package-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.package-item .title,
.package-item .icon {
  width: max-content;
  color: var(--white);
  font-size: var(--font-s);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 15px;
  font-weight: normal;
  border-radius: 10px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 1px white;
  /* Slight glow */
  backdrop-filter: blur(3px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(3px);
  z-index: 10;
}
.package-item .icon {
  bottom: unset;
  top: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}
.package-item .icon-img {
  width: 15px !important;
  height: 15px;
  object-fit: contain;
}
.package-item p {
  font-size: var(--font-m);
  font-weight: bold;
}
.package-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "card-1 card-2 card-3"
    "card-1 card-4 card-4";
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.package-card,
.blog-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  height: auto;
  color: #fff;
  padding: 20px;
}
.package-card,
.blog-card {
  transition: transform 0.3s ease;
  transform: translateZ(0); /* prevents blur */
  will-change: transform; /* hint for smoother GPU rendering */
}
.package-card:hover,
.blog-card:hover {
  transform: scale(1.03);
}

.package-card::before,
.blog-card::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    360deg,
    transparent 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 2;
  pointer-events: none;
}
.package-card::before {
  background: linear-gradient(
    360deg,
    transparent 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  height: auto;
  bottom: 0;
  border-radius: 16px;
}
.card-1 {
  grid-area: card-1;
  min-height: 520px;
}

.card-2 {
  grid-area: card-2;
}

.card-3 {
  grid-area: card-3;
}

.card-4 {
  grid-area: card-4;
}

.package-float {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  z-index: 2;
  color: var(--black);
  display: flex;
  justify-content: space-between;
}
.package-float h3,
.blog-cont h3 {
  /* font-family: var(--font-heading); */
  font-size: 20px;
  color: var(--white);
  margin: 0 0 5px;
}
.package-float h3 {
  text-transform: capitalize;
}
.notch {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}
.notch-img {
  width: 100px !important;
}

.blog-cont h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
}
.package-float p,
.blog-cont p,
.blog-cont a {
  font-family: var(--font-factory);
  margin: 0;
  font-size: var(--font-s);
  color: var(--white);
}
.package-float .price {
  font-size: var(--font-l);
  font-family: var(--font-factory);
  font-weight: 500;
  margin-top: 5px;
}
.package-float .badge,
.date-badge {
  background: rgba(0, 0, 0, 0.1);
  color: var(--black);
  font-size: var(--font-xs);
  padding: 6px 12px;
  border-radius: 999px;
  /* Slight glow */
  backdrop-filter: blur(3px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(3px);
  font-weight: 500;
}
.package-float .badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.explore-btn-holder {
  position: absolute;
  background-color: var(--white);
  bottom: 0;
  right: 0;
  padding: 15px 10px 3px 10px;
  border-top-left-radius: 16px;
  z-index: 10;
}
.explore-btn-holder::after,
.explore-btn-holder::before {
  content: "";
  display: block;
  position: absolute;
  left: -21px;
  bottom: 3px;
  width: 24px;
  height: 16px;
  border-radius: 50%;
  box-shadow: -3px 10px 0 0 white;
  transform: rotate(302deg);
}
.explore-btn-holder::before {
  bottom: unset;
  left: unset;
  top: -19px;
  right: -3px;
}
.explore-btn,
.explore-btn:hover,
.explore-btn:focus,
.bnt-vf,
.bnt-vf:hover,
.bnt-vf:focus {
  padding: 10px 20px;
  border: none;
  background: var(--hm-blue);
  color: #fff;
  border-radius: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
  font-size: var(--font-s);
  font-family: var(--font-factory);
}
.national-wrap {
  background-image: url(../images/b2c/home/national-day-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.npack-carousel .package-card {
  height: 250px;
  transform: scale(0.95);
}
.npack-carousel .package-card:hover {
  transform: scale(0.98);
}
.npack-carousel .owl-stage-outer {
  padding-bottom: 10px;
}
.npack-carousel .package-float h3 {
  font-family: var(--pf-medium);
  font-size: 16px;
  margin-bottom: 0;
}
.npack-carousel .country {
  font-size: var(--font-m);
}
.npack-carousel .package-float .price {
  font-family: var(--pf-medium);
  margin-top: 0;
}
/* Seaventure */
.ta-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.ta-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.ta-card .cont-sec {
  padding-top: 10px;
}
.ta-card .title {
  font-size: 16px;
  font-family: var(--pf-medium);
  margin-bottom: 5px;
}

.ta-card .price-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 8px;
}
.ta-card .price {
  font-size: 17px;
  font-family: var(--pf-medium);
  color: var(--hm-blue);
}
.ta-carousel .owl-stage-outer {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ta-carousel .ta-card {
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.35s;
  transform-origin: center;
}
.ta-carousel .ta-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 9px;
}
.sea-wrap .btn-md,
.sea-wrap .btn-md:hover,
.sea-wrap .btn-md:focus {
  font-size: var(--font-13);
  text-transform: capitalize;
  border: 1px solid var(--hm-blue);
  background: var(--smart-primary-lite) !important;
  color: var(--black);
  font-family: var(--pf-light);
  padding: 4px 8px;
  border-radius: 8px;
}
.sea-img {
  width: 150px;
}
.sea-title {
  font-size: 25px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.sea-wrap .ta-card {
  padding: 12px 12px 12px 12px;
  background: var(--smart-primary-lite);
  border-radius: 6px;
}

.vf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.visa-wrap {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.visa-wrap::before,
.visa-wrap::after {
  content: "";
  position: absolute;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 49%
  ); */
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.visa-wrap::after {
  bottom: 0;
  top: unset;
  background: linear-gradient(
    360deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 49%
  );
}
.vf-row .visa-wrap {
  border-radius: 0;
}
.vf-card {
  width: 90%;
  padding: 15px;
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vf-card .title {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 7px;
}

.vf-card .text {
  font-size: var(--font-s);
  margin-bottom: 10px;
}
/* stacked */
.stacked-section {
  background-image: url(../images/b2c/home/stacked-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px 0;
}
.stacked.nav-tabs {
  border: 1px solid var(--white);
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
  border-radius: 50px;
  /* Slight glow */
  backdrop-filter: blur(3px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: max-content;
  margin: auto;
}
.stacked.nav-tabs > li > a {
  background-color: var(--white);
  color: var(--black);
  border: 0;
  border-radius: 50px;
}
.stacked.nav-tabs > li.active > a,
.stacked.nav-tabs > li.active > a:focus,
.stacked.nav-tabs > li.active > a:hover {
  background-color: var(--hm-blue);
  color: var(--white);
  border: 0;
}
.stack-top-sec {
  text-align: center;
  /*  max-width: 300px;
  margin: 40px auto -20px auto; */
  margin: 20px auto 0 auto;
  color: var(--white);
}
.stack-title {
  font-family: var(--font-heading);
  font-size: 35px;
  margin-bottom: 6px;
}
.stack-cont {
  font-size: var(--font-s);
}
.stackedCarouselX-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  padding: 25px 0 40px 0;
  position: relative;
}

.stackedCarouselX-carousel {
  position: relative;
  width: 100%;
  height: 250px;
  margin: auto;
}

.stackedCarouselX-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) scale(0.85) translateY(60px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  /* clip-path: polygon(
    0 0,
    0 100%,
    22% 100%,
    27% 95%,
    76% 95%,
    81% 100%,
    100% 100%,
    100% 0,
    71% 0,
    66% 12%,
    35% 12%,
    28% 0
  ); */
}

.stackedCarouselX-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.75); */
}

.stackedCarouselX-info {
  position: absolute;
  bottom: 50px;
  width: 100%;
  padding: 20px;
  color: #fff;
  text-align: center;
  z-index: 4;
}
.stackedCarouselX-info .title {
  font-family: var(--font-heading);
  font-size: var(--font-xl);
}
.stackedCarouselX-info .cont {
  font-size: var(--font-s);
}

/* Active */
.stackedCarouselX-card.active {
  transform: translateX(-50%) scale(1) translateY(0);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

/* Next card */
.stackedCarouselX-card.next {
  transform: translateX(-50%) scale(0.92) translateY(35px);
  opacity: 1;
  z-index: 2;
}
/* Next-next card */
.stackedCarouselX-card.next-next {
  transform: translateX(-50%) scale(0.85) translateY(75px);
  opacity: 0.8;
  z-index: 1;
}
.stackedCarouselX-card.active::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  z-index: 2;
  pointer-events: none;
}
.stackedCarouselX-nav {
}
.stackedCarouselX-card.hidden {
  opacity: 0 !important;
  z-index: 0 !important;
  transform: translateX(-50%) scale(0.7) translateY(100px) !important;
  pointer-events: none;
}
/* Stories */
.stories-grid {
  --gap: 8px;
  --trans: -60px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: center;
}
.stories-grid > div {
  width: calc(90% / 2);
  flex-grow: 1;
}
.translate-video {
  margin-top: var(--trans);
}
.translate-text {
  margin-bottom: var(--trans);
}
.vertical > div {
  margin-bottom: 25px;
}
.sg-card {
  --width: 100%;
  --height: min-content;
  background-color: var(--white);
  padding: 20px 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  width: var(--width);
  height: var(--height);
  position: relative;
}
.sg-card.video {
  --height: 220px;
  padding: 0;
}
.quotation-mark {
  width: 30px;
  height: 30px;
  background-image: url(../images/b2c/home/quotation-mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -10px;
  left: 11px;
}
.profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-xs);
}
.sq-cont {
  margin-bottom: 15px;
}
.pro-img {
  --size: 37px;
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  border-radius: 50%;
}
.sg-card.video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
}

.video-card iframe,
.sg-card.video video,
.sg-card.video .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card iframe,
.sg-card.video .cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.sg-card.video .play-btn,
.sg-card.video .pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  /* Slight glow */
  backdrop-filter: blur(3px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(3px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.sg-card.video .play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.sg-card.video .pause-btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  border-left: 4px solid white;
  border-right: 4px solid white;
}

.sg-card.video .pause-btn {
  opacity: 0;
  pointer-events: none;
}

.sg-card.video.playing .pause-btn,
.sg-card.video.playing:hover .pause-btn {
  opacity: 1;
  pointer-events: all;
}

.sg-card.video .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  z-index: 4;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
}
.blog-grid > div {
  width: 100%;
  margin-bottom: 15px;
}
/* .blog-grid > div {
  flex-grow: 1;
}
.blog-grid > div:first-child {
  width: 57%;
  flex-shrink: 0;
} */
.blog-card {
  --height: 350px;
  width: 100%;
  height: var(--height);
  padding: 0;
  overflow: hidden;
}
.blog-card::after {
  bottom: 0;
  /* background: linear-gradient(
    360deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  ); */
  background: var(--bg-shadow-gradient);
  height: 100%;
}
.blog-card .date-badge {
  position: absolute;
  top: 25px;
  right: 20px;
  background: rgba(255, 255, 255, 0.3);
}
.blog-list-img {
  width: 100%;
  height: var(--height);
  object-fit: cover;
}
.blog-cont {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  color: var(--white);
  z-index: 10;
}
.blog-cont a {
  color: var(--white);
  display: inline-block;
}
.partners-holder {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-img {
  height: 40px;
  object-fit: contain;
}

.down-app-wrap {
  background-image: url(../images/b2c/home/download-app-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
}
.down-app-wrap .smart-heading {
  color: var(--white);
}
.phone-anime {
  padding-top: 45px;
  display: flex;
  justify-content: center;
  height: 320px;
}
.phone-anime > img {
  width: 260px;
  max-width: 100%;
  height: auto;
}
.phone-anime .phone-left {
  margin-right: -35px;
  transform: rotate(360deg);
}
.phone-center {
  position: relative;
}
.phone-right {
  margin-left: -35px;
}
.float-social {
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  right: 25px;
  bottom: 80px;
  z-index: 99;
  padding: 20px 12px;
  border-radius: 50px;
  border: 0.4px solid var(--white);
  /* Slight glow */
  backdrop-filter: blur(4px);
  /* Only this part blurs background */
  -webkit-backdrop-filter: blur(4px);
}
.float-social .social-icons-ul {
  flex-direction: column;
  align-items: center;
}
.float-social .social-icons {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.home-ad-img {
  width: 100%;
  height: 120px !important;
  border-radius: 12px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .ak-carousel .carousel-indicators {
    bottom: 65px;
  }

  .home-ad-img {
    width: 100%;
    height: 80px !important;
    border-radius: 12px;
  }
}
@media (max-width: 400px) {
  div.vertical > div.video-parent {
    width: 90% !important;
  }
}
@media (max-width: 576px) {
  .slide-cont .title {
    margin-bottom: 10px;
  }
  .slide-cont .cont {
    font-size: var(--font-s);
    line-height: 16px;
  }
  .ak-tab .nav-tabs.tabstab {
    padding: 10px;
  }
  .stackedCarouselX-wrapper {
    gap: 10px;
  }
  .stackedCarouselX-nav {
    flex-shrink: 0;
  }
  .phone-anime {
    height: 170px;
  }
  .phone-anime > img {
    width: 120px;
  }
  .custom-tab .nav-tabs.tabstab li a {
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    padding: 5px 10px;
  }
  .custom-tab.ak-tab .nav-tabs.tabstab li.dropdown > a{
    padding-right: 20px;
  }
  .custom-tab.ak-tab .nav-tabs.tabstab li.dropdown > a::after {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 576px) {
  .smart-carousel-container {
    height: 500px;
  }
  .zoom-circle {
    --align: 65px;
    --inner-size: 85px;
    width: 380px;
  }
  .smart-nav,
  .stackedCarouselX-nav {
    width: 60px;
    height: 35px;
    background-size: 25px;
    background-position: center 15px;
  }
  .smart-nav.prev {
    left: 30px;
  }
  .smart-nav.next {
    right: 30px;
  }
  .slide-cont .title {
    font-size: 25px;
  }
  .slide-cont .title .big {
    font-size: 45px;
  }
  .stackedCarouselX-carousel {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .package-grid {
    grid-template-areas:
      "card-1"
      "card-2"
      "card-3"
      "card-4";
    grid-template-columns: 1fr;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    min-height: 300px;
  }

  /* .blog-grid > div:first-child {
    width: 100%;
  } */
  .custom-tab.ak-tab {
    /* overflow: hidden; */
    padding-bottom: 8px;
  }

  .tab-icon-img,
  .tab-icon-img[data-icon-name="hotel"] {
    width: 15px;
    height: 18px;
    object-fit: contain;
  }

  .allformst .ak-tab .nav-tabs.tabstab > li > a label {
    font-size: var(--font-m) !important;
  }
}

@media (min-width: 768px) {
  .zoom-circle {
    --align: -5px;
    --inner-size: 130px;
    width: 500px;
  }
  .nav-tabs.tabstab {
    justify-content: flex-start;
  }
  .smart-heading .title {
    font-size: 40px;
  }
  .quotation-mark {
    width: 42px;
    top: -18px;
  }
}

@media (max-width: 992px) {
  .ak-navbar .navbar-collapse {
    margin: 0px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }

  #searchf-nav-tab {
    min-width: auto;
  }

  .stories-grid {
    --trans: 10px;
    --gap: 15px;
  }
  .stories-grid > div.vertical {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }
  div.vertical > div.video-parent {
    width: 45%;
  }
}

@media (min-width: 992px) {
  .smart-carousel-container {
    height: 600px;
  }
  .slide-cont .title {
    font-size: 30px;
  }
  .slide-cont .title .big {
    font-size: 90px;
  }
  .zoom-circle {
    --align: -65px;
    --inner-size: 150px;
    width: 800px;
  }

  .searcharea {
    margin-top: -165px;
    z-index: 18;
  }
  .ak-search-form-heading {
    font-size: 35px;
  }
  .ak-tab .nav-tabs.tabstab {
    padding: 10px 25px;
  }
  .searcharea .custom-tab .nav-tabs.tabstab > li {
    margin-right: 15px;
  }
  .tab-content.custmtab {
    padding: 15px 25px;
  }
  .vf-row {
    flex-wrap: nowrap;
  }
  .visa-wrap {
    width: 50%;
  }
  .vf-card {
    width: 75%;
    padding: 30px 50px;
  }
  .stackedCarouselX-carousel {
    width: 800px;
  }
  .stack-top-sec {
    /* margin: 40px auto -80px auto; */
    margin: 20px auto 0 auto;
  }
  .stories-wrap .smart-heading {
    margin-bottom: -65px;
  }
  .stories-grid {
    flex-wrap: nowrap;
  }
  .stories-grid > div {
    width: calc(98% / 7);
  }
  .inspad .secndblak {
    padding: 0;
  }
  .home-ad-img {
    width: 80%;
    margin: auto;
  }
  .package-card.card-1 .notch-img {
    width: 150px !important;
  }
  .blog-grid {
    margin-left: -8px;
    margin-right: -8px;
  }
  .blog-grid > div {
    width: 33.33%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 1200px) {
  .zoom-circle {
    --align: -165px;
    --inner-size: 250px;
    width: 1080px;
  }
  .slide-cont .title {
    font-size: 58px;
  }
  .slide-cont .title .big {
    /* font-size: 135px; */
    font-size: 82px;
  }
  .searcharea {
    display: flex;
    justify-content: center;
    float: none;
  }
}
