* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Segoe UI", sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* COLORS */
:root {
  --red: #b11226;
  --blue: #0b3c8a;
  --dark: #1e1e1e;
  --light: #ffffff;
}

/* TOP BAR */
.top-bar {
  background: var(--blue);
  color: #fff;
  padding: 0px 20px;
  font-size: 14px;
  text-align: center;
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
}

/* HEADER */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.container {
  /* max-width: 100px; */
  margin: auto;
  padding: 2px 20px;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 70px;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 10px 0;
  text-transform: uppercase
}

.nav ul li.active a, .nav ul li a:hover {
  color: var(--red);
}

/* DROPDOWN */
.dropdown ul {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.dropdown ul li a {
  display: block;
  padding: 12px 15px;
  font-weight: 500;
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp {
  background: #25d366;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}


.sub_menu {
  flex-direction: column;
  gap: 1px !important;
  line-height: 20px;
  border: none;
  border-radius: unset;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 0px !important;
}

li.man_menu {
  line-height: 50px;

}

li.man_menu li a {
  display: block;
  padding: 5px 10px !important;
  font-weight: 500;
  line-height: 28px;
  /* border-bottom: 1px solid !important; */
}

li.man_menu li a:hover {

  background-color: #8b0015;
  color: #fff !important;
  border-radius: 2px;
}

/* ================= MOBILE MENU – EURASIA STYLE ================= */


@media (max-width: 768px) {
  #nav_menu ul {
    width: 100%;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 77px 0px 1px;
    transition: right 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
  }

  .nav ul li a {
    padding: 0px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle1 i {
    transition: transform 0.3s ease;
  }

  .dropdown.open .dropdown-toggle1 i {
    transform: rotate(180deg);
  }




}

@media (max-width: 600){

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 90px 0px 30px;
    transition: right 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
  }

      .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #fff;
        height: 100vh;
        width: 232px !important;
        transition: 0.4s;
        padding-top: 30px;
    }
}

@media (max-width: 1024px) {

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 10002;
  }


  .nav.active {
    right: 0;
    top: 0;
  }

  li.man_menu {
    line-height: 8px;
}

  .nav ul {
    display: flex;
    flex-direction: column;
    margin-top: 15px;

    /* gap: 44px !important; */
  }

  .nav ul li {
    border-bottom: 1px solid #eee;
  }

  .nav ul li a {
    padding: 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #111;
  }

  .nav ul li a:hover {
    background: #f6f6f6;
  }

  /* Disable desktop hover dropdown */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Submenu (Accordion) */
  .dropdown-menu {
    display: none;
    background: #fafafa;
  }

  .dropdown-menu li a {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle1 i {
    transition: transform 0.3s ease;
  }

  .dropdown.open .dropdown-toggle1 i {
    transform: rotate(180deg);
  }
}

/* ================= OVERLAY ================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10000;
}

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

/* HERO */
/* .hero { height: 80vh; background: url('../images/promotion-benner.jpg') center/cover no-repeat; position: relative; } .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); } .hero-content { position: relative; z-index: 1; max-width: 700px; padding: 80px; color: #fff; } .hero-content h1 { font-size: 48px; margin-bottom: 20px; } .hero-content p { font-size: 18px; margin-bottom: 30px; } .btn { background: var(--red); color: #fff; padding: 14px 28px; text-decoration: none; border-radius: 6px; } */
/* RESPONSIVE */
@media(max-width: 992px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #fff;
    height: 100vh;
    width: 280px;
    transition: 0.4s;
    padding-top: 30px;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== NOTICE MARQUEE BAR ===== */
.eu-notice-bar {
  background: #8b0015;
  /* deep red like screenshot */
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.eu-notice-track {
  display: inline-flex;
  gap: 60px;
  animation: eu-notice-scroll 30s linear infinite;
}

.eu-notice-track span {
  display: inline-block;
}

.eu-notice-track strong {
  font-weight: 700;
}

/* SCROLL ANIMATION */
@keyframes eu-notice-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.eu-notice-bar:hover .eu-notice-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .eu-notice-bar {
    font-size: 13px;
  }

}

/* ===================================== HERO CAROUSEL BASE ===================================== */
.eu-hero-carousel {
  position: relative;
  width: 99%;
  height: 90vh;
  overflow: hidden;
  background: #000;
  margin: 0px 10px;
}

/* ===================================== SLIDES (LEFT ↔ RIGHT MOTION) ===================================== */
.eu-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  pointer-events: none;
}

.eu-hero-slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.eu-hero-slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

.eu-hero-slide.exit-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

/* ===================================== OVERLAY ===================================== */
.eu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(177, 18, 38, 0.95) 0%, rgba(177, 18, 38, 0.8) 40%, rgba(177, 18, 38, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* ===================================== CONTENT LAYOUT ===================================== */
.eu-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  height: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

/* ===================================== TEXT + BUTTON ===================================== */
.eu-hero-content h1 {
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
}

.eu-hero-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #fff;
  color: #b11226;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(25px);
}

.eu-hero-btn:hover {
  background: #0b3c8a;
  color: #fff;
}

/* ===================================== IMAGE (SCROLL EFFECT) ===================================== */
.eu-hero-visual img {
  max-width: 100%;
  opacity: 0;
  transform: translateX(120px);
}

/* ===================================== ACTIVE SLIDE ANIMATIONS ===================================== */
.eu-hero-slide.active .eu-hero-content h1 {
  animation: heroTextUp 0.9s ease forwards;
}

.eu-hero-slide.active .eu-hero-btn {
  animation: heroBtnUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

.eu-hero-slide.active .eu-hero-visual img {
  animation: heroImageScroll 1.1s ease forwards;
  animation-delay: 0.2s;
}

/* ===================================== KEYFRAMES ===================================== */
@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes heroBtnUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes heroImageScroll {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

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

/* ===================================== NAVIGATION ARROWS ===================================== */
.eu-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 5;
}

.eu-hero-nav.prev {
  left: 20px;
}

.eu-hero-nav.next {
  right: 20px;
}

/* ===================================== DOTS ===================================== */
.eu-hero-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.eu-hero-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.eu-hero-dots span.active {
  background: #fff;
}

/* ===================================== RESPONSIVE ===================================== */
@media (max-width: 1024px) {
  .eu-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eu-hero-visual {
    display: none;
  }

  .eu-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {

  .eu-hero-carousel {
    height: 200px;
    overflow: hidden;
  }

  .eu-hero-content h1 {
    font-size: 14px;
  }

  .eu-hero-btn {
    padding: 7px 15px;
    font-weight: 600;
  }

  .eu-hero-dots span {
    margin-bottom: -10px;
  }

  .main-container {
    padding: 10px 0px;
  }

  .eu-process-card {
    padding: 10px !important;
  }

  .eu-process-card h4 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
    /* color: #1e1e1e; */
}
p{
  font-size: 12px !important;
}
h2{
  font-size: 20px !important;
}

.eu-faq-question {
    font-size: 12px;
}
.eu-faq-answer {
    font-size: 12px;
}
.eu-mid-banner{
  height: 150px;
}
.eu-mid-content h2{
  font-size: 12px !important;
}

.eu-mid-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 14px !important;
    font-weight: 600;
}

    .eu-mid-container {
        /* grid-template-columns: 1fr; */
        text-align: left !important;
    }


    .eu-mid-container {
    padding: 0 20px !important;
}

.eu-service-card h4 {
    font-size: 16px !important;
    padding: 12px 14px 0px !important;
    color: #0b3c8a;
}

.eu-service-link {
    margin: 0px 16px 13px;
    font-size: 12px;
    font-weight: 500;
}

.eu-service-image img {
    width: 100%;
    height: 125px !important;
    object-fit: cover;
}


.eu-about-btn {
    padding: 4px 20px!important;
}

.eu-trust-right {
    font-size: 10px !important;
    color: #444;
}

.eu-hero-dots {
    position: absolute;
    bottom: 20px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 5;
}

.eu-hero-dots span {
    width: 5px;
    height: 5px;
}

.eu-hero-nav.prev {
    left: 5px;
}
.eu-hero-nav.next {
    right: 5px;
}

.eu-hero-nav {
  display: none;
    position: absolute;
    top: 50%;
    font-size: 26px;
    width: 30px;
    height: 30px;
    z-index: 5;
}

  .eu-hero-container {
      grid-template-columns: 2fr;
      text-align: left;
  }

.eu-hero-container {

    padding: 0 20px !important;
}

.main-container {
    padding: 5px !important;
}

.eu-contact-form input, .eu-contact-form textarea {
    width: 100%;
    padding: 4px 10px !important;
    margin-top: 6px !important;
    margin-bottom: -2px !important;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.eu-contact-form button {
    width: 100%;
    padding: 8px !important;
    background: #b11226;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.eu-why-item {
    gap: 18px;
    margin-bottom: 0px !important;
}

p {
    margin-top: 0;
    margin-bottom: 0px !important;
}

.eu-why-content h2 {
    font-size: 22px;
    margin-bottom: 20px!important;
    color: #1e1e1e;
}

.eu-why-item h4 {
    font-size: 16px !important;
    margin-bottom: 6px;
    color: #1e1e1e;
}

.eu-process-card p {
  max-width: 180px !important;
}

}

/* ===== TRUST BAR ===== */
.eu-trust-bar {
  background: #f8f9fb;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.eu-trust-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-wrap: wrap;
}

.eu-trust-left {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
}

.eu-dots {
  color: #b11226;
  letter-spacing: 3px;
}

.eu-trust-left p {
  font-weight: 600;
}

.eu-avatars {
  display: flex;
}

.eu-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.eu-trust-right {
  font-size: 14px;
  color: #444;
}

.eu-lic-label {
  color: #0b3c8a;
  font-weight: 700;
}

/* ===== ABOUT SECTION ===== */
.eu-about-section {
  padding: 80px 0;
  background: #ffffff;
}

.eu-about-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eu-about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.eu-about-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1e1e1e;
  position: relative;
}

.eu-about-content h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #b11226;
  display: block;
  margin-top: 10px;
}

