
main {
  margin-top: 40px; /* adjust value as needed */
}


@media (max-width: 767px) {
  .collapse {
    transition: height 0.35s ease, opacity 0.25s ease;
    overflow: hidden;
  }

  .mobile-slot {
    margin-top: 12px;
  }
}
/*Contact part*/

.company-contact{
    /*padding: 30px 0;*/
    text-align: center;

}

/* ================= HEADER ================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
    position: sticky;
    top: 0;
    z-index: 2000;
    background-color: #242f67;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 70px;
    height: auto;
}

header h1 a {
    text-decoration: none;
    color: #fff;
}


/* Language Drop down*/
.flag-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    display: inline-block;
}


/* button */
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}


/* dropdown */
.lang-dropdown {
    position: relative;
    margin-right: 12px;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #e7e7e7;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.lang-menu.show {
    display: block;
}

.lang-menu li {
    list-style: none;
    margin: 6px 0;
}


/* 📱 Mobile tweak*/
@media (max-width: 767px) {
  header h5 a {
    text-decoration: none;
    color: #fff;
}
  .lang-menu {
    right: 0;
    left: auto;
    min-width: 120px;
  }

    .lang-menu {
        padding: 6px;
        border-radius: 8px;
        min-width: auto; /* prevent wide box */
    }

    .lang-menu li {
        margin: 4px 0;
    }

    .flag-circle {
        width: 26px;
        height: 26px;
    }
    .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: -15px;
    }


}




/* car/plane/ship icon*/
.category-section {
  display: flex;
  flex-direction: column; /* 👈 one item per line */
  align-items: center;    /* center under text (optional) */
  gap: 8px;               /* spacing between lines */
}

/* default */
.category-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 500;
  color: #242f67;
  transition: color 0.3s ease;
}

.category-item i {
  color: #d94c5c;
  transition: color 0.3s ease;
}

/* 👇 WHEN CARD IS HOVERED */
.service-card:hover .category-item,
.service-card:hover .category-item span,
.service-card:hover .category-item i {
  color: #ffffff;
}



.service-btn-lg {
  display: inline-block;
  padding: 20px 44px;      /* bigger but not heavy */
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  background-color: #242f67;
  border-radius: 1000px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn-lg:hover {
  background-color: #e64555;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.10);
}

/* Scroll To Top Btn */

#scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 40px; /* higher than chat box */
  z-index: 10000; /* above everything */
}


#scroll-to-top img {
  width: 40px;   /* make smaller */
  height: auto;
  cursor: pointer;
  opacity: 1;
}

#scroll-to-top img:hover {
  opacity: 1;
}


/* Chat Button */
#chat-btn img {
    width: 40px;
    height: 40px;
}

#chat-btn {
  position: fixed;
  bottom: 100px;
  justify-content: right;  
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #ff5757;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Header */
.chat-header {
  background: #1f2f63;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-title img {
  width: 28px;
  height: 28px;
}

.close-btn {
  position: absolute;
  top: 8px;
  left: 140px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Status */
.chat-status {
  padding: 6px 12px;
  font-size: 12px;
  color: green;
  border-bottom: 1px solid #eee;
}

/* Body */
.chat-body {
  height: 260px;
  padding: 10px;
  overflow-y: auto;
  background: #f8f9fa;
}

/* Messages */
.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  width: fit-content;        /* 👈 key line */
}

.message.support {
  background: #e9ecef;
  align-self: flex-start;
}

.message.user {
  background: #1f2f63;
  color: white;
  margin-left: auto;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 10px;
  gap: 8px;
  border-top: 1px solid #eee;
   flex-direction: column;
}




/* 3 buttons row */
.quick-contact {
  display: flex;
  gap: 6px;
}

