* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  color: #000;
}

/* for web page scroll */
/* Scrollbar width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #111;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
  background: #e11d2e;
  border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #c91424;
}

/* end webpage scroll */
body {
  overflow-x: hidden;
  overflow-y: scroll;
}

/* ================= PAGE BANNER ================= */

.page-banner {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 35%,
      rgba(0, 0, 0, 0.35) 65%,
      rgba(0, 0, 0, 0) 100%);
}

.banner-content {
  position: relative;
  max-width: 1200px;
  /* margin: auto; */
  padding: 0 20px;
  color: #fff;
}

.banner-tag {
  background: #e11d2e;
  padding: 6px 14px;
  font-family: Inter;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.banner-tag a {
  text-decoration: none;
  font-family: Inter;
  font-family: Inter;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: white;
}

.banner-title {
  /* font-family: Poppins; */
  font-weight: 500;
  /* font-size: 50px; */
  font-size: 47px;
  line-height: 72px;
  max-width: 768px;
  color: #fff;
}

.banner-title span {
  color: #e11d2e;
}

.banner-desc {
  font-family: Inter;
  /* font-size: 24px;
  line-height: 32px;
  color: #e5e7eb; */
      font-size: 20px;
    line-height: 32px;
    color: #d8d9db;
  margin-top: 20px;
  max-width: 790px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 12px 22px;
  background: #e11d2e;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
  background: #c91022;
  color: #fff;
}

@media (max-width: 992px) {
  .page-banner {
    height: 520px;
  }

  .banner-title {
    font-size: 43px;
    line-height: 54px;
  }

  .banner-desc {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .page-banner {
    height: 420px;
  }

  .banner-title {
    font-size: 34px;
    line-height: 40px;
  }

  .banner-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .banner-btn {
    font-size: 16px;
    padding: 10px 18px;
  }
}

.icon-box {
  width: 64px;
  height: 64px;
  background: #e11d2e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 28px;
}

/* ====================================navbar============================== */

.navbar {
  background: #000;
  padding: 7px 24px;
  width: 100%;
  border-radius: 0px;
  position: fixed;
  top: 0;
  left: 0;
  /* z-index: 1000; */
  z-index: 4000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.nav-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.logo {
  height: 100%;
  width: 110px;
  /* background: #fff; */
  border-radius: 4px;
  overflow: hidden;
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #e11d2e;
}


.quote-btn {
  background: #e11d2e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #c91424;
  text-decoration: none;
  color: #fff;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;

  position: relative;
  z-index: 3000;

  padding: 8px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .navbar {
    padding: 10px 16px;
  }

  /* .nav-menu {
    position: fixed; 
    left: -100%;
    width: 100%;
    background: #000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    transition: left 0.3s ease;

    z-index: 1000;


    pointer-events: none;
  }

  .nav-menu.active {
    left: 0;
    pointer-events: auto;
  } */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* 👈 HIDE INITIALLY */
    width: 100%;
    /* height: 100vh; */
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 30px; */
    gap: 7px;
    transition: 0.3s ease;
    z-index: 2000;
    top: 80px;
    padding: 20px 0px
  }

  .nav-menu.active {
    left: 0;
    /* 👈 SHOW WHEN CLICK */
  }


  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
  }

  /* .menu-toggle {
    display: block;
  } */
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3000;
    /* MUST be higher than menu */
  }

  .quote-btn {
    display: none;
  }

}

/* =============================================footer================================================ */

.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 0px 20px;
}

.footer-container {
  max-width: 90%;
  margin: auto;
  display: grid;

  grid-template-columns: repeat(4, 1fr);
  /* gap: 100px; */
  gap: 50px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

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

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

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #111;
  border-radius: 6px;
}

.social-icons img {
  width: 18px;
  height: 18px;
}

.social-icons a:hover {
  background: #e11d2e;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #111;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e11d2e;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding: 15px 20px;
  font-size: 14px;
  color: #ccc;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .footer-bottom {
    font-size: 12px;
    padding: 12px 15px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    font-size: 13px;
    padding: 14px 18px;
  }
}

@media (min-width: 1200px) {
  .footer-bottom {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    margin: auto;
    margin-bottom: 20px;
  }
}

/* ===================================Homepage hero=================================== */
.hero {
  padding: 100px 20px;
  background: #f3f3f3;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
}

.hero-title-box {
  background: #e11d2e;
  color: white;
  text-align: center;
  padding: 30px;
  margin-bottom: 40px;
}

