@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    /* font-family: "Archivo", sans-serif !important; */
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root {
  --primary-color: #B91C1C;
  --secondary-color: #15993e;
  --accent-color: #064ed6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --border-color: #e5e7eb;
  --nav-height: 72px;
  --bg-color-main: #0B5D4B;
  --bg-color-sec: #D4A24C;
  --text-light: #fefefe;
  --tracking-tighter: -.02em;
}

/* Enable smooth scrolling across the entire site */
html {
  scroll-behavior: smooth;
}

/* Respect user accessibility choices */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

h1, h2, h3, h4, h5, h6{
     font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    letter-spacing: var(--tracking-tighter);;
}

input[type="text"], input[type="email"] {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

body {
  background: var(--background-alt);
  color: var(--text-primary);
  line-height: 1.6;
}

.header-main {
  background: var(--background);
  /* border-bottom: 1px solid var(--border-color); */
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */

  background-color: transparent;
    /* backdrop-filter: blur(10px); */

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease;
}

header.sticky-top { position: fixed;}

/* After user scrolls a little */
header.header-scrolled {
    background: #003b95;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    padding: 4px 0;
}

/* Hide while scrolling down */
header.header-hidden {
    transform: translateY(-200%);
}

/* Optional body class for future use */
body.header-scrolled {
    /* Future styles here */
}


.nav-container {
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    z-index: 1001;
    width: 242px;
    height: auto;
    /* filter: brightness(0) invert(1); */

    position: absolute;
    top: 5px;
    max-width: 125px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    color: var(--primary-color);
}

.logo-text {
    /* letter-spacing: -0.5px; */
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    min-width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--text-primary);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  background: var(--text-primary);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--text-primary);
}
.navbar{
    padding:4px 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 30px);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    list-style: none;
    margin-bottom: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light) !important;
  font-size: 15px !important;
  /* font-weight: 700 !important; */
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.mobile_nav_btn .nav_whts_btn {display: none;}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.nav-btn.secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
}

.nav-btn.secondary:hover {
  background: var(--background-alt);
}

.nav-btn.primary {
  color: #ffffff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.nav-btn.primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.nav_whats_icon_click {
    width: 40px;
    height: 40px;
}
.nav_whats_icon_click .whats_icn_img {
    width: 100%;
    height: 100%;
}
.nav_whats_icon_click{
    position: relative;
    animation: whatsBlink 1.2s infinite;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav_whats_icon_click i {
    font-size: 28px;
    color: var(--text-light);
}

/* glow effect */
/* .nav_whats_icon_click::before{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: whatsPulse 1.2s infinite;
    z-index: -1;
} */

@keyframes whatsBlink{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.12);
        opacity: 0.75;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes whatsPulse{
    0%{
        transform: scale(0.5);
        opacity: 0.7;
    }
    70%{
        transform: scale(1.2);
        opacity: 0;
    }
    100%{
        transform: scale(1.3);
        opacity: 0;
    }
}

/*--main-banner--*/
.hero-section picture{
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
}
.hero-section picture,
.hero-section picture img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-section picture img {
    height: 100%;
}

.hero-section {
    background: var(--background);
    position: relative;
    z-index: 1;
    min-height: 850px;
    height: 100dvh;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(86deg, rgb(255 255 255), rgb(255 255 255 / 95%), rgb(255 255 255 / 0%)); */
    /* background: linear-gradient(86deg, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.15) 100%); */
    /* background: linear-gradient(91deg, rgba(6, 78, 214, 0.5) 30%, rgba(55, 109, 223, 0.3) 60%, rgba(11, 78, 215, 0.15) 100%); */
    /* background: linear-gradient(90deg, rgba(33, 37, 41, 0.9) 30%, rgba(33, 37, 41, 0.6) 60%, rgba(33, 37, 41, 0.15) 100%); */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.hero-section.counitry_view{
    min-height: 580px;
}
.hero-section.counitry_view .mainbanner_top_section{
    min-height: 70vh;
}
/* .hero-section.counitry_view::before {
    background: linear-gradient(160deg, rgba(255,255,255, 0.4) 30%, rgba(255,255,255, 0.5) 60%, rgba(255,255,255, 0.15) 100%);
} */
.hero-section.counitry_view .hero-description,
.hero-section.counitry_view .feature-wrapper .text strong,
.hero-section.counitry_view .feature-wrapper .text span{
    color: var(--text-light);
}

.hero-section::after {
    content: "";
    position: absolute;

    width: 80%;
    height: 80%;

    top: 0px;
    right: 0px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(13, 110, 253, 0.12) 0%,
        rgba(13, 110, 253, 0.08) 40%,
        transparent 70%
    );

    animation: blobMove 14s ease-in-out infinite alternate;

    z-index: 1;
    pointer-events: none;
}

@keyframes blobMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-120px, 380px);
    }
}

@media (max-width: 991px) {
    .hero-section::after {
        width: 320px;
        height: 320px;
        right:0px;
        top: 0px;
    }
}
.hero-section img {
    object-position: right;
    object-fit: cover;
}
.mainbanner_top_section {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 160px 0px 90px !important; */

    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 120px;
    z-index: 3;
}

.hero_sub_title {
    font-size: 15px;
    background: #fff;
    padding: 5px 14px;
    padding-bottom: 6px;
    border-radius: 8px;
    /* box-shadow: 0 0 4px #333; */
}
.hero_sub_title i {
    font-size: 17px;
    color: var(--secondary-color);
}
.hero_sub_title .sub_title_1 {color: var(--accent-color);}
.hero_sub_title .sub_title_2 {color: var(--primary-color);}
.hero_sub_title .sub_title_3 {color: var(--secondary-color);}

.hero-title {
    font-size: 52px;
    /* font-weight: 800; */
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 20px;
    /* letter-spacing: -1px; */
    line-height: 1.1;
}
.hero-title b {
    color: var(--accent-color);
}

.hero-description {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.6;
    /* max-width: 400px; */
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: start;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.hero-btn.primary {
  background: var(--accent-color);
  color: #ffffff;
}

.hero-btn.primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-btn.secondary {
  background: var(--background-alt);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.hero-btn.secondary:hover {
  background: #f3f4f6;
}


/* Proximity Trust Badges */
    .proximity-trust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    }

    .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    }

    .trust-item i {
    color: var(--text-primary);
    font-size: 18px;
    }

    .trust-item span {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--);
    }

    .trust-divider {
    width: 1px;
    height: 30px;
    background-color: #e2e8f0;
    }

    /* GLASSMORPHISM BOTTOM BAR */
    .bottom-feature-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1280px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    padding: 20px 32px;
    justify-content: space-between;
    align-items: center;
    }

    .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    }

    .feature-icon {
    color: #ffffff;
    font-size: 24px;
    opacity: 0.9;
    }

    .feature-text h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    }

    .feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom:0;
    }

    .feature-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 10px;
    }

    /* RESPONSIVE QUERIES */
    @media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-bottom: 160px;
    }
    .bottom-feature-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
    .feature-divider {
        display: none;
    }
    .feature-item {
        flex: 1 1 40%;
    }
    }

    @media (max-width: 768px) {

    .hero-title {
        font-size: 40px;
    }
    .bottom-feature-bar {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        border-radius: 0;
    }
    .feature-item {
        flex: 1 1 40%;
        justify-content: flex-start;
    }
    }

/*--left feature card start--*/

.feature-wrapper {
    margin-top: 30px;
}

.feature-wrapper .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* overflow: hidden; */
}

/* ITEM */
.feature-wrapper .feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border-right: 0;
}

/* REMOVE LAST BORDER */
.feature-wrapper .feature-item:last-child {
    border-right: none;
}

/* ICON */
.feature-wrapper .icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f5f7fb;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* TEXT */
.feature-wrapper .text strong {
    display: block;
    font-size: 14px;
    color: #000;
    line-height: 18px;
}
.feature-wrapper .text span {
    font-size: 12px;
    color: #333;
}

/*--right active card start--*/

.visa-box-wrapper .visa-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px) saturate(120%);
    /* backdrop-filter: blur(10px); */
}

.visa-box-wrapper .visa-card .visa_form_heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.visa_trust_form_text {
    font-size: 14px;
    /* color: var(--secondary-color); */
}
.visa_trust_form_text i {
    font-size: 14px;
    color: #333;
}

/* OPTION */
.visa-box-wrapper .visa-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: 2px solid #333;
    outline-offset: -5px;
}

/* ICON */
.visa-box-wrapper .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 0;
    border-right: 1px solid #d2d2d2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.visa-box-wrapper .icon-box img {
    width: 34px;
    height: 34px;
}

/* TEXT */
.visa-box-wrapper .content {
    flex: 1;
    margin-left: 15px;
    color: #000;
}
.visa-box-wrapper .content span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

/* ARROW */
.visa-box-wrapper .arrow {
    color: #333;
    font-size: 15px;
    margin-right: 10px;
    background: #f5f7fb;
    padding: 4px 9px;
    border-radius: 0px;
    box-shadow: 0 0 2px #d2d2d2;
    transition: all .3s ease-in-out;
}

/* COLORS */
.visa-box-wrapper .standard {
    background: #fff;
    transition: all 0.3s ease;
}
.visa-box-wrapper .urgent {
    background: #fff;
    transition: all 0.3s ease;
}
.visa-box-wrapper .fast {
    background: #fff;
    transition: all 0.3s ease;
}

/* HOVER */
.visa-box-wrapper .visa-option:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ACTIVE */
.visa-box-wrapper .visa-option.active {
    outline: 2px solid #000;
    outline-offset: -5px;
    box-shadow: 0 0 0 3px rgb(214 214 214 / 40%);
}
.visa-box-wrapper .standard.active {
    outline: 2px solid var(--accent-color);
}
.visa-box-wrapper .urgent.active {
    outline: 2px solid var(--primary-color);
}
.visa-box-wrapper .fast.active {
    outline: 2px solid var(--secondary-color);
}

.visa-box-wrapper .visa-option.standard.active .content {color: var(--accent-color);}
.visa-box-wrapper .visa-option.urgent.active .content {color: var(--primary-color);}
.visa-box-wrapper .visa-option.fast.active .content {color: var(--secondary-color);}

