@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;
}
:root {
  --primary-color: #e21b2e;
  --secondary-color: #15993e;
  --accent-color: #064ed6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --border-color: #e5e7eb;
  --nav-height: 72px;
}

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;
}


.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;
}

.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;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.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-secondary) !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-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.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;
}

/* 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 {
  background: var(--background);
  height: 610px;
  position: relative;
  z-index: 1;
}
.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 / 60%), rgb(255 255 255 / 0%));
    z-index: 0;
}
.mainbanner_top_section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero_sub_title {
    font-size: 15px;
    background: #fff;
    padding: 5px 14px;
    padding-bottom: 6px;
    border-radius: 2px 16px;
    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: 18px;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: start;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 10px;
  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;
}

/*--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;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ITEM */
.feature-wrapper .feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-right: 1px solid #eee;
}

/* REMOVE LAST BORDER */
.feature-wrapper .feature-item:last-child {
    border-right: none;
}

/* ICON */
.feature-wrapper .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eaf2ff;
    color: #2f6bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* TEXT */
.feature-wrapper .text strong {
    display: block;
    font-size: 14px;
    color: #1c2b4a;
}
.feature-wrapper .text span {
    font-size: 12px;
    color: #6c757d;
}

/* HOVER EFFECT */
.feature-wrapper .feature-item:hover {
    background: #f8fbff;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-wrapper .feature-list {
        flex-direction: column;
    }
    .feature-wrapper .feature-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .feature-wrapper .feature-item:last-child {
        border-bottom: none;
    }
}

/*--right active card start--*/

.visa-box-wrapper .visa-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* OPTION */
.visa-box-wrapper .visa-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 14px;
    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: 30px;
    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: 12px;
    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: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--background);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 32px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
}


.section_title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}
.section_title b {color: var(--accent-color);}

/*--main-banner-end---*/

/*--about-section-start---*/
.about-section {
    padding: 60px 0px;
}
.default_image {
    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: 20px;
    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;
  border-radius: 6px;
  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);
}


.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;
}
.content_main_bxs h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}
#contentText h3 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #000;
}

#contentText ul {
	margin-bottom: 18px;
	padding-left: 19px;
}

#contentText ol {
	margin-bottom: 18px;
	padding-left: 15px;
}

#contentText ul li,
#contentText ol li {
	font-size: 15px;
	color: #333;
	padding-bottom: 10px;
}

#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;
}
.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: var(--accent-color);
    letter-spacing: -0.04em;
    margin-bottom: 0;
    padding-bottom: 12px;
    text-transform: capitalize;
}
  .read-more-box p {
	font-size: 16px;
	color: #333;
	margin-bottom: 8px;
  }
  .read-more-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    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: 20px;
    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: 100%;
}

.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: 50px;
    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: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.default_country_step_process_bxss .step_process_box p {
    font-size: 14px;
    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: 20%;
}

.default_country_step_process_bxss .arrow_two {
    left: 46%;
}

.default_country_step_process_bxss .arrow_three {
    left: 72.5%;
}

/* 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_form_section .payment_form_wrapper {
    background: #f5f7fb;
    border-radius: 24px;
    padding: 36px;
    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: 15px;
    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: 10px;
    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: 10px 0px 0px 10px !important;
    height: 50px !important;
}

.payment_form_section .payment_amount_field{
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: #fff;
}

.payment_form_section .payment_amount_field .currency_select{
    width: 115px;
    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: 15px;
    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: 18px;
    }

    .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-form-end--*/

/*--default-css-start--*/

.default-banner-section {
    width: 100%;
    height: 320px;
    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%);
    z-index: 1;
}

.default-banner-section img {
    object-fit: cover;
}

.default_banner_heading span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.default_banner_heading .payment_subtitle i {
    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;
}


/*--country-eligible-apply-bx-css--*/

.default_country_view_section {
    height: 420px !important;
}


.default_country_aply_bxss{
    position: relative;
    z-index: 1;
}

