/* *-------------------------- */
/* *         Global css        */
/* *-------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* colors */
    --primary-color: #ff7700;
    --secondary-color: #071833;
    --accent-color: #ff9770;
    --color-white: #ffffff;
    --color-black: #131313;

    --helping-color: #374151;

    --section-bg: #fef7ee;
    --card-bg: #fefefe;

    --text-color: #374151;
    --text-color-invert: #f3f4f6;

    --header-top-bg: #071833;
    --main-header-bg: #fff;
    --head-bg-1: #071833;

    --mobile-menu-bg: #374151;
    --mobile-menu-text: #f3f4f6;
    --footer-bg: #071833;
    --form-bg: #a2d5c6;

    --box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
        rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    --box-shadow-onHover: rgba(0, 0, 0, 0.07) 0px 1px 2px,
        rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px,
        rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px,
        rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

::selection {
    background-color: var(--primary-color);
    color: var(--color-white);
}

html {
    line-height: 1.5;
    scroll-behavior: smooth;
    letter-spacing: 1px;
}

body {
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    color: #374151;
    background: #fff;
    overflow-x: hidden;
    letter-spacing: 1px;
}

.error {
    color: red;
}

@media screen and (max-width: 991px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 0.9rem;
}

h5 {
    font-size: 0.85rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

p,
li,
a,
label {
    font-size: 1rem;
}

p {
    line-height: 1.4;
}

ul,
li {
    padding: 0;
}

.sec-title {
    font-family: "Lato", sans-serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    position: relative;
    cursor: default;
}

.title-bottom-center-border::before,
.title-bottom-left-border::before {
    position: absolute;
    content: "";
    width: 5rem;
    height: 3px;
    bottom: -4px;
    border-radius: 12px;
    background-color: var(--primary-color);
    transition: all 0.4s;
}

.title-bottom-left-border::before {
    left: 50%;
}

.title-bottom-center-border::before {
    left: 50%;
    transform: translateX(-50%);
}

.title-bottom-center-border:hover::before {
    width: 6rem;
}

.title-bottom-left-border:hover::before {
    width: 6rem;
}

.highlight {
    color: var(--primary-color);
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (max-width: 768px) {
    .highlight::after {
        bottom: -4px;
    }
}

.sec-title:hover .highlight::after {
    width: 100%;
}

/*button-10 */
.button-10 {
    position: relative;
    display: inline-block;
    padding: 9px 18px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border: none;
    background: var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease;
    border-radius: 6px;
}

/* Background effect */
.button-10::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #eb5b00;
    color: #ffffff;
    z-index: -1;
    transition: all 0.4s ease;
}

.button-10:hover::before {
    width: 100%;
}

.button-10:hover {
    color: #fff;
    z-index: 2;
}

.btn-arrow.fa-arrow-right {
    transform: rotate(-45deg);
}

.button-10:hover .btn-arrow .fa-arrow-right {
    transform: rotate(0deg);
}

/* -------------------- */

.btn-11 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #183153;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
    margin-left: auto;
}