.visa-box-wrapper .visa-option.standard.active .arrow {background: var(--accent-color);color: #fff;}
.visa-box-wrapper .visa-option.urgent.active .arrow {background: var(--primary-color);color: #fff;}
.visa-box-wrapper .visa-option.fast.active .arrow {background: var(--secondary-color);color: #fff;}

/* BUTTON */
.visa-box-wrapper .apply-btn {
    background: var(--text-primary);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 4px !important;
    transition: 0.3s;
}
.visa-box-wrapper .apply-btn:hover {
    background: var(--accent-color);
}
.visa-box-wrapper .apply-btn i {transition: 0.3s;}
.visa-box-wrapper .apply-btn:hover i {padding-left: 6px;}

/*--main-banner-end--*/

@media (max-width: 1081px) {
  .hamburger {
    display: flex;
  }

  body.active .nav-logo{
    filter: none;
  }
  .nav-logo{
    position: relative;
    max-width: 90px;
  }

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #f8f9fb;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 70px 32px;
    gap: 32px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body.active .nav_whats_icon_click i{
    color: var(--accent-color);
}

  .nav-menu.active {
    left: 0px;
  }

  .nav-list {
    border-top: 1px dashed #dfdfdf;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: var(--text-primary) !important;
  }
  .nav-link:hover, .nav-link.active{
    color: var(--text-primary) !important;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .nav-menu.active .nav-actions.nav_whts_btn {
    display: none;
}
}

@media (max-width: 992px) {
	.nav-menu {
		padding: 100px 28px 32px;
	}
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
}


.section_title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
}
.section_title b {color: var(--accent-color);}




/*--main-banner-bottom-start---*/

.banner_main_bottom_bar_bxs .trust_box, .banner_main_bottom_bar_bxs .feature_box {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    margin-bottom: 14px;
    background: rgba(248, 249, 251, 0.7);
    backdrop-filter: blur(10px);
}

.banner_main_bottom_bar_bxs .trust_intro, .banner_main_bottom_bar_bxs .trust_item, .banner_main_bottom_bar_bxs .feature_item {
    padding: 18px;
    height: 100%;
}

.banner_main_bottom_bar_bxs .trust_intro h2 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.banner_main_bottom_bar_bxs .trust_intro p {
    font-size: 12px;
    color: #333;
    line-height: 20px;
    margin-bottom: 0;
}

.banner_main_bottom_bar_bxs .trust_item {
    text-align: left;
    border-left: 1px solid #eceef4;
}

.banner_main_bottom_bar_bxs .tp_logo {
    display: flex;
    gap: 4px;
    justify-content: start;
    align-items: center;
    font-size: 22px;
    color: #00b67a;
}

.banner_main_bottom_bar_bxs .tp_logo span {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.banner_main_bottom_bar_bxs .tp_rating .stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin: 6px 0;
}

.banner_main_bottom_bar_bxs .tp_rating .stars i {
    background: #00b67a;
    color: #fff;
    padding: 4px;
    font-size: 11px;
}

.banner_main_bottom_bar_bxs .tp_rating {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: start;
}

.banner_main_bottom_bar_bxs .tp_rating  strong {
    font-size: 18px;
}

.banner_main_bottom_bar_bxs .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin: auto;
    /* border-radius: 50%; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature_item .blue{
background:#eef4ff;
color:#0b46d7;
}

.feature_item .green{
background:#e8faf1;
color:#27ae60;
}

.feature_item .purple{
background:#f3e8ff;
color:#7d35d7;
}

.feature_item .pink{
background:#ffe8ef;
color:#e84575;
}

.feature_item .orange{
background:#fff2df;
color:#f5a623;
}

.trust_item.center h3 {
    margin: 8px 0 4px;
    font-size: 17px;
    font-weight: 800;
    color: var(--bs-black);
    text-align: center;
}

.trust_item.center span {
    font-size: 12px;
    display: block;
    text-align: center;
    color: #333;
}

.feature_box .feature_item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-right: 1px solid #eee;
    align-items: center;
}

.feature_box .feature_item h4 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000;
}

.feature_box .feature_item p{
    font-size: 12px;
    margin:0;
    color:#333;
}

.feature_box .feature_item .circle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    /* border-radius: 50%; */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    font-size: 18px;
}

.banner_bottom_bar {
    background: linear-gradient(90deg,var(--accent-color), #000);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
}

.banner_bottom_bar .nav_item {
    flex: 1;
    min-width: 220px;
    padding: 14px;
    color: #fff;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.18);
}

.banner_bottom_bar .nav_item:last-child{
border:0;
}


/*--main-banner-end---*/

/*--about-section-start---*/
.about-section {
    padding: 60px 0px;
}
.default_image {
    display: none;
    position: absolute;
    top: 5%;
    left: 0;
    width: 237px;
    opacity: .2;
}
.about_left_area p {
    font-size: 15px;
    color: #333;
    text-align: justify;
    margin-bottom: 30px;
}

.about_right_area {
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.about_right_area img {
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.about_right_area img:hover {
    transform: scale(1.1);
}

.visa_btn {
  width: 100%;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #fff;
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.visa_btn i {padding-left: 6px;}
.visa_btn:hover {
  background: #fff;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.add_btn_check {
  /* width: 160px; */
  text-align: center;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  background: #fff;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.add_btn_check i {padding-right: 6px;}
.add_btn_check:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #fff;
}

.content_section {
    padding: 50px 0px;
    background-color: #f5f7fb;
}

.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-text.show {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.content_main_bxs .section_title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}
.content_main_bxs h2 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
	margin-top: 20px;
	margin-bottom: 20px;
}
#contentText h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
    margin-top: 12px;
}

#contentText ul {
	margin-bottom: 0px;
	padding-left: 19px;
}

#contentText ol {
	margin-bottom: 0px;
	padding-left: 15px;
}

#contentText ul li,
#contentText ol li {
	font-size: 15px;
	color: #333;
	padding-bottom: 12px;
}
#contentText ol li p, #contentText ul li p {
	margin-bottom: 0px;
}
#contentText ul li {
	list-style: disc;
}

#contentText ol li {
	list-style: auto;
}

#contentText ol li::marker {
	margin-right: 4px !important;
	font-weight: 600;
}

#contentText p {
	font-size: 15px;
	color: #333;
	margin-bottom: 12px;
}

#contentText table {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0;
    margin: 10px 0px;
}
#contentText table thead tr th {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #d2d2d2;
  padding: 16px;
}
#contentText table tbody tr:first-child {
    color: #fff;
    background: #f3f3f3;
}

#contentText table tbody tr td {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    padding: 14px;
    vertical-align: middle;
    border: 1px solid #d2d2d2;
}
#contentText table tbody tr td p {margin-bottom: 0px;}

.read-more-box .visa_btn {
    width: auto;
    float: right;
}
.read-more-content {
	max-height: 120px;
	overflow: hidden;
	transition: max-height 0.6s ease;
}
.read-more-box .read-more-btn {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-top: 10px;
    text-align: center;
}
  .content_main_area .read-more-btn {
	width: 150px;
  }
.read-more-btn {
    color: var(--theme-second);
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}
.sec-title h2 {
    position: relative;
    font-size: 34px;
    font-weight: 600;
    color: #000;
    /* letter-spacing: -0.04em; */
    margin-bottom: 0;
    padding-bottom: 12px;
    text-transform: capitalize;
}
.read-more-box .sec-title h2 {
    position: relative;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.read-more-box p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}
.read-more-box h2 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
}
.read-more-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    padding-bottom: 4px;
}
  .read-more-box ul li {
	font-size: 16px;
	color: #333;
	padding-bottom: 8px;
  }
.read-more-box ol li {
    font-size: 15px;
    color: #333;
    padding-bottom: 8px;
}

/*--about-section-end---*/

/*--country-why-apply-section-start---*/

.default_country_step_process_bxss{
    padding: 50px 0;
    background: #f5f7fb;
    position: relative;
}

/* Left Side */
.default_country_step_process_bxss .why_apply_box h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.default_country_step_process_bxss .why_apply_box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.default_country_step_process_bxss .why_apply_box ul li i{
    color: var(--accent-color);
    font-size: 20px;
}

/* Right Title */
.default_country_step_process_bxss .section_title{
    margin-bottom: 40px;
}

.default_country_step_process_bxss .section_title h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

/* Step Box */
.default_country_step_process_bxss .step_process_box {
    background: #fff;
    border-radius: 4px;
    padding: 22px 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.35s ease;
    height: 272px;
}

.default_country_step_process_bxss .step_process_box:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.default_country_step_process_bxss .step_icon{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
    position: relative;
}

.default_country_step_process_bxss .step_icon::before{
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    z-index: -1;
}

.default_country_step_process_bxss .blue_icon{
    color: var(--accent-color);
    background: #edf2ff;
}

.default_country_step_process_bxss .yellow_icon{
    color: #ffb400;
    background: #fff5da;
}

.default_country_step_process_bxss .green_icon{
    color: var(--secondary-color);
    background: #e9fff5;
}

.default_country_step_process_bxss .step_badge{
    display: inline-block;
    padding: 7px 16px;
    border-radius: 8px;
    background: #f4f6fb;
    border: 1px solid #e3e7f4;
    font-size: 14px;
    font-weight: 700;
    color: #4b5675;
    margin-bottom: 18px;
}

.default_country_step_process_bxss .step_process_box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.default_country_step_process_bxss .step_process_box p {
    font-size: 13px;
    color: #6d7488;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Arrow */
.default_country_step_process_bxss .process_wrapper{
    position: relative;
}

.default_country_step_process_bxss .arrow_icon {
    margin-top: 0px;
    position: absolute;
    top: 58%;
    transform: 0;
    color: var(--accent-color);
    font-size: 22px;
    z-index: 2;
    width: auto;
}
.default_country_step_process_bxss .arrow_icon .aero_right_img {
    width: 28px;
    filter: invert(1) contrast(0.5) brightness(0.5);
}
.default_country_step_process_bxss .arrow_one {
    left: 21%;
}

.default_country_step_process_bxss .arrow_two {
    left: 47%;
}

.default_country_step_process_bxss .arrow_three {
    left: 73%;
}

/* Responsive */
@media(max-width:1199px){

    .default_country_step_process_bxss .arrow_icon{
        display: none;
    }

}

@media(max-width:991px){

    .default_country_step_process_bxss{
        padding: 60px 0;
    }

    .default_country_step_process_bxss .why_apply_box{
        margin-bottom: 40px;
    }

    .default_country_step_process_bxss .section_title h2{
        font-size: 30px;
    }

}

@media(max-width:767px){

    .default_country_step_process_bxss .why_apply_box h2{
        font-size: 28px;
    }

    .default_country_step_process_bxss .section_title h2{
        font-size: 26px;
    }

    .default_country_step_process_bxss .step_process_box{
        padding: 28px 18px;
    }

}

/*--country-why-apply-section-end---*/

/*--payment-form-start--*/

.payment_form_section{
    background: #fff;
    padding: 60px 0;
}
.payment-box h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.payment-box .pament_sebline {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    width: 100%;
    display: block;
}
.payment_form_section .payment_form_wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.03);
}

.payment_form_section .payment_logo {
    margin-bottom: 12px;
    gap: 12px;
    justify-content: center;
}

.payment_form_section .payment_logo img {
    max-width: 64px;
}
.payment_form_section .payment_logo img.paypal {
    max-width: 117px;
}

.payment_form_section .payment_title{
    margin-bottom: 34px;
}

.payment_form_section .payment_title h2{
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.payment_form_section .payment_input_box{
    margin-bottom: 24px;
}

.payment_form_section .payment_input_box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.payment_form_section .payment_input_box label span{
    color: var(--accent-color);
}

.payment_form_section .payment_input_box input, .payment_form_section .payment_input_box select {
    width: 100%;
    height: 50px;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #111827;
    transition: all 0.3s ease;
}

.payment_form_section .payment_input_box input:focus,
.payment_form_section .payment_input_box select:focus{
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.08);
}

.payment_form_section .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dee2e6 !important;
    border-radius: 12px !important;
    height: 50px !important;
}

