/* Trimmed CSS: kept only rules used by the five target files
   Files scanned: index.php, carousel.php, inc/header.php, inc/footer.php, extra/index.html
   A backup was saved as `css/style.css.bak`.
*/

:root {
  --body-font: "Inter", sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --primary-color: #1a73e8;
}

* {
  box-sizing: border-box;
}

.bi {
  color: #fff;
}
a.nav-link {
  color: #fff;
}
a.nav-link:hover {
  color: var(--primary-color);
}

/* Tabs/content used in index.php script */
.tab-button {
  position: relative;
  padding: 20px 36px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  background-color: #f0f0f0;
  color: #000;
  margin-right: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.tab-button:hover {
  background-color: #e0e0e0;
  color: var(--primary-color);
  transform: translateY(-2px);
}
.tab-button.active {
  background-color: var(--primary-color);
  color: #fff;
}
.content-paragraph {
  margin-top: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
}
.content-wrapper {
  position: relative;
  min-height: 120px;
}
.content-paragraph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* responsive tweaks kept for key breakpoints */
@media (max-width: 768px) {
  .tab-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .about-section p {
    font-size: 1rem;
  }
}

/* keep keyframes used by any active code (none explicitly required by scanned files, omitted to reduce size) */

/* .banner-1 {
  background-image: url("../img/banner/banner1.webp");
  /* linear-gradient(rgba(0, 0, 0, 0.6)); */
/* background-position: center !important;
  background-size: cover !important;
  background-blend-mode: overlay;
} */

/* .banner-2 {
  background-image: url('../img/banner/banner2.webp');
  background-position: center !important;
} */
/* 
.banner-3 {
  background-image: url("../img/banner/banner3.webp");
  background-size: cover !important;
  background-position: center !important;
} */

.banner-4 {
  background-image: url("../img/banner/banner1.webp"),
    linear-gradient(rgba(0, 0, 0, 0));
  background-position: center !important;
  background-size: cover !important;
  background-blend-mode: overlay;
}
.banner-1 {
  background-image: url("../img/banner/banner1.webp"),
    linear-gradient(rgba(0, 0, 0, 0));
  background-position: center !important;
  background-size: cover !important;
  background-blend-mode: overlay;
}
.navbar-toggler {
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
}
.navbar-top li {
  font-size: 0.8rem;
}
.navbar-top {
  background-color: black;
}
.navbar-logo {
  width: 100%;
  max-width: 150px;
  margin: 1rem 3rem;
}
.navbar-wrapper {
  width: 100%;
}
.navbar-content {
  flex: 1; /* Allows the content to fill the remaining space */
}
.dropdown-menu {
  background-color: black;
}
.dropdown-item:hover {
  background-color: #343a40; /* Darker hover for dropdowns */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Corresponds to Bootstrap's 'lg' breakpoint */
  .navbar-nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.25rem;
  }
  .navbar-logo {
    margin: 1rem;
  }
}

.dropdown-menu {
  background-color: black;
}
.carousel-item {
  width: 100%;
  height: 90vh; /* Directly sets the height to 70% of the viewport height */
  background-size: cover;
  background-position: center;
}
/* Filter / main-filter styling */
.filter-container {
  position: absolute;
  left: 0;
  right: 0;
  /* sit overlapping the bottom of the carousel by about half the filter height */
  bottom: -72px;
  display: flex;
  justify-content: center;
  z-index: 40;
  padding: 0 1rem;
}

.main-filter {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.main-filter .d-flex {
  gap: 12px;
  align-items: stretch;
}

.main-filter a {
  font-size: 20px;
}

/* Equal-size buttons inside the main filter */
.main-filter .filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1rem;
  min-width: 180px;
  height: 76px;
  border-radius: 10px;
  font-size: 20px !important;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex: 1 1 0; /* let them distribute evenly */
  white-space: nowrap;
}

.main-filter .filter-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .filter-container {
    position: static;
    bottom: auto;
    padding: 1rem;
  }

  .main-filter {
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .main-filter .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .main-filter .filter-btn {
    width: 100%;
    min-width: unset;
    height: 64px;
  }
}

/* We no longer need the duplicate .carousel-item rule */