.btn-11:after {
    content: " ";
    width: 0%;
    height: 100%;
    /* background: var(--accent-color); */
    background: var(--primary-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.btn-11:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-11 span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 8px 16px;
    color: #fff;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.btn-11:hover span {
    color: #183153;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Ensure animated elements start in their "before" state */
[data-aos] {
    transition-property: opacity, transform;
    will-change: opacity, transform;
}

/* *-------------------------- */
/* *       pages banner css    */
/* *-------------------------- */

.page-banner {
    background: linear-gradient(135deg,
            var(--accent-color) 0%,
            var(--primary-color) 100%);
    color: var(--text-color-invert);
    text-align: center;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;

    z-index: 1;
}

.page-banner h1 {
    font-weight: 700;
    z-index: 2;
    background: linear-gradient(to right, #fff, var(--color-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-banner p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color-invert);
    font-size: 1.1rem;
    z-index: 2;
}

/* *-------------------------- */
/* *        header css         */
/* *-------------------------- */

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Topbar */
.topbar {
    width: 100%;
    background: var(--header-top-bg);
    padding: 12px 24px;
}

.topBar-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color-invert);
}

.topbar .contact {
    display: flex;
    gap: 16px;
}

.header-top-social {
    display: flex;
    gap: 16px;
}

.header-top-social span {
    width: 30px;
    aspect-ratio: 1;
    border-radius: 6px;
    display: grid;
    place-items: center;
}

.header-top-social span a {
    color: white;
}

.header-top-social span.fb-icon {
    background-color: #4267b2;
}

.header-top-social span.insta-icon {
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
}

.header-top-social span.X-icon {
    background: linear-gradient(to bottom, #0c0c0c, #1c1c1c);
}

@media screen and (max-width: 991px) {
    .topbar {
        display: none;
    }
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 16px 24px;
    background: var(--main-header-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10001;
}

.navbar-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a img {
    max-width: 220px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text span:first-child {
    color: var(--secondary-color);
}

.logo-text span:last-child {
    color: var(--primary-color);
}

/* Desktop Menu */
.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a.active,
.nav-links a:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 0;
    /* background-color: var( --primary-color); */
    transition: width 0.3s;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Icon */
.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.menu-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

#menu-close {
    opacity: 0;
}

.menu-icon.active #menu-bars {
    opacity: 0;
}

.menu-icon.active #menu-close {
    opacity: 1;
}

/* Mobile Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: var(--mobile-menu-bg);
    color: var(--mobile-menu-text);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: 0.4s ease;
    z-index: 10001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--mobile-menu-text);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu a:hover:has(.btn-user) {
    padding-left: 0;
}

.mobile-menu a:has(.btn-user) {
    text-align: center;
}

.btn-user {
    margin: 0 auto;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    color: var(--text-color);
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s ease;
}

.btn-user:hover {
    letter-spacing: 3px;
    background-color: var(--primary-color);
    color: hsl(0, 0%, 100%);
    box-shadow: var(--primary-color) 0px 7px 29px 0px;
}

.btn-user:active {
    letter-spacing: 3px;
    background-color: var(--primary-color);
    color: hsl(0, 0%, 100%);
    box-shadow: var(--primary-color) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}

@media (max-width: 576px) {
    .mobile-menu {
        width: 80%;
        right: -80%;
    }
}

.login-signUp-Icon-con a {
    font-size: 24px;
}

/* *-------------------------- */
/* *         footer Css        */
/* *-------------------------- */

footer {
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 63, 0.95) 0%, #071833 100%);
    color: #fff;
    padding: 64px 0 0;
    margin-top: 50px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo a img {
    max-width: 220px;
}

.f-brand-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-content h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--color-white);
    position: relative;
    text-transform: uppercase;
}

.footer-content h5::after {
    position: absolute;
    content: "";
    width: 4rem;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 12px;
    left: 0;
    bottom: -20px;
    transition: all 0.4s;
}

.footer-content h5:hover::after {
    width: 6rem;
}

.footer-content ul {
    padding: 0;
    margin: 0;
    margin-top: 2.4rem;
}

.footer-content ul li {
    margin-bottom: 12px;
}