.payment_form_section .payment_amount_field{
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.payment_form_section .payment_amount_field .currency_select {
    width: 100%;
    flex-shrink: 0;
}

.payment_form_section .payment_amount_field select{
    border: none;
    border-right: 1px solid #dcdcdc;
    border-radius: 0;
    background: #fff;
}

.payment_form_section .payment_amount_field input{
    border: none;
    border-radius: 0;
}

.payment_form_section .payment_input_box small{
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #111827;
}

.payment_form_section .payment_checkbox{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.payment_form_section .payment_checkbox input{
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.payment_form_section .payment_checkbox label{
    font-size: 15px;
    color: #111827;
    cursor: pointer;
}

.payment_form_section .payment_checkbox label a{
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.payment_form_section .payment_submit_btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.payment_form_section .payment_submit_btn:hover{
    background: #000;
}

@media(max-width: 767px){

    .payment_form_section{
        padding: 40px 0;
    }

    .payment_form_section .payment_form_wrapper{
        padding: 30px 20px;
        border-radius: 8px;
    }

    .payment_form_section .payment_logo img{
        max-width: 220px;
    }

    .payment_form_section .payment_title h2{
        font-size: 24px;
    }

    .payment_form_section .payment_amount_field{
        flex-direction: column;
    }

    .payment_form_section .payment_amount_field .currency_select{
        width: 100%;
    }

    .payment_form_section .payment_amount_field select{
        border-right: none;
        border-bottom: 1px solid #dcdcdc;
    }

}



.payment_sidebar_box .payment_card_box {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    margin-bottom: 15px;
}

.payment_sidebar_box .payment_title {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d2d2d2;
}

.payment_sidebar_box .payment_wallet_icon{
    position: absolute;
    top: 20px;
    right: 20px;
}

.payment_sidebar_box .payment_wallet_icon img{
    width: 26px;
}

.payment_sidebar_box .payment_border_line{
    border-top: 1px solid #ebe6df;
    margin: 18px 0;
}

.payment_sidebar_box .payment_text{
    font-size: 15px;
    color: #777;
    margin-bottom: 8px;
}

.payment_sidebar_box .payment_company{
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.payment_sidebar_box .secure_payment_box{
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment_sidebar_box .secure_icon img{
    width: 34px;
}

.payment_sidebar_box .secure_content h6{
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
}

.payment_sidebar_box .secure_content p{
    font-size: 13px;
    color: #777;
    margin: 0;
}

.payment_sidebar_box .payment_method_group{
    margin-bottom: 22px;
}

.payment_sidebar_box .payment_method_group h6{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.payment_sidebar_box .payment_method_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment_sidebar_box .payment_method_item{
    height: 48px;
    border: 1px solid #ece7e0;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.payment_sidebar_box .payment_method_item img{
    max-width: 100%;
    max-height: 24px;
    object-fit: contain;
}

.payment_sidebar_box .bank_icon_box i{
    font-size: 20px;
    color: #9b9b9b;
}

.payment_sidebar_box .payment_help_box {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 18px;
    display: flex;
    gap: 12px;
}

.payment_sidebar_box .help_icon i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.payment_sidebar_box .help_content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.payment_sidebar_box .help_content p {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    margin: 0;
}
.payment_sidebar_box .help_content p a {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-color);
    transition: all .3s ease-in-out;
}
.payment_sidebar_box .help_content p a:hover {
    color: var(--primary-color);
}

.payment_sidebar_box .payment_method_group {
    margin-bottom: 22px;
}
.payment_security_box {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #d2d2d2;
    background: #fff;
    /* padding: 0; */
    border-radius: 0;
}
.security_item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 26px;
}
.security_icon {
    min-width: auto;
}
.security_icon i {
    font-size: 18px;
    color: var(--accent-color);
}
.security_content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}
.security_content p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}


/*--payment-secure-css--*/

.secure_feature_section {
    background: #f8f9fb;
    border: 1px solid #f8f9fb;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 26px;
}

.secure_feature_section .secure_feature_box{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    height: 100%;
}

.secure_feature_section .border-end{
    border-right: 1px solid #dbdbdb !important;
}

.secure_feature_section .secure_feature_icon{
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure_feature_section .secure_feature_icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.secure_feature_section .secure_feature_content h4{
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.secure_feature_section .secure_feature_content p{
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 22px;
}

@media(max-width:991px){

    .secure_feature_section .border-end{
        border-right: none !important;
        border-bottom: 1px solid #eee7dc !important;
    }

    .secure_feature_section .secure_feature_box{
        padding: 16px 18px;
    }
}

/*--payment-form-end--*/

/*--default-css-start--*/

.default-banner-section {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
}
.default-banner-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(92deg, #242424a8 0%, #2424249e 20.73%, #242424a3 45.5%, #242424b5 99.99%); */
    /* background: linear-gradient(
        90deg,
        rgba(18, 18, 18, 0.85) 0%,
        rgba(18, 18, 18, 0.55) 40%,
        rgba(18, 18, 18, 0.25) 100%
    ); */
    background: linear-gradient(
        135deg,
        rgba(16, 16, 16, 0.6) 0%,
        rgba(25, 25, 25, 0.3) 45%,
        rgba(0, 0, 0, 0.2) 100%
    );

    z-index: 1;
}

.default-banner-section img {
    object-fit: cover;
    object-position: top;
}

.default_banner_heading span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.default_banner_heading .payment_subtitle i {
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 6px 7px; */
    border: 1px solid #d2d2d2;
    border-radius: 50px;
}

.default_banner_heading h1 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}

.default_banner_heading p {
    font-size: 16px;
    color: #e4e4e4;
}

.default-banner-section.sm-banner{
    height: 320px;
}
.default-banner-section.sm-banner .default_banner_heading{
    padding-top: 64px;
}
@media (max-width: 576px) {
    .default-banner-section.sm-banner {
		height: 340px;
	}
	.default-banner-section.sm-banner .default_banner_heading {
		padding-top: 80px;
	}
}


/*--country-eligible-apply-bx-css--*/

.default_country_view_section {
    height: 520px !important;
}


.default_country_aply_bxss{
    position: relative;
    z-index: 1;
}

.default_country_aply_bxss .visa_apply_box {
    background: #fff;
    border-radius: 8px;
    padding: 20px 18px;
    gap: 20px;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.default_country_aply_bxss .visa_apply_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.default_country_aply_bxss .visa_apply_box:hover::before{
    opacity: 1;
}

.default_country_aply_bxss .visa_apply_box:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.default_country_aply_bxss .visa_icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.default_country_aply_bxss .visa_icon i{
    font-size: 24px;
    color: #fff;
}

.default_country_aply_bxss .visa_content {
    text-align: left;
}

.default_country_aply_bxss .visa_content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.default_country_aply_bxss .visa_content p {
    margin-bottom: 18px;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.default_country_aply_bxss .apply_btn{
    gap: 10px;
    padding: 11px 24px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.default_country_aply_bxss .apply_btn i{
    transition: 0.3s;
}

.default_country_aply_bxss .apply_btn:hover i{
    transform: translateX(4px);
}

/* Standard */
.default_country_aply_bxss .standard_box{
    border-color: var(--accent-color);

}

.default_country_aply_bxss .standard_box .visa_icon{
    background: var(--accent-color);
}

.default_country_aply_bxss .standard_box h4{
    color: var(--accent-color);
}

.default_country_aply_bxss .standard_box .apply_btn{
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
}
.default_country_aply_bxss .standard_box .apply_btn:hover{
    background: #fff;
    color: var(--accent-color);
}

/* Urgent */
.default_country_aply_bxss .urgent_box{
    border-color: var(--primary-color);
}

.default_country_aply_bxss .urgent_box .visa_icon{
    background: var(--primary-color);
}

.default_country_aply_bxss .urgent_box h4{
    color: var(--primary-color);
}

.default_country_aply_bxss .urgent_box .apply_btn{
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
}
.default_country_aply_bxss .urgent_box .apply_btn:hover{
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Super Fast */
.default_country_aply_bxss .superfast_box{
    border-color: var(--secondary-color);
}

.default_country_aply_bxss .superfast_box .visa_icon{
    background: var(--secondary-color);
}

.default_country_aply_bxss .superfast_box h4{
    color: var(--secondary-color);
}

.default_country_aply_bxss .superfast_box .apply_btn{
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #fff;
}
.default_country_aply_bxss .superfast_box .apply_btn:hover{
    background: #fff;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Active */
.default_country_aply_bxss .visa_apply_box.active{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

@media(max-width:767px){

    .default_country_aply_bxss .visa_apply_box{
        padding: 22px 18px;
        gap: 16px;
    }

    .default_country_aply_bxss .visa_icon{
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .default_country_aply_bxss .visa_content h4{
        font-size: 20px;
    }

}

/*--breadcumb-css--*/

.custom-breadcrumb {
    background: transparent;
    padding: 12px 0;
    border-radius: 8px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    font-size: 15px;
    color: #6c757d;
    position: relative;
    padding-right: 20px;
}

.breadcrumb-list li a {
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.3s;
    font-weight: 600;
}

.breadcrumb-list li a:hover {
    color: #000;
}

/* Arrow separator */
.breadcrumb-list li::after {
    content: '\F280';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 0;
    right: 6px;
    color: #000000;
    font-size: 11px;
    line-height: 25px;
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li.active {
    color: #000;
}

/*--default-css-end--*/

/*--default-process-css-start--*/

.default_country_process_bxss{
    background: #f7f8fc;
    border: 1px solid #e5e8f1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.default_country_process_bxss .process_box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-right: 1px solid #e5e8f1;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.default_country_process_bxss .process_box:hover{
    transform: translateY(-3px);
}

.default_country_process_bxss .border_none{
    border-right: 0;
}

.default_country_process_bxss .process_icon{
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #edf2ff;
    border: 1px solid #dfe7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default_country_process_bxss .process_icon i{
    font-size: 22px;
    color: var(--accent-color);
}

.default_country_process_bxss .process_content h4{
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.default_country_process_bxss .process_content p{
    margin: 0;
    font-size: 13px;
    color: #5f6675;
    line-height: 1.5;
}

@media(max-width:991px){

    .default_country_process_bxss .process_box{
        border-right: 0;
        border-bottom: 1px solid #e5e8f1;
    }

    .default_country_process_bxss .row > div:last-child .process_box{
        border-bottom: 0;
    }

}

@media(max-width:767px){

    .default_country_process_bxss .process_box{
        padding: 18px;
    }

    .default_country_process_bxss .process_icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .default_country_process_bxss .process_content h4{
        font-size: 16px;
    }

    .default_country_process_bxss .process_content p{
        font-size: 13px;
    }

}

/*--default-process-css-end--*/

/*--country-section-css-start--*/

.country-section {
    background: #fff;
    padding: 50px 0;
}

/* Heading */
.country-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

/* Search Box */
.country-section .search-box {
	position: relative;
	width: 100%;
}

.country-section .search-box input {
	width: 100%;
	padding: 14px 20px 14px 45px;
	border-radius: 4px;
	border:  1px solid #ddd;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.country-section .search-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
}

/* Badge */
.country-section .badge-btn {
	background: linear-gradient(90deg, #f7941d, #c76d00);
	color: #fff;
	padding: 12px 20px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Countries Wrapper (Height Animation) */
.countries-wrapper {
	padding-top: 10px;
	overflow: hidden;
	transition: max-height .6s ease;
}

/* Country Card */
.country-card {
	background: #fff;
	border-radius: 4px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border:  1px solid #e5e5e5;
	transition: all .3s ease;
	cursor: pointer;
}
.country-card:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.countries-wrapper a {
	color: #000;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.countries-wrapper a:hover {
	color: #fff;
}

.country-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.country-left img {
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
}

.country-left p {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	line-height: 20px !important;
	margin-bottom: 0;
}

.country-card i {
	font-size: 14px;
	transition: .3s;
}

.country-card:hover i {
	transform: translateX(4px);
}

/* View All */
.view-all {
	text-align: right;
	margin-top: 15px;
}

.view-all a {
	text-decoration: none;
	font-weight: 500;
	color: var(--accent-color);
	cursor: pointer;
}

@media(max-width:767px) {
	.country-title {
		font-size: 24px;
	}
}

/*--country-section-css-end--*/

/*--how-wrapper-start--*/

.how-wrapper {
    padding: 60px 0;
    background: #fff;
}

/* STEP BOX */
.how-wrapper .step-box {
    text-align: center;
    transition: 0.3s all ease-in-out;
}

/* CIRCLE */
.how-wrapper .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 0 3px #d2d2d2;
}

/* COLORS */
.how-wrapper .blue {
    background: #f8fbff;
    color: var(--accent-color);
}
.how-wrapper .green {
    background: #f8fbff;
    color: var(--secondary-color);
}
.how-wrapper .purple {
    background: #f8fbff;
    color: #7c3aed;
}
.how-wrapper .orange {
    background: #f8fbff;
    color: #f97316;
}

/* STEP NUMBER */
.how-wrapper .step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #fff;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.how-wrapper .blue .step-number {background: var(--accent-color);}
.how-wrapper .green .step-number {background: var(--secondary-color);}
.how-wrapper .purple .step-number {background: #7c3aed;}
.how-wrapper .orange .step-number {background: #f97316;}

/* TEXT */
.how-wrapper h6 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.how-wrapper p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

/* HOVER EFFECT 🔥 */
.how-wrapper .step-box:hover {
    transform: translateY(-8px);
}

.how-wrapper .step-box:hover .circle {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

/* CONNECTOR LINE (desktop only) */
@media (min-width: 992px) {
    .how-wrapper .row::before {
        content: "";
        position: absolute;
        top: 45px;
        left: 12%;
        width: 76%;
        border-top: 2px dashed #cbd5e1;
        z-index: 0;
    }
    .how-wrapper .step-box {
        position: relative;
        z-index: 1;
    }
}

/*--how-wrapper-end--*/

/*--azer-visa-card-start--*/

.azer_visa_section {
  background: #f5f7fb;
}

/* Card */
.azer_visa_section .visa_card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.azer_visa_section .visa_card:hover {
  transform: translateY(-6px);
}

.visa_card_main_tp_area {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #d2d2d266;
    margin-bottom: 16px;
    padding-bottom: 16px;
    position: relative;
    z-index: 2;
}
.visa_tp_ltp_icon.standards {
    background: var(--accent-color);
    padding: 12px;
    border-radius: 12px;
}
.visa_tp_ltp_icon.urgents {
    background: var(--primary-color);
    padding: 12px;
    border-radius: 12px;
}
.visa_tp_ltp_icon.supper {
    background: var(--secondary-color);
    padding: 12px;
    border-radius: 12px;
}
.visa_tp_ltp_icon .visa_icon {
    width: 40px;
}

/* Title */
.azer_visa_section .visa_card .visa_title_name {
    font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.azer_visa_section .visa_card .small {
    /* color: #777; */
    margin-bottom: 8px;
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 500;
}
.small.standards {
    background: #ffffff;
    color: var(--accent-color);
}
.small.urgents {
    background: #ffffff;
    color: var(--primary-color);
}
.small.supper {
    background: #ffffff;
    color: var(--secondary-color);
}

/* Price */
.azer_visa_section .visa_card h2 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 0;
    color: #000;
}
.visa_standard {
    color: var(--accent-color) !important;
}
.visa_urgent {
    color: var(--primary-color) !important;
}
.visa_super {
    color: var(--secondary-color) !important;
}

.azer_visa_section .visa_card h2 span {
    font-size: 18px;
    color: #666;
}

/* List */
.azer_visa_section .visa_card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.azer_visa_section .visa_card .visa_card_main_list_bx .visa_card_list {
    display: inline-block;
    margin-bottom: 8px;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
    width: calc(49% - 0.25em);
    padding: 8px;
    border: 1px solid;
    border-radius: 6px;
}

.azer_visa_section .visa_card .visa_card_main_list_bx .visa_card_list .visa_card_list_bxs {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
}

.azer_visa_section .visa_card .visa_card_main_list_bx .visa_card_list .visa_card_list_bxs p strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.azer_visa_section .visa_card .visa_card_main_list_bx .visa_card_list .visa_card_list_bxs p {
    display: block;
    font-size: 12px;
    color: #666;
}
.visa_card_main_list_bx.first_card .visa_card_list {
    border: 1px solid #e3e3e3 !important;
    background-color: rgba(33, 33, 227, 0.021);
}
.visa_card_main_list_bx.first_card .visa_card_list .visa_card_list_bxs i {
    font-size: 22px;
    color: var(--accent-color);
}

.visa_card_main_list_bx.secon_card .visa_card_list {
    border: 1px solid #e3e3e3 !important;
    background-color: rgba(255, 0, 0, 0.027);
}
.visa_card_main_list_bx.secon_card .visa_card_list .visa_card_list_bxs i {
    font-size: 22px;
    color: var(--primary-color);
}

.visa_card_main_list_bx.third_card .visa_card_list {
    border: 1px solid #e3e3e3 !important;
    background-color: rgba(0, 128, 0, 0.019);
}
.visa_card_main_list_bx.third_card .visa_card_list .visa_card_list_bxs i {
    font-size: 22px;
    color: var(--secondary-color);
}



/* Buttons */

/* .visa_card_bottom_button_bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
} */

.card_whatsapp_btn {
    padding: 8px !important;
    background: #fff;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}
.card_whatsapp_btn i {
    font-size: 18px;
}
.card_whatsapp_btn:hover {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #fff !important;
}

.azer_visa_section .btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
}

/* Variants */
.azer_visa_section .standard .top_bg_bxs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 158px;
    background: linear-gradient(179deg, #064ed62b, rgb(245 247 251), rgb(255 255 255 / 0%));
    background-position: top;
    background-position-y: 50%;
    border-radius: 12px 12px 0px 0px;
    z-index: 1;
}

.azer_visa_section .urgent .top_bg_bxs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 158px;
    background: linear-gradient(179deg, #e21b2e1c, rgb(255 248 248), rgb(255 255 255 / 0%));
    background-position: top;
    background-position-y: 50%;
    border-radius: 12px 12px 0px 0px;
    z-index: 1;
}

.azer_visa_section .fast .top_bg_bxs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 158px;
    background: linear-gradient(179deg, #15993e26, rgb(250 253 250), rgb(255 255 255 / 0%));
    background-position: top;
    background-position-y: 50%;
    border-radius: 12px 12px 0px 0px;
    z-index: 1;
}

.azer_visa_section .btn_standard {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #fff;
  transition: all .3s ease-in-out;
}
.azer_visa_section .btn_standard:hover {
  background: #fff;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}


.azer_visa_section .btn_urgent {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  transition: all .3s ease-in-out;
}
.azer_visa_section .btn_urgent:hover {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}


.azer_visa_section .btn_fast {
  background: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
  transition: all .3s ease-in-out;
}
.azer_visa_section .btn_fast:hover {
  background: #fff;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.azer_visa_section .btnicon{
    padding: 3px;
    border-radius: 8px;
}
.azer_visa_section .btnicon i{
    font-size:26px;
}

/* Badge */
.azer_visa_section .badge_popular {
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    width: fit-content;
    margin: 0 auto;
    /* transform: translateX(-50%); */
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 8px;
    z-index: 3;
}
.azer_visa_section .standard .badge_popular {background: var(--accent-color)}
.azer_visa_section .urgent .badge_popular {background: var(--primary-color)}
.azer_visa_section .fast .badge_popular {background: var(--secondary-color)}

/*--azer-visa-card-end--*/

/*--visa-requirment-css-start--*/

.visa-requirements-section{
    background:#f8f9fb;
}

.requirement-box{
    background:#fff;
    border:1px solid #eceff6;
    border-radius:10px;
    padding:22px 24px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    height:100%;
    transition:.3s;
}

.requirement-box:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.requirement-icon{
    min-width:46px;
    width:46px;
    height:46px;
    border-radius:10px;
    background:#f4f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.requirement-icon i{
    color:var(--accent-color);
    font-size:22px;
}

.requirement-content h5{
    font-size:18px;
    font-weight:700;
    color: #000;
    margin-bottom:8px;
}

.requirement-content p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#7b839b;
}

.check-link{
    text-decoration:none;
    color:#4d6fe8;
    font-weight:600;
    font-size:15px;
}

.check-link i{
    margin-left:4px;
}

/*--visa-requirment-css-end--*/

/*--visa-counter-card-start--*/

.visa_counter_section {
  background: linear-gradient(90deg, #0d2c5a, #0b3c7a);
}

/* Box */
.visa_counter_section .counter_box {
    position: relative;
    text-align: center;
    padding: 20px 26px;
    border-radius: 12px;
    height: 203px;
    box-shadow: 0 0 2px #d2d2d2;
    transition: all .3s ease-in-out;
}
.visa_counter_section .counter_box:hover {
    background-color: #ffffff1c;
    transform: translateY(-6px);
    box-shadow: 0 0 4px #d2d2d2;
}

.visa_counter_section .col-lg-2:last-child .counter_box::after {
  display: none;
}

/* Icon */
.visa_counter_section .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visa_counter_section .icon i {
  color: #fff;
  font-size: 20px;
}

/* Text */
.visa_counter_section h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.visa_counter_section p {
  color: #cfd8e3;
  font-size: 13px;
  margin: 0;
}

/*--visa-counter-card-end--*/

/*--reviews-section-css-start--*/

.review-section {
    padding: 60px 0;
    background: #f5f7fb;
}
.review-section .container {
    position: relative;
}

.review-section h2 {
    font-weight: 800;
    font-size: 32px;
    color: #000;
}

.review-section p.subtitle {
	color: #6c757d;
	margin-bottom: 30px;
}

.review-section .review-card {
	background: #fff;
	border-radius: 20px;
	padding: 25px;
	border: 1px solid #e5e5e5;
	height: 100%;
	transition: 0.3s;
}

.review-section .review-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-section .review-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.review-section .review-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    /* -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
    line-height: 26px !important;
}

.review-section .user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 16px;
    position: relative;
}
.review-section .user-info:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    min-height: 1px;
    width: 100%;
    background: linear-gradient(270deg, #ffffff45 -.13%, #c1c1c10a 0, #c1c1c15c 49.17%, #e0e0e00d);
    margin: 4px 0;
}
.review-section .user-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-section .user-avatar {
    width: 52px;
    height: 52px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    position: relative;
}
.review-section .user-avatar i {
    position: absolute;
    bottom: -5px;
    right: -6px;
    color: var(--accent-color);
    border: 3px solid #fff;
    height: 20px;
    display: flex;
    border-radius: 24px;
}

.review-section .user-info .stars {
    background: #e4fbe4;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 0 2px #d2d2d2;
}
.review-section .stars i {
    color: #147c20;
    font-size: 14px;
}

.review-section .user-left .user_name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.user_select_visa_type {
    box-shadow: 0 0 2px #d2d2d2;
    padding: 8px 16px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}
.user_select_visa_type.standard {
    background: #f1f4fb;
    color: #000;
}
.user_select_visa_type.standard i {
    color: var(--accent-color);
}
.user_select_visa_type.urgent {
    background: #fbf1f2;
    color: #000;
}
.user_select_visa_type.urgent i {
    color: var(--primary-color);
}
.user_select_visa_type.fast {
    background: #f1fbf1;
    color: #000;
}
.user_select_visa_type.fast i {
    color: var(--secondary-color);
}
.user_main_right .user_country {
    font-size: 15px;
    color: #666;
}
.user_main_right .user_country i {
    border-radius: 4px;
    overflow: hidden;
}
.review_colum_icon {margin-bottom: 12px;}
.review_colum_icon img {
    width: 32px;
    opacity: .2;
}

.user_bottom_review_date {
    font-size: 15px;
    color: #666;
    border-top: 2px solid #d2d2d2;
    padding-top: 10px;
    margin-top: 12px;
}
.user_bottom_review_date i {margin-right: 4px;}

/* Swiper arrows */
.review-section .swiper-button-next, .review-section .swiper-button-prev {
    position: absolute;
    top: 57%;
}
.review-section .swiper-button-prev, .review-section .swiper-rtl .swiper-button-next {
    left: -44px;
    right: auto;
}
.review-section .swiper-button-next, .review-section .swiper-rtl .swiper-button-prev {
    right: -44px;
    left: auto;
}
.review-section .swiper-button-next,
.review-section .swiper-button-prev {
	background: #fff;
	color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all .3s ease-in-out;
    border: 2px solid var(--accent-color);
}

.review-section .swiper-button-next::after,
.review-section .swiper-button-prev::after {
	font-size: 16px;
    font-weight: 600;
	color: var(--accent-color);
}

.review-section .swiper-button-next:hover,
.review-section .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
}

.review-section .swiper-button-next:hover::after,
.review-section .swiper-button-prev:hover::after {
	color: #fff;
}

/*--reviews-section-css-end--*/

/*--faqs-section-css-start--*/
.faqs-section {
	background-color: #fff;
}

.faqs_main_view_bx .accordion-item {
	margin-bottom: 10px;
	border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
	border-radius: 12px !important;
	overflow: hidden;
}

.faqs_main_view_bx .accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.faqs_main_view_bx .accordion-item:last-of-type {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button {
	outline: none;
	box-shadow: none;
	font-weight: 500;
	color: #000;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button .faqs_ques {
	font-size: 15px;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button:not(.collapsed) {
	font-size: 15px;
	font-weight: 600;
	color: var(--accent-color);
	background-color: #f3f3f3;
	box-shadow: 0 0 2px #f3f3f3;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button::after {
	display: none;
}

.faqs_main_view_bx .accordion-item .accordion-header .accordion-button .icon {
	font-size: 14px;
	font-weight: bold;
}
.faqs_main_view_bx .accordion-item .accordion-body {
    font-size: 14px;
    color: #333;
}
.faqs_main_view_bx .accordion-item .accordion-body p {
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
}

.faqs_main_view_bx .accordion-item .accordion-body ul {
	padding-left: 18px;
	margin-bottom: 10px;
}

.faqs_main_view_bx .accordion-item .accordion-body ol {
	padding-left: 15px;
	margin-bottom: 10px;
}

.faqs_main_view_bx .accordion-item .accordion-body ul li {
	font-size: 14px;
	color: #333;
	padding-bottom: 8px;
	list-style: disc;
}

.faqs_main_view_bx .accordion-item .accordion-body ol li {
	font-size: 14px;
	color: #333;
	padding-bottom: 8px;
	list-style: auto;
}

/*--faqs-section-css-end--*/

/*--contact-section-css-start--*/

.contact_top_section{
    background: #fff;
}

.contact_top_section .contact_top_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f5f7fb;
    padding: 34px 34px;
    border-radius: 14px;
    height: 100%;
    outline: 1px dashed var(--accent-color);
    outline-offset: -12px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact_top_section .contact_top_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.5s ease;
    z-index: -1;
}

.contact_top_section .contact_top_box:hover::before,
.contact_top_section .contact_top_box.active_box::before{
    left: 0;
}

.contact_top_section .contact_top_box:hover,
.contact_top_section .contact_top_box.active_box{
    border-color: #ffffff70;
}

.contact_top_section .contact_icon {
    min-width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #2a2a2a;
    padding-right: 24px;
    transition: all 0.4s ease;
}

.contact_top_section .contact_icon i{
    font-size: 52px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.contact_top_section .contact_content h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1d;
    transition: all 0.4s ease;
}

.contact_top_section .contact_content a, .contact_top_section .contact_content p {
    margin: 0;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: all 0.4s ease;
}
.contact_top_section .contact_content a {
    font-size: 14px;
	font-weight: 600;
}

.contact_top_section .contact_top_box:hover .contact_icon,
.contact_top_section .contact_top_box.active_box .contact_icon{
    border-color: #ffffff70;
}

.contact_top_section .contact_top_box:hover .contact_icon i,
.contact_top_section .contact_top_box.active_box .contact_icon i,
.contact_top_section .contact_top_box:hover .contact_content h4,
.contact_top_section .contact_top_box.active_box .contact_content h4,
.contact_top_section .contact_top_box:hover .contact_content a,
.contact_top_section .contact_top_box.active_box .contact_content a,
.contact_top_section .contact_top_box:hover .contact_content p,
.contact_top_section .contact_top_box.active_box .contact_content p{
    color: #fff;
}

@media(max-width: 767px){

    .contact_top_section .contact_top_box{
        padding: 24px;
        gap: 18px;
    }

    .contact_top_section .contact_icon{
        min-width: 60px;
        height: 60px;
        padding-right: 18px;
    }

    .contact_top_section .contact_icon i{
        font-size: 38px;
    }

    .contact_top_section .contact_content h4{
        font-size: 18px;
    }

    .contact_top_section .contact_content a,
    .contact_top_section .contact_content p{
        font-size: 15px;
    }

}

.contact_form_section {
    overflow: hidden;
    background: #fff;
    padding-bottom: 50px;
}

.contact_form_section .contact_form_left {
    background: #f5f7fb;
    padding: 50px 50px;
    height: 100%;
    border-radius: 12px 0px 0px 12px;
}

.contact_form_section .contact_form_heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact_form_section .contact_form_heading span i{
    font-size: 16px;
}

.contact_form_section .contact_form_heading h2{
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #111;
    margin-bottom: 28px;
    max-width: 700px;
}

.contact_form_section .contact_form_heading p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    max-width: 760px;
    margin-bottom: 45px;
}

.contact_form_section .contact_input_box{
    margin-bottom: 28px;
}

.contact_form_section .contact_input_box label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.contact_form_section .contact_input_box input, .contact_form_section .contact_input_box select, .contact_form_section .contact_input_box textarea {
    width: 100%;
    border: 1px solid #aaa;
    outline: none;
    background: #fff;
    height: 50px;
    padding: 10px;
    font-size: 15px;
    color: var(--bs-body-color);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.contact_form_section .contact_input_box input::placeholder,
.contact_form_section .contact_input_box select::placeholder,
.contact_form_section .contact_input_box textarea::placeholder{
    color: #444;
}

.contact_form_section .contact_input_box textarea {
    height: auto;
    resize: none;
}

.contact_form_section .contact_input_box input:focus,
.contact_form_section .contact_input_box select:focus,
.contact_form_section .contact_input_box textarea:focus{
    box-shadow: 0 0 0 1px #d2d2d2;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa!important;
    border-radius: 10px !important;
    height: 50px !important;
}

.select2-container.select2-container--open.select2-container--above .select2-selection--single {
    border-bottom-color: #aaa;
    border-radius: 0 0 8px 8px !important;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0, #fff 90%);
    background-image: linear-gradient(to bottom, #eee 0, #fff 90%);
	border-top: 0px !important;
}
.select2-container.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-color: #aaa;
    border-radius: 8px 8px 0 0 !important;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0, #fff 90%);
    background-image: linear-gradient(to bottom, #eee 0, #fff 90%);
    border-bottom: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--bs-body-color) !important;
}
/* Select2 Search Cursor Blink Fix */
.select2-container--default .select2-search--dropdown .select2-search__field{
    caret-color:#000 !important;
}
/* focus par proper cursor */
.select2-container--default .select2-search--dropdown .select2-search__field:focus{
    outline:none !important;
    box-shadow:none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 50px !important;
	font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    position: absolute;
    top: 0px !important;
    right: 5px !important;
    width: 26px !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--accent-color) !important;
    color: white;
}

.contact_input_box .iti{
    width: 100%;
}

.contact_input_box .iti input{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background: #fff;
	border: 1px solid #aaa;
    padding-left: 95px !important;
    font-size: 15px;
    color: #111;
    box-shadow: none;
}

.contact_input_box .iti__selected-country{
    background: transparent;
}
.iti__flag-container {
    position: absolute;
    top: -1px !important;
    left: -1px !important;
    bottom: 0;
    right: 0;
    padding: 1px;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.249);
    border-radius: 12px 0px 0px 12px;
    padding: 10px 8px;
    height: 50px;
}
.contact_input_box .iti--separate-dial-code .iti__selected-dial-code{
    font-size: 16px;
    color: #111;
}

.contact_input_box .iti__country-list{
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-size: 14px;
}

.contact_input_box .iti__country{
    padding: 10px 14px;
}

.contact_input_box .iti__country:hover{
    background: #f4f4f4;
}

.contact_form_section .contact_input_box select{
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24' stroke='%23333' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 25px center;
}

.contact_form_section .contact_submit_btn{
    width: 100%;
    height: 52px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.4s ease;
}

.contact_form_section .contact_submit_btn:hover{
    background: #111;
}

.contact_form_section .contact_submit_btn i{
    transition: all 0.4s ease;
}

.contact_form_section .contact_submit_btn:hover i{
    transform: translateX(6px);
}

.contact_form_section .contact_image_wrapper {
    position: relative;
    height: 100%;
    border-radius: 0px 12px 12px 0px;
    overflow: hidden;
}

.contact_form_section .contact_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_form_section .contact_floating_badge {
    position: absolute;
    top: 0;
    right: 7%;
    width: 90px;
    background: #fff;
    text-align: center;
    padding: 30px 15px 45px;
    clip-path: polygon(0 0,100% 0,100% 84%,50% 100%,0 84%);
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact_form_section .contact_floating_badge .contct_float_txt {
    text-decoration: none;
}

.contact_form_section .badge_text{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: auto;
}

.contact_form_section .badge_text span{
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.contact_form_section .badge_text p{
    margin: 12px 0 0;
    font-size: 16px;
    color: #555;
}

.contact_form_section .badge_icon {
    margin-top: 9px;
}

.contact_form_section .badge_icon i{
    font-size: 30px;
    color: var(--accent-color);
}

@media(max-width: 1399px){

    .contact_form_section .contact_form_heading h2{
        font-size: 48px;
    }

    .contact_form_section .contact_form_left{
        padding: 70px 60px;
    }

}

@media(max-width: 991px){

    .contact_form_section .contact_form_left{
        padding: 60px 25px;
    }

    .contact_form_section .contact_form_heading h2{
        font-size: 38px;
    }

    .contact_form_section .contact_form_heading p{
        font-size: 17px;
        line-height: 1.7;
    }

    .contact_form_section .contact_image_wrapper{
        min-height: 500px;
    }

}

@media(max-width: 575px){

    .contact_form_section .contact_input_box textarea{
        height: 160px;
        padding-top: 20px;
    }

    .contact_form_section .contact_submit_btn{
        height: 64px;
        font-size: 18px;
    }

}

/*--contact-section-css-end--*/

/*--footer-start---*/

.footer-wrapper {
    background: linear-gradient(90deg, #0b2c5f, #0a1f44);
    color: #fff;
    padding: 50px 0 20px;
}

.footer_logo {
    width: 260px;
}

/* LOGO */
.footer-wrapper .logo {
    font-weight: 700;
    font-size: 20px;
}
.footer-wrapper .logo span {
    color: var(--accent-color);
}

/* ABOUT */
.footer-wrapper .about {
    font-size: 14px;
    opacity: 0.85;
    margin: 15px 0;
}

/* SOCIAL */
.footer-wrapper .social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}
.footer-wrapper .social-icons a:hover {
    background: var(--accent-color);
}

/* LINKS */
.footer-wrapper h6 {
    width: max-content;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #23395f;
}
.footer-wrapper ul {
    list-style: none;
    padding: 0;
}
.footer-wrapper ul li {
    margin-bottom: 8px;
}
.footer-wrapper ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease-in-out;
}
.footer-wrapper ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* CONTACT */
.footer-wrapper .contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-wrapper .contact-item i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-wrapper .contact-item .contact_link {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.footer-wrapper .contact-item .contact_link:hover {color:#fff;padding-left: 4px;}

/* BOTTOM */
.footer_bottom_top_text {
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    color: #d3d3d3;
}
.footer_bottom_top_text p {
    margin-bottom: 0px;
    text-align: center;
}
.footer-wrapper .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
}

/* BADGES */
.footer-wrapper .badge-item {
    margin-left: 15px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .footer-wrapper .badge-item {
        display: inline-block;
        margin: 5px;
    }
}

/*--footer-end---*/

/*--visa-application-form-start---*/

.visa_application_section{
    background:#fff;
}
.visa_application_section {
    background: url(../images/application_form_bg_img.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;

}
.visa_application_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff9c;
    z-index: 1;
}
.visa_application_section .container {
    position: relative;
    z-index: 4;
}
.visa_application_main_heading h1 {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.visa_step_top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    flex-wrap: wrap;
}

.step_item {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 268px;
}

.step_count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dfe4ea;
    color: #555;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    transition: .4s;
}

.step_count i{
    position:absolute;
    opacity:0;
}

.step_item.active .step_count, .step_item.completed .step_count {
    background: var(--secondary-color);
    color: #fff;
}

.step_item.completed .step_count span{
    opacity:0;
}

.step_item.completed .step_count i{
    opacity:1;
}

.step_item p{
    margin-top:12px;
    font-size:15px;
    font-weight:600;
    color:#222;
}

/* STEP LINE */

.step_item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 120px;
    width: 300px;
    height: 4px;
    background: #dfe4ea;
    border-radius: 30px;
    z-index: -1;
}

.step_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 125px;
    width: 0;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 30px;
    transition: .5s;
    z-index: -1;
}

/* ACTIVE LINE FILL */

.step_item.completed::after{
    width:300px;
}

.secure_document_main_box {
    background: #064ed60d;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 12px 14px;
    height: 150px;
}
.secure_document_main_box_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secure_document_main_box_icon i {
    font-size: 20px;
    color: #fff;
}
.secure_document_main_box_content h5 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}
.secure_document_main_box_content p {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 17px;
}

@media(max-width:991px){

    .step_item{
        min-width:110px;
    }

}

@media(max-width:767px){

    .visa_step_top{
        gap:20px;
    }

}

.visa_form_wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgb(87 87 87 / 10%);
    outline: 1px dashed #d2d2d2;
    outline-offset: 0;
}

.visa_form_step{
    display:none;
}

.visa_form_step.active{
    display:block;
}

.step_heading_top_main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    border-bottom: 1px dashed #d3d3d3;
    padding-bottom: 12px;
}

.step_heading {
    margin-bottom: 0;
}

.step_heading_top_main .step_visa_price {
    background: #064ed60d;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 0 2px #dedede;
}

.step_heading h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1px;
}

.step_heading span {
    font-size: 14px;
    color: #666;
}
.visa_field_area_st .flatpickr-input {
    background: #fff url("../images/calendar-icon.png") no-repeat right 18px center;
    cursor: pointer;
    background-size: 14px;
}
.visa_field_area_st .visa_input {
    width: 100%;
    height: 50px;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 10px;
    outline: none;
    transition: .3s;
    font-size: 15px;
    box-shadow: none;
}

.visa_field_area_st .visa_input:focus{
    border: 1px solid #aaa !important;
    box-shadow: none;
    outline: none;
}
.visa_field_area_st .visa_input::placeholder {color: #333;}
.visa_field_area_st label{
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}
.visa_field_area_st label .req_star {
    color: var(--primary-color);
}
.visa_field_area_st .iti {
    width: 100%;
    position: relative;
    display: inline-block;
}
.visa_field_area_st .iti input {
    max-width: 100%;
    width: 100%;
    height: 50px;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    outline: none;
    background: #fff;
    padding-left: 95px !important;
    font-size: 15px;
    color: #111;
    box-shadow: none;
}
.visa_field_area_st{
    position: relative;
}
.visa_field_area_st .date_icon {
    position: absolute;
    bottom: 13px;
    right: 12px;
    z-index: 0;
}

.visa_upload_area_st label{
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.visa_upload_area_st .upload_box{
    position: relative;
}

.visa_upload_area_st .upload_label {
    width: 100%;
    min-height: 154px;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.visa_upload_area_st label .req_star {
    color: var(--primary-color);
}
.visa_upload_area_st .upload_icon {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    background: #064ed60d;
    font-size: 20px;
    color: var(--accent-color);
    /* padding: 6px 12px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
#passportFileName p, #photoFileName p, .upload_label p {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-top: 6px;
    margin-bottom: 8px;
}
#passportFileName .upload_btn_show_vw {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 6px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
#passportFileName .upload_btn_show_vw i {
    display: inline;
    font-size: 13px !important;
    margin-left: 4px;
}
#passportFileName .upload_btn_show_vw:hover {
    background: var(--accent-color);
    color: #fff !important;
}
#photoFileName .upload_btn_show_vw {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 6px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
#photoFileName .upload_btn_show_vw i {
    display: inline;
    font-size: 13px !important;
    margin-left: 4px;
}
#photoFileName .upload_btn_show_vw:hover {
    background: var(--accent-color);
    color: #fff !important;
}
.upload_btn_show_vw {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 6px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
.upload_btn_show_vw:hover {
    background: var(--accent-color);
	color: #fff;
}
.visa_upload_area_st .upload_preview {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 2px #d2d2d2;
}

.step_btn{
    margin-top:20px;
}

.between_btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.next_btn,
.prev_btn,
.pay_btn{
    border:none;
    padding:15px 35px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.next_btn,
.pay_btn{
    background:var(--accent-color);
    color:#fff;
}

.prev_btn {
    background: #064ed60d;
    color: var(--accent-color);
    transition: .4s;
}
.prev_btn:hover{
    background:#000;
    color:#edf0f5;
}

.next_btn:hover,
.pay_btn:hover{
    background:#000;
}

.payment_box{
    background:#f7f8fb;
    border-radius:20px;
    padding:35px;
    margin-top:20px;
}

.payment_box h4{
    font-size:18px;
    margin-bottom:10px;
}

.payment_box h2{
    font-size:45px;
    color:var(--accent-color);
    font-weight:700;
    margin-bottom:20px;
}

@media(max-width:991px){

    .step_line{
        width:60px;
    }

    .visa_form_wrapper{
        padding:30px;
    }

}

@media(max-width:767px){

    .visa_step_top{
        gap:20px;
    }

    .step_line{
        display:none;
    }

    .between_btn{
        flex-direction:column;
        gap:15px;
    }

    .next_btn,
    .prev_btn,
    .pay_btn{
        width:100%;
    }

    .visa_form_wrapper{
        padding:25px 20px;
    }

    .step_heading h3{
        font-size:28px;
    }

}

.visa_form_step .visa_validity_alert {
    background: #064ed60d;
    border: 1px solid #064ed60d;
    border-radius: 12px;
    padding: 14px 13px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 0;
}

.visa_form_step .validity_icon{
    min-width:28px;
    height:28px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    margin-top:2px;
}

.visa_form_step .visa_validity_alert p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #111827;
    font-weight: 500;
}

.visa_form_step .visa_validity_alert strong{
    font-weight:700;
}

.visa_form_step .validity_card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.visa_form_step .start_card {
    border: 1px solid var(--accent-color);
    border-left: 10px solid var(--accent-color);
    background-color: #064fd607;
}

.visa_form_step .end_card{
    border:1px solid var(--primary-color);
    border-right: 10px solid var(--primary-color);
    background-color: rgba(255, 0, 0, 0.032);
}

.visa_form_step .validity_card .validity_card_right {
    text-align: left;
}
.visa_form_step .validity_card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: .5px;
}

.visa_form_step .start_card h3{
    color:var(--accent-color);
}

.visa_form_step .end_card h3{
    color:var(--primary-color);
}

.visa_form_step .validity_card h5 {
    font-size: 14px;
    color: #111827;
    margin-bottom: 3px;
    font-weight: 500;
}
.visa_form_step .start_card .validity_card_left {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 20px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.visa_form_step .end_card .validity_card_left {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.visa_form_step .date_text {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.visa_form_step .start_card .date_text i{
    color:var(--accent-color);
}

.visa_form_step .end_card .date_text i{
    color:var(--primary-color);
}

@media(max-width:767px){

    .visa_form_step .visa_validity_alert{
        padding:18px;
    }

    .visa_form_step .visa_validity_alert p{
        font-size:15px;
        line-height:1.7;
    }

    .visa_form_step .validity_card{
        padding:30px 15px;
    }

    .visa_form_step .validity_card h3{
        font-size:20px;
    }

    .visa_form_step .validity_card h5{
        font-size:18px;
    }

    .visa_form_step .date_text{
        font-size:18px;
    }

}

/*--visa-application-form-end---*/

/*--visa-track-section-start---*/

.visa_track_section{
    background:#fff;
}

.visa_track_section .track_left {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}

.visa_track_section .track_left{
    padding-right:20px;
}

.visa_track_section .track_subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(4,103,92,0.08);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.visa_track_section .track_title{
    font-size:30px;
    font-weight:700;
    color:#000;
    line-height:1.2;
    margin-bottom:18px;
}

.visa_track_section .track_text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.visa_track_section .track_form_box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #dfe5e8;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.visa_track_section .track_form_box input {
    width: 100%;
    height: 68px;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 15px;
    color: #222;
}
.visa_track_section .track_form_box input#trackAppId {
    border-right: 1px solid #dfe5e8;
}

.visa_track_section .track_form_box button{
    min-width:220px;
    height:68px;
    border:none;
    background:var(--accent-color);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:0.4s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.visa_track_section .track_form_box button:hover{
    background:#000;
}

.track_info_mid_trpst {
    background: #003b95;
    padding: 10px;
    border-radius: 10px;
}
.track_info_mid_trpst .track_info_help {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.track_info_mid_trpst .track_info_help i {
    background: #f5f7fb;
    color: var(--accent-color);
    padding: 10px;
    border-radius: 40px;
    font-size: 18px;
}
.track_info_mid_trpst .track_info_help .track_info_help_txt p {
    font-size: 14px;
    margin-bottom: 0;
}

.visa_track_section .track_info_mid_trpst .btn_support {
    width: fit-content;
    height: 40px;
    padding: 10px;
    margin-right: auto;
    border: none;
    background: #1e6cff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    text-decoration: none;
    border-radius: 10px;
}

.visa_track_section .track_info_mid_trpst .btn_support:hover{
    background:#000;
}

.visa_track_section .track_note{
    display:block;
    margin-top:14px;
    font-size:14px;
    color:#777;
}

.visa_track_section .track_info {
    background: linear-gradient(135deg,var(--accent-color));
    border-radius: 24px;
    padding: 20px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.visa_track_section .track_info::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.visa_track_section .track_icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.visa_track_section .track_info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.visa_track_section .track_info p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:24px;
    color:#e8f6f4;
}

.visa_track_section .track_info ul{
    padding:0;
    margin:0;
    list-style:none;
}

.visa_track_section .track_info ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    font-size:14px;
    font-weight:500;
}

.visa_track_section .track_info ul li i{
    color:#fff;
    font-size:18px;
}

@media(max-width:991px){

    .visa_track_section .track_wrapper{
        padding:30px;
    }

    .visa_track_section .track_title{
        font-size:38px;
    }

    .visa_track_section .track_form_box{
        flex-direction:column;
    }

    .visa_track_section .track_form_box input{
        height:60px;
    }

    .visa_track_section .track_form_box button{
        width:100%;
        min-width:100%;
        height:60px;
    }

}

@media(max-width:767px){

    .visa_track_section .track_wrapper{
        padding:25px 20px;
        border-radius:18px;
    }

    .visa_track_section .track_title{
        font-size:30px;
    }

    .visa_track_section .track_text{
        font-size:15px;
    }

    .visa_track_section .track_info{
        padding:30px 25px;
    }

}


/*--visa-track-section-end---*/

/*--visa-why-choose-us-section-start---*/

.visa_why_choose_us_section {
    background: #f5f7fb;
}

.visa_why_choose_us_left ul {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.visa_why_choose_us_left ul li {
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding-bottom: 10px;
}
.visa_why_choose_us_left ul li i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 4px;
    vertical-align: middle;
}
.visa_why_choose_us_left ul li i::before {
    font-weight: 700 !important;
}

.visa_choose_us_right_img {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}
.visa_choose_us_right_img img {
    object-fit: cover;
    object-position: top;
}

/*--visa-why-choose-us-section-end---*/

/*--visa-info-section-start---*/

.visa_info_section{
    background:#fff;
}

.visa_info_section .visa_info_wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.04);
}

.visa_info_section .visa_info_heading{
    margin-bottom:35px;
}

.visa_info_section .visa_info_heading p{
    font-size:15px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:12px;
    max-width:1100px;
}

.visa_info_section .visa_info_card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:30px 25px;
    height:100%;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.visa_info_section .visa_info_card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.visa_info_section .info_icon{
    width:75px;
    height:75px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:22px;
}

.visa_info_section .blue_icon{
    background:rgba(37,99,235,0.12);
    color:var(--accent-color);
}

.visa_info_section .green_icon{
    background:rgba(22,163,74,0.12);
    color:var(--secondary-color);
}

.visa_info_section .purple_icon{
    background:rgba(124,58,237,0.12);
    color:#7c3aed;
}

.visa_info_section .orange_icon{
    background:rgba(249,115,22,0.12);
    color:#f97316;
}

.visa_info_section .visa_info_card h4{
    font-size:18px;
    font-weight:700;
    color:#111827;
    line-height:1.5;
    margin-bottom:18px;
}

.visa_info_section .visa_info_card p{
    font-size:14px;
    line-height:1.9;
    color:#4b5563;
    margin:0;
}

.visa_info_section .visa_info_card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.visa_info_section .visa_info_card ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    color:#374151;
    margin-bottom:16px;
    line-height:1.7;
}

.visa_info_section .visa_info_card ul li i{
    color:#16a34a;
    margin-top:4px;
    font-size:17px;
}

@media(max-width:991px){

    .visa_info_section .visa_info_wrapper{
        padding:35px 25px;
    }

}

@media(max-width:767px){

    .visa_info_section .visa_info_wrapper{
        padding:25px 18px;
        border-radius:18px;
    }

    .visa_info_section .visa_info_heading p{
        font-size:15px;
        line-height:1.8;
    }

    .visa_info_section .visa_info_card{
        padding:25px 20px;
    }

    .visa_info_section .visa_info_card h4{
        font-size:21px;
    }

    .visa_info_section .visa_info_card p,
    .visa_info_section .visa_info_card ul li{
        font-size:15px;
    }

}

/*--visa-info-section-end---*/

/*--azer-default-section-start---*/

.azer_cta_section {
    padding: 50px 0;
    background: #f5f7fb;
}

.azer_cta_section .azer_cta_wrapper {
    background: var(--accent-color);
    border-radius: 18px;
    padding: 28px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 35px rgba(0,71,217,0.25);
}

.azer_cta_section .azer_cta_content{
    position:relative;
    z-index:2;
}

.azer_cta_section .azer_cta_content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.azer_cta_section .azer_cta_content p{
    font-size:16px;
    color:rgba(255,255,255,0.88);
    margin:0;
    line-height:1.7;
    max-width:620px;
}

.azer_cta_section .azer_cta_btn{
    text-align:end;
    position:relative;
    z-index:2;
}

.azer_cta_section .azer_cta_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 300px;
    height: 74px;
    background: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.azer_cta_section .azer_cta_btn a::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(0,71,217,0.08);
    transition:.5s;
}

.azer_cta_section .azer_cta_btn a:hover::before{
    left:100%;
}

.azer_cta_section .azer_cta_btn a:hover{
    transform:translateY(-5px);
}

.azer_cta_section .azer_cta_btn a span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .4s;
}

.azer_cta_section .azer_cta_btn a:hover span{
    transform:translateX(6px);
}

/* Plane */

.azer_cta_section .cta_plane{
    position:absolute;
    left:45%;
    top:50%;
    transform:translateY(-50%);
    color:rgba(255,255,255,0.35);
    font-size:34px;
    z-index:1;
    animation:planeMove 6s linear infinite;
}

@keyframes planeMove{

    0%{
        transform:translate(-30px,-50%);
    }

    50%{
        transform:translate(30px,-50%);
    }

    100%{
        transform:translate(-30px,-50%);
    }

}

/* Skyline */

.azer_cta_section .cta_building{
    position:absolute;
    left:55%;
    bottom:-10px;
    font-size:120px;
    color:rgba(255,255,255,0.08);
    z-index:1;
}

/* Responsive */

@media(max-width:991px){

    .azer_cta_section .azer_cta_wrapper{
        padding:30px 25px;
    }

    .azer_cta_section .azer_cta_content{
        text-align:center;
        margin-bottom:25px;
    }

    .azer_cta_section .azer_cta_content h2{
        font-size:34px;
    }

    .azer_cta_section .azer_cta_btn{
        text-align:center;
    }

    .azer_cta_section .azer_cta_btn a{
        min-width:320px;
        height:68px;
        font-size:21px;
    }

    .azer_cta_section .cta_plane,
    .azer_cta_section .cta_building{
        display:none;
    }

}

@media(max-width:767px){

    .azer_cta_section .azer_cta_wrapper{
        padding:25px 18px;
        border-radius:14px;
    }

    .azer_cta_section .azer_cta_content h2{
        font-size:28px;
    }

    .azer_cta_section .azer_cta_content p{
        font-size:15px;
    }

    .azer_cta_section .azer_cta_btn a{
        min-width:100%;
        width:100%;
        height:60px;
        font-size:18px;
        gap:12px;
    }

    .azer_cta_section .azer_cta_btn a span{
        width:36px;
        height:36px;
    }

}

/*--azer-default-section-end---*/

/*--payment-details-section-start---*/

.visa_review_payment_sec {
    padding: 35px 0;
    background: #f8f9fb;
}


.visa_review_payment_sec .visa_review_wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8edf7;
    overflow: hidden;
}


.visa_review_payment_sec .visa_step_area{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    border-bottom:1px solid #e8edf7;
}

.visa_review_payment_sec .step_items{
    text-align:center;
    min-width:120px;
}

.visa_review_payment_sec .step_items span{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    font-size:15px;
    font-weight:600;
}

.visa_review_payment_sec .step_items.done span {
    background: #00800024;
    color: var(--secondary-color);
}

.visa_review_payment_sec .step_items.active span{
    background:var(--accent-color);
    color:#fff;
}

.visa_review_payment_sec .step_items p {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
    margin-bottom: 0;
}

.visa_review_payment_sec .step_line{
    flex:1;
    height:1px;
    background:#ddd;
    margin:0 10px;
}


.visa_review_payment_sec .review_title_box {
    padding: 26px 22px 0;
}

.visa_review_payment_sec .review_title_box h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.visa_review_payment_sec .review_title_box p{
    font-size:14px;
    color:#69768c;
}


.visa_review_payment_sec .visa_price_box {
    margin: 22px 16px;
    padding: 14px;
    background: #f7faff;
    border-radius: 12px;
    border: 1px solid #e8edf7;
}

.visa_review_payment_sec .visa_type{
    display:flex;
    gap:18px;
    align-items:center;
}

.visa_review_payment_sec .visa_type .icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #dbe8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-color);
}

.visa_review_payment_sec .visa_type h4{
    font-size:18px;
    margin-bottom:4px;
}

.visa_review_payment_sec .visa_type p{
    font-size:14px;
    margin:0;
}
.visa_review_payment_sec .visa_type p strong {
    color: var(--accent-color);
}
.visa_review_payment_sec .price_area {
    display: flex;
    justify-content: end;
    align-items: center;
}

.visa_review_payment_sec .price_area span{
    font-size:14px;
    color:#69768c;
}

.visa_review_payment_sec .price_area h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.visa_review_payment_sec .city_img img{
    width:90px;
}


.visa_review_payment_sec .application_summary {
    margin: 0 16px;
    padding: 28px;
    border: 1px solid #e8edf7;
    border-radius: 12px;
}

.visa_review_payment_sec .application_summary h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--accent-color);
    padding-bottom: 14px;
    border-bottom: 1px solid #d2d2d2;
}
.visa_review_payment_sec .application_summary h3 i {
    margin-right: 4px;
}

.visa_review_payment_sec .application_summary .summary_item_main ul {
    padding-left: 0;
}

.visa_review_payment_sec .summary_item {
    display: inline-block;
    gap: 14px;
    margin-bottom: 22px;
    width: 32%;
    margin-right: 6px;
    border-right: 1px solid #d2d2d2;
}
.visa_review_payment_sec .summary_item.border-none {
    border-right: 0px !important;
}

.visa_review_payment_sec .summary_item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-top: 4px;
}

.visa_review_payment_sec .summary_item span{
    display:block;
    font-size:13px;
    color:#69768c;
}

.visa_review_payment_sec .summary_item h6{
    font-size:15px;
    margin:0;
}


.visa_review_payment_sec .extra_card {
    padding: 10px;
    border: 1px solid #e8edf7;
    border-radius: 12px;
    display: flex;
    gap: 16px;
}

.visa_review_payment_sec .extra_card i{
    width:46px;
    height:46px;
    font-size: 20px;
    background:#eef5ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--accent-color);
}
.visa_review_payment_sec .extra_card i.fa-solid.fa-shield-halved {
    background: #00800024;
    color: var(--secondary-color);
}
.visa_review_payment_sec .extra_card i.fa-solid.fa-headset {
    background: #8a2be229;
    color: #6a19b6;
}

.visa_review_payment_sec .extra_card h6{
    font-size:15px;
}

.visa_review_payment_sec .extra_card p {
    font-size: 13px;
    color: #69768c;
    margin-bottom: 0;
}


.visa_review_payment_sec .terms_area{
    padding:22px 30px;
}

.visa_review_payment_sec .terms_area label{
    font-size:14px;
}
.visa_review_payment_sec .terms_area input#term_check {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.visa_review_payment_sec .action_btn{
    padding:0 30px 30px;
    display:flex;
    justify-content:space-between;
}

.visa_review_payment_sec .back_btn,
.visa_review_payment_sec .pay_btn{
    height:50px;
    padding:0 32px;
    font-size:15px;
    border-radius:10px;
}

.visa_review_payment_sec .back_btn{
    background:#fff;
    border:1px solid #e8edf7;
}

.visa_review_payment_sec .pay_btn{
    border:none;
    background:
    linear-gradient(
    90deg,
    #0057b8,
    #0d6efd
    );
    color:#fff;
}

/* SIDEBAR */

.visa_review_payment_sec .payment_sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8edf7;
    overflow: hidden;
}

.visa_review_payment_sec .payment_sidebar h4{
    padding:20px;
    font-size:20px;
    color:#fff;
    background: var(--accent-color);
}

.visa_review_payment_sec .payment_sidebar ul {
    padding: 0px 20px;
    list-style: none;
    margin: 0;
}

.visa_review_payment_sec .payment_sidebar li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.visa_review_payment_sec .total_box{
    padding:20px;
}

.visa_review_payment_sec .total_box h2{
    font-size:34px;
    color:var(--accent-color);
}

.payment_sidebar_main_area {
    padding: 0px 18px;
}
.payment_sidebar_main_area .fee_row_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
}
.payment_sidebar_main_area .fee_row_list span {
    font-size: 15px;
    color: #333;
}
.payment_sidebar_main_area .fee_row_list b {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}
.fee_row_list.fee_border {
    padding-top: 16px;
    margin-top: 6px;
    border-top: 1px solid #d2d2d2;
}
.payment_sidebar_main_area .fee_row_list.total_main {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #d2d2d2;
}
.payment_sidebar_main_area .fee_row_list.total_main span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.payment_sidebar_main_area .fee_row_list.total_main strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.visa_review_payment_sec .payment_icons {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    background: #fbfdff;
    box-shadow: none;
    padding: 8px;
    margin: 0px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    position: relative;
}
.visa_review_payment_sec .payment_icons .payment_img {
    width: 140px;
}
.visa_review_payment_sec .payment_icons::after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.payment_secure_icon_text_bx {
    font-size: 14px;
    text-align: center;
    padding-bottom: 12px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment_secure_icon_text_bx i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 6px;
}

/* MOBILE */

@media(max-width:991px){

.visa_review_payment_sec .visa_type .icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
}

.visa_review_payment_sec .visa_type h4 {
    font-size: 17px;
}
.visa_review_payment_sec .visa_type p {
    font-size: 13px;
}
.visa_review_payment_sec .price_area h2 {
    font-size: 24px;
    margin-bottom: 0;
}
.visa_review_payment_sec .review_title_box h2 {
    font-size: 22px;
}
.visa_review_payment_sec .payment_sidebar h4 {
    padding: 20px;
}


.visa_review_payment_sec .payment_sidebar{
    position:static;
}

.visa_review_payment_sec .visa_step_area{
    flex-wrap:wrap;
    gap:20px;
}


.visa_review_payment_sec .action_btn{
    flex-direction:column;
    gap:12px;
}

.visa_review_payment_sec .back_btn,
.visa_review_payment_sec .pay_btn{
    width:100%;
}

}

