@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
	--theming1: #fe0000;
	--theming2: #06163a;
	--theming3: #061c21;
	--theming1-hover: #d10000;
	--theme-start-color: linear-gradient(165deg, #06163a 30%, #fe0000 70%);
	--theme-end-color: linear-gradient(165deg, #fe0000 30%, #06163a 70%);
}
body {
    font-family: "Ubuntu Sans", sans-serif;
}
.common-gap {
    margin-top: 50px;
}
.common-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* heading  */
.heading {    font-size: 30px;    font-weight: 700;    font-family: "Ubuntu Sans", sans-serif;    color: #000;}
.heading-main p {
    font-size: 16px;
    color: #444;
}
/*--.heading::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    height: 3px;
    border-radius: 5px;
    width: 100px;
    background-color: var(--theming1);
}--*/
/* theme btn  */
.theme-btn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--theming1);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    gap: 6px;
}
.theme-btn:hover {
    background: var(--theming2);
}
.theme-btn i {
    transition: all 0.3s ease-in-out;
}
.theme-btn:hover i {
    transform: translateX(5px);
}
/* whatsapp button */
.whatsapp-btn {    background: #25d366;    color: white;    bottom: 25px;    left: 25px;    font-size: 30px;    z-index: 100;    height: 58px;    width: 58px;    animation-duration: 1.5s;    animation-timing-function: ease-out;    animation-iteration-count: infinite;    animation-play-state: paused;}
.whatsapp-btn::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse-border {
    0% {
      padding: 25px;
      opacity: 0.75;
    }
    75% {
      padding: 50px;
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
/* ellipsis  */
.ellipsis3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* scroll to top  */
.progress-wrap {
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 6;
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #1f2029;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: var(--theming1);
}
.lightScrollIcon::after {
    color: #ecedf3 !important;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--theming1);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
/* select 2  */
.select2-container {
    width: 100% !important;
    display: block;
}
.select2 .select2-selection {
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
}
.select2 .select2-selection__rendered {
    font-weight: 600;
}
.select2 .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
}
.select2-container--default .select2-selection--single {
    border-color: #dee2e6 !important;
    border-radius: 0.375rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
}
.select2-dropdown {
    border-color: #c9c9c9 !important;
}
.select2-results__option {
    font-size: 15px;
    font-weight: 500;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--theming1) !important;
    color: #ffff !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ddd !important;
    color: #000 !important;
}
/* media query start */
@media (max-width:991px){
    .heading {
        font-size: 23px;
    }
}
@media (max-width:767px){
    .common-gap {
        margin-top: 40px;
    }
    .heading {
        font-size: 22px;
        line-height: 27px;
        padding-bottom: 3px;
    }
    .heading::before {
        bottom: 0;
        height: 2.5px;
        width: 80px;
    }
    .why_choose_left_area h2.heading {
        margin-top: 14px !important;
        margin-bottom: 12px !important;
    }
    .why_choose_left_area .pera_text {
        font-size: 15px;
    }
    .heading-main p {
        font-size: 15px;
    }
    .whatsapp-btn {
        height: 55px;
        width: 55px;
        bottom: 15px;
        font-size: 29px;
        left: 15px;
    }
    .progress-wrap {
        right: 15px;
        bottom: 20px;
    }
    .common-padding {
        padding-top: 35px;
        padding-bottom: 42px;
    }
    @keyframes pulse-border {
        0% {
          padding: 25px;
          opacity: 0.75;
        }
        75% {
          padding: 40px;
          opacity: 0;
        }
        100% {
          opacity: 0;
        }
    }
    .theme-btn {
        font-size: 15px;
    }
    .navbar .navbar-logo {
        height: auto;
        width: 235px;
        padding: 12px 4px;
    }
}
@media (max-width:576px){
    .heading {
        font-size: 20px;
    }
    .content-card .read-more-btn {
        font-size: 15px;
    }
    .navbar {
        transition: all 0.3s ease-in-out;
        height: 61px;
        padding: 0;
    }
    .navbar .navbar-logo {
        height: auto;
        width: 220px;
        padding: 7px 4px;
    }
}
/* media query end */
/* page heading section start  */
.page-heading-section {
    padding-block: 90px;
    background: url(../img/new/dubai-main-header-3.jpg) no-repeat;
    background-size: cover;
    background-position: bottom;
}
.terms-heading-section {
    background: url(../img/terms-and-conditions-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.page-heading-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #191919cf;
}
.page-heading-section .page-heading {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}
.page-heading-section .page-title {
    color: #ffff;
    font-weight: 600;
}
.visatype-heading-section {
    padding-block: 80px;
    background: url(../img/dubai-bg-4.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
.payment-heading-section {
    padding-block: 90px;
    background: url(../img/young-woman-holding-credit-card-using-smart-phone-buying-onl.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width:767px){
    .page-heading-section {
        padding-block: 60px;
    }
    .visatype-heading-section {
        padding-block: 50px;
    }
    .page-heading-section .page-heading {
        font-size: 24px;
    }
}

/* page heading section end */


/* breadcrumb section start  */

.breadcrumb-section {
    padding-block: 14px;
}
.breadcrumb-section .breadcrumb-link,
.breadcrumb-section .breadcrumb-link a{
    font-weight: 600;
    font-size: 15px;
    gap: 4px;
    color: #505050;
    transition: all .3s ease-in-out;
}
.breadcrumb-section .breadcrumb-link a i,
.breadcrumb-section .breadcrumb-link i {
    color: #5c5c5c;
}
.breadcrumb-section .breadcrumb-list {
    gap: 8px;
    white-space: nowrap;
    display: block;
}
.breadcrumb-section .breadcrumb-link .home-icon {
    margin-top: -2px;
}
.breadcrumb-section .breadcrumb-link a:hover {
    color: var(--theming1);
}
.breadcrumb-section .breadcrumb-link.active {
    color: var(--theming1);
}

/* breadcrumb section end  */


/* apply common button section start */

.offcanvas-header {
    padding: 10px 15px !important;
}

.common-btn-section .common-blink-btn {
    background-image: linear-gradient(to bottom,#8e0a0a 0,#b40d14 99%);
    animation: blinkbtn 5s linear infinite;
    font-weight: 600;
    color: #ffff;
    padding: 10px 40px;
    border-radius: 12px;
    border:3px solid #ffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.common-btn-section .common-blink-btn:active {
    animation: none;
}
@keyframes blinkbtn {
  12.5% { background-image: linear-gradient(to right, #8e0a0a, var(--theming1)); }
  25% { background-image: linear-gradient(to right, #b40d14, #8e0a0a); }
  37.5% { background-image: linear-gradient(to right, var(--theming1), #b40d14); }
  50% { background-image: linear-gradient(to right, #8e0a0a, var(--theming1)); }
  62.5% { background-image: linear-gradient(to right, #b40d14, #8e0a0a); }
  75% { background-image: linear-gradient(to right, var(--theming1), #b40d14); }
  87.5% { background-image: linear-gradient(to right, #8e0a0a, var(--theming1)); }
  100% { background-image: linear-gradient(to right, #b40d14, #8e0a0a);}
}
/* apply common button section start */


/* fixed button  */
.call-button-fixed {
    height: 40px;
    width: 40px;
    background-color: #fff;
    color: var(--theming1);
    border: 1px solid var(--theming1);
    left: 20px;
    bottom: 87px;
    transition: all 0.3s ease-in-out;
    z-index: 4;
}
.email-fixed-btn {
    bottom: 136px;
}
.call-button-fixed:hover {
    background-color: var(--theming1);
    color: #fff;
}

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

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

/* Heading */
.country-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--theming1);
}

/* 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: rgb(248, 221, 221);
	color: var(--theming1);
	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(--second-color);
	cursor: pointer;
}

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

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

/*--emirates-section-css-start--*/

.commit_emirates_section {
    background: #fff;
}

.commit_emirates_section .emirate_card {
    background: #fff;
    color: #000;
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.commit_emirates_section .emirate_card i {
    color: var(--theming1);
    font-size: 16px;
}

.commit_emirates_section .emirate_card span {
    font-size: 14px;
    font-weight: 700;
}

/* Hover Effect */
.commit_emirates_section .emirate_card:hover {
    background: var(--theming2);
    color: #fff;
    transform: translateY(-3px);
}

.commit_emirates_section .emirate_card:hover i {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .commit_emirates_section h4 {
        font-size: 18px;
    }
}

/*--emirates-section-css-end--*/

