@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  font-family: "Inter", sans-serif;
  color: #101828;
  user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 19px 0;
  z-index: 999;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 200px;
  height: 50px;
  object-fit: contain;
  cursor: pointer;
}

/* navigation */

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #000000cc;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  padding-bottom: 0;
}

.nav-links a:hover {
  color: #d72a1e;
}

.nav-links a.active {
  color: #d72a1e;
  font-weight: 800;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #d72a1e;
}

/* button */

.quote-btn {
  font-family: "Inter", sans-serif;
  background: #d72a1e;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.quote-btn:hover {
  background: #b92218;
  transform: translateY(-2px);
}

/* mobile menu */
.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

#menu {
  display: none;
}

/* responsive */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  #menu:checked ~ .nav-links {
    display: flex;
  }

  .quote-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .logo img {
    height: 42px;
  }
}

/* Landing css */
.hero {
  background-color: #f8f8f8;
  margin: auto;
  padding: 30px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.hero-left {
  flex: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbeae9;
  color: #d72a1e;
  padding: 8px 18px;
  border-radius: 50px;
  border-color: #f3bdb9;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
}

.tag span {
  font-size: 14px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #101828;
}

.hero h1 span {
  color: #d72a1e;
}

.hero p {
  color: #101828;
  line-height: 1.6;
  margin: 20px 0 35px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-red {
  background: #d72a1e;
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Inter";
  font-weight: 600;
}

.btn-red:hover {
  background: #b92218;
}

.btn-outline {
  border: 1.2px solid #5c5c5c;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #101828;
  font-family: "Inter";
  font-weight: 600;
}

.btn-outline:hover {
  background: #d72a1e;
  color: white;
}

.arrow-icon {
  margin-left: 3px;
  transition: transform 0.3s ease;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.shape-bg {
  position: absolute;
  width: 450px;
  height: 407px;
  top: 42px;
  left: 60px;
  border-radius: 25.63px;
  background: linear-gradient(135deg, #d72a1e 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0.2;
  z-index: 1;
}

@media (max-width: 992px) {
  .shape-bg {
    display: none;
  }
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.verify-card {
  position: absolute;
  left: 15px;
  bottom: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fdece8;
  color: #eb3324;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.verify-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 6px;
  white-space: nowrap;
}

.verify-card p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #5f6470;
  margin: 0;
  white-space: nowrap;
}

/* STATS */
.stats {
  background-color: #f8f8f8;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 18px;
  border-color: #e4e7ec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.stat-box h2 {
  color: #d72a1e;
  font-family: "Sora";
  font-size: 40px;
}

.stat-box p {
  margin-top: 10px;
  font-family: "Inter";
  color: #101828;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .hero {
    padding: 30px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .shape-bg {
    width: 400px;
    height: 360px;
    left: 40px;
  }

  .hero-right img {
    max-width: 450px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 50px 25px;
  }

  .hero-left {
    width: 100%;
  }

  .hero p {
    max-width: 700px;
    margin: 20px auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    min-height: auto;
  }

  .shape-bg {
    left: 50%;
    transform: translateX(-50%);
  }

  .verify-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    gap: 30px;
  }

  .verify-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    margin: 18px 0 30px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn-red,
  .btn-outline {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 15px;
  }

  .hero-right img {
    width: 100%;
    max-width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .stat-box h2 {
    font-size: 32px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    padding: 30px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .tag {
    font-size: 11px;
    gap: 6px;
  }

  .stat-box {
    padding: 18px;
  }
}

iba-section {
  margin: 10px 40px;
  background-color: white !important;
}

.iba-banner {
  width: 100%;
  min-height: 280px;
  display: flex;
  margin-top: 30px;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: #fff;
}

/* LEFT SECTION */
.left-section {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
  z-index: 2;
}

.left-section img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

/* CENTER RED DESIGN */
.center-design {
  position: absolute;
  left: 30%;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}

.center-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.content {
  position: absolute;
  left: 38%;
  width: 32%;
  color: #fff;
  z-index: 3;
  padding: 20px;
}

.content h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
}

/* TRUCK IMAGE */
.truck-section {
  width: 36%;
  height: 280px; /* fixed height */
  overflow: hidden;
  margin-left: auto;
  flex-shrink: 0;
}

.truck-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 80%;
}

/* Show only on large screens */
@media (max-width: 992px) {
  .iba-section {
    display: none !important;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background-color: white;
  margin: 40px auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-card {
  background: #f7f8fa !important;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: 0.3s;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: auto;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #fdecea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 22px;
}

.feature-card h3 {
  font-size: 16px;
  color: #101828;
  margin-bottom: 12px;
  font-family: "Inter";
  white-space: nowrap;
}

.feature-card p {
  color: #5f6470;
  line-height: 1.4;
  font-size: 15px;
}

/* ===== RESPONSIVE ONLY ===== */

@media (max-width: 1100px) {
  .features-section {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 10px auto;
    padding: 0 20px;
  }

  .feature-card {
    padding: 25px 18px;
  }

  .feature-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .features-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
  }
}

/*==========================
  LOGISTICS SECTION
  ===========================*/

.logistics-section {
  max-width: 1200px;
  margin: auto;
  padding: 30px 40px;
}

.section-tag {
  width: fit-content;
  margin: auto;
  padding: 8px 18px;
  background: #fbeae9;
  color: #d72a1e;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Inter";
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title {
  text-align: center;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  color: #333234;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
}

.service-card {
  position: relative;
}

.service-card a {
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.arrow-btn {
  width: 52px;
  height: 52px;
  position: absolute;
  right: 10px;
  top: 245px;
  border-radius: 50%;
  background: #df3a2c;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
}

.arrow-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #101828;
  font-family: "Inter";
}

.service-card p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: #101828;
}

/*====================
  RESPONSIVE ONLY
  =====================*/

@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .logistics-section {
    padding: 10px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-card img {
    height: 240px;
  }

  .arrow-btn {
    top: 205px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .service-card img {
    height: 220px;
    border-radius: 20px;
  }

  .arrow-btn {
    width: 48px;
    height: 48px;
    top: 200px;
    font-size: 18px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/*====================
  ABOUT SECTION
  =====================*/
.about-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 58px;
  display: block;
}

/* red box */
.experience-card {
  position: absolute;
  left: -20px;
  bottom: 26px;
  width: 300px;
  background: #d72a1e;
  padding: 18px;
  border-radius: 18px;
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experience-card h2 {
  font-size: 30px;
  margin-bottom: 8px;
  font-family: "Inter";
}

.experience-card p {
  line-height: 1.4;
  font-size: 16px;
}

/* right side */
.about-content {
  flex: 1;
}

.about-tag {
  width: fit-content;
  padding: 10px 22px;
  border-radius: 30px;
  background: #fbeae9;
  color: #d72a1e;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 30px;
  line-height: 1.4;
  color: #101828;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content p {
  color: #333234;
  line-height: 1.3;
  font-size: 18px;
  margin-bottom: 25px;
}

.about-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border: 1.5px solid #5c5c5c;
  border-radius: 40px;
  text-decoration: none;
  color: #101828;
  font-weight: 600;
}

.about-btn:hover {
  background: #d72a1e;
  color: white;
}

.btn-arrow {
  width: 16px;
}

/*=====================
  RESPONSIVE
  ======================*/
@media (max-width: 1100px) {
  .about-content h2 {
    font-size: 45px;
  }

  .about-content p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
    padding: 70px 25px;
    gap: 60px;
  }

  .about-content {
    text-align: center;
  }

  .about-tag {
    margin: auto auto 25px;
  }

  .about-btn {
    margin: auto;
  }

  .experience-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 460px;
  }

  .about-content h2 {
    font-size: 35px;
  }

  .about-content p {
    font-size: 16px;
  }

  .experience-card {
    width: 220px;
    padding: 16px;
  }

  .experience-card h2 {
    font-size: 32px;
  }

  .experience-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 10px 18px;
  }

  .about-image {
    height: 280px;
    border-radius: 22px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }

  .experience-card {
    width: 200px;
    bottom: -30px;
  }
}

/*======================
  WHY SECTION
  =======================*/

.why-section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 40px;
}

.why-tag {
  width: fit-content;
  margin: auto;
  padding: 12px 24px;
  border-radius: 50px;
  background: #fbeae9;
  color: #d72a1e;
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter";
  margin-bottom: 28px;
}

.why-title {
  text-align: center;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  color: #101828;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #f7f8fa;
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  padding: 24px 20px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fbeae9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon img {
  width: 22px;
}

.why-card h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #101828;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6470;
}

/*===================
  RESPONSIVE
  ====================*/

@media (max-width: 1100px) {
  .why-title {
    font-size: 45px;
  }

  .why-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 10px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-card {
    padding: 28px 22px;
  }

  .why-card h3 {
    font-size: 22px;
  }

  .why-card p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 40px 20px;
  }
  .why-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .why-tag {
    font-size: 11px;
    padding: 8px 16px;
  }

  .why-icon {
    width: 46px;
    height: 46px;
  }

  .why-icon img {
    width: 18px;
  }
}

/*======================
PROCESS SECTION
======================*/
.process-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  position: relative;
}

