:root{
    --main_color: #007bff;
}

body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
.navbar {
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 0;
}

.navbar .navbar-brand {
    font-weight: 700;
    color: var(--main_color) !important;
    transition: color 0.3s;
}

/* Nav Links */
.navbar .nav-link {
    position: relative;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 14px;
}

.navbar .nav-link:hover {
    color: var(--main_color);
    border-bottom: 2px solid var(--main_color);
}

.navbar .nav-link.active {
    color: var(--main_color) !important;
}

.navbar .nav-link.active::after {
    width: 100%;
    background-color: var(--main_color);
}

.navbar .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar .dropdown-toggle::after {
  margin-left: 0;
  vertical-align: middle;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
  border-bottom: 0;
  position: static;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://static.vecteezy.com/system/resources/previews/009/328/817/non_2x/travel-by-air-on-an-airplane-around-the-world-passenger-plane-and-planet-earth-on-a-gradient-blue-background-travel-poster-copy-space-illustration-vector.jpg') center/cover no-repeat;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.search-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
}
.search-card h1 {
    font-weight: 700;
    margin-bottom: 15px;
}
.search-card p {
    color: #555;
    margin-bottom: 30px;
}
.form-control, .btn {
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
}
.btn-custom-primary {
    background: linear-gradient(90deg, #1e90ff, #007bff);
    border: none;
}
.btn-custom-primary:hover {
    background: linear-gradient(90deg, #007bff, #1e90ff);
    color: white;
}


/* Cards */
.visa-card img {
    border-radius: 12px 12px 0 0;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.visa-card:hover img {
    transform: scale(1.05);
}
.visa-card {
    border: 1.3px solid var(--main_color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
    align-items: center;
    padding-top: 27px;
    cursor: pointer;
}
.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    /* transform: translateY(-8px);
    background: linear-gradient(135deg, #005eff, var(--main_color));
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: white; */
}
.country-flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.btn_apply {
    background-color: green;
    text-decoration: none;
    color: white;
    padding: 6px;
    font-size: 15px;
    border-radius: 21px;
    display: inline-block;
    width: 10rem;
    height: 33px;
    text-align: center;
}
.btn_apply:hover {
    transform: scale(1.05);
    background-color: black;
    cursor: pointer;
    color: white;
}
/* passport service */
.passport-box{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    cursor: pointer;
    border: 1px solid var(--main_color);
}

.passport-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #005eff, var(--main_color));
    color: white;
}
.passport-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #005eff;
}
.passport-box:hover i {
    color: white;
}

/* Icons Section */
.icon-box {
    background: white;
    padding-top: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 200px;
    cursor: pointer;
    /* border: 1px solid var(--main_color); */
}
.icon-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #005eff, var(--main_color));
    color: white;
}
.icon-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #005eff;
}
.icon-box:hover i {
    color: white;
}

/* Stats */
.stats {
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1400&q=80') center/cover fixed;
    color: white;
    padding: 80px 0;
    position: relative;
}
.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.stats .container {
    position: relative;
    z-index: 1;
}

/* Contact */
.contact {
    background: #f8f9fa;
    padding: 80px 0;
}
.form-control {
    border-radius: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, #005eff, var(--main_color));
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0043c6, #005eff);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0c0c0c;
    color: #aaa;
    padding: 10px 0;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}


/* login */
.login_section {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80')
    no-repeat center center/cover;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* Overlay */
.login_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

#backToTopBtn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    transition: opacity 0.4s;
    background-color: var(--main_color);
    color: white;
    padding: 6px;
}
#backToTopBtn:hover {
  opacity: 0.8;
}

/* Login Card */
.login-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    backdrop-filter: blur(6px);
    animation: fadeIn 1s ease-in-out;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

.login-card h3 {
    font-weight: 700;
    color: var(--main_color);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--main_color);
}

.btn-primary {
    background: var(--main_color);
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}


.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}


/* user profile */
.user_profile{
    background-color: #f8f9fa;
}
.sidebar {
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: auto;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.sidebar .nav-link {
    color: #6c757d;
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.sidebar .active {
    background-color: #e3f2fd;
    color: var(--main_color);
}
.sidebar .nav-link:hover {
    background-color: #e3f2fd;
    color: var(--main_color);
    transform: translateX(5px);
}

.sidebar .nav-link.delete-btn:hover {
    background-color: var(--accent-color);
    color: #d32f2f;
}

.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-height: calc(100vh - 40px);
}

.profile-header {
    background: linear-gradient(135deg, var(--main_color), #001630);
    color: white;
    padding: 25px;
    margin-bottom: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
/* .custom_btn{
    border-radius: 12px;
    padding: 4px 20px;
    font-size: 16px;
    background-color: #001630;
    text-decoration: none;
    color: white;
} */

/* jobs */
.hero-section {
    background: linear-gradient(135deg, #007BFF, #002b3f);
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

/* floating dots */
.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.dot1 { top: 20%; left: 5%; }
.dot2 { top: 70%; left: 10%; }
.dot3 { top: 40%; right: 5%; }
.dot4 { top: 10%; right: 15%; }

/* right circle graphic */
.circle-wrap {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon {
    font-size: 70px;
    color: white;
}


.job-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.read-more {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}
.contactus_section {
    background: linear-gradient(135deg, var(--main_color) 0%, black 100%);
    color: white;
    padding: 100px 0;
}

.contact-icon {
    background-color: var(--main_color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-social-icon {
    background: linear-gradient(135deg, var(--main_color) 0%, black 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-2px);
}