.footer-content ul li a {
    color: var(--text-color-invert);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-content ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-content ul li a::before {
    content: "▸";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;
}

.footer-bottom {
    width: 100%;
    margin-top: 40px;
    color: var(--text-color-invert);
    font-size: 14px;
}

.footer-bottom-con {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid var(--helping-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
}

.footer-bottom-con a {
    font-size: 16px;
    color: var(--text-color-invert);

    &:nth-of-type {
        margin-right: 16px;
    }
}

.footer-bottom-con a:hover {
    color: var(--primary-color);
}

.f-.social-icons {
    margin-top: 20px;
}

.f-social-icons a {
    color: var(--text-color-invert);
    background-color: var(--primary-color);
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.f-social-icons a:hover {
    color: var(--primary-color);
    background-color: var(--text-color-invert);
    transform: translateY(-4px);
}

.f-description {
    color: var(--text-color-invert);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.9rem;
}

/** ------------------------------  */
/**     hero sec with video  css    */
/** ------------------------------  */

.hero-sec-container {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-sec-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-sec-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-sec-image-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-sec-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-sec-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(16, 36, 63, 0.1) 0%,
            rgba(255, 151, 112, .5) 100%);
    z-index: 0;
}

.hero-sec-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-sec-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-sec-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-sec-content h2 {
        font-size: 2.8rem;
    }

    .hero-sec-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-sec-video-bg {
        display: none;
    }

    .hero-sec-image-bg {
        display: block;
    }

    .hero-sec-content h2 {
        font-size: 2.5rem;
    }

    .hero-sec-content {
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-sec-content h2 {
        font-size: 2rem;
    }

    .hero-sec-content p {
        font-size: 1rem;
    }

    .hero-sec-btn {
        padding: 12px 30px;
    }
}

/*todo  Additional styles for the hero section form */
.h-wrapper {
    background-color: var(--section-bg);
}

.h-form {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 20px;

    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.h-form:hover {
    box-shadow: var(--box-shadow-onHover);
}

.h-form-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h-form-group {
    margin-bottom: 16px;
}

.h-form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: block;
}

.h-form-control {
    border: 2px solid #c5c5c5;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

.h-form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.form-select-wrapper {
    position: relative;
}

.form-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .h-form {
        padding: 30px 25px;
    }

    .h-form-title {
        font-size: 2rem;
    }

    .h-form-control {
        padding: 12px 15px;
    }
}

.h-btn-login {
    margin: auto;
    margin-top: 24px;
}

/** ------------------------------  */
/**          about section css       */
/** ------------------------------  */
.about-section {
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.about-content h1 {
    font-size: 2.5rem;
}

.ab-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.ab-form {
    background: var(--helping-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#ab-visaForm {
    padding: 24px;
}

.ab-form-title {
    background-color: var(--head-bg-1);
    color: var(--helping-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    padding: 16px;
    text-align: center;
}

.ab-form-group {
    position: relative;
    margin-bottom: 16px;
}

.ab-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 600;
}

.ab-form-select {
    width: 100%;
    padding: 6px 16px;
    border: 1px solid var(--helping-color);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--helping-color);
    color: var(--text-color);
    font-weight: 600;
    appearance: none;
    transition: border-color 0.3s;
}

/* Custom arrow using pseudo-element */
.ab-form-group::after {
    content: "\f078";
    /* FontAwesome chevron-down icon */
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 38px;
    right: 15px;
    pointer-events: none;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.ab-form-group:has(select:focus)::after {
    transform: rotate(180deg);
}

.ab-form-group.open::after {
    transform: rotate(180deg);
}

/* Remove the inline icons from option tags */
.ab-form-select option i {
    display: none;
}

.ab-form-select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.ab-form-group label {
    font-weight: 500;
    color: var(--accent-color);
}

.ab-form-group i {
    position: absolute;
    right: 15px;
    top: 45px;
    color: var(--color-black);
    pointer-events: none;
}

.ab-form-group select option:hover {
    background-color: #0d6efd;
    color: #fff;
}

.ab-btn-apply {
    padding: 12px 24px;
    background-color: #3a86ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.ab-btn-apply:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.ab-btn-apply:active {
    transform: translateY(0);
}

/* Animation */
@keyframes h-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.ab-form {
    animation: h-fadeIn 1s ease-out;
}

.ab-form {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@media screen and(width<=991px) {}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2.2rem !important;
    }

    .about-content p {
        font-size: 1.2rem !important;
    }
}

/* About section image styling */
.about-image {
    max-height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.about-image img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-image:hover img {
    transform: scale(1.02);
}

/** ---------------------------- */
/**          Statistics          */
/** ---------------------------- */
.stats-section {
    width: 100%;
}

.info-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

/*
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */

.info-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .info-card {
        margin-bottom: 25px;
    }

    .info-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .info-number {
        font-size: 2.2rem;
    }

    .info-title {
        font-size: 1.1rem;
    }
}

/** ---------------------------- */
/**    destinations cards css    */
/** ---------------------------- */
.destination {
    background-color: var(--section-bg);
}

.des-card-con {
    margin-top: 4rem !important;
}

.des-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto;
    position: relative;
}

.des-card:hover {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
}

.des-card-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.des-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.7) 70%,
            transparent 100%);
    color: white;
    transition: all 0.4s ease;
}

.des-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color-invert);
    font-family: "Quicksand", sans-serif;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.des-card-button {
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1rem;
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
}

@media screen and (width<=991px) {
    .des-card-button {
        top: -90px;
    }
}

@media screen and (width<=768px) {
    .des-card-button {
        top: -110px;
    }
}

@media screen and (width<=576px) {
    .des-card-button {
        top: -100px;
    }
}

/* .des-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
} */

.des-card img {
    width: 100%;
    transition: all 0.4s ease;
}

.des-card:hover .des-card-link {
    background: rgba(0, 0, 0, 0.8);
}

.des-card:hover img {
    filter: brightness(60%);
    scale: 1.1;
}