.process-tag {
  width: fit-content;
  margin: auto;
  padding: 12px 28px;
  border-radius: 40px;
  background: #fbeae9;
  color: #d72a1e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.process-title {
  text-align: center;
  font-size: 40px;
  color: #101828;
  margin-bottom: 8px;
}

.process-subtitle {
  max-width: 700px;
  text-align: center;
  margin: auto;
  line-height: 1.7;
  color: #5f6470;
  margin-bottom: 70px;
}
/* arrows */
.slider-controls {
  position: absolute;
  right: 40px;
  top: 200px;
  display: flex;
  gap: 20px;
}

.slide-btn,
.active-btn {
  cursor: pointer;
}
/*======================
SLIDER
======================*/
.process-grid {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  margin-bottom: 35px;
}

.process-card {
  flex: 0 0 calc((100% - 54px) / 4);
  padding-bottom: 25px;
  position: relative;
}

.process-card span {
  font-size: 42px;
  font-weight: 700;
  color: #d72a1e;
  display: block;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 20px;
  line-height: 1.3;
  color: #101828;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #101828;
}

.active-process::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d72a1e;
}

/* image */

.process-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/*=================
RESPONSIVE
=================*/
@media (max-width: 1100px) {
  .process-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .process-title {
    font-size: 36px;
  }

  .slider-controls {
    position: static;
    justify-content: center;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 20px;
  }

  .process-card {
    flex: 0 0 100%;
  }

  .process-title {
    font-size: 30px;
  }

  .process-subtitle {
    margin-bottom: 40px;
  }

  .process-image img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 26px;
  }

  .process-card span {
    font-size: 34px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-card p {
    max-width: 100%;
  }

  .process-image img {
    height: 220px;
  }
}

