/* Universal Css Start Here */
body {
	background-color: var(--body-color);
	font-family: "DM Sans", sans-serif;
	color: var(--text-color);

}
html{
    overflow-x: hidden;
}
.over-hidden {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: var(--extra-color-3);
}

a:hover {
	color: var(--extra-color-3);
}

button {
	font-family: var(--font-btn);
	border: 0;
}

figure {
	margin-bottom: 0;
}

.primary-btn {
}

.secondary-btn {
}

/* Universal Css End Here */

/* Typography Start Here */
.larger-heading {
	font-family: var(--font-montserrat-bold);
	font-size: 53px;
	line-height: 63px;
}

.deafult-heading {
	font-family: var(--font-heading);
	font-size: 40px;
	line-height: 50px;
}

.paragraph-family {
	font-family: var(--font-paragraph);
	font-size: 15px;
	line-height: 25px;
}

/* Typography End Here */

/* Header Css Start Here */
.header-top {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
  }

  /* Hover Underline Animation */
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover::after {
    width: 70%;
  }

  .navbar-brand span {
    letter-spacing: -1px;
  }

  .btn-apply {
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
  }


/* header css end here */

.hero-wrapper {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1611154376393-dc7c3f518fc8');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    border-radius: 0 0 50px 50px; /* Modern bottom curve */
  }

  .glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -2px;
    line-height: 1.1;
  }

  .hero-btn {
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  
  .btn-primary-glow {
    background: #0d6efd;
    border: none;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
  }

  .btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.5);
    background: #0b5ed7;
  }




/*  */

  .s-card {
    border: 1px solid #eee;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    background: #fff;
  }
  .s-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
  }
  .icon-circle {
    width: 55px; height: 55px;
    background: #f8f9fa;
    border-radius: 15px;
  }
  .s-card:hover .icon-circle { background: #0d6efd; color: #fff; }


  /*  */
    .job-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e9ecef;
    border-radius: 16px;
  }
  .job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
    border-color: #0d6efd;
  }
  .icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 12px;
  }
  .job-p {
    font-weight: 500;
  }


  /*  */
  /*  */
.company-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
  .company-hover:hover { transform: translateY(-8px); border-color: #0d6efd !important; box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important; }
  .company-hover img { filter: grayscale(1); opacity: 0.6; transition: 0.3s; }
  .company-hover:hover img { filter: grayscale(0); opacity: 1; }
/*  */
.bento-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .bento-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.1);
  }

  /* Animated Icon Style */
  .icon-glow {
    width: 60px; height: 60px;
    background: #f0f4ff;
    border-radius: 16px;

    margin-bottom: 25px;
    transition: 0.5s;
    animation: pulse 3s infinite;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
  }

  .bento-card:hover .icon-glow {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
  }

  .step-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d6efd;
    opacity: 0.6;
  }





  .v-grid-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .v-grid-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-8px);
  }
  .grid-icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    position: relative;
    z-index: 1;
  }




.country-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    margin: 10px; /* Gap between cards */
    background: #fff;
  }
  .country-card:hover {
    border-color: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  .flag-circle {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }



.v-story-card {
    border-radius: 2rem;
    transition: all 0.5s cubic-bezier(0.15, 1, 0.3, 1);
    background: #ffffff;
    border: 1px solid #f1f3f5;
  }
  
  .v-story-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 100px rgba(13, 110, 253, 0.07) !important;
    border-color: #0d6efd;
  }

  .initial-box {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #0d6efd 0%, #004bbd 100%);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.2);
  }

  .floating-quote {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
  }


  .contact-wrapper {
    background: linear-gradient(135deg, #05142b 0%, #0d6efd 150%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
  }
  .glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  }
  .form-control {
    border: 1px solid #e9ecef;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: #f8fafc;
  }
  .form-control:focus {
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
  }
/* home page end here */