.des-card:hover .des-card-button {
    opacity: 1;
}

.des-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.des-card-link:hover {
    color: inherit;
}

.des-section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.des-load-more-btn {
    width: fit-content;
    margin: 0 auto;
    margin-top: 32px;

    & a {
        color: var(--text-color-invert);
        letter-spacing: 1px;
    }
}

.des-card-button-1 {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: 24px;
    background-color: #a6a6a6;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 8px 24px;
    display: grid;
    place-items: center;
}

.des-card-button-1 .fa-arrow-right {
    transform: rotate(-45deg);
}

/* *----------------------------- */
/* *        Our Services          */
/* *----------------------------- */
/* .ser-services-section {
  background-color: var(--helping-color);
} */

.ser-services-heading {
    text-align: center;
    margin-bottom: 50px;
}

/*
.ser-card-wrapper {}
*/

.ser-service-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25rem,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    border: 2px dashed transparent;
    border-radius: 16px 32px 16px 32px;
    transition: all 0.3s ease;
}

.ser-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ser-service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: var(--box-shadow-onHover);
    border: 2px dashed var(--primary-color);
    border-radius: 32px 16px 32px 16px;
    border-radius: 48px 48px 0px 48px;
}

.ser-card-icon {
    font-size: 2.4rem;
    color: var(--accent-color);
}