.hero-title-box h1 {
  font-family: "Source Serif Pro", serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-image img {
  width: 420px;
  margin-top: 0px;
}

.hero-text-area {
  max-width: 600px;
}

.hero-text-area p {
  margin-bottom: 25px;

  color: rgba(0, 0, 0, 0.42);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #e11d2e;
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: white;
  color: #c81624;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.btn-secondary {
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  color: black;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
  background: #e11d2e;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    /* margin-top: -80px; */
    margin-top: -64px;
    width: 280px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* =============================================solution  section================================= */

.solutions {
  padding: 80px 20px;
  background: rgba(225, 29, 46, 0.05);
  position: relative;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.solutions-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.66);
  margin-bottom: 60px;
  line-height: normal;
}

.solutions-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.solution-card {
  background: #0f0f0f;
  width: 203px;
  min-height: 259px;
  padding: 34px 24px;
  border-radius: 10px;
  border-top: 1.6px solid #e11d2e;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.solution-card h3 {
  width: 85%;
  color: #fff;
  text-align: center;
  font-size: 20px;
    /* font-size: 23px; */
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.solution-card p {
  color: #99a1af;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.solution-icon {
  width: 64px;
  height: 64px;
  border: 2px solid #e11d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.active-card .solution-icon {
  background: #e11d2e;
}

.active-card .solution-icon img {
  filter: brightness(0) invert(1);
}

.solution-card:hover .solution-icon {
  background: #e11d2e;
}

.solution-card:hover .solution-icon img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .solution-card {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .solutions-title {
    font-size: 26px;
  }

  .solution-card {
    width: 45%;
  }
}

.solutions {
  position: relative;
  padding: 80px 20px;
  background: rgba(225, 29, 46, 0.05);
  overflow: hidden;
}

.solutions-bg {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 0;
  opacity: 0.25;
}

.solutions-bg img {
  width: 300px;
  height: 320px;
  opacity: 1px;
}

.solutions-container {
  position: relative;
  z-index: 2;
}


@media (max-width: 480px) {
  .solutions {
    padding: 60px 16px;
  }

  .solutions-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .solution-card {
    width: 100%;
  }
}

/* ====================================================legacy section================================ */

.legacy-section {
  padding: 80px 20px;
  background: #fff;
}

.legacy-container {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.legacy-image {
  flex: 1;
}

.legacy-image img {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 18px;
  display: block;
}

.legacy-content {
  flex: 1;
  position: relative;
}

.legacy-title {
  /* font-family: Poppins; */
  font-weight: 500;
  /* font-size: 43px; */
   font-size: 40px;
  line-height: 60px;
  color: #000;
}

.legacy-title span {
  color: #e11d2e;
}

.legacy-text {
  font-family: Inter;
  font-size: 18px;
  line-height: 29px;
  color: #364153;
  margin-top: 15px;
}

.legacy-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;

  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #101828;
}

.feature-icon {
  width: 36px;
  height: 36px;

  background: #E11D2E !important;
  border-radius: 50%;

  display: flex;
  align-items: center;

  justify-content: center;
  color: #fff !important;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px !important;

  display: block;
  color: white;
}



.feature-icon2 {
  width: 36px;
  height: 36px;

  background: pink;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  flex-shrink: 0;
}

.feature-icon2 svg {

  display: block;

  width: 20px !important;
  height: 20px !important;

}

.feature-icon2 svg {
  width: 16px;
  height: 16px;
  display: block;
  color: white;
}

.groceries-img {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 332px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .legacy-container {
    gap: 40px;
  }

  .legacy-title {
    font-size: 40px;
    line-height: 52px;
  }

  .groceries-img {
    right: 40px;
    width: 260px;
  }
}

@media (max-width: 992px) {
  .legacy-container {
    flex-direction: column;
    text-align: center;
  }

  .legacy-image img {
    max-width: 100%;
  }

  .legacy-features {
    align-items: center;
  }

  .feature-item {
    justify-content: center;
  }

  .groceries-img {
    right: 0;
    bottom: -40px;
    width: 200px;
  }
}

@media (max-width: 768px) {
  .legacy-section {
    padding: 60px 20px;
  }

  .legacy-title {
    font-size: 32px;
    line-height: 42px;
  }

  .legacy-text {
    font-size: 16px;
    line-height: 26px;
  }

  .legacy-features {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .legacy-title {
    font-size: 26px;
    line-height: 36px;
  }

  .feature-item {
    font-size: 15px;
  }

  .groceries-img {
    display: none;
  }
}

/* ============================================================services section===================== */
.services-section {
  background: rgba(225, 29, 46, 0.05);
  padding: 100px 20px;
  text-align: center;
}

.services-title {
  font-family: "Source Serif Pro";
  font-weight: 600;
  /* font-size: 43px; */
    font-size: 43px;
  margin-bottom: 60px;
}

.services-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  background: #000;
  color: #fff;
  padding: 48px;
  border-radius: 10px;
  position: relative;
  text-align: left;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-left: 4px solid #e11d2e;
}

.service-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-card p {
  font-family: Inter;
  font-size: 20px;
  line-height: 32px;
  color: #d1d5dc;
  max-width: 850px;
}

@media (max-width: 1024px) {
  .services-title {
    font-size: 38px;
  }

  .service-card {
    padding: 40px;
  }

  .service-card p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .services-container {
    gap: 30px;
  }

  .service-card {
    padding: 30px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* =======================contact========================= */
.contact-section1 {
  width: 100%;
  padding: 100px 20px;
  /* background: rgba(225, 29, 46, 0.05); */
   background: rgba(225, 29, 45, 0.055);
  position: relative;

  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 337px;
  opacity: 0.3;
  pointer-events: none;
}

.contact-wrapper1 {
  max-width: 1270px;
  margin: auto;
}

.contact-heading {
  text-align: center;
  margin-bottom: 60px;
}

.contact-heading h2 {
  font-family: "Source Serif Pro", serif;
  /* font-size: 43px; */
  font-size: 43px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.contact-heading p {
  font-family: "Inter", sans-serif;
  /* font-size: 20px; */
  font-size: 17px;
  color: #4a5565;
}

.contact-container1 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  width: 50%;
}

.contact-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* =======================================icons====================================== */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  /* background: #f9fafb; */
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 24px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e11d2e;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================================== */

.contact-section {
  width: 100%;
  padding: 80px 20px;
  background: rgba(225, 29, 46, 0.05);
}


.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form-card {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  width: 100%;
  box-shadow:
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.submit-btn {
  background: #e11d2e;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}


.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.help-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.help-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.contact-why-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-why-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-why-list {
  list-style: none;
  padding: 0;
}

.contact-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #4a5565;
}

.contact-why-icon {
  width: 40px;
  height: 40px;
  background: rgba(225, 29, 46, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-card {
  background: #0f0f0f;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.social-icons span {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .nav-menu {
  left: 0;
} */
.nav-menu {
  left: -100%;
}



/* ================= TABLET (1024px) ================= */

@media (max-width: 1024px) {

  .contact-heading h2 {
    font-size: 36px;
  }

  .contact-heading p {
    font-size: 18px;
  }

  .contact-container1 {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info {
    width: 100%;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}


/* ================= MOBILE (768px) ================= */

@media (max-width: 768px) {

  .contact-section1,
  .contact-section {
    padding: 60px 16px;
  }

  .contact-heading h2 {
    font-size: 28px;
  }

  .contact-heading p {
    font-size: 16px;
  }

  .contact-info h3 {
    font-size: 22px;
  }

  .info-card {
    padding: 16px;
    gap: 12px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  .contact-why-title {
    font-size: 20px;
  }

  .contact-why-item {
    font-size: 14px;
  }

  .contact-why-icon {
    width: 36px;
    height: 36px;
  }

  .social-card {
    padding: 20px;
  }

  .social-icons span {
    width: 36px;
    height: 36px;
  }

  .help-card {
    aspect-ratio: 4 / 3;
  }
}


/* ================= SMALL MOBILE (480px) ================= */

@media (max-width: 480px) {

  .contact-heading h2 {
    font-size: 24px;
  }

  .contact-heading p {
    font-size: 14px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group input,
  .form-group textarea {
    font-size: 12px;
  }

  .submit-btn {
    font-size: 13px;
  }

  .contact-why-item {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }
}


/* ================= BASE ================= */

/* ======================industries-section=========================== */
.industries-section {
  padding: 100px 20px;
  /* background: #f5f5f5; */
   background: #ffff;
  position: relative;
  text-align: center;
}

.industries-bg {
  position: absolute;
  left: 0;
  top: 60px;
  width: 300px;
  opacity: 0.3;
  pointer-events: none;
}

.industries-header h2 {
  font-family: "Source Serif Pro";
  font-size: 43px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.industries-header p {
  font-family: Inter;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 60px;
}

.industries-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.industry-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  text-align: left;
  color: #fff;
}

.industry-overlay h3 {
  /* font-family: Poppins; */
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 6px;
}

.industry-overlay p {
  font-family: Inter;
  /* font-size: 18px; */
  font-size: 15px;
  color: #e5e7eb;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.stats-section {
  background: #0a0a0a;
  padding: 40px 0;
}

.stats-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  flex: 1;
  min-width: 180px;
}

.stat-item h3 {
  font-family: "Poppins";
  font-size: 43px;
  font-weight: 400;
  color: #e11d2e;
  line-height: 48px;
}

.stat-item p {
  font-family: "Inter";
  font-size: 14px;
  color: #99a1af;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .stats-container {
    justify-content: center;
    gap: 30px;
  }

  .stat-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 600px) {
  .stat-item {
    flex: 0 0 100%;
  }

  .stat-item h3 {
    font-size: 38px;
  }
}

.story {
  /* padding: 120px 10%; */
  padding: 91px 3%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.story-wrapper {
  /* max-width: 1440px; */
  margin: auto;

  display: grid;
  grid-template-columns: 524px auto;
  justify-content: space-between;
  align-items: start;
    gap: 26px;
  /* gap: 90px; */
}

.story-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-tag {
  background: #e11d2e;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 4px 16px;
  width: max-content;
}

.story-heading {
  /* font-family: Poppins; */
  font-weight: 500;
  /* font-size: 43px; */
  font-size: 43px;
  line-height: 52px;
  color: #000;
}

.story-heading span {
  color: #e11d2e;
}

.story-left p {
  font-family: Inter;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
}

.image-grid {
  display: grid;
  grid-template-columns: 254px 254px;
  grid-template-rows: 170px 170px 170px;
  gap: 16px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.img1 {
  grid-column: 1;
  grid-row: 1;
}

.img2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.img3 {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.img4 {
  grid-column: 2;
  grid-row: 3;
}

.story-decoration {
  position: absolute;
  left: -50px;
  bottom: 100px;
  width: 337px;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .story-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    justify-items: center;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .story {
    padding: 80px 20px;
  }

  .story-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .story-tag {
    margin: 0 auto;
  }

  .story-left p {
    font-size: 16px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-grid img {
    height: 200px;
  }

  .img1,
  .img2,
  .img3,
  .img4 {
    grid-column: auto;
    grid-row: auto;
  }

  .story-decoration {
    width: 200px;
  }
}

@media (min-width: 1800px) {
  .story-wrapper {
    max-width: 1700px;
    gap: 180px;
  }

  .story-heading {
    font-size: 56px;
    line-height: 60px;
  }

  .story-left p {
    font-size: 20px;
    line-height: 32px;
  }

  .image-grid {
    grid-template-columns: 300px 300px;
  }

  .story-decoration {
    width: 420px;
  }
}

/* =======================================================mv-section============================= */

.mv-sec-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.mv-sec-wrapper {
  background: #f7f1f1;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.mv-sec-bg-img {
  position: absolute;

  top: -60px;
  right: -150px;

  opacity: 0.9;

  bottom: 100px;
  width: 337px;
  opacity: 0.3;
  pointer-events: none;
}

.mv-sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.mv-sec-title {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  color: #000;
}

.mv-sec-subtitle {
  font-family: Inter, sans-serif;
  /* font-size: 20px; */
  font-size: 18px;
  color: #4a5565;
  margin-top: 8px;
}

.mv-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-sec-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.08),
    0px 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.mv-sec-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #e11d2e;
  border-radius: 16px 0 0 16px;
}

.mv-sec-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.mv-sec-card-header h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #000;
}

.mv-sec-icon {
  width: 48px;
  height: 48px;
  background: #e11d2e;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.mv-sec-desc {
  color: #364153;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  max-width: 450px;
  margin-bottom: 25px;
}

.mv-sec-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.mv-sec-tag {
  background: #f9fafb;
  border-radius: 10px;
  height: 92px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.tag-icon {
  font-size: 22px;
}

.tag-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  text-align: center;
}

@media (min-width: 2000px) {
  .mv-sec-container {
    max-width: 1500px;
  }

  .mv-sec-title {
    font-size: 56px;
  }

  .mv-sec-desc {
    font-size: 19px;
  }
}

@media (max-width: 1440px) {
  .mv-sec-container {
    max-width: 1100px;
  }
}

@media (max-width: 1200px) {
  .mv-sec-container {
    max-width: 1000px;
  }

  .mv-sec-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .mv-sec-grid {
    grid-template-columns: 1fr;
  }

  .mv-sec-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .mv-sec-title {
    font-size: 36px;
  }

  .mv-sec-subtitle {
    font-size: 18px;
  }

  .mv-sec-card {
    padding: 30px;
  }

  .mv-sec-desc {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mv-sec-wrapper {
    padding: 60px 16px;
  }

  .mv-sec-title {
    font-size: 28px;
  }

  .mv-sec-subtitle {
    font-size: 16px;
  }

  .mv-sec-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .mv-sec-tags {
    grid-template-columns: 1fr;
  }
}

/* ========================================spice section=============================== */

.spice-section {
  /* background: #f6f1f1; */
    background: #fff;
  padding: 100px 20px;
}

.spice-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.spice-title {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 10px;
}

.spice-title span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.spice-subtitle {
  font-family: Inter;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 50px;
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.spice-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 10px 15px rgba(0, 0, 0, 0.1);
}

.spice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .spice-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 55%,
      rgba(0, 0, 0, 0) 100%);

  z-index: 1;
} */

.spice-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;

  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );

  z-index: 2;
  padding: 15px;
}
.spice-content {
  width: 100%;
}

/* .spice-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  text-align: left;
  z-index: 2;
} */


.spice-overlay h3 {
  font-family: Poppins;
  font-size: 22px;
  margin-bottom: 4px;
  color: #fff;
}

.spice-overlay p {
  font-family: Inter;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
  color: #dbd7d7;
}

.spice-content {
  width: 100%;
  text-align: left;
}

.spice-bar {
  display: block;
  width: 48px;
  height: 4px;
  background: #e11d2e;
  border-radius: 2px;
}

.spice-bottom {
  margin-top: 40px;
  font-family: Inter;
  font-size: 18px;
  color: #4a5565;
}

.spice-bottom strong {
  font-weight: 700;
}

.spice-btn-wrapper {
  margin-top: 20px;
}

.spice-btn {
  background: #e11d2e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}
.spice-btn:hover{
  color: #e11d2e;
  border: solid 1px;
  border-color: #e11d2e;
  background-color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media (min-width: 2000px) {
  .spice-container {
    max-width: 1400px;
  }
}

@media (max-width: 1024px) {
  .spice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .spice-title {
    font-size: 36px;
  }

  .spice-grid {
    grid-template-columns: 1fr;
  }

  .spice-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .spice-section {
    padding: 70px 16px;
  }

  .spice-title {
    font-size: 28px;
  }

  .spice-subtitle {
    font-size: 16px;
  }
}

/* ======================================capabilities=========================== */

.capabilities {
  background: rgba(225, 29, 46, 0.05);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.capabilities-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  opacity: 0.3;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
}

.section-header span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.section-header p {
  font-family: Inter;
  font-size: 20px;
  color: #4a5565;
  margin-top: 10px;
}

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

.capability-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;

  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 10px 15px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 48px;
  height: 48px;
  background: #e11d2e;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  font-size: 20px;
  flex-shrink: 0;
}

.capability-card h3 {
  font-family: Poppins;
  font-size: 22px;
  margin-bottom: 6px;
}

.capability-card p {
  font-family: Inter;
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
}

@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
  }

  .capability-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .capabilities {
    padding: 70px 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .capabilities-bg {
    display: none;
  }
}

/* ================================why choose=========================== */

.why-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.why-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 64px;
}

.why-title span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

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

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #e11d2e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon img {
  width: 20px;
}

.why-card h3 {
  /* font-family: Poppins; */
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.why-card p {
  font-family: Inter;
  font-size: 14px;
  color: #4a5565;
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 36px;
  }
}

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

  .why-title {
    font-size: 28px;
  }

  .why-card {
    padding: 28px 20px;
  }
}

.spice-bg-section {
  position: relative;
  width: 100%;
  min-height: 475px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
}

.spice-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.spice-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.25) 100%);

  z-index: 1;
}

.spice-bg-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
  width: 100%;
  color: white;
}