.carousel-item .container {
  /* The large padding is removed as it's no longer needed to create height.
           We let flexbox do the vertical centering. A smaller padding can be kept for spacing. */
  padding: 6rem 0;
}

@media (max-width: 48rem) {
  /* You can set a different height for mobile if you like */
  .carousel-item {
    height: 90vh;
  }

  .carousel-item .container {
    /* Adjust padding for the new mobile height */
    padding: 6rem 1rem;
    z-index: 1;
  }

  /* #page-overview .carousel-item {
    /* padding: 2.5rem 0 0.8rem; }*/
}

.carousel-item h1 {
  max-width: 40rem;
}

/* This rule is key for vertically centering the content */
.carousel .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#page-overview .carousel-item .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-indicators [data-bs-target].active {
  opacity: 1;
  background-color: #fff;
  /* Active dot color */
}

.carousel-indicators {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  flex-direction: column;
  /* stack vertically */
  gap: 12px;
  margin: 0;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  /* dark circle */
  opacity: 0.5;
  transition: opacity 0.3s;
  border: none;
}

@media (max-width: 50rem) {
  .carousel-indicators {
    transform: translateY(0);
    flex-direction: row;
    top: 90%;
  }

  .navbar-nav {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    padding: 2rem;
    margin-inline: 1rem;
    background-color: rgba(0, 0, 0);
  }
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #000;
}

.logo {
  width: 100%;
  max-width: 150px;
}

.navbar-logo {
  width: 100%;
  max-width: 150px;
  margin-block: 1rem;
  margin-right: 3rem;
  margin-left: 3rem;
}

@media (max-width: 48rem) {
  .navbar-logo {
    margin: 1rem;
  }
}

.navbar-wrapper {
  width: 100%;
}

.navbar-content {
  width: 100%;
}

.navbar-toggler {
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar {
  position: absolute;
  width: 100%;
  z-index: 20;
}
.navbar-top li {
  font-size: 0.8rem;
}
.navbar-logo {
  width: 100%;
  max-width: 150px;
  margin: 1rem 3rem;
}
.navbar-wrapper {
  width: 100%;
}
.navbar-content {
  flex: 1; /* Allows the content to fill the remaining space */
}
.dropdown-menu {
  background-color: black;
}
.dropdown-item:hover {
  background-color: #343a40; /* Darker hover for dropdowns */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Corresponds to Bootstrap's 'lg' breakpoint */
  .navbar-nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.25rem;
  }
  .navbar-logo {
    margin: 1rem;
  }
}

.dropdown-menu {
  background-color: black;
  z-index: 15;
}
.carousel-item {
  width: 100%;
  height: 90vh; /* Directly sets the height to 70% of the viewport height */
  background-size: cover;
  background-position: center;
}
.divide {
  margin-top: 0px;
  height: 100px;
  margin-top: 0px;
  background-color: #1a73e8;
}
@media screen and (max-width: 900px) {
  .divide {
    display: none;
  }
}

/* partner slider */

/* .partners {
  background-image: url("../img/strip.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5rem;
  transform: translateY(-70%);
}

@media (max-width: 48rem) {
  .partners {
    padding: 1rem 0;
    transform: translateY(0);
    margin-block: 1rem;
  }
} */

.bi {
  color: #ffff;
}

a.nav-link {
  color: #ffff;
}

a.nav-link:hover {
  color: var(--primary-color);
}

/* about section */

.about-image-wrapper {
  position: relative;
  width: 100%;
}

/* .about-image-wrapper img {
  position: absolute;
  max-width: 100%;
} */