/*======================
  INDUSTRY SECTION
  =======================*/

.industry-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
}

.industry-title {
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #101828;
  margin-bottom: 20px;
  font-size: 400;
}

.industry-subtitle {
  max-width: 760px;
  margin: auto;
  text-align: center;
  color: #5f6470;
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 60px;
  font-weight: 400;
}

/* cards */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  height: 180px;
  background: #f7f8fa;
  border: 1px solid #e4e7ec;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.industry-icon {
  width: 50px;
  height: 50px;
  background: #fdeceb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.industry-icon img {
  width: 24px;
}

.industry-card h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #101828;
}

/*=====================
  RESPONSIVE
  ======================*/

@media (max-width: 1100px) {
  .industry-title {
    font-size: 44px;
  }

  .industry-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 10px 20px;
  }

  .industry-title {
    font-size: 32px;
  }

  .industry-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    height: 180px;
  }

  .industry-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .industry-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .industry-card {
    padding: 20px;
    height: auto;
    min-height: 160px;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
  }

  .industry-icon img {
    width: 20px;
  }

  .industry-card h3 {
    font-size: 18px;
  }
}

/*=========================
  CTA BLACK SECTION
  ==========================*/

.cta-section {
  margin: 40px auto;
  padding: 30px;
  padding-left: 5%;
  padding-right: 4%;
  background: black;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-image {
  flex: 1;
}

.cta-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.cta-content {
  flex: 1.2;
  color: white;
}

.cta-content h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  color: #ffffffe5;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 25px;
  max-width: 680px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-red {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 50px;
  background: #d72a1e;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.cta-btn-red:hover {
  background: #b92218;
}

.cta-btn-outline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 50px;
  border: 1px solid #808080;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn-outline:hover {
  background: #d72a1e;
  color: white;
}

.cta-btn-red img,
.cta-btn-outline img {
  width: 15px;
}

/*====================
  RESPONSIVE
  =====================*/