.ser-card-title {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.ser-card-description {
    color: var(--helping-color);
    flex-grow: 1;
    margin-bottom: 0;
    font-size: 1rem;
}

.ser-card-button {
    display: inline-block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.btn-arrow .fa-arrow-right {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.ser-card-button:hover .btn-arrow .fa-arrow-right {
    transform: rotate(0deg);
}

/*
.ser-card-button:hover {}
*/

.ser-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* *----------------------------- */
/* *      footprint sec css       */
/* *----------------------------- */

.fp-section {
    background-color: var(--accent-color);
    background: radial-gradient(circle at center,
            rgba(168, 92, 92, 0.2) 10%,
            rgba(195, 195, 195, 0.5),
            rgba(255, 255, 255, 0.5)),
        url("/images/bg-2.jpg") no-repeat center center/cover;
}

.fp-content-con {
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.fp-text-content {
    padding: 40px;
}

.fp-text-content h2 {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.fp-text-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.fp-map-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fp-map-btn:hover {
    background: #0052b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.fp-image-content {
    position: relative;
    height: 100%;
}

.fp-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .fp-content-con {
        flex-direction: column;
    }

    .fp-text-content {
        order: 1;
        padding: 30px;
    }

    .fp-image-content {
        order: 2;
    }
}

/* *----------------------------- */
/* *      call to action css      */
/* *----------------------------- */

.cta-wrapper {
    border-radius: 15px;
    padding: 24px 32px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--color-white);
    max-width: 1080px;
}

.cta-wrapper h2 {
    font-weight: 700;
    color: var(--secondary-color);
    margin: 12px 0;
    font-size: 2.5rem;
}

.cta-content {
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cta-content p {
    flex: 0.8;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-color);
}

.cta-content .btn-apply {
    flex: 0.2;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-apply:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        gap: 24px;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

/* *---------------------- */
/* *     testimonial css   */
/* *---------------------- */

.tes-section {
    width: 100%;
}

.tes-card {
    width: 350px;
    /* aspect-ratio: 1/1; */
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 16px;
    /* margin: 15px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tes-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

@media screen and (max-width: 768px) {
    .tes-card {
        width: auto;
        max-height: 400px;
        padding: 14px;
    }
}

.tes-quote-icon {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.tes-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.tes-client-info {
    display: flex;
    align-items: center;
}

.tes-client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent-color);
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tes-client-img i {
    font-size: 24px;
    color: #9e9e9e;
}

.tes-client-details h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.tes-client-details p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 14px;
}

.tes-rating {
    color: #ffc107;
    margin: 10px 0;
}

.tes-social-links {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.tes-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-color);
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tes-social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.tes-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.tes-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.tes-carousel-control:hover {
    background: var(--accent-color);
    color: white;
}

.tes-carousel-control.prev {
    left: 0;
}

.tes-carousel-control.next {
    right: 0;
}

.tes-carousel-inner {
    overflow: hidden;
}

.tes-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.tes-carousel-item {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tes-carousel-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .tes-carousel-item {
        flex: 0 0 100%;
    }

    .tes-carousel-wrapper {
        padding: 0 6px;
    }

    .tes-carousel-control {
        width: 40px;
        height: 40px;
    }
}

.tes-nav-pills {
    justify-content: center;
    margin-top: 40px;
}

.tes-nav-pills .nav-link {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dde1f0;
    margin: 0 5px;
    padding: 0;
}

.tes-nav-pills .nav-link.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* *------------------------ */
/* *    login page css       */
/* *------------------------ */
.lg-wrapper {
    width: 100%;
}

.lg-wrapper .wrapper .row {
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.lg-header {
    background: linear-gradient(to right,
            var(--accent-color),
            var(--accent-color));
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.lg-header h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.lg-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.lg-form {
    padding: 25px;
}

.lg-form-label {
    margin-bottom: 12px;
}

.lg-input-group {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lg-form-control {
    width: 100%;
    border-radius: 8px;
    padding: 12px 20px;
    border: 2px solid #d6d6d6 !important;
    outline: none;
}

.lg-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
}

.lg-input-group-text {
    background: transparent;
    border-radius: 8px;
    border: 2px solid #d6d6d6 !important;
    overflow: hidden;
    border-right: none;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
}

.lg-form-control::placeholder {
    color: #adb5bd;
    text-transform: capitalize;
}

.lg-btn-login {
    background: linear-gradient(to right,
            var(--primary-color),
            var(--accent-color));
    border: none;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-weight: 600;
    width: 100%;
    margin: 18px 0;
}

.lg-form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.lg-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .lg-wrapper {
        margin: 0;
    }

    .lg-body {
        padding: 15px;
    }
}

/* *------------------------ */
/* *    sign up page css     */
/* *------------------------ */

.sign-wrapper .wrapper .sign-content-con {
    padding: 0 24px;
}

.sign-header {
    background: var(--accent-color);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.sign-header h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 5px;
}

.sign-header p {
    opacity: 0.9;
    font-size: 16px;
}

.sign-content {
    background: var(--card-bg);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.sign-left {
    background: linear-gradient(to top,
            var(--primary-color),
            var(--accent-color));
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.sign-left h2 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 28px;
}

.sign-left p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 16px;
}

.sign-features {
    margin-top: 30px;
}

.sign-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.sign-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.sign-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.sign-right {
    padding: 40px;
}

.sign-logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.sign-right h3 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.sign-subheading {
    color: var(--text-color);
    margin-bottom: 30px;
}

.sign-form-control {
    padding: 10px 16px;
    border-radius: 10px;
    border: 2px solid #cdcdcd;
    transition: all 0.3s;
    width: 100%;
    outline: none;
}

.sign-form-control:focus {
    border-color: #969696;
    /* box-shadow: 0 0 0 0.25rem rgba(45, 91, 227, 0.15); */
    outline: none;
}

.sign-form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
    display: block;
}

.sign-btn {
    background: linear-gradient(to right,
            var(--accent-color),
            var(--primary-color));
    color: var(--text-color-invert);
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    font-size: 18px;
    cursor: pointer;
}

.sign-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 91, 227, 0.4);
}

.sign-login-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-color);
}

.sign-login-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.sign-form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.sign-tel-input {
    display: flex;
}

.sign-tel-prefix {
    height: 100%;
    padding: 15px;
    background: #eaeaea;
    border: 2px solid #cacaca;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-weight: 500;
}

.sign-tel-number {
    border-radius: 0 10px 10px 0;
}

@media (max-width: 992px) {
    .sign-left {
        padding: 30px 20px;
    }

    .sign-right {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .sign-left {
        display: none;
    }
}

/**=========================== */
/**      about us page css     */
/**=========================== */

#our-story {
    width: 100%;
}

/* stats-section */
.stats-section {
    width: 100%;
    background: var(--section-bg);
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-color);
}

/*  what-we-do*/
.what-we-do {
    width: 100%;
}

.icon-box {
    text-align: center;
    padding: 24px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-onHover);
}

.icon-box .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

/*value-item */
.value-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 2rem;
}

.value-item:hover .icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.value-item .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.value-item:hover .icon {
    color: white;
}

.value-item h4 {
    color: var(--secondary-color);
}

/* team member */
.team-section {
    background-color: var(--section-bg);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member .team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    margin: 0 auto;
    margin-bottom: 16px;
}

.team-member .team-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: inherit;
}

/* faq */