@media(max-width:821px){
.visa_review_payment_sec .step_items {
    text-align: center;
    min-width: 90px;
}
.visa_review_payment_sec .visa_type .icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
}
.visa_review_payment_sec .review_title_box h2 {
    font-size: 20px;
}
.visa_review_payment_sec .price_area h2 {
    font-size: 20px;
    margin-bottom: 0;
}
.visa_review_payment_sec .payment_sidebar h4 {
    padding: 20px;
    font-size: 17px;
}
.visa_review_payment_sec .application_summary h3 {
    font-size: 16px;
}


}

@media(max-width:768px){
.visa_review_payment_sec .step_items {
    text-align: center;
    min-width: 90px;
}
.visa_review_payment_sec .visa_type .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.visa_review_payment_sec .review_title_box h2 {
    font-size: 18px;
}
.visa_review_payment_sec .price_area h2 {
    font-size: 18px;
    margin-bottom: 0;
}
.visa_review_payment_sec .payment_sidebar h4 {
    padding: 20px;
    font-size: 16px;
}
.visa_review_payment_sec .application_summary h3 {
    font-size: 16px;
}
.visa_review_payment_sec .summary_item {
    display: inline-block;
    gap: 14px;
    margin-bottom: 22px;
    width: 30%;
}
.visa_review_payment_sec .application_summary .summary_item_main ul {
    padding-left: 0;
    margin-bottom: 0;
}
.payment_sidebar_main_area .fee_row_list span {
    font-size: 14px;
}
.payment_sidebar_main_area .fee_row_list b {
    font-size: 14px;
}
.payment_sidebar_main_area .fee_row_list.total_main span {
    font-size: 15px;
    font-weight: 600;
}
.payment_sidebar_main_area .fee_row_list.total_main strong {
    font-size: 18px;
    font-weight: 700;
}


}