@media (max-width: 1100px) {
  .cta-content h2 {
    font-size: 44px;
  }

  .cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .cta-section {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-section {
    margin: 40px auto;
    padding: 30px;
  }

  .cta-image img {
    height: 260px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;

    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    margin: 40px auto;
    padding: 30px;
  }
  .cta-content h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-red,
  .cta-btn-outline {
    width: 100%;

    justify-content: center;

    padding: 16px;
  }

  .cta-image img {
    height: 320px;
    border-radius: 16px;
  }
}

/*====================
  FOOTER
  =====================*/

.footer {
  background: #02021a;
  color: white;
  position: relative;
  overflow: hidden;
}

/* red top curve */

.footer-top-shape {
  height: 18px;
  background: #d72a1e;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px 35px;
  display: grid;
  grid-template-columns:
    1.2fr
    0.8fr
    1.3fr
    1fr;
  gap: 50px;
}

/* company */

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-company h3 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.footer-company h3 span {
  color: #ea3728;
}

.footer-company p {
  color: #ffffff;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
}

/* social */

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  background: #0c0c2d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 22px;
}

/* titles */

.footer-column h4 {
  font-size: 22px;
  margin-bottom: 30px;
  white-space: nowrap;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  color: #ffffffe5;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-column a {
  color: #ffffffe5;
  text-decoration: none;
  font-size: 16px;
}

/* contact */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}

.contact-list img {
  width: 18px;
  margin-top: 6px;
}

.contact-list span {
  display: block;
  margin-top: 5px;
  color: #ffffffe5;
}

/* bottom */

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 25px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffffe5;
  font-size: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 40px;
}

.footer-bottom-links a {
  color: #ffffffe5;
  text-decoration: none;
  font-size: 16px;
}

/*=====================
  RESPONSIVE
  ======================*/
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;

    padding: 50px 20px;
  }

  .footer-bottom {
    padding: 20px;

    flex-direction: column;

    gap: 20px;

    text-align: center;
  }

  .footer-bottom-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-company h3 {
    font-size: 28px;
  }

  .footer-column h4 {
    font-size: 22px;
  }

  .socials a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================
    ABOUT US
  ========================= */
#aboutUsHeroBannerSection {
  width: 100%;
  height: 510px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/assets/images/about-us/heroImage.webp");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.aboutUsHeroContentWrapper {
  width: 100%;
  max-width: 850px;
  text-align: center;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.aboutUsHeroMainHeading {
  color: #ffffff;

  font-size: 36px;
  font-weight: 600;

  line-height: 50px;

  margin-bottom: 8px;
}

.aboutUsHeroParagraphText {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 18px;
}

.btn-about {
  text-decoration: none;
}

#aboutUsHeroPartnerButton {
  background-color: #d72a1e;
  color: #ffffff;
  border: white solid 1px;
  outline: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 400;
  padding: 12px 28px;
  cursor: pointer;
}

#aboutUsHeroPartnerButton:hover {
  background: #b92218;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  #aboutUsHeroBannerSection {
    height: 450px;
  }

  .aboutUsHeroMainHeading {
    font-size: 32px;
    line-height: 44px;
  }

  .aboutUsHeroParagraphText {
    font-size: 16px;
    line-height: 26px;
  }

  #aboutUsHeroPartnerButton {
    font-size: 16px;
    padding: 11px 26px;
  }
}

@media screen and (max-width: 768px) {
  #aboutUsHeroBannerSection {
    height: 380px;
  }

  .aboutUsHeroMainHeading {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 8px;
  }

  .aboutUsHeroParagraphText {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }

  #aboutUsHeroPartnerButton {
    font-size: 15px;
    padding: 11px 26px;
  }
}

@media screen and (max-width: 599px) {
  #aboutUsHeroBannerSection {
    height: 340px;
  }

  .aboutUsHeroMainHeading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
  }

  .aboutUsHeroParagraphText {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  #aboutUsHeroPartnerButton {
    font-size: 14px;
    padding: 10px 24px;
  }
}

@media screen and (max-width: 480px) {
  #aboutUsHeroBannerSection {
    height: 300px;
    background-position: center;
  }

  .aboutUsHeroMainHeading {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }

  .aboutUsHeroParagraphText {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  #aboutUsHeroPartnerButton {
    font-size: 13px;
    padding: 9px 22px;
  }
}