@media (min-width: 2000px) {
  .spice-bg-container {
    max-width: 1600px;
  }
}

@media (max-width: 1024px) {
  .spice-bg-section {
    padding: 100px 24px;
    min-height: 420px;
  }

  .spice-bg-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .spice-bg-section {
    padding: 80px 20px;
    min-height: 380px;
  }

  .spice-bg-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .spice-bg-section {
    padding: 70px 16px;
    min-height: 340px;
  }

  .spice-bg-container {
    padding: 0 16px;
  }
}

/* =============================================export==================================================== */

.export-sec {
  padding: 100px 20px;
  background: #f9fafb;
}

.export-container {
  max-width: 1340px;
  margin: auto;
}

.export-heading {
  text-align: center;
  margin-bottom: 60px;
}

.export-heading h2 {
  font-family: "Source Serif Pro";
  font-size: 43px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 10px;
}

.export-heading span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.export-heading p {
  font-family: Inter;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.export-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.export-card:hover {
  transform: translateY(-6px);
}

.export-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.export-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.export-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0) 100%);
}

.export-card-content {
  padding: 24px;
}

.export-card-content h3 {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
  color: #000;
}

.export-card-content p {
  font-family: Inter;
  font-size: 16px;
  line-height: 26px;
  color: #4a5565;
  margin-bottom: 15px;
}