/* faq page */
.faq-section {
    background-color: #f8fafc;
  }
  
  .accordion-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }

  .accordion-item:hover {
    border-color: #0d6efd !important;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.05);
  }

  .accordion-button {
    font-weight: 600;
    color: #1e293b;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff !important;
    box-shadow: none !important;
  }

  .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #f0f7ff !important;
  }

  .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
  }

  .accordion-body {
    color: #64748b;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff;
  }

  .faq-badge {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

/* faq page end here */
/* job page start here */
.job-card {
    border: 1px solid #eef2f6;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #fff;
  }
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
    border-color: var(--primary-blue);
  }
  .company-logo {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #f0f7ff;
    color: var(--primary-blue);
  }
  .filter-sidebar {
    background: #fff;
    border-radius: 20px;
    position: sticky;
    top: 100px;
  }
  .form-check-input:checked { background-color: var(--primary-blue); }
  .badge-job { padding: 6px 12px; border-radius: 8px; font-weight: 600; font-size: 0.75rem; }



/* job page end here */
/* job detail page start here */
.job-header {
    background: white;
    border-bottom: 1px solid #eef2f6;
    padding: 60px 0;
  }
  .company-brand-lg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--joblix-blue);
  }
  .sticky-apply-card {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    background: white;
  }
  .detail-icon-box {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--joblix-blue);
  }
  .job-content h5 { margin-top: 30px; margin-bottom: 15px; font-weight: 700; }
  .job-content li { margin-bottom: 10px; color: #475569; }
/* job-detail  page end here */

/* apply page css start here */

/* Progress Tracker Styling */
.form-container { background: white; border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); min-height: 850px; }
  
  /* Sidebar & Active State */
  .step-sidebar { border-right: 1px solid #f1f5f9; height: 100%; padding: 25px; background: #fafbfc; border-radius: 24px 0 0 24px; }
  .nav-step { 
    display: flex; align-items: center; padding: 14px 18px; border-radius: 12px; 
    margin-bottom: 8px; cursor: pointer; color: #64748b; transition: 0.3s; font-size: 0.85rem; font-weight: 500;
  }
  /* Active Tab Highlight */
  .nav-step.active { 
    background-color: var(--active-tab-bg) !important; 
    color: var(--primary-blue); 
    font-weight: 700; 
    border-left: 5px solid var(--primary-blue);
  }
  .nav-step:hover:not(.active) { background: #f1f5f9; }
  .nav-step i { margin-right: 12px; font-size: 1rem; }

  /* Input Styling */
  .section-title { font-weight: 800; color: #1e293b; margin-bottom: 30px; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
  .form-label { font-weight: 700; font-size: 0.72rem; color: #475569; text-transform: uppercase; margin-bottom: 8px; }
  .form-control, .form-select { padding: 12px; border-radius: 12px; border: 1px solid #e2e8f0; font-size: 0.95rem; }
  .form-control:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); }
  
  .form-step-content { display: none; animation: fadeIn 0.4s ease; }
  .form-step-content.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  .question-box { background: #f8fafc; padding: 18px; border-radius: 14px; margin-bottom: 12px; border: 1px solid #edf2f7; }



/* apply page css end here */
/* service page start here */

/* Hero Section */
  .upper-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    color: white;
    border-radius: 0 0 50px 50px;
  }

  /* Service Card Styling */
  .service-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
  }
  .service-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  /* Feature List */
  .feature-list { list-style: none; padding: 0; margin-top: 20px; }
  .feature-list li { margin-bottom: 12px; font-size: 0.9rem; color: #64748b; display: flex; align-items: center; }
  .feature-list i { color: #10b981; margin-right: 10px; font-size: 1.1rem; }

  /* Pricing Badge */
  .price-tag {
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .cta-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
  }
/* service page end here  */
/* how its work start here */
.step-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
  }
  .step-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12); 
    border-color: var(--primary-blue); 
  }

  .step-badge {
    width: 50px; height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 25px;
    transform: rotate(-8deg);
  }

  /* Image Effects */
  .process-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
    transition: 0.5s ease;
  }
  .process-illustration:hover { 
    transform: scale(1.03) translateY(-10px); 
  }

  /* Timeline Divider */
  .timeline-wrapper { position: relative; }
  @media (min-width: 992px) {
    .timeline-wrapper::before {
      content: ''; position: absolute; left: 50%; top: 50px; bottom: 50px;
      width: 2px; background: repeating-linear-gradient(to bottom, #cbd5e1, #cbd5e1 10px, transparent 10px, transparent 20px);
      transform: translateX(-50%);
      z-index: 0;
    }
  }

  /* CTA Banner */
  .cta-banner {
    background: linear-gradient(90deg, #0d6efd, #4f46e5);
    border-radius: 40px;
    padding: 70px 40px;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.4);
  }

/* how its work end here */
/* about us start here */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to right, #f8fafc 50%, #fff 50%);
  }

  .hero-tag {
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  /* Statistics Section */
  .stat-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--light-blue);
    text-align: center;
    transition: 0.3s;
  }
  .stat-card:hover { transform: translateY(-10px); background: var(--primary-blue); color: white; }
  .stat-number { font-size: 2.5rem; font-weight: 800; display: block; }

  /* Content Sections */
  .section-padding { padding: 100px 0; }
  
  .img-stack {
    position: relative;
    padding: 20px;
  }
  .img-main {
    border-radius: 30px;
    width: 90%;
    z-index: 2;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  }
  .img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: 20px;
    border: 8px solid white;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  /* Value Cards */
  .value-card {
    border: 1px solid #f1f5f9;
    padding: 35px;
    border-radius: 24px;
    transition: 0.3s;
  }
  .value-card:hover { border-color: var(--primary-blue); box-shadow: 0 15px 30px rgba(13, 110, 253, 0.05); }
  .value-icon {
    width: 50px; height: 50px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }


/* about us page end here */

/* contact page css */
.contact-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    padding: 100px 0 160px;
    color: white;
    text-align: center;
  }

  /* Contact Wrapper */


  .contact-card {
    background: white;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    overflow: hidden;
  }

  /* Form Styling */
  .form-label { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; color: #64748b; }
  .form-control, .form-select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #fcfdfe;
    font-size: 0.95rem;
  }
  .form-control:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); }

  /* Info Sidebar */
  .info-sidebar {
    background: var(--primary-blue);
    color: white;
    padding: 50px;
    height: 100%;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .contact-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; color: white; margin-right: 10px;
    transition: 0.3s; text-decoration: none;
  }
  .social-links a:hover { background: white; color: var(--primary-blue); }

  /* Support Badge */
  .support-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
  }

/*contact page end here  */
/* application submit page start here */
.success-check {
    width: 80px; height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
  }

  /* Payment Card */
  .payment-card {
    background: white;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .order-summary {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
  }

  /* Credit Card UI */
  .visa-card-preview {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }
  .visa-card-preview::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 150px; height: 150px; background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }

  .form-label { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; color: #64748b; margin-bottom: 8px; }
  .form-control {
    padding: 12px 15px; border-radius: 12px; border: 1px solid #e2e8f0;
    font-size: 1rem; transition: 0.3s;
  }
  .form-control:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); }

  .secure-badge {
    display: inline-flex; align-items: center;
    padding: 6px 12px; background: #f0fdf4; color: #166534;
    border-radius: 8px; font-size: 0.75rem; font-weight: 700;
  }


/* application submit page end here */

/* footer start here */
  footer a {
    transition: all 0.3s ease;
    text-decoration: none;
  }
  footer a:hover {
    color: #0d6efd !important;
    /* padding-left: 5px; */
  }
  .social-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
    color: #0d6efd;
    transition: 0.3s;
  }
  .social-icon:hover {
    background: #0d6efd;
    color: #fff !important;
    /* transform: translateY(-3px); */
  }
  .footer-newsletter .form-control {
    border-radius: 10px 0 0 10px;
    border: 1px solid #eee;
  }
  .footer-newsletter .btn {
    border-radius: 0 10px 10px 0;
  }
  /* footer end here */