.quick-contact button {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

/* Colors */
.quick-contact button:nth-child(1) { background: #06C755; }
.quick-contact button:nth-child(2) { background: #25D366; }
.quick-contact button:nth-child(3) { background: #0068FF; }

/* Input + send row */
.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.chat-input-row .send-btn {
  margin-top: 0; /* remove old margin */
}







.chat-footer input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.send-btn {
  background: #1f2f63;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 9px;   /* move down */
}


/* ===== CHAT CONTACT BUTTONS ===== */
.contact-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.contact-links a {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.contact-line { background: #06C755; }
.contact-whatsapp { background: #25D366; }
.contact-zalo { background: #0068FF; }

/*chat */

.quick-contact {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.quick-contact button {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.quick-contact button:nth-child(1) { background: #06C755; }
.quick-contact button:nth-child(2) { background: #25D366; }
.quick-contact button:nth-child(3) { background: #0068FF; }

.chat-contact-img {
  width: 120px;
  margin-top: 6px;
  border-radius: 10px;
  cursor: pointer;
}

.chat-footer {
  display: flex;
  flex-direction: column;   /* 👈 THIS is the key */
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #eee;
}

/* 3 buttons row */
.quick-contact {
  display: flex;
  gap: 6px;
}

/* input row */
.chat-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* remove old margin */
.send-btn {
  margin-top: 0 !important;
}
/* Contact card title */
.contact-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;          /* 👈 stronger bold */
  color: #222;               /* 👈 clearer contrast */
  letter-spacing: 0.5px;     /* 👈 more readable */
  text-transform: uppercase;/* 👈 cleaner look */
}


/*chat end*/

.flag-circle-list {
    display: flex;
    gap: 13px;
    align-items: center;
}

.flag-circle {
    width: 30px;          /* size */
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

/* UL alignment */
.consul-column {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* normal links */
.consul-column li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

/* button list item */
.btn-li {
  margin-top: 12px;
}

/* hover */
.small-btn:hover {
  background: #ffffff;
}

.navy-box {
  background: #1f275c;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  width: fit-content;
  font-weight: 600;
}

.service-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.service-card:hover {
  background-color: #1f275c;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(230, 69, 85, 0.35);
}

.carousel-inner{
    align-items: center;
}
/* text + icon turn white */
.service-card:hover h4,
.service-card:hover p,
.service-card:hover i {
  color: #fff !important;
}


/* consultancy*/

.ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ie-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pink-btn {
  background: #d94c5c;
  color: white;
  text-decoration: none;
  padding: 10px 26px;
  border-radius: 25px;
  width: fit-content;
  font-weight: 600;
  margin-top: 10px;
 margin-left: 15px;}

.pink-btn:hover {
  opacity: 0.9;
}

ul {
  text-align: left;   /* ✅ left align text */
  line-height: 2;
  margin-left: 0;     /* optional: reset margin */
  padding-left: 20px; /* keeps bullets nicely aligned */
}
/* ===== CONSULTANCY MOBILE & TABLET ===== */
@media (max-width: 1024px) {

  .company-contact {
    padding: 20px 12px;
    text-align: center;
  }

  .company-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* grid layout */
  .ie-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* tablet = 2 columns */
  @media (min-width: 768px) {
    .ie-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

  ul {
    font-size: 14px;
    line-height: 1.7;
  }

  .pink-btn {
    margin: 10px auto 0;
    display: inline-block;
  }
}

/* ===== OUR SERVICES HOVER DROPDOWN ===== */
.services-dropdown {
  position: relative;
  display: inline-block;
}

.services-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

.services-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.services-menu {
  position: absolute;
  top: 100%;              /* 👈 key fix */
  left: 0;
  background: #f9fafc;
  min-width: 220px;
  padding: 12px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  display: none;
  z-index: 3000;
}

.services-dropdown:hover .services-menu {
  display: block;
}

.services-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #242f67;           /* normal text */
  text-decoration: none;
  transition: all 0.2s ease;
}

.services-menu a:hover {
  background-color: #242f67; /* 👈 dark blue hover */
  color: #ffffff;           /* 👈 readable white text */
}

.services-dropdown.active .services-menu {
  display: block;
}


/*imge carousel*/
/* Container Styling */
.lsc-container {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.lsc-title {
    margin-bottom: 20px;
    font-family: sans-serif;
    color: #333;
}

/* The Viewport */
.lsc-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.lsc-slider {
    display: flex;
    user-select: none;
}

/* The Moving Track */
.lsc-track {
    display: flex;
    gap: 20px;
    width: max-content;
    flex-shrink: 0;
    animation: scrollLSC 10s linear infinite;
}

/* Pause on Hover */
.lsc-slider:hover .lsc-track {
    animation-play-state: paused;
}

.lsc-track img {
    width: 400px; /* Desktop width */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
}

/* Animation Logic */
@keyframes scrollLSC {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lsc-track img {
        width: 280px; /* Smaller images for mobile */
    }
    .lsc-track {
        animation-duration: 15s; /* Faster scroll for smaller screens */
    }
}

h2{margin:0}
.dashboard{display:grid;grid-template-columns:250px 1fr;min-height:100vh}
.sidebar{background:#1e293b;color:#fff;padding:15px}
.sidebar h3{color:#fff}
.sidebar div{margin:10px 0;cursor:pointer}
.main{padding:15px}
.grid{display:grid;grid-template-columns:1fr;gap:15px}
@media(min-width:900px){.grid{grid-template-columns:1fr 1fr 1fr}}
.card{background:var(--card);padding:15px;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.05)}
.service{padding:10px;border:1px solid #ddd;border-radius:8px;margin-top:8px;cursor:pointer}
.service.selected{background:#dbeafe;border-color:var(--primary)}
.badge{display:inline-block;background:#a5b4fc;padding:5px 8px;margin:3px;border-radius:6px;font-size:12px}
button,select,input{width:100%;padding:10px;margin-top:8px;border-radius:8px;border:1px solid #ddd}
button.downpdf{color:#1f275c;border:none;background-color:#ddd;}
#cartList div:hover{
 background:#f9f9f9;
}

.badge{
 display:inline-block;
 padding:4px 8px;
 margin:3px;

 border-radius:6px;
 font-size:12px;
}
.light-text{
  color:#b0b8c1;
}

.carousel-item.consult{
    height: 380px !important;
}

.consulting-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.consulting-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.consulting-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.consulting-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf0ff;
  color: #24306a;
  font-size: 0.85rem;
  font-weight: 700;
}

.consulting-title {
  margin: 0 0 14px;
  color: #24306a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.consulting-text {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 760px;
}

.consulting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary-soft,
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary-soft {
  color: #fff;
  background: linear-gradient(135deg, #e74b5b, #d93c4d);
  box-shadow: 0 12px 28px rgba(231, 75, 91, 0.22);
}

.btn-primary-soft:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary-outline {
  color: #24306a;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.btn-primary-outline:hover {
  color: #24306a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.consulting-media {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.consulting-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.consulting-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.consulting-card h3 {
  margin: 0 0 14px;
  color: #24306a;
  font-size: 1.2rem;
  font-weight: 800;
}

.consulting-list {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
  line-height: 1.75;
}

.consulting-list li + li {
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .consulting-hero,
  .consulting-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary-soft,
  .btn-primary-outline {
    transition: none !important;
  }
}



/* Header Wrapper */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #242f67;
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* Forced Horizontal Alignment for Navigation Items */
nav.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem; /* Consistent spacing between menu items */
}

nav.main-nav a.nav-item-link,
.services-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

nav.main-nav a.nav-item-link:hover,
.services-link:hover {
    color: #f25f70;
}

/* Services Dropdown Alignment */
.services-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.services-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 210px;
    padding: 8px 0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 2100;
}

.services-dropdown:hover .services-menu,
.services-dropdown.active .services-menu {
    display: block;
}

.services-menu a {
    display: block;
    padding: 8px 16px;
    color: #242f67;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.services-menu a:hover {
    background-color: #242f67;
    color: #ffffff;
}

/* Language Dropdown Alignment */
.lang-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.flag-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    display: inline-block;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    margin-top: 8px;
    z-index: 2100;
}

.lang-menu.show {
    display: block;
}

/* Responsive Mobile Layout */
@media (max-width: 767px) {
    header {
        padding: 1rem;
    }
    .menu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
    nav.main-nav {
        display: none; /* Toggled by JavaScript */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #242f67;
        padding: 1.5rem;
        gap: 1.2rem;
        align-items: flex-start;
    }
    nav.main-nav.active {
        display: flex;
    }
}

/*Custom Styling*/

    #aseanTab .nav-link {
        color: #242f67;
        background-color: #ffffff;
        border-color: #e2e8f0 !important;
        transition: all 0.25s ease;
    }
    #aseanTab .nav-link.active,
    #aseanTab .nav-link:hover {
        background-color: #242f67 !important;
        color: #ffffff !important;
        border-color: #242f67 !important;
        box-shadow: 0 4px 12px rgba(36, 47, 103, 0.2);
    }
    .btn-outline-navy {
        border: 1.5px solid #242f67;
        color: #242f67;
    }
    .btn-outline-navy:hover {
        background-color: #242f67;
        color: #ffffff;
    }