.accordion {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(26, 111, 176, 0.1);
    background-color: white;
}

.accordion-body {
    padding: 24px;
    color: var(--text-color);
    font-size: 1.05rem;
    border-top: 1px solid rgba(26, 111, 176, 0.1);
}

.accordion-body strong {
    color: var(--secondary-color);
}

.accordion-button:focus {
    background-color: var(--accent-color);
    color: var(--text-color-invert);
    box-shadow: 0 0 4px var(--accent-color);
}

/**=========================== */
/**      Contact page css      */
/**=========================== */
/* Info Cards */
.contact-us-info {
    width: 100%;
}

.contact-us-card {
    /* background: linear-gradient(135deg, #1111115b, #1a1a1a43); */
    color: var(--text-color-invert);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: var(--box-shadow-onHover);
}

.contact-us-card .icon {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s;
}

.contact-us-card:hover .icon {
    transform: scale(1.2);
}

.contact-us-card h3 {
    margin-bottom: 10px;
    color: var(--helping-color);
}

.contact-us-card p {
    color: var(--text-color);
    margin: 0;
}

/* contact form */
.contact-us-form-section {
    width: 100%;
}

.contact-us-form-left {
    box-shadow: var(--box-shadow);
    padding: 32px;
    border-radius: 12px;
    background-color: var(--section-bg);
}

.contact-us-form-left label {
    margin-bottom: 12px;
}

.contact-us-form-left label::after {
    content: " :";
    font-size: 1.5rem;
    font-weight: 900px;
}

.contact-us-form-section h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-us-form-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-us-form input,
.contact-us-form textarea {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 14px 16px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    outline: none;
}

.contact-us-btn {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--accent-color));
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 30px;
    border: none;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-us-btn:hover {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.contact-us-btn:active {
    transform: translateY(0);
}

.contact-us-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.contact-us-btn:hover::after {
    left: 100%;
}

.quote-side {
    background: linear-gradient(135deg,
            var(--secondary-color),
            var(--helping-color));
    color: var(--text-color-invert);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.quote-side h5 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.quote-side h2 {
    color: var(--text-color-invert);
    margin-bottom: 1rem;
}

.quote-side p {
    color: var(--accent-color);
}

.contact-us-form-right ul li::before {
    content: "● ";
    color: var(--primary-color);
}

/* Map */

.contact-us-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: box-shadow 0.4s;
}

.contact-us-map iframe:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* cta */
/* CTA Section */
.contact-us-cta {
    width: 100%;
}

.contact-cta-content {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: var(--text-color-invert);
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.contact-cta-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%,
            rgba(255, 102, 0, 0.332) 0%,
            transparent 50%);
    z-index: 1;
}

.contact-cta-content>* {
    position: relative;
    z-index: 2;
}

/**=============================== */
/**  visa guidelines page css      */
/**=============================== */
.process-step {
    display: flex;
    /* align-items: center; */
    margin-bottom: 24px;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

/* -------------- */
.document-checklist {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin-bottom: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item .icon {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Travel Tips Section */
.guideline-card {
    border: none;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    overflow: hidden;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.guideline-card .card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 12px 12px 0 0 !important;
}

.guideline-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.travel-tip {
    background-color: var(--section-bg);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.badge-custom {
    background-color: var(--primary-color);
    color: white;
}

#travel-tips .guideline-card .card-body ul li:before {
    content: "✦ ";
}

/*  */
.country-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/**=============================== */
/**           career page css      */
/**=============================== */
.why-join-us {
    width: 100%;
}

.join-us-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.join-us-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.join-us-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-onHover);
}

.join-us-item:hover::before {
    opacity: 0.4;
}

.join-us-item h3 {
    margin-bottom: 15px;
    /* color: var(--secondary-color); */
    position: relative;
    z-index: 1;
}

.join-us-item p {
    color: var(--helping-color);
    position: relative;
    z-index: 1;
}

.join-us-item .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}



/** ==========country visa information============ */
/* ------------------------------- */
/*        county-visa-banner       */
/* ------------------------------- */
.county-visa-banner {
    width: 100%;
}