@media(max-width:576px){
	.visa_review_payment_sec .step_line {
    display: none;
}
.visa_review_payment_sec .visa_step_area {
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
.visa_review_payment_sec .visa_step_area:before {
    content: '';
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    width: 61%;
    height: 2px;
    margin: 0 auto;
    background: #d2d2d2;
    z-index: 1;
}
.visa_review_payment_sec .step_items {
    text-align: center;
    min-width: 80px;
}
.visa_review_payment_sec .step_items span {
    width: 36px;
    height: 36px;
    font-size: 15px;
    position: relative;
    z-index: 5;
    background: var(--accent-color) !important;
    color: #fff !important;
}
.visa_review_payment_sec .summary_item {
    border-right: 1px solid #fff !important;
    display: inline-block;
    gap: 14px;
    margin-bottom: 22px;
    width: 48%;
	position: relative;
}
.visa_review_payment_sec .summary_item.border-none {
    border-right: 1px solid #fff !important;
}
.visa_review_payment_sec .summary_item:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 1px;
    width: 1px;
    height: 100%;
    background: #d2d2d2;
}
.visa_review_payment_sec .summary_item:nth-child(2)::before,
.visa_review_payment_sec .summary_item:nth-child(4)::before,
.visa_review_payment_sec .summary_item:nth-child(6)::before {
    display: none;
}
.visa_review_payment_sec .extra_card {
    margin-top: 10px;
}

}