@media screen and (max-width: 360px) {
  #aboutUsHeroBannerSection {
    height: 280px;
  }

  .aboutUsHeroMainHeading {
    font-size: 18px;
    line-height: 26px;
  }

  .aboutUsHeroParagraphText {
    font-size: 12px;
    line-height: 18px;
  }

  #aboutUsHeroPartnerButton {
    font-size: 12px;
    padding: 8px 20px;
  }
}

/* =========================
    ABOUT US Second Section
  /* ========================= */
#aboutChetanRoadlinesMainSection {
  width: 100%;
  padding: 70px 40px 20px 40px;
  background-color: #ffffff;
}

.aboutChetanRoadlinesContainer {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.aboutChetanRoadlinesLeftContent {
  width: 52%;
  padding-top: 20px;
}

.aboutChetanRoadlinesTagText {
  display: inline-block;
  background-color: #fbeae9;
  color: #d72a1e;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid #f3bdb9;
}

.aboutChetanRoadlinesHeadingText {
  color: #d72a1e;
  font-size: 34px;
  font-weight: 600;
  line-height: 48px;
  max-width: 500px;
  margin-bottom: 16px;
}

.aboutChetanRoadlinesParagraphOne {
  color: #1a1c1ecc;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  max-width: 590px;
  margin-bottom: 18px;
}

.aboutChetanRoadlinesParagraphTwo {
  color: #1a1c1ecc;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  max-width: 590px;
  margin-bottom: 18px;
}

.aboutChetanRoadlinesRightImageSection {
  width: 38%;
}

.aboutChetanRoadlinesImageStyle {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.aboutChetanRoadlinesStatsMainWrapper {
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 0px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.aboutChetanRoadlinesSingleCard {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 18px 16px;
}

.aboutChetanRoadlinesCardNumber {
  color: #d72a1e;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aboutChetanRoadlinesCardText {
  color: #121825;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  #aboutChetanRoadlinesMainSection {
    padding: 50px 30px 20px 30px;
  }

  .aboutChetanRoadlinesContainer {
    flex-direction: column;
    gap: 40px;
  }

  .aboutChetanRoadlinesLeftContent {
    width: 100%;
    padding-top: 0;
  }

  .aboutChetanRoadlinesTagText {
    font-size: 13px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .aboutChetanRoadlinesHeadingText {
    font-size: 30px;
    line-height: 42px;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .aboutChetanRoadlinesParagraphOne,
  .aboutChetanRoadlinesParagraphTwo {
    font-size: 15px;
    line-height: 22px;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .aboutChetanRoadlinesRightImageSection {
    width: 100%;
  }

  .aboutChetanRoadlinesImageStyle {
    height: 420px;
  }

  .aboutChetanRoadlinesStatsMainWrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
  }

  .aboutChetanRoadlinesSingleCard {
    padding: 16px 14px;
  }

  .aboutChetanRoadlinesCardNumber {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .aboutChetanRoadlinesCardText {
    font-size: 14px;
    line-height: 18px;
    white-space: normal;
  }
}

@media screen and (max-width: 767px) {
  #aboutChetanRoadlinesMainSection {
    padding: 45px 20px 20px 20px;
  }

  .aboutChetanRoadlinesContainer {
    gap: 32px;
  }

  .aboutChetanRoadlinesTagText {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 14px;
  }

  .aboutChetanRoadlinesHeadingText {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .aboutChetanRoadlinesParagraphOne,
  .aboutChetanRoadlinesParagraphTwo {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 14px;
  }

  .aboutChetanRoadlinesImageStyle {
    height: 340px;
  }

  .aboutChetanRoadlinesStatsMainWrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .aboutChetanRoadlinesSingleCard {
    padding: 14px 12px;
  }

  .aboutChetanRoadlinesCardNumber {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .aboutChetanRoadlinesCardText {
    font-size: 13px;
    line-height: 18px;
    white-space: normal;
  }
}

/* Small Mobile Screens (Up to 576px) */
@media screen and (max-width: 576px) {
  #aboutChetanRoadlinesMainSection {
    padding: 40px 16px 20px 16px;
  }

  .aboutChetanRoadlinesContainer {
    gap: 28px;
  }

  .aboutChetanRoadlinesTagText {
    font-size: 11px;
    padding: 4px 8px;
    margin-bottom: 12px;
  }

  .aboutChetanRoadlinesHeadingText {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .aboutChetanRoadlinesParagraphOne,
  .aboutChetanRoadlinesParagraphTwo {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .aboutChetanRoadlinesImageStyle {
    height: 240px;
  }

  .aboutChetanRoadlinesStatsMainWrapper {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .aboutChetanRoadlinesSingleCard {
    padding: 12px;
  }

  .aboutChetanRoadlinesCardNumber {
    font-size: 26px;
    margin-bottom: 4px;
  }

  .aboutChetanRoadlinesCardText {
    font-size: 13px;
    line-height: 18px;
    white-space: normal;
  }
}
/* =========================
    ABOUT US Third Section
  /* ========================= */
#aboutVisionMissionMainSection {
  width: 100%;
  padding: 48px 42px 28px 48px;
  background-color: #f6f6f8;
}

.aboutVisionMissionCardsWrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.aboutVisionMissionSingleCard {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 30px 32px 32px 32px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.aboutVisionMissionSingleCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #d72a1e;
  border-radius: 18px 18px 0 0;
}

.aboutVisionMissionTitleWrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.aboutVisionMissionIconStyle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.aboutVisionMissionIconStyle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aboutVisionMissionHeadingText {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 10px;
}

.aboutVisionMissionParagraphText {
  color: #3f3f46;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: -5px;
  max-width: 480px;
}

.aboutVisionMissionParagraphText:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 1200px) {
  .aboutVisionMissionCardsWrapper {
    max-width: 900px;
    gap: 28px;
  }

  .aboutVisionMissionHeadingText {
    font-size: 19px;
  }

  .aboutVisionMissionParagraphText {
    font-size: 17px;
    line-height: 30px;
  }
}

@media screen and (max-width: 992px) {
  #aboutVisionMissionMainSection {
    padding: 40px 30px 24px 30px;
  }

  .aboutVisionMissionCardsWrapper {
    max-width: 100%;
    gap: 26px;
  }

  .aboutVisionMissionSingleCard {
    padding: 26px 28px 28px 28px;
  }

  .aboutVisionMissionHeadingText {
    font-size: 18px;
  }

  .aboutVisionMissionParagraphText {
    font-size: 16px;
    line-height: 28px;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #aboutVisionMissionMainSection {
    padding: 36px 24px 20px 24px;
  }

  .aboutVisionMissionCardsWrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aboutVisionMissionSingleCard {
    padding: 24px 24px 26px 24px;
  }

  .aboutVisionMissionTitleWrapper {
    gap: 10px;
    margin-bottom: 22px;
  }

  .aboutVisionMissionIconStyle {
    width: 26px;
    height: 26px;
  }

  .aboutVisionMissionHeadingText {
    font-size: 18px;
    margin-top: 8px;
  }

  .aboutVisionMissionParagraphText {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (max-width: 576px) {
  #aboutVisionMissionMainSection {
    padding: 28px 16px 20px 16px;
  }

  .aboutVisionMissionCardsWrapper {
    gap: 20px;
  }

  .aboutVisionMissionSingleCard {
    padding: 20px 18px 22px 18px;
  }

  .aboutVisionMissionTitleWrapper {
    gap: 8px;
    margin-bottom: 18px;
  }

  .aboutVisionMissionIconStyle {
    width: 24px;
    height: 24px;
    margin-right: 4px;
  }

  .aboutVisionMissionHeadingText {
    font-size: 17px;
    letter-spacing: 0.3px;
    margin-top: 6px;
  }

  .aboutVisionMissionParagraphText {
    font-size: 15px;
    line-height: 26px;
  }
}

@media screen and (max-width: 480px) {
  #aboutVisionMissionMainSection {
    padding: 24px 14px 16px 14px;
  }

  .aboutVisionMissionSingleCard {
    padding: 18px 16px 20px 16px;
  }

  .aboutVisionMissionHeadingText {
    font-size: 16px;
  }

  .aboutVisionMissionParagraphText {
    font-size: 14px;
    line-height: 24px;
  }
}

/* =========================
    ABOUT US Fourth Section
  /* ========================= */
#whyChooseUsMainSectionContainer {
  width: 100%;
  padding: 48px 42px 28px 48px;
  background-color: #ffffff;
}

.whyChooseUsTopHeadingWrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

.whyChooseUsSmallTagText {
  display: inline-block;
  background-color: #f9e7e5;
  color: #d72a1e;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.whyChooseUsMainHeadingText {
  color: #d72a1e;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}

.whyChooseUsCardsGridWrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.whyChooseUsSingleCardBox {
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 20px 20px 18px 20px;
  min-height: 142px;
}

.whyChooseUsCardIconImage {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-bottom: 18px;
}

.whyChooseUsCardHeadingText {
  color: #202330;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 12px;
}

.whyChooseUsCardParagraphText {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 991px) {
  #whyChooseUsMainSectionContainer {
    padding: 34px 24px 40px 24px;
  }

  .whyChooseUsCardsGridWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyChooseUsMainHeadingText {
    font-size: 26px;
    line-height: 38px;
  }

  .whyChooseUsCardHeadingText {
    font-size: 15px;
    line-height: 22px;
  }

  .whyChooseUsCardParagraphText {
    font-size: 14px;
    line-height: 23px;
  }
}

@media screen and (max-width: 768px) {
  .whyChooseUsMainHeadingText {
    font-size: 24px;
    line-height: 34px;
  }

  .whyChooseUsSmallTagText {
    font-size: 10px;
    padding: 6px 14px;
  }

  .whyChooseUsCardHeadingText {
    font-size: 14px;
    line-height: 21px;
  }

  .whyChooseUsCardParagraphText {
    font-size: 13px;
    line-height: 22px;
  }
}

@media screen and (max-width: 576px) {
  #whyChooseUsMainSectionContainer {
    padding: 28px 16px 34px 16px;
  }

  .whyChooseUsCardsGridWrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .whyChooseUsMainHeadingText {
    font-size: 22px;
    line-height: 32px;
  }

  .whyChooseUsSingleCardBox {
    padding: 18px;
  }

  .whyChooseUsCardHeadingText {
    font-size: 15px;
    line-height: 22px;
  }

  .whyChooseUsCardParagraphText {
    font-size: 13px;
    line-height: 22px;
  }
}

/* =========================
    ABOUT US Fifth Section
  /* ========================= */
#infrastructureFleetMainSection {
  width: 100%;
  padding: 22px 38px 26px 38px;
  background-color: #fbfbfe;
}

.infrastructureFleetTopContentWrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 18px;
}

.infrastructureFleetHeadingLeftSide {
  width: 55%;
}

.infrastructureFleetSmallBadgeText {
  display: inline-block;
  background-color: #f9e7e5;
  color: #d72a1e;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.infrastructureFleetMainHeadingText {
  color: #d72a1e;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.infrastructureFleetParagraphRightSide {
  width: 38%;
  padding-top: 4px;
}

.infrastructureFleetTopParagraphText {
  color: #3f3f46;
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  line-height: 19px;
}

.infrastructureFleetImageWrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.infrastructureFleetMainImageStyle {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;

  display: block;
}

@media screen and (max-width: 991px) {
  #infrastructureFleetMainSection {
    padding: 24px 24px 24px 24px;
  }

  .infrastructureFleetTopContentWrapper {
    flex-direction: column;
    gap: 16px;
  }

  .infrastructureFleetHeadingLeftSide {
    width: 100%;
  }

  .infrastructureFleetParagraphRightSide {
    width: 100%;
    padding-top: 0px;
  }

  .infrastructureFleetSmallBadgeText {
    font-size: 10px;
    padding: 7px 14px;
  }

  .infrastructureFleetMainHeadingText {
    font-size: 26px;
    line-height: 36px;
  }

  .infrastructureFleetTopParagraphText {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }

  .infrastructureFleetMainImageStyle {
    height: 340px;
  }
}