.eu-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.eu-about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.eu-about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-about-container {
    grid-template-columns: 1fr;
  }
}

/* ===== RECRUITMENT PROCESS ===== */
.eu-process-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f9fafc, #ffffff);
}

.eu-process-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.eu-process-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.eu-process-header h2 {
  font-size: 40px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.eu-process-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.eu-process-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #b11226;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* STEPS GRID */
.eu-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

/* CARD */
.eu-process-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  position: relative;
  transition: 0.3s;
  border-left: 5px solid transparent;
}

.eu-process-card:hover {
  transform: translateY(-4px);
  border-left-color: #0b3c8a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.eu-step-no {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 42px;
  font-weight: 700;
  color: rgb(11 60 138 / 38%);
}

.eu-process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.eu-process-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 80% !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-process-steps {
    grid-template-columns: 1fr;
  }

  .eu-process-header h2 {
    font-size: 32px;
  }
}

/* ===== WHY CHOOSE US ===== */
.eu-why-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-why-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.eu-why-content h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #1e1e1e;
}

.eu-why-item {
  padding: 25px 0;
  border-bottom: 1px solid #e6e6e6;
}

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

.eu-why-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0b3c8a;
}

.eu-why-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* RIGHT IMAGE */
.eu-why-image {
  position: relative;
}