@media(max-width:481px){
	.visa_review_payment_sec .step_items {
    text-align: center;
    min-width: 66px;
}
.visa_review_payment_sec .summary_item {
    border-right: 1px solid #fff !important;
    display: inline-block;
    gap: 14px;
    margin-bottom: 22px;
    width: 47%;
    position: relative;
}
.visa_review_payment_sec .summary_item h6 {
    font-size: 14px;
    margin: 0;
}

}

@media(max-width:421px){
.visa_review_payment_sec .visa_step_area {
    flex-wrap: unset;
    gap: 4px;
    position: relative;
    display: flex;
    padding: 16px 12px;
}
.visa_review_payment_sec .visa_step_area:before {
    content: '';
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    width: 67%;
    height: 2px;
}
.visa_review_payment_sec .step_items {
    text-align: center;
    min-width: 74px;
}
.visa_review_payment_sec .step_items span {
    width: 32px;
    height: 32px;
    font-size: 15px;
    position: relative;
    z-index: 5;
    background: var(--accent-color) !important;
    color: #fff !important;
}
.visa_review_payment_sec .step_items p {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 600;
}
.visa_review_payment_sec .review_title_box {
    padding: 20px 14px 0;
}
.visa_review_payment_sec .visa_price_box {
    margin: 16px 12px;
    padding: 10px;
}
.visa_review_payment_sec .visa_type {
    display: flex;
    gap: 10px;
    align-items: center;
}
.visa_review_payment_sec .visa_type .icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 6px;
}

