* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* 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: 55px;
}

/* NAV */
.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.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: 10px 16px;
    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: 1024px) {

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 10002;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 90px 22px 30px;
    transition: right 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .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: 70vh;
    }

    .eu-hero-content h1 {
        font-size: 30px;
    }
}

/* ===== 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: space-between;
    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: 90px 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: rgba(11, 60, 138, 0.08);
}

.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;
}

/* 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: 90px 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: 90px 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: 90px 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: 6px;
    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: 220px;
  }

  .eu-about-hero-content h1 {
    font-size: 32px;
  }
}


/* ================= ABOUT US CONTENT ================= */
.eu-about-content-section {
  padding: 90px 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: 60px 0;
  }

  .eu-about-text p {
    font-size: 15px;
  }
}


/* ===== 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: 90px 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: 50px;
  }

  .eu-clients-track img {
    height: 34px;
  }
}


/* ===== KEY STATS ===== */
.eu-stats-section {
  padding: 90px 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: 90px 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: 20px;
  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;
} 