.eu-why-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* BADGE */
.eu-why-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #fff;
  padding: 28px 32px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.eu-why-badge span {
  font-size: 40px;
  font-weight: 700;
  display: block;
}

.eu-why-badge small {
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-why-container {
    grid-template-columns: 1fr;
  }

  .eu-why-badge {
    left: 20px;
    bottom: 20px;
  }

  .eu-why-content h2 {
    font-size: 34px;
  }
}

/* ===== OUR SERVICES ===== */
.eu-services-section {
  padding: 20px 0;
  background: #f9fafc;
}

.eu-services-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.eu-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.eu-services-header h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #1e1e1e;
}

.eu-services-header p {
  font-size: 16px;
  color: #666;
}

/* GRID */
.eu-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.eu-service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.eu-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.eu-service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.eu-service-card h4 {
  font-size: 20px;
  padding: 22px 20px 10px;
  color: #0b3c8a;
}

.eu-service-link {
  display: inline-block;
  margin: 0 20px 25px;
  font-size: 14px;
  font-weight: 600;
  color: #b11226;
  text-decoration: none;
  position: relative;
}

.eu-service-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #b11226;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transition: 0.3s;
}

.eu-service-card:hover .eu-service-link::after {
  transform: scaleX(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eu-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MIDDLE CTA BANNER ===== */
.eu-mid-banner {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: url("../images/promotion-benner.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.eu-mid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(177, 18, 38, 0.95) 0%, rgba(177, 18, 38, 0.8) 40%, rgba(177, 18, 38, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* CONTAINER */
.eu-mid-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.eu-mid-content h2 {
  font-size: 44px;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}

/* BUTTON */
.eu-mid-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #ffffff;
  color: #b11226;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  transition: 0.3s;
}

.eu-mid-btn span {
  font-size: 20px;
}

.eu-mid-btn:hover {
  background: #0b3c8a;
  color: #fff;
  transform: translateX(6px);
}

/* RIGHT IMAGE */
.eu-mid-visual {
  text-align: right;
}

.eu-mid-visual img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .eu-mid-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eu-mid-visual {
    display: none;
  }

  .eu-mid-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .eu-mid-content h2 {
    font-size: 28px;
  }
}

/* ===== CONTACT & FAQ ===== */
.eu-contact-faq {
  padding: 20px 0;
  background: #ffffff;
}

.eu-contact-faq-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* CONTACT FORM */
.eu-contact-box h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.eu-contact-form label {
  font-size: 14px;
  margin-top: 14px;
  display: block;
}

.eu-contact-form input, .eu-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  margin-top: 0px;
  border-radius: 4px;
}

.eu-contact-form textarea {
  height: 110px;
  resize: none;
}

.eu-captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
}