.export-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.export-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: Inter;
  font-size: 14px;
  line-height: 20px;
  color: #364153;
}

.tick-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.export-line {
  width: 48px;
  height: 4px;
  background: #e11d2e;
  margin-top: 16px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .export-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .export-sec {
    padding: 60px 20px;
  }

  .export-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .export-heading p {
    font-size: 16px;
  }

  .export-grid {
    grid-template-columns: 1fr;
  }

  .export-img {
    height: 200px;
  }
}

.export-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.export-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.export-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: #e11d2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.export-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.export-sec {
  padding: 100px 20px;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.export-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.decor-right {
  top: -10px;
  right: 40px;
  width: 180px;
}

.decor-center {
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 220px;
  opacity: 0.08;
}

.export-container {
  max-width: 1340px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.mv-list {
  padding-left: 20px;
  margin: 0;
}

.mv-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #101828;
}

.mv-list li::marker {
  color: #e11d2e;
  font-size: 18px;
}

/* ============================================================================================================= */

.mv-sec-bg1-img {
  position: absolute;

  right: -100px;

  bottom: 10px;
  opacity: 0.9;

  width: 337px;
  opacity: 0.3;
  pointer-events: none;
}

/* ===============================================haw===================================================== */

.how-sec {
  background-color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 {
  font-family: "Source Serif Pro";
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.how-header span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.how-header p {
  font-family: Inter;
  font-size: 20px;
  color: #99a1af;
}

.how-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto auto;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.how-card {
  background: #1b1b1b;
  padding: 24px;
  border-radius: 16px;
  width: 200px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.how-card:hover {
  transform: translateY(-5px);
}

.step {
  font-size: 43px;
  color: #e11d2e;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-card h4 {
  font-family: Poppins;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.how-card p {
  font-family: Inter;
  font-size: 14px;
  color: #99a1af;
  line-height: 1.6;
}

.arrow {
  color: #e11d2e;
  font-size: 28px;
}

@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow {
    display: none;
  }

  .how-card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .how-header h2 {
    font-size: 32px;
  }

  .how-header p {
    font-size: 16px;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-card {
    height: auto;
  }
}

/* =====================================service 2nd last====================== */
.features-section {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #fdecec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-content h4 {
    font-size: 17px;
  }

  .feature-content p {
    font-size: 13px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 10px;
    gap: 18px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .feature-content h4 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }
}

/* =================================================cta section=============================== */
.cta-section {
  background: #f9fafb;
  padding: 100px 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.cta-box {
  background: #f2f4f7;
  padding: 60px 40px;
  text-align: center;
  border-radius: 8px;
  max-width: 832px;
  width: 100%;
}

.cta-box h2 {
  font-family: Poppins;
  font-size: 43px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 16px;
  color: #111;
}

.cta-box h2 span {
  color: #e11d2e;
}

.cta-box p {
  font-family: Inter;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  max-width: 670px;
  margin: auto;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-red {
  background: #e11d2e;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
}

.btn-red:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.3);
  color: black;
}

.btn-outline {
  border: 1.6px solid #d1d5dc;
  color: #000;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  background: #fff;
}

.btn-outline:hover {
  background: #e11d2e;
  color: #fff;
  border-color: #e11d2e;

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.2);
}

.cta-decor {
  position: absolute;
  right: 80px;
  top: 40px;
  width: 300px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .cta-decor {
    width: 220px;
    right: 20px;
  }

  .cta-box h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-decor {
    display: none;
  }

  .cta-box {
    padding: 40px 25px;
  }

  .cta-box h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .cta-box p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 16px;
  }

  .btn-red,
  .btn-outline {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* =====================================industries sect2================================== */

.industries {
  background: #f9fafb;
  /* padding: 90px 20px 60px; */
  padding: 90px 20px 0px;
  position: relative;
  overflow: hidden;
}

.industries-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.industries-decor {
  position: absolute;
  left: 0;
  top: -20px;
  width: 330px;
  opacity: 0.3;
}

.industries-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.industries-header h2 {
  font-family: "Source Serif Pro", serif;
  /* font-size: 43px; */
    font-size: 43px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 12px;
  color: #111;
}

.industries-header span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.industries-header p {
  font-family: "Inter", sans-serif;
  /* font-size: 20px; */
    font-size: 17px;
  line-height: 28px;
  color: #4a5565;
}

@media (max-width: 1024px) {
  .industries-header h2 {
    font-size: 40px;
  }

  .industries-decor {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .industries-header h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .industries-header p {
    font-size: 18px;
  }

  .industries-decor {
    display: none;
  }
}

@media (max-width: 480px) {
  .industries-header h2 {
    font-size: 26px;
  }

  .industries-header p {
    font-size: 16px;
  }
}

/* ========================industries card=========================================== */

.industries-grid-section {
  /* padding: 80px 20px; */
    padding: 0px 20px;
  background: #f9fafb;
}

.industries-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 0.8px solid #f3f4f6;

  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
}

.industry-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.industry-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.industry-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e11d2e;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  z-index: 2;
}

.industry-content {
  padding: 24px;
}

.industry-content p {
  font-family: Inter;
  font-size: 16px;
  line-height: 26px;
  color: #4a5565;
  margin-bottom: 20px;
}

.industry-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: Poppins;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #364153;
  margin-bottom: 6px;
}

.check-icon {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  flex-shrink: 0;
}

.industry-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.industry-stats strong {
  display: block;
  font-size: 18px;
  color: #e11d2e;
}

.industry-stats span {
  font-size: 12px;
  color: #6a7282;
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-image {
    height: 200px;
  }
}

/* ===================================================wsu============================================ */
.wsu-section {
  background: rgba(225, 29, 46, 0.05);
  padding: 80px 20px;
}

.wsu-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.wsu-header h2 {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 12px;
}

.wsu-header h2 span {
  color: #e11d2e;
}

.wsu-header p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 50px;
}