@media screen and (max-width: 768px) {
  #infrastructureFleetMainSection {
    padding: 22px 20px 20px 20px;
  }

  .infrastructureFleetSmallBadgeText {
    font-size: 9px;
    padding: 6px 12px;
  }

  .infrastructureFleetMainHeadingText {
    font-size: 24px;
    line-height: 34px;
  }

  .infrastructureFleetTopParagraphText {
    font-size: 15px;
    line-height: 23px;
    margin-top: 14px;
  }

  .infrastructureFleetMainImageStyle {
    height: 300px;
  }
}

@media screen and (max-width: 576px) {
  #infrastructureFleetMainSection {
    padding: 22px 16px 20px 16px;
  }

  .infrastructureFleetSmallBadgeText {
    font-size: 9px;
    padding: 6px 12px;
  }

  .infrastructureFleetMainHeadingText {
    font-size: 24px;
    line-height: 34px;
  }

  .infrastructureFleetTopParagraphText {
    font-size: 13px;
    line-height: 22px;
  }

  .infrastructureFleetMainImageStyle {
    height: 220px;
    border-radius: 12px;
  }
}

/* =========================
    ABOUT US Sixth Section
  /* ========================= */
#transportSupportCtaMainSection {
  width: 100%;
  padding: 34px 30px 24px 30px;
}