.eu-contact-form button {
  background: #b11226;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

/* FAQ */
.eu-faq-box h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.eu-faq-item {
  border-bottom: 1px solid #ddd;
}

.eu-faq-question {
  padding: 16px 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.eu-faq-question span {
  font-size: 20px;
  color: #b11226;
}

.eu-faq-answer {
  display: none;
  padding-bottom: 16px;
  color: #555;
  line-height: 1.6;
}

.eu-faq-item.active .eu-faq-answer {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-contact-faq-container {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.eu-footer {
  position: relative;
  background: url("img/footer-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  padding-top: 90px;
}

.eu-footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 15, 0.9));
  z-index: 1;
}

.eu-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1.4fr;
  gap: 50px;
}

/* BRAND */
.eu-footer-brand img {
  max-width: 135px;
  margin-bottom: 20px;
}

.eu-footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.eu-footer-social a {
  width: 38px;
  height: 38px;
  background: #b11226;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

.eu-footer-brand h4 {
  margin: 25px 0 10px;
}

/* NEWSLETTER */
.eu-footer-newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  margin-bottom: 10px;
}

.eu-footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: #b11226;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* LINKS */
.eu-footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.eu-footer-col ul {
  list-style: none;
}

.eu-footer-col ul li {
  margin-bottom: 10px;
}

.eu-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.eu-footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* CONTACT */
.eu-footer-col p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 14px;
}

.eu-footer-col strong {
  color: #ffffff;
}

/* BOTTOM */
.eu-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .eu-footer-container {
    grid-template-columns: 1fr;
  }
}

.main-container {
  width: 100%;
  padding: 20px;
}




/* =======================================================================================================================================================
=======================================================================================================================================
===================================================================================================================================== */
/* ================= ABOUT US HERO ================= */
.eu-about-hero {
  position: relative;
  width: 100%;
  height: 35vh;
  background: url("../images/about-hero1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* RED OVERLAY */
.eu-about-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
  background: linear-gradient(135deg,
      rgba(139, 0, 21, 0.9),
      rgba(177, 18, 38, 0.85));
  z-index: 1;
}

/* CONTENT */
.eu-about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eu-about-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-about-hero {
    height: 260px;
  }

  .eu-about-hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .eu-about-hero {
    height: 120px;
  }

  .eu-about-hero-content h1 {
    font-size: 25px;
  }
}


/* ================= ABOUT US CONTENT ================= */
.eu-about-content-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-about-content-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.eu-about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 22px;
}

.eu-about-text strong {
  color: #0b3c8a;
  font-weight: 700;
}

/* IMAGE */
.eu-about-image-box {
  background: #f1f1f1;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.eu-about-image-box img {
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-about-content-container {
    grid-template-columns: 1fr;
  }

  .eu-about-image-box {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .eu-about-content-section {
    padding: 20px 0;
  }

  .eu-about-text p {
    font-size: 15px;
  }

  .eu-why-left h2 {
    margin-bottom: 3px !important;
}
}


/* ===== VALUE PROPOSITION ===== */
.eu-value-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-value-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.eu-value-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.eu-value-content {
  max-width: 520px;
}

.eu-value-block {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  color: #777;
}

.eu-value-block.active p strong {
  color: #b11226;
}

.eu-check {
  color: #0b3c8a;
  font-weight: 700;
  font-size: 18px;
  margin-top: 4px;
}

.eu-value-block p {
  font-size: 16px;
  line-height: 1.7;
}

/* FEATURES GRID */
.eu-value-features {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  position: relative;
}

.eu-value-features::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.eu-feature {
  padding: 20px 0 20px 25px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.eu-feature i {
  font-size: 22px;
  color: #b11226;
}

.eu-feature h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-value-container {
    grid-template-columns: 1fr;
  }

  .eu-value-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .eu-value-features {
    grid-template-columns: 1fr;
  }

  .eu-value-features::before {
    display: none;
  }

  .eu-feature {
    padding-left: 0;
  }
}


/* ===== WHY CHOOSE US ===== */
.eu-why-choose {
  padding: 20px 0;
  background: #ffffff;
}

.eu-why-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.eu-why-left h2 {
  font-size: 42px;
  color: #8b0015;
  margin-bottom: 45px;
}

.eu-why-item {
  /* display: flex; */
  gap: 18px;
  margin-bottom: 30px;
}

.eu-why-item i {
  font-size: 22px;
  color: #8b0015;
  margin-top: 6px;
}

.eu-why-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #1e1e1e;
}

.eu-why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* RIGHT IMAGE */
.eu-why-right img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-why-container {
    grid-template-columns: 1fr;
  }

  .eu-why-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .eu-why-left h2 {
    font-size: 30px;
  }

  .eu-why-item {
    gap: 14px;
  }
}