.wsu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wsu-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #f3f4f6;
  transition: 0.3s ease;
}

.wsu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.wsu-icon {
  width: 64px;
  height: 64px;
  background: #e11d2e;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 16px;
}

.wsu-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wsu-card p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
  padding: 3px 20px;
}

@media (max-width: 1024px) {
  .wsu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wsu-header h2 {
    font-size: 40px;
  }
}

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

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

  .wsu-header p {
    font-size: 16px;
  }
}



/* ===============================================til-card========================= */
.til-section {
  background: #0f0f0f;
  padding: 96px 32px;
}

.til-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.til-header h2 {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.til-header h2 span {
  color: #e11d2e;
}

.til-header p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #99a1af;
  margin-bottom: 64px;
}

.til-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.til-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  transition: 0.3s ease;
}

.til-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.til-icon {
  width: 45px;
  height: 45px;
  background: #e11d2e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.til-content h3 span {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #e11d2e;
  font-weight: 600;
}

.til-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin: 6px 0;
}

.til-content p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #99a1af;
  line-height: 22px;
  padding-right: 20px;
  width: 185px;
}

@media (max-width: 1024px) {
  .til-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .til-header h2 {
    font-size: 40px;
  }
}

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

  .til-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .til-header p {
    font-size: 16px;
  }
}