.default_country_aply_bxss .visa_apply_box {
    background: #fff;
    border-radius: 22px;
    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;
}

.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: 50px;
    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);
}

/* 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);
}

/* 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);
}

/* 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: #fff;
    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;
}

.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;
    font-weight: 600;
}

/*--default-css-end--*/

/*--default-process-css-start--*/

.default_country_process_bxss{
    background: #f7f8fc;
    border: 1px solid #e5e8f1;
    border-radius: 18px;
    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: 10px;
	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: 50px;
	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: 8px;
	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;
}

/* 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: space-between;
    align-items: center;
}
.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;
}
.small.standards {
    background: #ececff;
    color: var(--accent-color);
}
.small.urgents {
    background: #ffecec;
    color: var(--primary-color);
}
.small.supper {
    background: #ecffec;
    color: var(--secondary-color);
}

/* Price */
.azer_visa_section .visa_card h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.azer_visa_section .visa_card h2 span {
  font-size: 14px;
  color: #666;
}

/* List */
.azer_visa_section .visa_card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.azer_visa_section .visa_card ul li {
  padding: 10px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px dashed #e0e0e0;
}

.azer_visa_section .visa_card ul li::before {
    content: "✔";
    background: #fefffe;
    color: var(--secondary-color);
    margin-right: 8px;
    border: 1px solid var(
  --secondary-color);
    padding: 1px 3px;
    border-radius: 50px;
    font-size: 12px;
}

/* Buttons */
.azer_visa_section .btn {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
}

/* Variants */
.azer_visa_section .standard {
  border-top: 4px solid var(--accent-color);
}
.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 .urgent {
  border-top: 4px solid var(--primary-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 .fast {
  border-top: 4px solid var(--secondary-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);
}

/* Badge */
.azer_visa_section .badge_popular {
    position: absolute;
    top: -15px;
    right: 4%;
    /* transform: translateX(-50%); */
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

/*--azer-visa-card-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: 10px 15px;
}

/* Divider Line */
.visa_counter_section .counter_box::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.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-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 h2 {
    font-weight: 600;
    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: 17px;
	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: 12px;
}

.review-section .user-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-section .user-avatar {
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.review-section .stars i {
    color: #49c858;
    font-size: 14px;
}

/* Swiper arrows */
.review-section .swiper-button-next,
.review-section .swiper-button-prev {
	background: #fff;
	color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all .3s ease-in-out;
}

.review-section .swiper-button-next::after,
.review-section .swiper-button-prev::after {
	font-size: 16px;
	color: #000;
}

.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-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 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: 18px;
    color: #444;
    text-decoration: none;
    transition: all 0.4s ease;
}

.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;
}

.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: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    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 #d2d2d2;
    outline: none;
    background: #fff;
    height: 50px;
    padding: 10px;
    font-size: 15px;
    color: #111;
    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: 210px;
    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 2px #1e12ff20;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #dee2e6 !important;
	border-radius: 10px !important;
	height: 50px !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: 3px !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;
    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_form_heading h2{
        font-size: 30px;
    }

    .contact_form_section .contact_input_box input,
    .contact_form_section .contact_input_box select,
    .contact_form_section .contact_input_box textarea{
        height: 64px;
        padding: 0 20px;
        font-size: 16px;
    }

    .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-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 {
        text-align: center;
    }
    .footer-wrapper .badge-item {
        display: inline-block;
        margin: 5px;
    }
}

/*--footer-end---*/

/*--visa-application-form-start---*/

.visa_application_section{
    background:#fff;
}
.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:50px;
    position:relative;
    flex-wrap:wrap;
}

.step_item {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 280px;
}

.step_count {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dfe4ea;
    color: #555;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    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: 24px;
    left: 125px;
    width: 300px;
    height: 4px;
    background: #dfe4ea;
    border-radius: 30px;
    z-index: -1;
}

.step_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    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;
}