.experience-wrap {
  background-image: url("../img/shape-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 230px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 80px;
}

.img-1 {
  position: relative;
}

.img-2 {
  position: absolute;
  right: 0;
  left: auto;
  top: 80px;
}

.img-3 {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  z-index: -1;
}

/* Red strip above experience */
.img-4 {
  position: absolute;
  top: -50px;
  right: 15px;
}

@media (max-width: 48rem) {
  .img-1 {
    position: relative;
    width: 100%;
    margin-block: 5rem;
  }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .about-image-wrapper {
    margin-block: 5rem;
  }
}

.projects {
  margin: 110px 0 0 0;
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* services section */

.hover-effect:hover * {
  color: #fff;
  transition: all 0.5s ease-in;
}

.service-card {
  box-shadow: -8px 0 24px -8px rgba(0, 0, 0, 0.12),
    8px 0 24px -8px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem 1rem;
  margin: 1rem 0;
  position: relative;
  padding-block: 1.5rem;
  /* background: url("../img/truck.jpg"); */
  z-index: 1;
}

.air-freight {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/plane.webp");
  background-size: cover;
}
.service-card:hover {
  color: white;
}
.sea-freight {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/cargo2.webp");
  background-size: cover;
}
.customs-clearance {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/customs.webp");
  background-size: cover;
}

.warehousing {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/warehouse2.webp");
  background-size: cover;
}
.project-cargo {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/crane6.webp");
  background-size: cover;
}

.sp-equipment {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    /* light black overlay */ url("../img/truck4.webp");
  background-size: cover;
}

/* Make the row behave like a grid */

/* top line  */
.service-card::before {
  content: "";
  height: 4px;
  width: 70%;
  position: absolute;
  background-color: var(--primary-color);
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  z-index: 1000;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  border-radius: 5px;
}

.service-card:hover::after {
  background: none;
  transition: all 0.5s ease-in;
}

.service-card::after:hover {
  background-color: none;
}

.service-card-content > p {
  max-inline-size: 18rem;
}

.bg-ship-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 10rem;
  opacity: 0.1;
}

.service-card-icon {
  width: 70px !important;
}

/* why choose us */
.why-choose-us {
  background-image: url("../img/banner/bg-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 7rem;
}

.why-choose-us p {
  color: var(--light-gray);
}

.wcs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.wcs-single-section {
  width: 100%;
  max-width: 400px;
}

.wcs-wrapper > div {
  flex: 1 1 20rem;
}

.blue-icon {
  width: 100%;
  max-width: 4rem;
}

.blue-icon > img {
  z-index: 2;
}

.delivery-man-img {
  width: 100%;
}

/* .blue-icon::before{
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -5px;
  left: -5px;
  border-radius: 50%;
  background-color: #fff;
} */

/* pricing section */

.pricing-section {
  background-image: url("../img/bg-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  background-position-y: bottom;
}

.price-card {
  box-shadow: -8px 0 24px -8px rgba(0, 0, 0, 0.12),
    8px 0 24px -8px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  padding-block: 3rem;
  padding-inline: 5rem;
  margin: 1rem;
}

.price-card-wrapper {
  padding-top: 5rem;
}

.price-card > ul > li {
  margin-block: 1rem;
}

.pricing-section {
  padding: 7rem 0 7rem;
}

.price {
  padding-top: 1.2rem;
}

.price-plan-title {
  max-width: 9.5rem;
}

sup {
  line-height: 3rem;
}

.price-span {
  margin-left: -26px;
}

/* testimonial section */
.testimonial-section {
  background-image: url("../img/banner/testimonial-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
}

.testimonial-wrapper .item {
  padding-top: 7rem;
}

.single-testimonial {
  border-radius: 5px;
  background-color: var(--lightest-gray);
  padding-inline: 2.5rem;
}

.single-testimonial img {
  max-width: 70px !important;
}

.single-testimonial .icon {
  transform: translate(0, -39px);
}

.testimonial-content {
  border-left: 3px solid var(--primary-color);
  padding-left: 7px;
}

.client-wrap {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

/* contact  us */
.contact-section {
  background: url("../img/banner/contact-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 7rem;
  padding: 120px 0px 120px 0px;
  display: flex;
  align-items: center;
}

.contact-box {
  background: url("../img/orange-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-inline: 3.5rem;
  padding-block: 3rem;
  width: 100%;
  max-width: 39.5rem;
  margin-left: 18%;
}

@media (max-width: 786px) {
  .contact-box {
    margin: 0;
  }

  .contact-section {
    padding-inline: 0;
  }
}

.contact-details .icon {
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100vh;
}

/* faq section */

.faq-section {
  padding-block: 7rem;
}

.accordion-item {
  margin-bottom: 30px;
  box-shadow: -8px 0 24px -8px rgba(0, 0, 0, 0.12),
    8px 0 24px -8px rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 0.5rem;
}

/* footer section */

.footer-section {
  margin-top: 50px;
  padding: 0;
  color: #000000;
  background-color: white;
}

.footer-top {
  /* background: url("../img/footer-bg.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

footer .icons i {
  background-color: #ced3e0;
  /* color: #69727d; */
  color: #000;
  padding: 15px;
  border-radius: 50%;
  margin-top: 2rem;
}

footer .icons i:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

footer ul {
  list-style: none;
  padding: 0;
  /* color: var(--light-gray); */
  color: #000;
  line-height: 35px;
}

footer input {
  background: #20252c;
  border: none;
  color: var(--primary-color);
  padding: 1rem;
  width: 100%;
  border-radius: 0.3rem;
}

footer input[type="email"] {
  text-indent: 8%;
}

footer input:focus {
  outline: none;
}

.mail-wrapper {
  position: relative;
}

footer {
  padding-block: 6rem;
}

.footer-section a {
  text-decoration: none;
  /* color: var(--light-gray); */
  color: #000;
  transition: 0.2s ease-in-out;
}

.footer-section a:hover {
  color: var(--primary-color);
}

footer span {
  position: absolute;
  top: 15px;
  left: 18px;
}

.forward-button {
  position: absolute;
  top: 15px;
  right: 20px;
}
section.footer-section {
  max-width: 100% !important;
  width: 100vw !important; /* Force it to be 100% of the viewport width */
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* animation slider */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;

  .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }

  .slide {
    height: 100px;
    width: 250px;
  }
}

/* @keyframes mymove {
  0% {background: url("../img/banner/banner1.webp");}
  50%{background: url("../img/banner/banner2.webp");}
  100% {background: url("../img/banner/banner3.webp");}
} */

/* cbm */
.result-box {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  font-weight: 500;
}

.unit-toggle {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.cbm-section label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-block: 0.5rem;
}

.cbm-wrapper-container {
  display: flex;
  justify-content: center;
}

.cbm-wrapper-container .row {
  width: 100%;
  max-width: 70rem;
}

.cbm-floating-button h4 {
  color: #fff;
  margin: 0;
  width: fit-content;
  padding: 1.5rem 2.5rem;
}

.cbm-section {
  transform: translateY(-15%);
}

@media (max-width: 48rem) {
  .cbm-section {
    transform: translateY(0);
  }
}

ul.border-circle {
  list-style: none;
}

ul.border-circle li {
  position: relative;
  padding-left: calc(1em + 12px);
}

ul.border-circle li::before {
  content: "";
  top: 0.55em;
  left: 0;
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  box-sizing: border-box;
}

.side-navigation a {
  text-decoration: none;
  color: white;
  transition: 0.2s ease-in-out;
}

.side-navigation a:hover {
  padding-left: 8px;
}

.side-navigation-logo {
  width: 100%;
  max-width: 10rem;
}

.form .form-control {
  background-color: var(--lightest-gray);
  border-radius: 0;
  padding-block: 0.7rem;
  padding-left: 2rem;
}

.form .form-control::placeholder {
  font-size: 0.9rem;
}

.contact-form-wrapper {
  padding: 5rem;
}

.form-content {
  padding: 3rem;
}

.form .col-md-6,
.col-12 {
  position: relative;
}

.form .input-badge {
  position: absolute;
  left: 15px;
  bottom: 0;
  top: 8px;
}

@media (max-width: 48rem) {
  .contact-form-wrapper {
    padding-inline: 1.5rem;
  }

  .form-content {
    padding-inline: 0.25rem;
  }
}

.form-content i {
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  border-radius: 0.25rem;
}

#heroCarousel {
  position: relative;
}

.custom-container {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  z-index: 11;
}

@media (max-width: 768px) {
  .custom-container {
    position: static;
    width: 100%;
  }
}

.about-us-wrapper {
  font-family: var(--body-font);
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header .about-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin-bottom: 0.5rem;
}

.about-header .about-main-heading {
  font-size: 3rem;
  color: var(--dark-blue);
  font-family: var(--heading-font);
}

.about-section {
  padding-block: 3rem;
}

.about-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.about-section-title::after {
  content: "";
  width: 150px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: #555;
}

.about-vision-mission {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: #fff;
  padding: 2.5rem;
  text-align: center;
  border-radius: 0.5rem;

  box-shadow: -8px 0 24px -8px rgba(0, 0, 0, 0.08),
    8px 0 24px -8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-card .about-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-card .about-card-title {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-grid-item {
  background-color: var(--lightest-gray);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.about-grid-item:hover {
  background-color: #fff;
  border-color: var(--primary-color);
}

.about-grid-item .about-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-grid-item .about-item-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.about-certifications-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.about-certifications-list li span {
  background: #e9ecef;
  color: #495057;
  font-family: var(--body-font);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

/* .about-certifications-list li span:hover {
  background-color: #0d6efd;
  color: #fff;
} */

@media (min-width: 48rem) {
  .about-vision-mission {
    flex-direction: row;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about-core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.careers-hero-light {
  background-color: #f8f9fa;
  padding: 6rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.careers-hero-light .careers-hero-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.careers-hero-light .careers-hero-subtitle {
  font-family: var(--body-font);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.careers-main-content {
  padding: 5rem 0;
}

.careers-section-title {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.careers-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.careers-image {
  width: 100%;
  height: 100%;
  max-height: 550px;
  border-radius: 0.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center;
}

.careers-benefits-list {
  list-style: none;
  padding-left: 0;
}

.careers-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.careers-benefits-list .careers-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.careers-benefits-list h4 {
  font-family: var(--heading-font);
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.careers-benefits-list p {
  margin-bottom: 0;
  color: #555;
}

.careers-cta-light {
  background-color: var(--lightest-gray);
  border: 1px solid #e0e0e0;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 4rem;
  font-family: "Poppins", sans-serif;
}

.careers-cta-light h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}

.careers-cta-light .careers-contact-link {
  display: block;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.careers-cta-light .careers-contact-link:hover {
  color: var(--primary-color);
}

.careers-cta-light .careers-contact-link i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

@media (max-width: 991px) {
  .careers-hero-light {
    padding: 4rem 1rem;
  }
  .careers-hero-light .careers-hero-title {
    font-size: 2.5rem;
  }
  .careers-main-content {
    padding: 3rem 1rem;
  }
  .careers-section-title {
    font-size: 2.2rem;
    text-align: center;
    .careers-image-col {
      order: -1;
    }
    .careers-text-col {
      margin-top: 3rem;
    }
    .careers-image {
      max-height: 400px;
    }
  }
}

@media (max-width: 576px) {
  .careers-hero-light .careers-hero-title {
    font-size: 2rem;
  }
  .careers-hero-light .careers-hero-subtitle {
    font-size: 1.1rem;
  }
  .careers-cta-light {
    padding: 2rem 1.5rem;
  }
  .careers-cta-light h3 {
    font-size: 1.5rem;
  }
  .careers-cta-light .careers-contact-link {
    font-size: 1.1rem;
  }
}

/* --- Attractive Privacy Policy Page Styles --- */
/* Scoped to .privacy-policy-page to prevent conflicts */

.privacy-policy-page {
  font-family: "Poppins", sans-serif; /* A more modern font */
  line-height: 1.7;
  margin: 0;
  color: #4a4a4a; /* Softer text color */
  background-color: #f8f9fa; /* Lighter, cleaner background */
}

.privacy-policy-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* --- Stunning Header --- */
.privacy-policy-page header {
  background: linear-gradient(
    45deg,
    #1a73e8,
    #1c70de
  ); /* Attractive gradient */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.privacy-policy-page header h1 {
  margin: 0;
  font-size: 3em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.privacy-policy-page header p {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 300;
  opacity: 0.9;
}

/* --- Main Content Styling --- */
.privacy-policy-page main {
  padding: 50px 20px;
}

/* --- Modern Floating Cards for Sections --- */
.privacy-policy-page .policy-section {
  background: #fff;
  margin-bottom: 35px;
  padding: 40px;
  border-radius: 15px; /* Softer corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 30px; /* Space between icon and content */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

/* --- HOVER STYLE for Cards --- */
.privacy-policy-page .policy-section:hover {
  transform: translateY(-8px); /* Lift effect */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); /* Stronger shadow on hover */
}

/* --- Polished Icon Style --- */
.privacy-policy-page .policy-section .icon {
  flex-shrink: 0;
  background: linear-gradient(45deg, #1a73e8, #1c70de);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
  transition: transform 0.3s ease;
}

/* --- HOVER STYLE for Icons --- */
.privacy-policy-page .policy-section:hover .icon {
  transform: rotate(15deg) scale(1.1);
}

.privacy-policy-page .policy-section .content {
  flex-grow: 1;
}

.privacy-policy-page .policy-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #1d3557; /* Strong, dark blue */
  font-size: 1.7em;
  font-weight: 600;
}

.privacy-policy-page .policy-section p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* --- Attractive List Styling --- */
.privacy-policy-page .policy-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-policy-page .policy-section ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.privacy-policy-page .policy-section ul li:last-child {
  border-bottom: none;
}

/* Custom bullet points for the list */
.privacy-policy-page .policy-section ul li::before {
  content: "\f058"; /* Font Awesome check-circle icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: #3a7bd5;
}

.privacy-policy-page .policy-section ul li strong {
  color: #1d3557;
  font-weight: 600;
}

/* --- Special Styling for Contact Section --- */
.privacy-policy-page .contact-section {
  background-color: #edf6ff;
}

.privacy-policy-page .contact-info {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.privacy-policy-page .contact-info p {
  margin: 8px 0;
  font-size: 1.1em;
}

/* why choose css */
/* Scoped only for Why Choose Us Section */

/* --- Why Choose Section Styling --- */

/* Section background with subtle world map overlay */
.why-choose-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafc, #ffffff);
}

.why-choose-section .world-map-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  height: 1200px;

  opacity: 0.05;
  transform: translateX(-50%) scale(1);
  animation: slow-zoom 30s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes slow-zoom {
  from {
    transform: translateX(-50%) scale(1);
  }
  to {
    transform: translateX(-50%) scale(1.1);
  }
}

/* Content */
.why-choose-section .letter-spacing {
  letter-spacing: 2px;
}

.why-choose-section .feature-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.why-choose-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.why-choose-section .btn {
  border-radius: 30px;
  font-weight: 600;
}

.why-choose-section .why-choose-img img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-choose-section .why-choose-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.why-choose-section .why-choose-img img {
  max-height: 380px; /* keeps image elegant */
  object-fit: cover;
  width: 100%;
}

.why-choose-section .btn {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-choose-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.u3kpzs {
  margin: 0 auto 20px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Scoped only to this section */
.tru-tech-section {
  background: linear-gradient(135deg, #f8faff, #eef5ff);
  font-family: inherit;
}
.tru-tech-section h2 {
  color: #0d6efd;
}
.tru-tech-section .intro {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}
.tru-tech-section .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tru-tech-section .feature {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}
.tru-tech-section .feature:hover {
  transform: translateY(-5px);
}
.tru-tech-section .feature i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}
.tru-tech-section .value-security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.tru-tech-section .value,
.tru-tech-section .security {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.tru-tech-section .value h4,
.tru-tech-section .security h4 {
  color: #0d6efd;
  margin-bottom: 1rem;
}
.tru-tech-section .cta {
  text-align: center;
}
.tru-tech-section .cta a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.tru-tech-section .btn-primary {
  background: #0d6efd;
  color: #fff;
}
.tru-tech-section .btn-primary:hover {
  background: #084298;
}
.tru-tech-section .btn-outline {
  border: 2px solid #0d6efd;
  color: #0d6efd;
}
.tru-tech-section .btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}
.tru-tech-section .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 992px) {
  /* lg breakpoint */
  .tru-tech-section .features {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
}

/* extras */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.icon-circle {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
}

/* Paragraph Styling */
.why-choose-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555; /* darker than text-muted */
  margin-bottom: 1rem;
}

/* List Styling */
.why-choose-section ul {
  padding-left: 1rem;
}
.why-choose-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #444;
  position: relative;
  padding-left: 1.4rem;
}
.why-choose-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd; /* bootstrap primary blue */
  font-weight: bold;
}
.airfreight-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem;
  margin-bottom: 70px;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  grid-template-areas:
    "tall small1"
    "tall small2";
}
.hero-img-tall {
  grid-area: tall;
  border-top-right-radius: 120px;
  border-bottom-left-radius: 120px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-small-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-area: small1 / small2 / span 2 / span 1;
}
.hero-img-small {
  border-top-left-radius: 120px;
  border-bottom-right-radius: 120px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-img-tall img,
.hero-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  font-family: "Poppins", sans-serif;
}
.hero-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}
.hero-paragraph .highlight-text {
  font-weight: 700;
  color: #0d6efd;
}

/* Key Capabilities Parallax */
.key-capabilities {
  background: url("../img/logistic2.webp") center center / cover no-repeat fixed;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
}
.key-capabilities .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.key-capabilities > * {
  position: relative;
  z-index: 2; /* ensures content is above overlay */
}
.key-capabilities h2,
.key-capabilities h5,
.key-capabilities p {
  color: #fff;
}

/* Icons */
.icon-circle2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}
.feature-icon:hover .icon-circle2,
.capability-item:hover .icon-circle2 {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1296px) {
  .airfreight-hero {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .airfreight-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0rem;
  }
  .hero-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "tall" "small1" "small2";
  }
  .hero-text {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-img-tall,
  .hero-img-small {
    width: 95%;
    height: auto;
  }
  .hero-paragraph {
    font-size: 1rem;
    line-height: 1.6;
  }
  .key-capabilities {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .hero-img-small,
  .hero-img-tall {
    display: none;
  }
  .airfreight-hero {
    padding-top: 0rem;
  }
}

/* 
About page  */

/* ========================= */
.about-main-heading {
  font-size: 2rem; /* bigger, bold heading */
  font-weight: 600;
  line-height: 1.1;
  color: #0d6efd; /* primary brand color */
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.about-section p {
  font-size: 1.2rem; /* slightly larger paragraph for readability */
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
}

/* Buttons */
.tab-button {
  position: relative;
  padding: 20px 36px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 0px;
  background-color: #f0f0f0;
  color: #000000ff;
  margin-right: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Bottom-left triangle */
.tab-button::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 6px solid transparent; /* hidden by default */
  transition: all 0.3s ease;
}

.tab-button:hover {
  background-color: #e0e0e0;
  color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.tab-button.active {
  background-color: #0d6efd;
  color: white;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.tab-button.active::after {
  border-top: 8px solid #0d6efd; /* golden triangle */
}

/* Content Paragraphs */
.content-paragraph {
  margin-top: 20px;
  padding: 25px 30px;

  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  transition: all 0.3s ease;
}

.content-paragraph p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-main-heading {
    font-size: 2.2rem;
  }
  .about-section p {
    font-size: 1rem;
  }
  .tab-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* body{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
  background: #fff;
} */

/* ---------- Core Values ---------- */
.core-values {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.core-values h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
}

.core-values h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: rgba(82, 82, 82, 0.93);
  margin: 12px auto 0;
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.value-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.value-item i {
  font-size: 28px;
  color: rgba(82, 82, 82, 0.93);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover i {
  color: #e63946;
  transform: scale(1.2) rotate(5deg);
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111;
}

.value-item p {
  font-size: 1rem;
  margin: 0;
  color: #555;
}

/* ---------- Why TRU Section ---------- */
.why-tru {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.why-tru h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  display: inline-block;
  position: relative;
}

.why-tru h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #e63946;
  margin: 12px auto 0;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* horizontal line */
.why-grid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #ccc;
  z-index: 0;
}

.why-item {
  background: #fff;
  padding: 40px 20px 60px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* top circle */
.why-item::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #0d6efd;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 2;
}

.why-item i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.why-item:hover i {
  color: #0d6efd;
  transform: scale(1.2) rotate(-5deg);
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

/* number */
.why-item span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #888;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive fix */
@media (max-width: 768px) {
  .why-grid::before {
    display: none;
  }
  .why-item::before {
    display: none;
  }
}
.value-item i {
  font-size: 40px; /* increased size */
  color: #0d6efd;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-item i {
  font-size: 40px; /* increased size */
  color: #0d6efd;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
/* Core Values icons */
.value-item i {
  font-size: 40px;
  color: #777; /* default slight gray */
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover i {
  color: #0d6efd; /* blue on hover */
  transform: scale(1.2) rotate(5deg);
}

/* Why TRU icons */
.why-item i {
  font-size: 40px;
  color: #777; /* default slight gray */
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.why-item:hover i {
  color: #0d6efd; /* blue on hover */
  transform: scale(1.2) rotate(-5deg);
}

.content-paragraph {
  min-height: 120px; /* adjust depending on the tallest content */
  transition: opacity 0.3s ease;
}
.content-wrapper {
  position: relative;
  min-height: 120px; /* ensures stable height */
}

.content-paragraph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.about-certifications-list {
  list-style: none;
  display: flex;
  gap: 2rem; /* space between items */
  padding: 0;
  justify-content: center; /* center items horizontally */
}

.about-certifications-list li {
  display: flex;
  flex-direction: column; /* stack icon above text */
  align-items: center; /* center horizontally */
  text-align: center;
  cursor: pointer; /* optional */
  transition: color 0.3s;
}

.about-certifications-list li i {
  font-size: 2rem; /* bigger icon */
  margin-bottom: 0.5rem; /* space between icon and text */
  color: #777; /* icon color */
  transition: color 0.3s;
}

.about-certifications-list li span {
  font-size: 1rem;
  color: #000000ff; /* text color */
  transition: color 0.3s;
}

/* Example: change icon and text color on click */
/* .about-certifications-list li.active i,
.about-certifications-list li.active span {
  color: #ffffff; /* white when active */
/* } */

.index-ab h2 {
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  color: #1a73e8; /* A deep, professional blue */
  margin-bottom: 10px;
}

/* .industries-section-h2::after {
  content: "";
  width: 150px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
} */

.ab_sect_intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  text-align: center;
  font-family: "Inter";
}
.ab_head {
  position: relative;
  display: inline-block; /* Keeps underline centered to text */
  padding-bottom: 10px; /* Space for the underline */
}

.ab_head::after {
  content: "";
  width: 350px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 35%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.about-certifications-list li {
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-certifications-list li .logo-box {
  width: 120 px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* optional: makes box visible */
  border-radius: 8px; /* optional: rounded corners */
  overflow: hidden; /* hides any logo overflow */
}

.about-certifications-list li img,
.about-certifications-list li i {
  width: 60%;
  height: 60%;
  object-fit: contain; /* ensures scaling inside box */
}

.about-certifications-list li span {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: block;
  text-align: center;
}

.titanium_head {
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  color: #1a73e8; /* A deep, professional blue */
  margin-bottom: 10px;
}
/* Compact, clean filter layout scoped to this file */

 .filter-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -78px;
  display: flex;
  justify-content: center;
  z-index: 60;
  padding: 0 1rem;
}

.main-filter {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(247, 247, 247, 0.819);
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

 .filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-items: stretch;
}
 .filter-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.filter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
  background:#1a73e8;
  color: white;
}
.filter-card:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.12);
  outline-offset: 2px;
}
.filter-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;

  flex: 0 0 auto;
}
.filter-card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.filter-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.filter-card p {
  margin: 0;
  font-size:1rem;
  color: rgba(17, 24, 39, 0.812);
}
/* action chevron */
 .filter-card-action {
  margin-left: auto;
  color: rgba(17, 24, 39, 0.6);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  transition: transform 0.12s ease, color 0.12s ease;
}
.filter-card-action:hover {
  transform: translateX(3px);
  color: var(--primary-color, #1a73e8);
}
@media (max-width: 900px) {
 .main-filter {
    width: 95%;
  }
   .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
   .filter-container {
    position: static;
    bottom: auto;
    padding: 1rem 0;
  }
   .main-filter {
    width: 98%;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
 .filter-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
   .filter-card {
    padding: 10px 12px;
    border-radius: 10px;
  }
   .filter-card-icon {
    width: 48px;
    height: 48px;
  }
   .filter-card-icon img {
    width: 28px;
    height: 28px;
  } .filter-card p {
    display: none;
  }
}