/* ===== OUR TEAM ===== */
.eu-team-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-team-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.eu-team-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #555;
}

/* CAROUSEL */
.eu-team-carousel {
  position: relative;
  overflow: hidden;
}

/* .eu-team-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
} */

.eu-team-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* CARD */
.eu-team-card {
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.eu-team-card:hover {
  transform: translateY(-10px);
}

.eu-team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  background: #f1f1f1;
}

.eu-team-card h4 {
  margin-top: 18px;
  font-size: 20px;
  color: #1e1e1e;
}

/* DOTS */
.eu-team-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.eu-team-dots span {
  width: 8px;
  height: 8px;
  background: #8b0015;
  border-radius: 50%;
  opacity: 0.3;
  cursor: pointer;
}

.eu-team-dots span.active {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-team-card {
    min-width: 260px;
  }

  .eu-team-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .eu-team-card {
    min-width: 85%;
  }
}


/* globle flag========================= */
.eu-global-section {
  padding: 20px 0;
  background: #fff;
  overflow: hidden;
}

.eu-global-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #555;
}

/* MARQUEE */
.eu-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 35px;
  /* SPACE BETWEEN ROWS */
}

.eu-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee-left 35s linear infinite;
}

/* REVERSE */
.eu-marquee-reverse .eu-marquee-track {
  animation: marquee-right 35s linear infinite;
}

/* FLAG */
.eu-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.eu-flag img {
  width: 42px;
}

.eu-flag span {
  font-size: 14px;
  color: #666;
}

/* HOVER PAUSE */
.eu-marquee:hover .eu-marquee-track {
  animation-play-state: paused;
}

/* ANIMATIONS */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eu-global-title {
    font-size: 30px;
  }

  .eu-flag img {
    width: 32px;
  }
}



/* ===== OUR CLIENTS ===== */
.eu-clients-section {
  padding: 20px 0;
  background: #ffffff;
  overflow: hidden;
}

.eu-clients-title {
  text-align: center;
  font-size: 42px;
  /* margin-bottom: 50px; */
  color: #222;
}

/* MARQUEE */
.eu-clients-marquee {
  width: 100%;
  overflow: hidden;
}

.eu-clients-track {
  display: flex;
  align-items: center;
  gap: 0px;
  width: max-content;
  animation: clients-marquee 40s linear infinite;
}

/* LOGOS */
.eu-clients-track img {
  height: 150px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.7;
  transition: 0.3s ease;
  flex-shrink: 0;
  /* border: 1px solid; */
  padding: 0px 5px;
  border-radius: 4px;
}

.eu-clients-track img:hover {
  filter: grayscale(50%);
  opacity: 1;
  /* transform: scale(1.05); */
}

/* PAUSE ON HOVER */
.eu-clients-marquee:hover .eu-clients-track {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eu-clients-title {
    font-size: 30px;
  }

  .eu-clients-track {
    gap: 0px;
  }

  .eu-clients-track img {
    height: 150px;
  }
}


/* ===== KEY STATS ===== */
.eu-stats-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-stats-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.eu-stats-title {
  font-size: 42px;
  color: #555;
  margin-bottom: 60px;
}

.eu-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.eu-stat-card {
  border: 1.5px solid #777;
  padding: 35px 20px;
  border-radius: 6px;
  transition: 0.35s ease;
  background: #fff;
}

.eu-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.eu-stat-card h3 {
  font-size: 48px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
}

.eu-stat-card p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eu-stats-title {
    font-size: 30px;
  }

  .eu-stats-grid {
    grid-template-columns: 1fr;
  }

  .eu-stat-card h3 {
    font-size: 40px;
  }
}


/* ===== CONTACT HERO ===== */
.eu-contact-hero {
  height: 35vh;
  /* background: url("./assets/images/contact-banner.jpg") center/cover no-repeat; */
  background: url("../images/about-hero1.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-contact-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
  background: linear-gradient(135deg,
      rgba(139, 0, 21, 0.9),
      rgba(177, 18, 38, 0.85));
}

.eu-contact-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.eu-contact-hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.eu-contact-hero-content p {
  font-size: 18px;
}

/* ===== CONTACT SECTION ===== */
.eu-contact-section {
  padding: 20px 0;
  background: #fff;
}

.eu-contact-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}

/* FORM */
.eu-contact-form-box h2,
.eu-contact-info-box h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 25px;
}

.eu-contact-form input,
.eu-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.eu-contact-form textarea {
  height: 140px;
  resize: none;
}

.eu-contact-form button {
  width: 100%;
  padding: 14px;
  background: #b11226;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.eu-contact-form button:hover {
  background: #0b3c8a;
}