/* ==========================================cta section============================ */
.cta-section {
  background: #f9fafb;
  padding: 96px 20px;
  text-align: center;
}

.cta-container {
  max-width: 850px;
  margin: auto;
}

.cta-section h2 {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.cta-section p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #e11d2e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;

  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #101828;
  border: 1.5px solid #d1d5dc;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
}

@media (max-width: 1024px) {
  .cta-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 64px 16px;
  }

  .cta-section h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================================contact====================================== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 100%);
}

.contact-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 750px;
}

.contact-tag {
  display: inline-block;
  background: #e11d2e;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-decoration: none;
  ;
}


.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 72px;
  color: #fff;
  margin-bottom: 16px;
}

.contact-title span {
  color: #e11d2e;
}

.contact-desc {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #e5e7eb;
}

@media (max-width: 992px) {
  .contact-title {
    font-size: 43px;
    line-height: 56px;
  }

  .contact-desc {
    font-size: 18px;
  }

  .contact-hero {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 32px;
    line-height: 40px;
  }

  .contact-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .contact-hero {
    height: 320px;
  }
}


.wsu3-section {
  background: rgba(225, 29, 46, 0.05);
  padding: 80px 20px;
}

.wsu3-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}


.wsu3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* ✅ 3 cards */
  gap: 24px;
}