.country-visa-content {
    max-height: 400px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.country-visa-content img {
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.country-visa-content h3 {
    position: absolute;
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111111aa;
    color: var(--text-color-invert);
    line-height: 1.6;
    padding: 16px;
}

.rating-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    align-items: center;
    color: var(--accent-color);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
}

.rating-info i {
    color: #ffc107;
}

.rating,
.IATA-value,
.D-U-N-S-value {
    font-weight: 800;
}

.country-visa-type {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px 6px 0;
    border-radius: 16px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    max-width: max-content;
    font-size: 1.1rem;
}

.country-visa-type img {
    height: 48px;
}

/* ------------------------------- */
/*        Country Visa Options     */
/* ------------------------------- */

.country-visa-options {
    width: 100%;
}

.country-visa-options h2 {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    text-decoration: underline;
}

.country-visa-options p {
    margin-bottom: 16px;
    color: var(--helping-color);
    text-align: justify;
}

.explore-visa {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 16px;
    font-weight: 600;
    color: var(--text-color-invert);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 16px;
}

.explore-visa i {
    color: var(--text-color-invert);
    font-size: 1.2rem;
}

.explore-visa-img {
    height: 150px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 16px;
}

.explore-visa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------- */
/*         Popular Visa Types      */
/* ------------------------------- */
/* Popular Visa Types Section */
.popular-visa-types {
    width: 100%;
}

.popular-visa-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.popular-visa-title img {
    height: 32px;
    width: auto;
}

.popular-visa-title h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

/* Visa Detail Cards */
.popular-visa-detail-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.popular-visa-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-onHover);
}

.popular-visa-detail-card p {
    font-weight: 700;
    /* color: var(--primary-color); */
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.popular-visa-detail-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
}

.popular-visa-detail-card li {
    margin-bottom: 6px;
    padding-left: 22px;
    position: relative;
    color: var(--helping-color);
    font-size: 0.9rem;
}

.popular-visa-detail-card li:before {
    content: "•";
    color: black;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

/* Notice Section */
.popular-visa-types>p {
    font-size: 0.85rem;
    color: var(--text-color);
    font-style: italic;
    margin: 30px 0;
    text-align: center;
    padding: 0 10%;
}

/* Visa Note */
.popular-visa-note {
    background: #fcdcd1;
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
}

.popular-visa-note p {
    margin: 0;
    color: var(--accent-color);
    opacity: 1;
    font-weight: 500;
}

/* Document Required Section */
.visa-document-required {
    margin: 40px 0;
}

.visa-document-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
}

.visa-document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-onHover);
}

.document-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.document-card-header img {
    height: 48px;
    width: auto;
}

.visa-document-card p {
    font-size: 0.9rem;
    color: var(--helping-color);
    text-align: justify;
    margin: 0;
}

/* Additional Document Required */
.additional-document-required {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.additional-document-required ul {
    padding-left: 20px;
    margin-top: 20px;
}

.additional-document-required li {
    margin-bottom: 16px;
    color: var(--helping-color);
    padding-left: 32px;
    position: relative;
}

.additional-document-required li::before {
    content: "☞";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
}

/* ------------------------------- */
/*       how it works               */
/* ------------------------------- */
.how-it-work {
    width: 100%;
}

.how-it-work-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px 12px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.how-it-work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-onHover);
}

.how-it-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            var(--primary-color),
            var(--accent-color));
}

.how-it-work-card .steps {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
}

.how-it-work-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin: 12px 0;
}

.how-it-work-card p {
    font-size: 0.9rem;
    color: var(--helping-color);
    margin-bottom: 0;
    text-align: justify;
}



/* ------------------------------- */
/*.        visa- Application       */
/* ------------------------------- */
.visa-application-process {
    width: 100%;
}

.vap-forms {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    /* display: none; */
}

.vap-forms.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vap-forms h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.vap-form-group {
    margin-bottom: 20px;
}

.vap-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.vap-form-group input,
.vap-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--helping-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.vap-form-group input:focus,
.vap-form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 14, 102, 0.25);
    outline: none;
}

.progress-container {
    margin-bottom: 30px;
}

.progress {
    height: 4px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.progress-bar {
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.step.active:not(:last-child):after {
    background-color: var(--primary-color);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    color: #6c757d;
    position: relative;
    z-index: 2;
}

.step.active .step-circle {
    background-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .step:not(:last-child):after {
        right: -40%;
    }
}

/* order summery */
.order-summary-container {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.order-header {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--accent-color));
    color: var(--text-color-invert);
    padding: 16px 24px;
    text-align: center;
}

.order-summary-container .order-header h2 {
    font-weight: 600;
    margin: 0;
}

.order-summary-container .order-body {
    padding: 24px 16px;
}

.order-summary-container .info-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--helping-color);
}