@media(max-width:991px){

    .step_item{
        min-width:110px;
    }

    .step_item:not(:last-child)::before,
    .step_item:not(:last-child)::after{
        width:60px;
        left:82px;
    }

    .step_item.completed::after{
        width:60px;
    }

}

@media(max-width:767px){

    .visa_step_top{
        gap:20px;
    }

    .step_item:not(:last-child)::before,
    .step_item:not(:last-child)::after{
        display:none;
    }

}

.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: #eaffea;
    color: #016401;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 0 2px #a7a7a7;
}

.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("..//img/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 #dcdfe4;
    border-radius: 12px;
    padding: 10px;
    outline: none;
    transition: .3s;
    font-size: 15px;
}

.visa_field_area_st .visa_input:focus{
    border-color:var(--accent-color);
}
.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 .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_upload_area_st label{
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.visa_upload_area_st .upload_box{
    border:2px dashed #cfd6de;
    border-radius:16px;
    padding:40px;
    text-align:center;
}

.visa_upload_area_st .upload_label{
    cursor:pointer;
}

.visa_upload_area_st .upload_label i{
    font-size:45px;
    color:var(--accent-color);
    margin-bottom:15px;
    display:block;
}

.visa_upload_area_st .upload_label span{
    font-size:17px;
    font-weight:600;
    color:#222;
}

.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:#edf0f5;
    color:#222;
    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: #fff;
    border: 1px solid #d8e0e8;
    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;
}

.visa_form_step .start_card{
    border:2px solid var(--accent-color);
}

.visa_form_step .end_card{
    border:2px solid var(--primary-color);
}

.visa_form_step .validity_card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    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: 18px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 500;
}

.visa_form_step .date_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    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 24px;
    font-size:17px;
    color:#222;
}

.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: #043288;
    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;
    }

    .visa_info_section .visa_info_heading h2{
        font-size:32px;
    }

}