.visa_review_payment_sec .price_area div {
    background: #fff;
    padding: 6px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 2px #d2d2d2;
}
.visa_review_payment_sec .visa_type h4 {
    font-size: 16px;
}
.visa_review_payment_sec .price_area h2 {
    font-size: 18px;
    margin-bottom: 0;
    display: inline-block;
}
.visa_review_payment_sec .summary_item {
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 10px;
    gap: 14px;
    margin-bottom: 12px;
    width: 100%;
    position: relative;
}
.visa_review_payment_sec .summary_item:before {
    display: none;
}
.visa_review_payment_sec .summary_item:last-child {
	border-bottom: 0px;
}
.visa_review_payment_sec .application_summary {
    margin: 0px 12px;
}
.visa_review_payment_sec .secure_area_bottom.p-3 {
    padding: 12px !important;
}
.visa_review_payment_sec .terms_area {
    padding: 22px 30px;
    padding: 12px !important;
}
.visa_review_payment_sec .terms_area label {
    font-size: 13px;
}
.visa_review_payment_sec .action_btn {
    flex-direction: column;
    gap: 12px;
    padding: 12px !important;
}

.payment_sidebar_main_area {
    padding: 0px 14px;
}
.visa_review_payment_sec .payment_sidebar h4 {
    padding: 20px 14px;
    font-size: 16px;
}

}