.order-summary-container .info-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-summary-container .info-row {
    display: flex;
    margin-bottom: 12px;
}

.order-summary-container .info-label {
    font-weight: 600;
    width: 65%;
    color: var(--secondary-color);
}

.order-summary-container .info-value {
    width: 60%;
    color: var(--helping-color);
}

.order-summary-container .visa-type {
    background-color: #ff96705a;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 10px;
    border-left: 3px solid var(--primary-color);
}

.order-summary-container .visa-type h4 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.order-summary-container .visa-type p {
    margin: 0;
    color: var(--helping-color);
    font-size: 0.9rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table tr {
    border-bottom: 1px solid var(--helping-color);
}

.fee-table tr:last-child {
    border-bottom: none;
}

.fee-table td {
    padding: 12px 0;
}

.fee-table .fee-label {
    color: var(--helping-color);
}

.fee-table .fee-amount {
    text-align: right;
    font-weight: 600;
}

.total-row {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.security-note {
    background-color: #ff967045;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.security-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 4px;
}

.security-text {
    flex: 1;
}

.security-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.security-text a:hover {
    text-decoration: underline;
}

.order-summary-container .contact-info {
    background-color: var(--text-color-invert);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    /* text-align: center; */
}

.order-summary-container .contact-info p {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.order-summary-container .contact-phone {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.order-summary-container .contact-email {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {

    .info-label,
    .info-value {
        width: 100%;
    }

    .info-label {
        margin-bottom: 5px;
    }
}

/* promise */
.promise-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.promise-header h2 {
    font-weight: 600;
}

.promise-body {
    padding: 24px;
}

.promise-list {
    padding: 0;
    margin: 0;
}

.promise-item {
    display: flex;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eaeaea;
}

.promise-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.promise-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.promise-content {
    flex: 1;
}

.promise-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.promise-text {
    color: var(--helping-color);
    margin: 0;
}

@media (max-width: 768px) {
    .promise-item {
        flex-direction: column;
    }

    .promise-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.application-review {
    width: 100%;
}

.application-card-con {
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    overflow: hidden;
}

.application-card-title {
    color: var(--primary-color);
    padding: 12px 16px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--primary-color);
}

.application-card-title p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.applicants-card {
    background: var(--card-bg);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    /* flex-wrap: wrap; */
}

@media (max-width: 576px) {
    .applicants-card {
        flex-wrap: wrap;
        gap: 16px;
    }
}

.applicants-img-box {
    max-width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.applicants-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.applicants-card-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.applicants-card-content span {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.applicants-card-content i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 8px;
}

.tourist-single-entry {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tourist-single-entry h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tourist-entry-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tourist-entry-info span {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color-invert);
}

.tourist-entry-info i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.applicant-detail {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.applicant-detail .table {
    width: 100%;
    margin-bottom: 0;
}

.application-review aside {
    width: 100%;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 130px;
}

.application-summary {
    width: 100%;
    padding: 16px;
}

.application-summary .table {
    width: 100% !important;
    margin-bottom: 0;
}

.application-summary tfoot {
    border-top: 1px solid var(--helping-color);
}

.application-summary tfoot th {
    font-size: 1.1rem;
    color: var(--secondary-color);
    padding: 6px 0;
}

/* payment-method  */
.payment-method {
    width: 100%;
}

.payment-method-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    padding: 32px 24px;
    transition: var(--transition);
    border: none;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.payment-method-card:hover {
    box-shadow: var(--box-shadow-onHover);
}

.payment-method-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.payment-method-title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.payment-input-group {
    display: flex;
    align-items: center;
    margin: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: var(--transition);
}

.payment-input-group input[type="radio"] {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    accent-color: var(--secondary-color);
    border: 1px solid var(--primary-color);

}

.payment-input-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    flex: 1;
}

.payment-input-group strong {
    color: var(--secondary-color);
}

.security-check {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.security-check input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.security-check label {
    margin-bottom: 0;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.security-check a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.security-check a:hover {
    text-decoration: underline;
}

.payment-method-body {
    padding: 2rem;
    text-align: center;
    color: var(--helping-color);
    font-style: italic;
}

.select2-selection {
    border-color: black !important;
    border-radius: 9px !important;
}


/** ---------------------------- */
/**    destinations cards css    */
/** ---------------------------- */