.wsu3-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #f3f4f6;
  transition: 0.3s ease;
}

.wsu3-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.wsu3-card .wsu-icon {
  width: 64px;
  height: 64px;
  background: #e11d2e;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 16px;
}


.wsu3-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wsu3-card p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
  padding: 3px 20px;
}
.wsu3-card a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
  padding: 3px 20px;
  text-decoration: none;
}


@media (max-width: 1024px) {
  .wsu3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


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

  .wsu3-section {
    padding: 60px 16px;
  }

  .wsu3-card h3 {
    font-size: 18px;
  }

  .wsu3-card p {
    font-size: 14px;
    line-height: 22px;
  }
}

.contact-section {
  background: #f9fafb;
  padding: 80px 20px;
}


.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
}

.contact-form-card {
  padding: 32px;
  border-radius: 16px;
  box-shadow:
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.form-title {
  /* font-family: Poppins; */
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.form-title span {
  color: #e11d2e;
}

.form-desc {
  font-family: Inter;
  font-size: 16px;
  color: #4a5565;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
}

.form-group textarea {
  height: 100px;
  padding-top: 10px;
  resize: none;
}

.submit-btn {
  background: #e11d2e;
  color: #fff;
  /* height: 40px; */
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;

  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {

  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .contact-section {
    padding: 50px 12px;
  }

  .contact-form-card {
    padding: 18px;
  }

  .form-row {
    flex-direction: column;
  }

  .help-card {
    aspect-ratio: 16/10;
  }

  .contact-why-item {
    align-items: flex-start;
  }

}

/* =====================================global office section==================================== */
.global-office-section {
  padding: 50px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.office-header {
  text-align: center;
  margin-bottom: 60px;
}

.office-header h2 {
  font-family: "Source Serif Pro", serif;
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  color: #101828;
}

.office-header h2 span {
  color: #e11d2e;
  font-family: "Source Serif Pro", serif;
}

.office-header p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #4a5565;
  margin-top: 12px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.office-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.office-icon {
  width: 48px;
  height: 48px;
  background: #e11d2e;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.office-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #000;
}

.country {
  font-size: 14px;
  color: #6a7282;
  margin-bottom: 16px;
}

.office-info p {
  font-size: 14px;
  color: #4a5565;
  margin-bottom: 8px;
}

.office-info p span {
  padding-left: 8px;
}

@media (max-width: 992px) {
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-header h2 {
    font-size: 36px;
  }
}

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

  .global-office-section {
    padding: 60px 16px;
  }

  .office-header h2 {
    font-size: 28px;
  }

  .office-header p {
    font-size: 16px;
  }
}

.hq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.hq-container {
  max-width: 1200px;
  margin: auto;
}

.hq-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hq-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hq-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.3);
}

.hq-content {
  text-align: center;
  color: #fff;
}

.hq-icon {
  width: 64px;
  height: 64px;
  padding: 10px;
  margin: 0 auto 16px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
}

.hq-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
}