.transportSupportCtaContainerBox {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 22px;
  padding: 36px 20px 38px 20px;
  text-align: center;
}

.transportSupportCtaHeadingText {
  color: #111827;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 40px;
}

#transportSupportCtaButtonStyle {
  background-color: #d72a1e;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 40px;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

#transportSupportCtaButtonStyle:hover {
  background-color: #111827;
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .transportSupportCtaHeadingText {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 768px) {
  #transportSupportCtaMainSection {
    padding: 28px 20px 20px 20px;
  }

  .transportSupportCtaContainerBox {
    padding: 30px 18px 32px 18px;
  }

  .transportSupportCtaHeadingText {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  #transportSupportCtaButtonStyle {
    padding: 13px 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  #transportSupportCtaMainSection {
    padding: 22px 14px 16px 14px;
  }

  .transportSupportCtaContainerBox {
    border-radius: 18px;
    padding: 24px 16px 26px 16px;
  }

  .transportSupportCtaHeadingText {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  #transportSupportCtaButtonStyle {
    font-size: 13px;
    padding: 11px 26px;
  }
}

@media screen and (max-width: 480px) {
  #transportSupportCtaMainSection {
    padding: 18px 12px 14px 12px;
  }

  .transportSupportCtaContainerBox {
    border-radius: 16px;
    padding: 20px 14px 22px 14px;
  }

  .transportSupportCtaHeadingText {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 18px;
  }

  #transportSupportCtaButtonStyle {
    font-size: 12px;
    padding: 10px 22px;
  }
}