/*--payment-details-section-end---*/

/*--track-steps-section-start---*/

.default_tracking_works_bxss{
    padding: 50px 0;
    background: #fff;
}

.default_tracking_works_bxss .container{
    background: #fff;
    border-radius: 28px;
    padding: 55px 40px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Heading */
.default_tracking_works_bxss .tracking_heading{
    margin-bottom: 55px;
}

.default_tracking_works_bxss .tracking_heading p{
    font-size: 15px;
    color: #333;
    margin: 0;
}

/* Steps Wrapper */
.default_tracking_works_bxss .tracking_steps_wrapper{
    position: relative;
}

/* Dashed Line */
.default_tracking_works_bxss .tracking_steps_wrapper::before {
    content: "";
    position: absolute;
    top: 66px;
    left: 10%;
    width: 80%;
    border-top: 2px dashed #9bb7ff;
    z-index: 0;
}

/* Step Box */
.default_tracking_works_bxss .tracking_step_box{
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.default_tracking_works_bxss .tracking_step_box:hover{
    transform: translateY(-6px);
}

/* Icon */
.default_tracking_works_bxss .tracking_icon{
    width: 86px;
    height: 86px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 38px;
    position: relative;
}

.default_tracking_works_bxss .tracking_icon::before {
    content: "";
    position: absolute;
    border-radius: 24px;
    background: rgb(255 255 255);
    z-index: -1;
    width: 140px;
    height: 140px;
}

/* Icon Colors */
.default_tracking_works_bxss .blue_icon{
    background: #edf4ff;
    color: #2f74ff;
}

.default_tracking_works_bxss .orange_icon{
    background: #fff2df;
    color: #f59e0b;
}

.default_tracking_works_bxss .purple_icon{
    background: #f3ebff;
    color: #7c3aed;
}

.default_tracking_works_bxss .green_icon{
    background: #e8fff1;
    color: #16a34a;
}

.default_tracking_works_bxss .blue2_icon{
    background: #edf4ff;
    color: #2563eb;
}

/* Text */
.default_tracking_works_bxss .tracking_step_box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.default_tracking_works_bxss .tracking_step_box p{
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    padding: 0 10px;
}

/* Responsive */
@media(max-width:991px){

    .default_tracking_works_bxss .tracking_steps_wrapper::before{
        display: none;
    }

    .default_tracking_works_bxss .container{
        padding: 45px 25px;
    }

}

@media(max-width:767px){

    .default_tracking_works_bxss{
        padding: 50px 0;
    }

    .default_tracking_works_bxss .tracking_heading{
        margin-bottom: 35px;
    }

    .default_tracking_works_bxss .tracking_icon{
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .default_tracking_works_bxss .tracking_step_box h4{
        font-size: 18px;
    }

}



/*--traking-section-start--*/


.tracking-section{
    background:#f5f7fb;
    padding:50px 0;
}

/* Heading */

.tracking-title{
    font-size:38px;
    font-weight:700;
    color:#0d2c73;
    margin-bottom:12px;
    line-height:1.3;
}

.heading-border{
    width:65px;
    height:4px;
    background:#1f5eff;
    margin:auto;
    border-radius:30px;
}

/* Card */

.tracking-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
    border: 1px solid #efefef;
    transition: .3s;
}

.tracking-card:hover{
    transform:translateY(-4px);
}

/* Icon */

.tracking-icon{
    width:52px;
    min-width:52px;
    height:52px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.blue{
    background:#eef5ff;
    color:#1573ff;
}

.green{
    background:#ebfff1;
    color:#1ebc5a;
}

.purple{
    background:#f5edff;
    color:#944cff;
}

.light-green{
    background:#ebfff1;
    color:#27c55b;
}

.sky{
    background:#eef6ff;
    color:#1f7cff;
}

/* Content */

.tracking-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.tracking-content p{
    font-size:13px;
    color:#6f7684;
    line-height:1.5;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .tracking-title{
        font-size:32px;
    }

    .tracking-card{
        padding:18px;
    }
}

@media(max-width:576px){

    .tracking-title{
        font-size:26px;
    }

    .tracking-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
}


/*--smart-visa-section-css--*/


.smart-visa-section{
    padding:50px 0;
    background:#ffffff;
}

/* Title */

.smart-visa-title{
    font-size:42px;
    font-weight:700;
    color:#0d2c73;
    margin-bottom:12px;
}

.smart-visa-line{
    width:60px;
    height:4px;
    background:#1f5eff;
    display:block;
    border-radius:30px;
    margin-bottom:20px;
}

/* Text */

.smart-visa-text{
    font-size:15px;
    line-height:1.9;
    color:#6e7684;
    margin-bottom:0;
}

/* Feature Box */

.smart-feature-box{
    display:flex;
    gap:8px;
    padding-right:15px;
    border-right:1px solid #e9e9e9;
    height:100%;
}

.border-none{
    border-right:none;
}

/* Icon */

.smart-feature-icon{
    width:42px;
    min-width:42px;
    height:42px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Colors */

.blue-bg{
    background:#eef5ff;
    color:#1f6fff;
}

.green-bg{
    background:#ebfff1;
    color:#20b85a;
}

.purple-bg{
    background:#f5eeff;
    color:#914dff;
}

.orange-bg{
    background:#fff4e8;
    color:#ff9800;
}

/* Feature Content */
.smart-feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.smart-feature-content p {
    font-size: 12px;
    color: #6f7684;
    line-height: 1.6;
    margin: 0;
}

/* Image */

.smart-visa-image img{
    width:100%;
    border-radius:24px;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .smart-visa-title{
        font-size:34px;
    }

    .smart-feature-box{
        border-right:none;
    }
}

@media(max-width:576px){

    .smart-visa-title{
        font-size:28px;
    }

    .smart-feature-box{
        flex-direction:column;
    }
}


/*--track-steps-section-end---*/

/*--form-package-steps-section-start---*/

.package-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border: 1px solid #ececec;
    border-radius: 18px;
    cursor: pointer;
    background: #fff;
    transition: .3s;
}
.package-card:hover{
    border-color:var(--accent-color);
}
.package-left{
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap:18px;
}
.package-left .package_icon_box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.package-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #064ed60d;
    font-size: 24px;
    color: var(--accent-color);
}
.package-icon i {
    color: var(--accent-color);
    font-size: 18px;
}
.package-left h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#222;
}
.package-left span {
    color: #777;
    font-size: 14px;
}
.package-price{
    font-size:28px;
    font-weight:800;
    color:var(--accent-color);
}
.package-card .popular {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 8px;
}
input[type="radio"]:checked
+ .package-card{
    border-color:var(--accent-color);
    box-shadow:
    0 0 0 3px
    rgba(35,88,255,.10);
}
input[type="radio"]:checked
+ .package-card::after {
    content: "✓";
    position: absolute;
    right: 8px;
    top: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--form-package-steps-section-end---*/

/*--default-page-css-start---*/
.page-content {
    padding: 50px 0px;
}
.page-content p {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #000;
}
.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 18px;
    color: var(--accent-color);
}
.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--accent-color);
}
.page-content ul {
    padding: 0 20px;
}
.page-content ul li {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #000;
    padding-bottom: 4px;
}
.page-content ol {
    padding: 0 20px;
}
.page-content ol li {
	font-size: 15px;
	font-weight: 400;
    position: relative;
	color: #000;
	padding-bottom: 4px;
}


/*--default-page-css-end---*/
/* Floating WhatsApp */
    .vcn-wa {
        position: fixed; left: 22px; bottom: 22px; z-index: 1000;
        width: 58px; height: 58px; border-radius: 50%;
        background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center;
        font-size: 28px; text-decoration: none;
        box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .vcn-wa:hover { transform: scale(1.08); color: #fff; }
    .vcn-wa::after {
        content: ""; position: absolute; inset: 0; border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); animation: vcnwa 2.4s infinite;
    }
    @keyframes vcnwa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