/* INFO BOX */
.eu-contact-info-box {
  background: #f9fafc;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.eu-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.eu-info-item i {
  font-size: 26px;
  color: #b11226;
}



/* ===== MAP ===== */
.eu-map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eu-contact-container {
    grid-template-columns: 1fr;
  }

  .eu-contact-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .eu-contact-hero {
    height: 40vh;
  }

  .eu-contact-hero-content h1 {
    font-size: 26px;
  }
}


/* ===== FAQ SECTION ===== */
.eu-faq-section {
  padding: 20px 0;
  background: #ffffff;
}

.eu-faq-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}




/* ===== JOB OPENINGS ===== */
.eu-jobs-section {
  padding: 80px 0;
  background: #ffffff;
}

.eu-jobs-header h1 {
  font-size: 48px;
  margin-bottom: 25px;
  color: #1e1e1e;
}

/* FILTERS */
.eu-job-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.eu-job-filters select {
  max-width: 220px;
  border-radius: 4px;
  box-shadow: none;
}

/* JOB CARD */
.eu-job-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  height: 100%;
  transition: 0.3s ease;
}

.eu-job-card:hover {
  border-color: #b11226;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.eu-job-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.job-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

.job-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #b11226;
  text-decoration: none;
}

.job-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eu-jobs-header h1 {
    font-size: 36px;
  }

  .eu-job-filters {
    flex-direction: column;
  }

  .eu-job-filters select {
    max-width: 100%;
  }
}



.eu-why-work {
  padding: 80px 0;
  background: #f9fafc;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
}

.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  height: 100%;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #b11226;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}


.eu-hiring-process {
  padding: 80px 0;
}

.process-step {
  text-align: center;
  padding: 30px;
  border: 1px dashed #ddd;
}

.process-step span {
  font-size: 28px;
  font-weight: 700;
  color: #b11226;
}


.eu-job-locations {
  padding: 70px 0;
  background: #fff;
}

.eu-job-locations .col-md-3 {
  padding: 18px;
  border: 1px solid #eee;
  font-weight: 600;
}


/* =============job details page=========================== */


/* ===== JOB PAGE ===== */
.eu-job-page {
  padding: 20px 0;
  background: #f9fafc;
}

/* JOB DETAILS */
.job-detail-box {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5e7eb;
}

.job-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #555;
}

.job-detail-box h4 {
  margin-top: 30px;
  font-size: 20px;
}

.job-detail-box ul {
  padding-left: 18px;
}

.job-detail-box ul li {
  margin-bottom: 8px;
}

/* APPLY FORM */
.apply-form-box {
  background: #ffffff;
  padding: 35px;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 120px;
}

.apply-form-box h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .apply-form-box {
    position: relative;
    top: unset;
  }
}

@media (max-width: 576px) {

  .job-detail-box,
  .apply-form-box {
    padding: 25px;
  }

  .job-title {
    font-size: 22px;
  }
  .job-detail-box ul li {
    /* margin-bottom: 8px; */
    font-size: 12px;
}
}




/* service1 page css international-recruitment-solutions.html */

/* ===== SERVICE HERO ===== */
/* .service-hero {
  background: linear-gradient(135deg, #8b0015, #b11226);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
} */

.service-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.service-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* ===== INTRO ===== */
.service-intro {
  padding: 80px 0;
}

.service-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-intro p {
  font-size: 16px;
  color: #555;
  /* max-width: 800px; */
}

/* ===== PROCESS ===== */
.service-process {
  background: #fafafa;
  padding: 80px 0;
}

.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.process-card .step {
  font-size: 13px;
  font-weight: 700;
  color: #b11226;
}

.process-card h4 {
  margin-top: 10px;
  font-size: 20px;
}

/* ===== WHY US ===== */
.service-why {
  padding: 20px 0;
}

.why-card {
  border: 1px solid #b11226;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
}

.why-card i {
  font-size: 30px;
  color: #b11226;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.service-cta {
  background: #b11226;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.btn-service {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: #fff;
  color: #b11226;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
}

.btn-service:hover {
  background: #0b3c8a;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .service-hero h1 {
    font-size: 34px;
  }

  .service-intro h2 {
    font-size: 28px;
  }
}



/* ===== JOB PACKAGE DESIGN ===== */
.eu-job-packages {
  padding: 80px 0;
  background: #fff;
}

.eu-packages-title {
  font-size: 44px;
  color: #1e1e1e;
}

.eu-packages-subtitle {
  color: #666;
}

.eu-package-box {
  border: 1px solid #e5e7eb;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: 0.35s;
  background: #fff;
}

.eu-package-box:hover {
  transform: translateY(-6px);
  border-color: #b11226;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.eu-package-box.featured {
  border: 2px solid #b11226;
}