@media(max-width:767px){

    .visa_info_section .visa_info_wrapper{
        padding:25px 18px;
        border-radius:18px;
    }

    .visa_info_section .visa_info_heading h2{
        font-size:28px;
    }

    .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:linear-gradient(90deg,#0047d9,#0a4cff);
    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: 20px;
    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---*/

.default_payment_details_bxss{
    background: #f7f9fc;
    padding: 60px 0;
}

/* Step */
.default_payment_details_bxss .payment_step_wrapper{
    margin-bottom: 45px;
}

.default_payment_details_bxss .process_step{
    text-align: center;
    position: relative;
}

.default_payment_details_bxss .process_step .step_line{
    position: absolute;
    top: 18px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #dfe4ef;
    z-index: 0;
}

.default_payment_details_bxss .process_step span{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dfe4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.default_payment_details_bxss .process_step.active span,
.default_payment_details_bxss .process_step.current span{
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.default_payment_details_bxss .process_step p{
    font-size: 14px;
    font-weight: 600;
    color: #3f4760;
}

/* Card */
.default_payment_details_bxss .payment_card_box, .default_payment_details_bxss .sidebar_box {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.default_payment_details_bxss .card_heading{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
}

.default_payment_details_bxss .heading_icon{
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default_payment_details_bxss .heading_icon i{
    color: var(--accent-color);
    font-size: 22px;
}

.default_payment_details_bxss .card_heading h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.default_payment_details_bxss .card_heading p{
    font-size: 15px;
    margin: 0;
    color: #727b92;
}

/* Summary */
.default_payment_details_bxss .summary_item,
.default_payment_details_bxss .price_row,
.default_payment_details_bxss .grand_total{
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f7;
}

.default_payment_details_bxss .summary_item span, .default_payment_details_bxss .price_row span {
    font-size: 15px;
    color: #677087;
}
.default_payment_details_bxss .summary_item strong, .default_payment_details_bxss .price_row strong {
    font-size: 15px;
}

.default_payment_details_bxss .grand_total{
    border-bottom: 0;
    padding-top: 20px;
}

.default_payment_details_bxss .grand_total strong, .default_payment_details_bxss .grand_total span {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
}

/* Payment Method */
.default_payment_details_bxss .payment_method{
    border: 1px solid #e4e8f2;
    border-radius: 12px;
    padding: 15px 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}

.default_payment_details_bxss .payment_method.active{
    border-color: var(--accent-color);
    background: #f4f7ff;
}

.default_payment_details_bxss .method_left{
    display: flex;
    align-items: center;
    gap: 12px;
}

.default_payment_details_bxss .method_left i{
    color: var(--accent-color);
    font-size: 18px;
}

.payment_logo_list .secu_img_pay {
    width: 87px;
} 
.payment_logo_list .secu_img_paymt {
    width: 50px;
} 

/* Form */
.default_payment_details_bxss .form-control{
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dde3f0;
    box-shadow: none;

}
.default_payment_details_bxss .form-control:focus{
    box-shadow: none;
    outline: none;
}

.default_payment_details_bxss label{
    font-weight: 600;
    margin-bottom: 10px;
}

.default_payment_details_bxss .input_icon{
    position: relative;
}

.default_payment_details_bxss .card_icons{
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.default_payment_details_bxss .card_icons i {
    font-size: 26px;
    color: #161670;
}

.default_payment_details_bxss .secure_notice{
    display: flex;
    gap: 14px;
    background: #eef4ff;
    border-radius: 14px;
    padding: 16px;
    margin-top: 10px;
}

.default_payment_details_bxss .secure_notice i{
    font-size: 28px;
    color: var(--accent-color);
}

.default_payment_details_bxss .secure_notice h6{
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}

.default_payment_details_bxss .secure_notice p{
    margin: 0;
    font-size: 13px;
    color: #6f7891;
}

/* Bottom */
.default_payment_details_bxss .payment_bottom_area{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.default_payment_details_bxss .custom_check label{
    font-size: 14px;
}

.default_payment_details_bxss .custom_check a{
    color: var(--accent-color);
    text-decoration: none;
}

.default_payment_details_bxss .pay_now_btn{
    background: var(--accent-color);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 15px 32px;
    font-weight: 700;
    transition: 0.3s;
}

.default_payment_details_bxss .pay_now_btn:hover{
    transform: translateY(-3px);
}

.default_payment_details_bxss .payment_logo_list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #edf0f7;
}

.default_payment_details_bxss .payment_logo_list span{
    font-weight: 700;
    color: #4d566f;
}

/* Sidebar */
.default_payment_details_bxss .sidebar_box h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.default_payment_details_bxss .sidebar_box h4 i {
    color: var(--accent-color);
    background: #eef3ff;
    padding: 10px;
    border-radius: 50px;
}

.default_payment_details_bxss .sidebar_box ul li {
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    font-weight: 500;
}

.default_payment_details_bxss .sidebar_box ul li i{
    color: var(--accent-color);
}

.default_payment_details_bxss .help_item{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.default_payment_details_bxss .help_item i{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.default_payment_details_bxss .faq_item{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f7;
    cursor: pointer;
}

/* Responsive */
@media(max-width:991px){

    .default_payment_details_bxss .payment_bottom_area{
        flex-direction: column;
        align-items: flex-start;
    }

}

@media(max-width:767px){

    .default_payment_details_bxss{
        padding: 40px 0;
    }

    .default_payment_details_bxss .payment_card_box,
    .default_payment_details_bxss .sidebar_box{
        padding: 20px;
    }

    .default_payment_details_bxss .process_step p{
        font-size: 11px;
    }

    .default_payment_details_bxss .grand_total strong,
    .default_payment_details_bxss .grand_total span{
        font-size: 20px;
    }

}

/*--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 .tracking_heading h2{
        font-size: 34px;
    }

    .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_heading h2{
        font-size: 28px;
    }

    .default_tracking_works_bxss .tracking_heading p{
        font-size: 14px;
    }

    .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:20px 18px;
    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: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.smart-feature-content p{
    font-size:13px;
    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---*/