.hq-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #e5e7eb;
}

@media (max-width: 992px) {
  .hq-card img {
    height: 300px;
  }

  .hq-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .hq-card img {
    height: 240px;
  }

  .hq-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .hq-content h3 {
    font-size: 18px;
  }

  .hq-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .industries-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .industry-overlay p {
    font-size: 14px;
  }

  .industry-overlay h3 {
    font-size: 28px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero-title-box h1 {
    /* font-size: 30px; */
    font-size: 21px;
  }

  .hero-text-area p {
    font-size: 18px;
    line-height: 32px;
  }
  .contact-content{
        padding-top: 70px;
  }
}
.industry-overlay h3{
  color: #fff;
}
.social-card h3{
  color: #fff;
  margin-bottom: 35px;
}
.info-card a{
  color: #000;
  text-decoration: none;
}
/* Social media */
.float1 i,
.float2 i,
.float3 i {
  font-size: 18px;
  /*padding-top: 3px;*/
}

.my-float1{
    color: #fff !important;
}

.float1 {
  bottom: 80px;
  background-color: #ff0000;
}

.float {
  bottom: 130px;
  background-color: #48c657;
}

.float,
.float1 {
  position: fixed;
  width: 44px;
  height: 44px;
  right: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  /*box-shadow: 2px 2px 3px #999;*/
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  z-index: 100;
  padding-top: 7px;
}
.float:hover{
   transform: translateY(-3px);
}
/* end social media */
#topBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  background-color: #e0131e;
  color: #fff;
  border: none;
  outline: none;
  
  /* padding: 12px 15px; */
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

#topBtn:hover {
  /* background-color: #128C7E; */
  transform: translateY(-3px);
}