.eu-package-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0b3c8a;
  color: #fff;
  padding: 4px 14px;
  font-size: 12px;
  border-radius: 20px;
}

.eu-package-desc {
  color: #555;
  margin: 12px 0;
}

.eu-package-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.eu-package-list li {
  margin-bottom: 8px;
  font-size: 14px;
}



.eu-package-price {
  font-size: 26px;
  font-weight: 700;
  color: #b11226;
  margin-bottom: 15px;
}

.eu-package-btn {
  display: inline-block;
  font-weight: 600;
  color: #b11226;
  text-decoration: none;
}

.eu-package-btn.solid {
  background: #b11226;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
}



/* ======================================================
   JOB PACKAGE DETAILS PAGE
====================================================== */

.eu-package-details-page {
  padding: 70px 0;
  background: #f9fafc;
}

.eu-package-details-page h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.eu-details-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Section headings */
.eu-package-details-page h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0b3c8a;
}

/* Feature list */
.eu-details-list {
  list-style: none;
  padding-left: 0;
}

.eu-details-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
  padding-left: 26px;
  position: relative;
}

.eu-details-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b11226;
  font-weight: 700;
}

/* Summary Box */
.eu-package-summary-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
  text-align: center;
}

.eu-package-summary-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.eu-package-summary-box .price {
  font-size: 36px;
  font-weight: 700;
  color: #b11226;
  margin-bottom: 10px;
}

.eu-package-summary-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Apply Button */
.eu-package-apply-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.eu-package-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .eu-package-summary-box {
    position: relative;
    top: unset;
    margin-top: 40px;
  }

  .eu-package-details-page h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .eu-package-details-page {
    padding: 40px 0;
  }

  .eu-package-details-page h1 {
    font-size: 26px;
  }

  .eu-package-summary-box {
    padding: 25px;
  }

  .eu-package-summary-box .price {
    font-size: 30px;
  }
}


/* ======================================================
   BUY JOB PACKAGE PAGE
====================================================== */

.eu-buy-job-package {
  padding: 80px 0;
  background: #ffffff;
}

.eu-buy-box {
  background: #f9fafc;
  border: 1px solid #e5e7eb;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.eu-buy-box h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #1e1e1e;
  text-align: center;
}

/* Form labels */
.eu-buy-box label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

/* Inputs */
.eu-buy-box .form-control {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.eu-buy-box .form-control:focus {
  border-color: #b11226;
  box-shadow: none;
}

/* Buy Button */
.eu-buy-btn {
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.eu-buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 576px) {
  .eu-buy-box {
    padding: 25px;
  }

  .eu-buy-box h2 {
    font-size: 24px;
  }
}





/* USER DASHBOARD */
.eu-user-dashboard {
  padding: 60px 0;
  background: #ffffff;
}

.eu-user-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.eu-user-package-card {
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.eu-user-package-card:hover {
  transform: translateY(-4px);
  border-color: #b11226;
}

.eu-status {
  font-weight: 700;
}

.eu-status.in-process {
  color: #0b3c8a;
}

.eu-status.completed {
  color: #2e7d32;
}

.eu-user-package-list {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

.eu-user-package-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.eu-user-btn {
  display: inline-block;
  margin-top: 20px;
  color: #b11226;
  text-decoration: none;
  font-weight: 600;
}



/* ======================================================
   APPLY SUCCESS PAGE
====================================================== */

.eu-apply-success {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #f9fafc;
}

.eu-apply-success .container {
  max-width: 720px;
}

/* Success Icon */
.eu-success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Heading */
.eu-apply-success h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 15px;
}

/* Message */
.eu-apply-success p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Dashboard Button */
.eu-success-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.eu-success-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 576px) {
  .eu-success-icon {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }

  .eu-apply-success h1 {
    font-size: 24px;
  }

  .eu-apply-success p {
    font-size: 14px;
  }

  .eu-success-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}



/* ======================================================
   USER DASHBOARD
====================================================== */

.eu-user-dashboard {
  padding: 60px 0;
  background: #f9fafc;
}

/* HEADER */
.eu-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.eu-user-header h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.eu-user-header p {
  color: #666;
}

.eu-user-edit-btn {
  padding: 10px 20px;
  background: #0b3c8a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* STATS */
.eu-user-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.eu-user-stat-card h3 {
  font-size: 36px;
  color: #b11226;
  margin-bottom: 5px;
}

.eu-user-stat-card p {
  font-size: 14px;
  color: #555;
}

/* SECTIONS */
.eu-user-section {
  margin-top: 60px;
}

.eu-user-section h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

/* PACKAGE CARD */
.eu-user-package-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 18px 30px rgba(0,0,0,0.06);
}

.eu-package-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eu-user-package-card ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}