.policy-page {
  background: #fafafa;
  padding: 40px 20px;
}

.policy-header {
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 48px;
  color: #d72a1e;
  margin-bottom: 15px;
}

.policy-container {
  margin: auto;
  margin: 0px 60px;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.policy-item {
  margin-bottom: 45px;
}

.policy-item h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #101828;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}

.policy-item p,
.policy-item li {
  color: #475467;
  line-height: 1.9;
}

.policy-item ul {
  padding-left: 20px;
}

.contact-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 16px;
  margin-top: 40px;
}

/* responsive */
@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 34px;
  }

  .policy-container {
    padding: 30px;
  }
  .policy-container {
    margin: 0px 10px;
  }
}

@media (max-width: 480px) {
  .policy-page {
    padding: 60px 15px;
  }

  .policy-header h1 {
    font-size: 28px;
  }

  .policy-container {
    padding: 20px;
  }

  .policy-item h2 {
    font-size: 20px;
  }
}

/* auto image loader */
.img-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.img-skeleton {
  position: absolute;
  inset: 0;
  background: #f3f3f3;
  z-index: 1;
}

.img-skeleton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );

  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    left: 150%;
  }
}

.smart-image {
  opacity: 0;
  transition: 0.4s;
  display: block;
  width: 100%;
}

.smart-image.loaded {
  opacity: 1;
}

.img-skeleton.hide {
  display: none;
}

.about-img-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.about-img-skeleton {
  position: absolute;
  inset: 0;
  background: #f3f3f3;
  z-index: 1;
}

.about-img-skeleton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );

  animation: aboutShimmer 1.2s infinite;
}

@keyframes aboutShimmer {
  100% {
    left: 150%;
  }
}

.about-smart-image {
  opacity: 0;
  transition: 0.4s;
  display: block;
  width: 100%;
}

.about-smart-image.loaded {
  opacity: 1;
}

.about-img-skeleton.hide {
  display: none;
}

#page-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 99999;

  /* transparent glass effect */
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: opacity .6s ease, visibility .6s ease;
}

#page-mask.hide {
  opacity: 0;
  visibility: hidden;
}

.mask-logo {
  width: 380px;
  max-width: 80%;
  animation: logoFloat 1.5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%{
    transform: scale(.95);
    opacity:.7;
  }

  50%{
    transform: scale(1);
    opacity:1;
  }

  100%{
    transform: scale(.95);
    opacity:.7;
  }
}