.eu-user-package-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* STATUS */
.eu-status {
  font-weight: 700;
  font-size: 13px;
}

.eu-status.in-process {
  color: #0b3c8a;
}

.eu-status.completed {
  color: #2e7d32;
}

/* BUTTON */
.eu-user-btn {
  display: inline-block;
  margin-top: 10px;
  color: #b11226;
  font-weight: 600;
  text-decoration: none;
}

/* JOB TABLE */
.eu-user-job-table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.eu-job-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.eu-job-row:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eu-user-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .eu-job-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


.eu-profile-box {
  padding: 40px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.eu-profile-btn {
  background: #b11226;
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 20px;
}

/* ======================================================
   HEADER AUTH BUTTONS
====================================================== */

.eu-auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Common Button */
.eu-auth-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

/* Login */
.eu-auth-btn.login {
  border: 1px solid #b11226;
  color: #b11226;
}

.eu-auth-btn.login:hover {
  background: #b11226;
  color: #fff;
}

/* Register */
.eu-auth-btn.register {
  background: #b11226;
  color: #fff;
}

.eu-auth-btn.register:hover {
  background: #0b3c8a;
}

/* Dashboard */
.eu-auth-btn.dashboard {
  background: #0b3c8a;
  color: #fff;
}

.eu-auth-btn.dashboard:hover {
  background: #b11226;
}

/* Logout */
.eu-auth-btn.logout {
  border: 1px solid #ccc;
  color: #444;
}

.eu-auth-btn.logout:hover {
  background: #f1f1f1;
}

.eu-auth-user {
    display: flex;
    justify-content: center;
    gap: 5px;
}
/* Mobile Fix */
@media (max-width: 1024px) {
  .eu-auth-actions {
    gap: 8px;
  }

  .eu-auth-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* ======================================================
   LOGIN & REGISTER PAGES
====================================================== */

.eu-auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #f9fafc;
  padding: 60px 0;
}

/* Box */
.eu-auth-box {
  max-width: 480px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
}

/* Title */
.eu-auth-box h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.eu-auth-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* Labels */
.eu-auth-box label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: block;
  text-align: left;
  margin-bottom: 6px;
}

/* Inputs */
.eu-auth-box .form-control {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.eu-auth-box .form-control:focus {
  border-color: #b11226;
  box-shadow: none;
}

/* Remember / Forgot */
.eu-auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.eu-auth-row a {
  color: #b11226;
  text-decoration: none;
  font-weight: 600;
}

/* Button */
.eu-auth-btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.eu-auth-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Switch */
.eu-auth-switch {
  margin-top: 25px;
  font-size: 14px;
}

.eu-auth-switch a {
  color: #b11226;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 576px) {
  .eu-auth-box {
    padding: 25px;
  }

  .eu-auth-box h1 {
    font-size: 26px;
  }
}

/* ======================================================
   PACKAGE PAYMENT SUCCESS PAGE
====================================================== */

.eu-payment-success {
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: #f9fafc;
  padding: 60px 0;
}

.eu-payment-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Icon */
.eu-payment-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/* Heading */
.eu-payment-card h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e1e1e;
}

/* Message */
.eu-payment-msg {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Details */
.eu-payment-details {
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
  padding: 25px 0;
  margin-bottom: 30px;
}

.eu-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.eu-detail-row span {
  color: #666;
}

.eu-detail-row strong {
  color: #1e1e1e;
}

/* Buttons */
.eu-payment-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.eu-payment-btn {
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Primary */
.eu-payment-btn.primary {
  background: linear-gradient(135deg, #b11226, #0b3c8a);
  color: #ffffff;
}

.eu-payment-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Outline */
.eu-payment-btn.outline {
  border: 2px solid #b11226;
  color: #b11226;
}

.eu-payment-btn.outline:hover {
  background: #b11226;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 576px) {
  .eu-payment-card {
    padding: 30px 22px;
  }

  .eu-payment-card h1 {
    font-size: 26px;
  }

  .eu-payment-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .eu-detail-row {
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .text-mobile {
        font-size: 20px !important;
  }
}

.mb-3{
        text-align: justify;
}


.job-pagination-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:30px;
    flex-wrap:wrap;
    gap:15px;
}

.results-info{
    font-size:14px;
    color:#666;
}

.pagination{
    margin:0;
}

.pagination .page-link{
    border-radius:8px;
    margin:0 3px;
    color:#333;
}

.pagination .active .page-link{
    background:#ff6b00;
    border-color:#ff6b00;
}


.pagination-links .small.text-muted{
    display: none;
}


#toast-container {
    top: 20px !important;
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
}

#toast-container > div {
    margin: auto !important;
}


.eu-process-card p{
    max-width: 80% !important;
}
