:root {
  --primary-color: #111827;
  --secondary-color: #f7f7f7;
  --text-color: #333333;
  --accent-color: #ff7d44;
  --white-color: #ffffff;
  --divider-color: #e2e2e2;
  --error-color: rgb(230, 87, 87);
  --default-font: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-size: 18px;
  font-weight: 400;
  background: var(--white-color);
  font-family: var(--default-font);
  color: var(--text-color);
  line-height: 1.2em;
}

p {
  line-height: 1.6em;
  margin-bottom: 0;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  line-height: 1.3em;
  color: #ff7d44;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  line-height: 1.3em;
  color: inherit;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

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

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.btn-default {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-family: var(--default-font);
  text-transform: capitalize;
  line-height: 1.3em;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  border: none;
  outline: 0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.btn-default:before {
  content: "";
  position: absolute;
  width: 0;
  height: 104%;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  opacity: 0;
  z-index: -1;
  transform: translateX(-51%) translateY(-51%);
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.btn-default:hover::before {
  width: 106%;
  opacity: 1;
}

#magic-cursor {
  position: absolute;
  width: 14px !important;
  height: 14px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 150px;
  position: relative;
  width: 150px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent #ff7d44 transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 80%;
  left: 50%;
  max-width: 150px;
  height: 120px;
  width: 120px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.section-title h1,
.section-title h2 {
  font-size: 50px;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.section-title p {
  width: 100%;
  /* max-width: 950px; */
  margin: 0 auto;
  margin-top: 20px;
}

/************************************/
/***   	   03. Header css         ***/
/************************************/

.topbar {
  /* background: linear-gradient(rgba(188, 188, 189, 0.45), rgba(0, 0, 0, 0.45)); */
  background: #bbbcbe;
}

.topbar-contact-info {
  padding: 10px 0;
}

.topbar-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-contact-info ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.topbar-contact-info ul li a {
  color: #111827;
}

.topbar-contact-info ul li i {
  font-size: 16px;
  margin-right: 10px;
  color: #111827;
}

.topbar-social-links {
  background-color: var(--white-color);
  padding: 10px 15px;
}

.topbar-social-links ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.topbar-social-links ul li {
  display: inline-block;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  border-radius: 100%;
  text-align: center;
  color: var(--primary-color);
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.topbar-social-links ul li:last-child {
  margin-right: 0;
}

.topbar-social-links ul li a i {
  font-size: 18px;
  color: inherit;
}

.main-header {
  background-color: var(--white-color);
  position: relative;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  border-bottom: 1px solid #ffffff00;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--secondary-color);
  transform: translateY(0);
  background: var(--white-color);
}

.navbar>.container {
  display: flex;
  align-items: center;
}

.navbar {
  padding: 0;
}

.main-menu {
  font-family: var(--default-font);
  justify-content: space-evenly;
}

.main-menu ul {
  align-items: center;
}

.navbar .main-menu ul li {
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar .main-menu ul li.has-submenu>a {
  position: relative;
  padding-right: 18px;
}

.navbar .main-menu ul li.has-submenu>a:after {
  content: "\f107";
  display: inline-flex;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  align-items: center;
  margin-left: 5px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.main-menu ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 38px 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover {
  color: #ff7d44;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 275px;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background-color: #e9e9e9;
  transition: all 0.3s ease-in-out;
}

.navbar .main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

.navbar .main-menu ul ul ul {
  left: 100%;
  top: 0%;
}

.navbar .main-menu ul ul li {
  margin: 0;
}

.navbar .main-menu ul ul li a {
  color: #111827;
  padding: 12px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover {
  color: #ff7d44;
}

.header-contact-us a {
  display: flex;
  align-items: center;
}

.header-contact-us a img {
  margin-right: 10px;
}

.header-contact-us a h3 {
  width: 100%;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.header-contact-us a h3 span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6em;
  color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  margin-top: 0px;
}

.slicknav_btn {
  background: var(--primary-color);
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 5px;
  border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  margin: 4px auto !important;
}

.slicknav_menu {
  padding: 0;
  background: var(--accent-color);
  position: absolute;
  width: 100%;
  z-index: 1;
  margin-top: 10px;
}

.slicknav_nav ul {
  margin: 0;
}

.slicknav_nav li a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  margin: 0;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav li a:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 0;
  margin: 0;
}

.slicknav_nav .sub-menu li a {
  padding: 10px 30px;
}

.slicknav_nav .slicknav_row {
  padding: 10px 20px;
  margin: 0;
  background-color: transparent !important;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  width: 20px;
  height: 20px;
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  position: absolute;
  right: 15px;
  top: 10px;
  transition: all 0.3s ease-in-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: rotate(-180deg);
}

.navbar-toggle a.slicknav_btn .slicknav_icon span.slicknav_icon-bar {
  transition: 0.1s;
  border-radius: 2px;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/************************************/
/*** 	    04. hero css		  ***/
/************************************/

.hero {
  position: relative;
  padding: 120px 0 220px;
  background-image: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(180deg,
      transparent 0%,
      var(--primary-color) 100%);
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider {
  text-align: center;
  background: none;
  padding: 0;
}

.hero-slider-layout .hero-slide {
  position: relative;
  padding: 120px 0 220px;
}

.hero.hero-slider:before {
  display: none;
}

.hero.hero-slider .hero-slider-layout {
  position: relative;
  z-index: 2;
}

.hero-slider-layout .hero-slide::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg,
      rgba(17, 24, 39, 0.95) 0%,
      rgba(17, 24, 39, 0.85) 50%,
      rgba(17, 24, 39, 0.3) 70%,
      transparent 100%);
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 850px;
  z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
  height: 850px;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
  bottom: 150px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--accent-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--white-color);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content-title {
  margin-bottom: 20px;
}

.hero-content-title h1,
.hero-content-title h2 {
  width: 100%;
  font-size: 50px;
  color: var(--white-color);
}

.hero-content-body {
  margin-bottom: 40px;
}

.hero-content-body p {
  color: var(--white-color);
}

.hero-content-footer .btn-default::before {
  background-color: var(--white-color);
}

.hero-content-footer .btn-default:hover {
  color: var(--primary-color);
}

.video-play-button {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 66px;
  margin: 0 auto;
}

.video-play-button::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1s infinite linear;
  animation-delay: 0.3s;
}

@-webkit-keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button img {
  width: 65px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

/************************************/
/*** 	05. Intro Services css	  ***/
/************************************/

.cargo-shipment {
  position: relative;
  z-index: 4;
  margin-top: -120px;
}

.cargo-shipment-item {
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
  height: 100%;
  background: var(--white-color);
  box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.1);
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  color: var(--primary-color);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active {
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active::before {
  z-index: -1;
}

.cargo-shipment-item:hover:before {
  transform: translate(100%, -100%);
}

.cargo-shipment-item.active::before {
  transform: translate(100%, -100%);
}

.cargo-shipment-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-image {
  opacity: 1;
}

.cargo-shipment-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0.7;
}

.cargo-shipment-item:hover .cargo-shipment-image {
  opacity: 1;
}

.cargo-shipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cargo-shipment-content {
  position: relative;
  z-index: 2;
}

.cargo-shipment-icon {
  margin-bottom: 20px;
}

.cargo-shipment-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-content h3 {
  color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-content h3 {
  color: var(--white-color);
}

.cargo-shipment-content p {
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-content p {
  color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-content p {
  color: var(--white-color);
}

.cargo-shipment-readmore a {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
  padding-right: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cargo-shipment-readmore a::before {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 16px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cargo-shipment-item:hover .cargo-shipment-content a {
  transition: all 0.4s ease-in-out;
  color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-readmore a::before {
  color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a {
  color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a::before {
  color: var(--white-color);
}

/************************************/
/***      06. About us css	      ***/
/************************************/

.home-transportation {
  padding: 100px 0;
  background-color: white;
}

.home-transportation .section-title {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  text-align: left;
}

.home-transportation .section-title::before {
  display: none;
}

.home-transportation-content {
  margin-right: 65px;
}

.home-transportation-body {
  margin-bottom: 30px;
}

.home-transportation-body p {
  margin-bottom: 15px;
}

.home-transportation-body p:last-child {
  margin-bottom: 0;
}

.home-transportation-footer {
  display: flex;
  align-items: center;
}

.transportation-footer-btn {
  margin-right: 40px;
}

.home-transportation-footer a:last-child {
  margin-right: 0;
}

.home-transportation-content .header-contact-us {
  display: flex;
  align-items: center;
}

.home-transportation-right {
  position: relative;
  background: url(../images/transportation-shape.svg) no-repeat bottom 15px left 28%;
  background-size: auto;
  padding-bottom: 150px;
}

.transportation-img-2 img,
.transportation-img-1 img {
  border-radius: 10px;
}

.transportation-img-1 {
  position: relative;
}

.transportation-img-2 {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
}

.transportation-counter-box {
  position: absolute;
  left: 34%;
  bottom: 12%;
  display: inline-block;
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.199);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.transportation-counter-box h3 {
  font-size: 46px;
  font-weight: 700;
  color: var(--accent-color);
}

.transportation-counter-box p {
  font-weight: 700;
  text-transform: capitalize;
}

/************************************/
/***       07. Services css       ***/
/************************************/

.our-service {
  /* background-color: var(--secondary-color); */
  padding: 40px 0;
}

.our-service-item {
  margin-bottom: 30px;
}

.our-service-image {
  border-radius: 10px;
  overflow: hidden;
}

.our-service-image img {
  width: 100%;
  aspect-ratio: 1 / 0.65;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s ease-out;
}

.our-service-item:hover .our-service-image img {
  transform: scale(1.1);
}

.our-service-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: -10%;
}

.service-content-box {
  display: flex;
  align-items: center;
  width: 75%;
  background-color: var(--white-color);
  box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.1);
  padding: 20px;
}

.our-service-icon {
  margin-right: 10px;
}

.our-service-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: capitalize;
}

.our-service-content-button {
  width: 15%;
  background-color: transparent;
  padding: 13px 11px;
  margin-left: -30px;
  text-align: center;
}

.our-service-content-button a i {
  font-size: 30px;
  color: black;
  transition: all 0.3s ease-in-out;
}

.our-service-content-button a i:hover {
  color: #ff7d44;
}

.our-service-footer {
  margin-top: 20px;
  text-align: center;
}

/************************************/
/*** 	     08. CTA css	      ***/
/************************************/

.our-contract {
  position: relative;
  background-image: url(../images/page/c2.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 100px 0;
}

.our-contract::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.our-cta-box {
  background-color: #1118278a;
  border-radius: 10px;
  max-width: 950px;
  margin: 0 auto;
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.our-contract-title {
  margin-bottom: 20px;
}

.our-contract-title h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--white-color);
  word-spacing: 3px;
}

.our-contract-body p {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.6;
  word-spacing: 3px;
}

.our-contract-body .btn-default::before {
  background-color: var(--white-color);
}

.our-contract-body .btn-default:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 767px) {
.our-contract-body p {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  word-spacing: 3px;
}

}
/************************************/
/*** 	09. Recent Project css    ***/
/************************************/

.recent-project {
  padding: 100px 0 70px;
}

.project-slider {
  position: relative;
  width: 1180px;
  margin: 0 auto;
}

.project-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}

.project-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  text-align: center;
  transition: all 0.5s ease-out;
}

.project-item:hover .project-image figure img {
  transform: scale(1.1);
}

.project-content {
  content: "";
  position: absolute;
  transition: 0.5s;
  bottom: 30px;
  left: 30px;
  right: 30px;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  z-index: 1;
  align-items: flex-end;
  justify-content: flex-end;
}

.project-item:hover .project-content {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.project-content-title {
  background-color: var(--white-color);
  box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
}

.project-content-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
}

.project-content-title h3 a {
  color: inherit;
}

.project-content-title i {
  font-size: 20px;
  color: var(--accent-color);
}

/* Premium Dark Industrial Service Card */

.project-content {
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.project-content-title {
  position: relative;
  background: linear-gradient(135deg,
      rgba(17, 24, 39, 0.96),
      rgba(31, 41, 55, 0.92));
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  align-items: flex-start;
  gap: 18px;
}

.project-content-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ffb347);
}

.project-info {
  width: 100%;
}

.project-content-title h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}

.project-content-title p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  word-spacing: 1px;
  text-align: justify;
}

.project-content-title span {
  min-width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25);
}

.project-content-title span a {
  color: #fff;
  font-size: 15px;
}

.project-item:hover .project-content-title {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.project-item:hover .project-content-title span {
  background: #fff;
  transform: rotate(-45deg);
}

.project-item:hover .project-content-title span a {
  color: var(--accent-color);
}

.project-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(17, 24, 39, 0.85) 0%,
      rgba(17, 24, 39, 0.45) 40%,
      rgba(17, 24, 39, 0.1) 70%,
      transparent 100%);
  z-index: 1;
  opacity: 1;
  transition: all 0.4s ease;
}

.project-item:hover::before {
  background: linear-gradient(to top,
      rgba(17, 24, 39, 0.95) 0%,
      rgba(17, 24, 39, 0.6) 45%,
      rgba(17, 24, 39, 0.15) 75%,
      transparent 100%);
  /* opacity: 1; */
}

.project-image {
  position: relative;
}

.project-image img {
  transition: all 0.5s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.08);
}

.client-button-prev {
  left: -4%;
}

.client-button-next {
  right: -4%;
}

.client-button-prev,
.client-button-next {
  color: var(--accent-color);
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.client-button-next:hover,
.client-button-prev:hover {
  color: var(--primary-color);
  opacity: 1;
}

/************************************/
/*** 	  10. Our Goals css	      ***/
/************************************/

.our-goals {
  padding: 100px 0;
  background: linear-gradient(180deg, #d9dbdd 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-goals::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.our-goals .section-title {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.our-goals .section-title h2 {
  font-size: 46px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.our-goals .section-title h2 span {
  color: var(--accent-color);
}

.our-goals .section-title p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.8;
}

.our-goals-item {
  position: relative;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}

.our-goals-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #292828, #ffb347);
  top: 0;
  left: 0;
}

.our-goals-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.15);
}

.counter-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, black, #b8b8b8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.3);
  transition: all 0.4s ease;
}

.counter-icon i {
  color: #ffffff;
  font-size: 40px;
}

.our-goals-item:hover .counter-icon {
  transform: rotate(-6deg) scale(1.08);
}

.our-goals-counter h3 {
  font-size: 54px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1;
}

.our-goals-counter p {
  color: #6b7280;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .our-goals {
    padding: 80px 0;
  }

  .our-goals .section-title h2 {
    font-size: 36px;
  }

  .our-goals-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .our-goals .section-title h2 {
    font-size: 30px;
  }

  .our-goals-counter h3 {
    font-size: 42px;
  }
}

/************************************/
/***       11. Features css	      ***/
/************************************/

.providing-service {
  padding: 100px 0 50px;
}

.Featured-Content-Box img {
  width: 100%;
  border-radius: 10px;
}

.providing-content {
  margin-left: 10px;
}

.providing-content .section-title {
  width: 100%;
  max-width: 450px;
  text-align: left;
  margin-bottom: 30px;
}

.providing-content .section-title h2 {
  padding-bottom: 0;
}

.providing-content .section-title::before {
  display: none;
}

.providing-content-body p {
  margin-bottom: 30px;
}

.providing-item-box {
  display: flex;
  align-items: center;
}

.providing-item {
  width: 33.33%;
}

.providing-item .icon-box {
  margin-bottom: 10px;
}

.providing-item span {
  font-weight: 700;
}

/************************************/
/***    12. Latest Posts css      ***/
/************************************/

.latest-posts {
  padding: 50px 0 70px;
}

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.post-featured-image img {
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.post-meta {
  margin-bottom: 20px;
}

.post-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-meta ul li {
  position: relative;
  display: inline-block;
}

.post-meta ul li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;
}

.post-readmore a {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  padding-right: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-readmore a::before {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 16px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-readmore:hover a {
  color: var(--primary-color);
}

.post-readmore:hover a::before {
  color: var(--primary-color);
}

/************************************/
/***      13. Footer css	      ***/
/************************************/

.mega-footer {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.footer-heading {
  margin-bottom: 20px;
}

.footer-heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-content {
  margin-bottom: 30px;
}

.footer-content p {
  max-width: 300px;
  color: var(--white-color);
}

.footer-social-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-link ul li {
  display: inline-block;
  margin-right: 5px;
}

.footer-social-link ul li:last-child {
  margin-right: 0;
}

.footer-social-link ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 100%;
  text-align: center;
  color: var(--accent-color);
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.footer-social-link ul li a:hover {
  border: 1px solid var(--white-color);
  background-color: transparent;
  color: var(--white-color);
}

.footer-social-link ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-links {
  margin: 0 auto;
}

.footer-info-heading {
  position: relative;
  margin-bottom: 20px;
}

.footer-info-heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: capitalize;
}

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

.footer-links ul li {
  color: var(--white-color);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
  margin-bottom: 0px;
}

.footer-links ul li:hover {
  color: var(--accent-color);
}

.footer-links ul li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.footer-info-box {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.footer-info-box:last-child {
  margin-bottom: 0;
}

.footer-info-box .icon-box {
  position: absolute;
  top: 2px;
  left: 0;
}

.footer-info-box .icon-box i {
  font-size: 20px;
  color: var(--accent-color);
}

.footer-info-box p {
  font-size: 16px;
  color: var(--white-color);
}

.newsletters-content {
  margin-bottom: 20px;
}

.newsletters-content p {
  color: var(--white-color);
}

.newsletters-form .mail-box {
  background-color: transparent;
  border-bottom: 2px solid var(--white-color);
}

.newsletters-form .mail-box button {
  background: transparent;
  border: none;
  margin-top: 11px;
}

.newsletters-form .mail-box .form-control {
  background-color: transparent;
  border: none;
  color: var(--white-color);
  padding: 10px 2px;
  box-shadow: none;
}

.form-group .help-block.with-errors {
  color: var(--error-color);
}

.newsletters-form .mail-box .form-control::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
  opacity: 0.5;
}

.newsletters-form .mail-box i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.newsletters-form .mail-box i:hover {
  color: var(--white-color);
}

.footer-copyright h3 b {
  color: var(--button-secondary-color);
}

.footer-copyright-links {
  background-color: #363635;
  color: black;
  padding: 8px 0;
}

.footer-copyright p {
  font-weight: 600;
  text-align: left;
}

.footer-copyright p b {
  color: white;
}

.footer-policy-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-policy-links ul li {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
}

.footer-policy-links ul li:before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: var(--white-color);
  position: absolute;
  top: 5px;
  left: 0;
}

.footer-policy-links ul li:first-child {
  padding-left: 0;
}

.footer-policy-links ul li:first-child:before {
  display: none;
}

.footer-policy-links ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

/************************************/
/***    14. About us Page css	  ***/
/************************************/

.page-header {
  position: relative;
  background-image: url(../images/page-heade-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
}

.page-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(268deg, transparent 0%, var(--primary-color) 74%);
}

.page-header-box {
  position: relative;
  z-index: 1;
}

.page-header-box h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
}

.page-header-box .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.page-header-box ol.breadcrumb li {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  margin-right: 12px;
  text-transform: capitalize;
}

.page-header-box ol.breadcrumb li:last-child {
  margin-right: 0;
}

.page-header-box ol.breadcrumb li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.page-header-box ol.breadcrumb li:after {
  content: "\f061";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  margin-left: 12px;
}

.page-header-box ol.breadcrumb li:last-child:after {
  display: none;
}

.home-transportation.about-transportation {
  padding: 100px 0 50px;
}

.about-transport {
  padding: 50px 0 100px;
}

.transport-item {
  border-right: 1px solid var(--divider-color);
  padding: 10px 40px;
  height: 100%;
}

.about-transport .col-md-4:last-child .transport-item {
  border: none;
}

.transport-item .icon-box {
  margin-bottom: 20px;
}

.transport-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.our-indurstry {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.our-indurstry .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.our-indurstry .section-title::before {
  display: none;
}

.indurstry-image figure {
  width: 100%;
}

.indurstry-image figure img {
  width: 100%;
  border-radius: 10px;
}

.our-indurstry-content {
  margin-left: 20px;
}

.indurstry-content p {
  margin-bottom: 25px;
}

.indurstry-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.indurstry-content ul li {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.indurstry-content ul li:last-child {
  margin-bottom: 0;
}

.indurstry-content ul li i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--accent-color);
}

.export-team {
  padding: 100px 0 70px;
}

.team-item {
  background-color: var(--primary-color);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.team-image img {
  transition: all 0.5s ease-in-out;
  border-radius: 10px 10px 0 0;
}

.team-item:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 15px 20px;
}

.team-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: capitalize;
}

.team-content h3 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: capitalize;
}

.our-contract.about-us {
  padding: 0 0 80px;
  margin: 0;
}

/************************************/
/***    15. Services Page css     ***/
/************************************/

.service-page {
  padding: 100px 0 70px;
}

/************************************/
/***    16. Service Single css    ***/
/************************************/

.service-details {
  padding: 100px 0;
}

.service-details-content {
  margin-right: 40px;
}

.service-details-body p {
  margin-bottom: 20px;
}

.service-details-featured-image {
  margin-bottom: 20px;
}

.service-details-featured-image img {
  border-radius: 10px;
}

.service-details-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-transform: capitalize;
}

.service-details-body {
  margin-bottom: 40px;
}

.service-info-box {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.service-info-box:last-child {
  margin-bottom: 0;
}

.service-info-box .icon-box {
  position: absolute;
  top: 0px;
  left: 0;
}

.service-info-box .icon-box i {
  font-size: 16px;
  color: var(--accent-color);
}

.service-info-box p {
  font-weight: 600;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.service-info-box p:last-child {
  margin-bottom: 0;
}

.service-details-footer {
  display: flex;
  justify-content: space-between;
}

.service-details-image-box {
  width: 49%;
}

.service-details-image-box img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.6;
  object-fit: cover;
}

.post-Category-list {
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.post-Category-list .footer-info-heading {
  margin-bottom: 40px;
}

.post-Category-list .footer-info-heading h2 {
  font-size: 26px;
  font-weight: 700;
}

.post-Category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-Category-list ul li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.post-Category-list ul li:last-child {
  margin-bottom: 0;
}

.post-Category-list ul li a {
  color: var(--white-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.post-Category-list ul li a:hover {
  color: var(--accent-color);
}

.post-Category-list ul li a i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 20px;
}

.service-logistics-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  text-align: center;
  padding: 40px;
}

.logistics-card-image {
  margin-bottom: 30px;
}

.logistics-card-title {
  position: relative;
  margin-bottom: 30px;
}

.logistics-card-title h2 {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.logistics-card-body {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
}

/************************************/
/***     17. Blog Archive css	  ***/
/************************************/

.latest-posts.blog-page {
  padding: 100px 0;
}

.post-pagination {
  margin-top: 30px;
  text-align: center;
}

.post-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  margin: 0 4px;
  border-radius: 10px;
  font-family: var(--accent-font);
  font-weight: 700;
  color: var(--white-color);
  transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
  background: var(--primary-color);
}

/************************************/
/***    18. Blog Single css       ***/
/************************************/

.post-single-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-single-meta ul li {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0 20px 0 5px;
}

.post-single-meta ul li::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.post-single-meta ul li:last-child:after {
  display: none;
}

.page-single-post {
  padding: 100px 0;
}

.blog-detail-content {
  margin-right: 40px;
}

.blog-detail-post-content {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.blog-detail-post-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.blog-detail-featured-image {
  margin-bottom: 50px;
}

.blog-detail-featured-image img {
  border-radius: 10px;
}

.blog-detail-post-content p {
  margin-bottom: 20px;
}

.blog-detail-post-content p:last-child {
  margin-bottom: 0;
}

.post-tags a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 5px;
  padding: 12px 20px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.post-tags a:last-child {
  margin-right: 0;
}

.post-social-links {
  text-align: right;
}

.post-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-links ul li {
  display: inline-block;
  margin-right: 5px;
}

.post-social-links ul li:last-child {
  margin-right: 0;
}

.post-social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  border-radius: 100%;
  text-align: center;
  color: var(--accent-color);
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a {
  border-color: var(--primary-color);
}

.post-social-links ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a i {
  color: var(--primary-color);
}

.post-Category-list.blog-details-list {
  margin-bottom: 30px;
  padding: 30px;
}

.blog-details-post-Category {
  margin-left: 50px;
}

.post-widget-body .recent-post-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-widget-body .recent-post-item:last-child {
  margin-bottom: 0;
}

.blog-details-post-widget {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
}

.blog-details-post-widget .footer-info-heading {
  margin-bottom: 40px;
}

.recent-post-feature-img {
  width: 40%;
}

.recent-post-feature-img img {
  border-radius: 10px;
  aspect-ratio: 1/0.6;
  object-fit: contain;
}

.recent-post-content {
  width: 55%;
}

.recent-post-content h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.recent-post-content h3 a {
  color: var(--white-color);
}

.recent-post-content p {
  border-color: var(--accent-color);
}

.recent-post-content .post-readmore:hover {
  border-color: var(--white-color);
}

.recent-post-content .post-readmore a {
  font-size: 16px;
}

.recent-post-content .post-readmore a:hover {
  color: var(--white-color);
}

/************************************/
/***    19. Contact us Page css   ***/
/************************************/

.get-in-touch {
  padding: 100px 0;
}

.get-quote {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
}

.get-quote h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.get-quote-content {
  margin-bottom: 30px;
}

.get-quote-form form .row .col-md-12,
.get-quote-form form .row {
  padding: 0;
  margin: 0;
}

.get-quote-form .form-control {
  background-color: transparent;
  color: var(--text-color);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--divider-color);
  box-shadow: none;
  border-radius: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 20px 15px 0;
}

.contact-us {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
  height: 100%;
}

.contact-us h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-us-info .footer-info-box {
  margin-bottom: 30px;
}

.contact-us-info {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
}

.contact-us-info p {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-us-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-social-links.contact-details {
  background-color: transparent;
  padding: 0;
}

.container-fluid,
.google-map .row .col-md-12,
.google-map .row {
  padding: 0;
  margin: 0;
}

.google-map-iframe {
  height: 600px;
}

.google-map-iframe iframe {
  width: 100%;
  height: 600px;
}

/************************************/
/***    20. Projects Page css     ***/
/************************************/

.our-project {
  padding: 100px 0 70px;
}

.our-project .project-box {
  position: relative;
  transition: all 0.3s ease-out;
}

.project-box .project-item .project-content {
  transform: translateY(0);
  opacity: 1;
  bottom: 30px;
}

.project-box:hover .project-item .project-content {
  bottom: 40px;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.project-details {
  padding: 100px 0;
}

.project-feature-image {
  margin-bottom: 40px;
}

.project-feature-image img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.4;
  object-fit: cover;
}

.project-details-box {
  margin-bottom: 40px;
}

.project-details-content {
  background-color: var(--primary-color);
  border-radius: 10px;
  text-align: center;
  height: 100%;
  padding: 30px;
}

.project-details-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.project-details-content p {
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
}

.project-details-entry {
  margin-bottom: 40px;
}

.project-details-entry p {
  margin-bottom: 20px;
}

.project-details-title {
  margin-bottom: 40px;
}

.project-details-title h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
}

.project-gallary-items {
  display: flex;
  flex-wrap: wrap;
}

.project-gallery-item {
  width: calc(25% - 15px);
  margin-right: 20px;
}

.project-gallery-item:last-child {
  margin-right: 0;
}

.project-gallery-item figure {
  border-radius: 10px;
}

.project-gallery-item img {
  transition: all 0.5s ease-out;
}

.project-gallery-item:hover img {
  transform: scale(1.1);
}

/************************************/
/*** 		22. FAQs css  		  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.faq-accordion .accordion-item {
  background: none;
  border: none;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
  font-size: 20px;
  font-weight: 700;
  background-color: var(--secondary-color);
  color: var(--accent-color);
  border-radius: 5px !important;
  border: none;
  box-shadow: none;
  padding: 15px 40px 15px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--divider-color);
  margin-bottom: 20px;
}

.faq-accordion .accordion-item .accordion-button.collapsed {
  color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f068";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translate(-20px, -8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 15px 20px;
}

.accordion-body p {
  margin-bottom: 15px;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

/************************************/
/***       23. 404 Page css       ***/
/************************************/

.page-not-found {
  text-align: center;
  padding: 100px 0;
}

.page-not-found-image {
  margin-bottom: 40px;
}

.page-not-found-box h2 {
  width: 560px;
  margin: 0 auto;
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/****************************************/
/***       24. Responsive css   	  ***/
/****************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0 10px;
  }

  .hero-content {
    padding: 0;
  }

  .project-slider {
    position: relative;
    width: 900px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  #magic-cursor {
    display: none !important;
  }

  .btn-default {
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  header.main-header .header-sticky {
    padding: 15px 0;
  }

  header.main-header .header-sticky.active .slicknav_menu {
    border-radius: 0;
  }

  .navbar.navbar-expand-lg {
    padding: 0px;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none;
  }

  .header-contact-us {
    display: none;
  }

  .responsive-menu {
    display: block;
    position: relative;
    width: 100%;
    z-index: 100;
  }

  .hero {
    padding: 50px 0 150px;
  }

  .hero.hero-slider .hero-slider-layout .hero-slide {
    padding: 80px 0 180px;
  }

  .hero-content-title h1,
  .hero-content-title h2 {
    font-size: 36px;
  }

  .cargo-shipment {
    margin-top: -120px;
  }

  .cargo-shipment-item {
    padding: 20px;
  }

  .cargo-shipment-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .home-transportation {
    padding: 50px 0;
  }

  .home-transportation .section-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  .home-transportation-content {
    margin-right: 0px;
  }

  .home-transportation-right {
    max-width: 100%;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .transportation-counter-box {
    position: absolute;
    left: 40%;
    bottom: 9%;
  }

  .transportation-counter-box h3 {
    font-size: 30px;
  }

  .our-service {
    padding: 50px 0;
  }

  .service-content-box {
    padding: 15px;
  }

  .our-service-title h2 {
    font-size: 18px;
  }

  .our-service-content-button a i {
    font-size: 24px;
  }

  .our-contract {
    padding: 50px 0;
    background-size: cover;
  }

  .our-cta-box {
    max-width: 530px;
  }

  .our-contract-title h2 {
    font-size: 26px;
  }

  .recent-project {
    padding: 50px 0 20px;
  }

  .project-slider {
    width: 660px;
    margin: 0 auto;
  }

  .client-button-prev {
    left: -6%;
  }

  .client-button-next {
    right: -6%;
  }

  .our-goals {
    padding: 50px 0 20px;
  }

  .our-goals-item {
    padding: 30px;
    margin-bottom: 30px;
  }

  .our-goals-counter h3 {
    font-size: 36px;
  }

  .providing-service {
    padding: 50px 0 25px;
  }

  .providing-content {
    margin-left: 0px;
  }

  .providing-content .section-title {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .Featured-Content-Box {
    text-align: center;
    margin-bottom: 30px;
  }

  .providing-content-body p {
    margin-bottom: 20px;
  }

  .latest-posts {
    padding: 25px 0 20px;
  }

  .post-body-meta ul li {
    margin-right: 20px;
  }

  .post-body h3 a {
    font-size: 18px;
  }

  .mega-footer {
    padding: 40px 0;
  }

  .mega-footer .row .col-md-6 {
    padding-left: 15px;
  }

  .footer-about {
    margin-bottom: 30px;
  }

  .footer-links {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-heading h2 {
    font-size: 18px;
  }

  .footer-social-link ul li {
    margin-right: 15px;
  }

  .footer-info-heading h2 {
    font-size: 18px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .page-header-box ol.breadcrumb li {
    font-size: 18px;
  }

  .page-header-box ol.breadcrumb li:after {
    font-size: 18px;
  }

  .home-transportation.about-transportation {
    padding: 50px 0 25px;
  }

  .about-transport {
    padding: 25px 0 50px;
  }

  .transport-item {
    text-align: center;
    padding: 20px 10px;
  }

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

  .our-indurstry {
    padding: 50px 0;
  }

  .indurstry-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .our-indurstry-content {
    margin-left: 0px;
  }

  .indurstry-content {
    margin-left: 0;
  }

  .export-team {
    padding: 50px 0 20px;
  }

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

  .our-contract.about-us {
    padding: 0 0 40px;
    margin: 0;
  }

  .service-page {
    padding: 50px 0 20px;
  }

  .service-details {
    padding: 50px 0;
  }

  .service-details-content {
    margin-bottom: 30px;
    margin-right: 0px;
  }

  .service-details-body {
    margin-bottom: 30px;
  }

  .service-details-body h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .service-details-body p {
    margin-bottom: 20px;
  }

  .post-widget-body .recent-post-item {
    margin-bottom: 20px;
  }

  .post-Category-list {
    margin-bottom: 30px;
  }

  .post-Category-list .footer-info-heading {
    margin-bottom: 20px;
  }

  .post-Category-list .footer-info-heading h2 {
    font-size: 24px;
  }

  .post-Category-list ul li {
    font-size: 14px;
  }

  .logistics-card-title h2 {
    font-size: 24px;
  }

  .logistics-card-body {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;
  }

  .logistics-card-body .header-contact-us {
    display: block;
  }

  .logistics-card-body a {
    margin-right: 20px;
  }

  .latest-posts.blog-page {
    padding: 50px 0;
  }

  .post-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .blog-detail-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .blog-detail-featured-image {
    margin-bottom: 30px;
  }

  .blog-detail-post-content h3 {
    font-size: 20px;
  }

  .post-social-links {
    text-align: left;
    margin-top: 10px;
  }

  /* .blog-details{
        padding: 40px 0;
    } */

  .service-details-content .latest-posts-content-meta {
    margin-bottom: 20px;
  }

  .service-details-content .latest-posts-content-meta ul li h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .blog-details-post-widget {
    margin-bottom: 30px;
    padding: 30px;
  }

  .recent-post-feature-img {
    width: 20%;
  }

  .recent-post-feature-img img {
    border-radius: 10px;
    aspect-ratio: 1/0.7;
    object-fit: cover;
  }

  .recent-post-content {
    width: 75%;
  }

  .get-in-touch {
    padding: 50px 0;
  }

  .get-quote {
    padding: 30px;
  }

  .get-quote .footer-info-heading h2 {
    font-size: 24px;
  }

  .get-quote-content {
    margin-bottom: 20px;
  }

  .contact-us {
    padding: 30px;
  }

  .contact-us .footer-info-heading {
    margin-bottom: 30px;
  }

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

  .contact-us-footer {
    display: block;
  }

  .topbar-social-links.contact-details {
    margin-bottom: 20px;
    text-align: left;
  }

  .contact-us-footer .header-contact-us {
    display: block;
  }

  .topbar-social-links ul {
    text-align: left;
  }

  .google-map-iframe {
    height: 450px;
  }

  .google-map-iframe iframe {
    height: 450px;
  }

  .google-map iframe {
    height: 450px;
  }

  .our-project {
    padding: 50px 0 20px;
  }

  .project-details {
    padding: 50px 0 30px;
  }

  .project-feature-image {
    margin-bottom: 30px;
  }

  .project-details-box {
    margin-bottom: 30px;
  }

  .project-details-content {
    padding: 20px;
  }

  .project-details-content h2 {
    font-size: 14px;
  }

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

  .project-details-entry {
    margin-bottom: 30px;
  }

  .project-details-title {
    margin-bottom: 30px;
  }

  .project-details-title h2 {
    font-size: 36px;
  }

  .project-gallery-item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .project-gallery-item:nth-child(2n + 2) {
    margin-right: 0;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs .section-title {
    width: 100%;
  }

  .faq-accordion .accordion-item .accordion-button {
    font-size: 20px;
  }

  .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 14px;
  }

  .page-not-found {
    padding: 50px 0;
  }

  .page-not-found-box h2 {
    width: 360px;
    margin: 0 auto;
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .happy-clients-section .section-title p {
    padding: 0 12px;
  }

  .btn-default {
    font-size: 14px;
  }

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

  .section-title p {
    max-width: 100%;
    text-align: justify;
  }

  .topbar {
    display: none;
  }

  header.main-header .header-sticky {
    padding: 15px 0;
  }

  header.main-header .header-sticky.active {
    padding: 10px 0;
  }

  .header-contact-us .btn-default {
    display: none;
  }

  body {
    font-size: 16px;
  }

  .hero.hero-slider .hero-slider-layout .hero-slide {
    padding: 50px 0 150px;
  }

  .hero-slider-layout .hero-slide .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-slider-layout .swiper-pagination {
    bottom: 115px;
  }

  .our-contract-body p {
    text-align: start;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-content-title h1,
  .hero-content-title h2 {
    width: 100%;
    font-size: 30px;
  }

  .cargo-shipment {
    padding: 0 10px;
    margin-top: -100px;
  }

  .cargo-shipment-content h3 {
    font-size: 16px;
  }

  .home-transportation-right {
    width: 100%;
    padding-bottom: 130px;
  }

  .transportation-img-1 {
    width: 80%;
  }

  .transportation-img-2 {
    width: 55%;
  }

  .home-transportation-footer a {
    margin-right: 20px;
  }

  .transportation-counter-box {
    position: absolute;
    left: 24%;
    bottom: 18%;
    padding: 20px;
  }

  .transportation-counter-box h3 {
    font-size: 24px;
  }

  .our-service .section-title::before {
    max-width: 80px;
  }

  .our-service-item {
    margin-bottom: 30px;
  }

  .our-service .col-md-4:nth-child(3n + 3) .our-service-item {
    margin-bottom: 0px;
  }

  .our-service-title h2 {
    font-size: 18px;
  }

  .our-contract {
    padding: 40px 0;
  }

  .our-contract .contract-video {
    display: none;
  }

  .our-contract .video-play-button {
    display: none;
  }

  .our-cta-box {
    max-width: 100%;
    padding: 30px;
  }

  .our-contract-title h2 {
    font-size: 22px;
  }

  .recent-project {
    padding: 40px 0 10px;
  }

  .project-slider {
    width: 270px;
  }

  .project-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .project-content-title {
    padding: 15px;
  }

  .project-content-title h3 {
    font-size: 16px;
  }

  .project-content-title i {
    font-size: 18px;
  }

  .client-button-prev {
    left: -14%;
  }

  .client-button-next {
    right: -14%;
  }

  .our-goals-item {
    padding: 30px;
    margin-bottom: 20px;
  }

  .our-goals-counter h3 {
    font-size: 30px;
  }

  .providing-service {
    padding: 50px 0 25px;
  }

  .providing-item-box {
    display: block;
  }

  .providing-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .post-body h3 a {
    font-size: 16px;
  }

  .post-meta ul li a {
    font-size: 14px;
  }

  .mega-footer {
    padding: 40px 0;
  }

  .footer-heading h2 {
    font-size: 16px;
  }

  .footer-info-heading h2 {
    font-size: 16px;
  }

  .footer-contact-info {
    margin-bottom: 30px;
  }

  .newsletters-content {
    margin-bottom: 20px;
  }

  .footer-copyright p {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-policy-links ul {
    text-align: center;
  }

  .page-header-box {
    text-align: center;
  }

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

  .page-header-box .breadcrumb {
    justify-content: center;
  }

  .page-header-box ol.breadcrumb li {
    font-size: 16px;
  }

  .page-header-box ol.breadcrumb li:after {
    font-size: 16px;
  }

  .about-transport .col-md-4 {
    margin-bottom: 20px;
  }

  .about-transport .col-md-4:last-child {
    margin-bottom: 0;
  }

  .transport-item {
    padding: 0;
    border: none;
  }

  .transport-content h3 {
    font-size: 16px;
  }

  .indurstry-content {
    display: block;
    margin: 20px 0 0;
  }

  .indurstry-content ul {
    margin-bottom: 20px;
    margin-right: 0px;
  }

  .indurstry-content ul li {
    width: 100%;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .indurstry-content ul li i {
    font-size: 14px;
  }

  .team-item {
    margin-bottom: 20px;
  }

  .export-team .col-md-4:last-child .team-item {
    margin-bottom: 0;
  }

  .team-content h3 a {
    font-size: 16px;
  }

  .blog-detail-post-content h3 {
    font-size: 18px;
  }

  .blog-detail-post-content {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .service-details-content {
    margin-bottom: 20px;
  }

  .service-details-body {
    margin-bottom: 20px;
  }

  .service-details-body h2 {
    font-size: 18px;
  }

  .service-info-box .icon-box {
    position: absolute;
    top: 5px;
    left: 0;
  }

  .service-details-footer {
    display: block;
    justify-content: space-between;
  }

  .service-details-image-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .service-details-image-box:last-child {
    margin-bottom: 0;
  }

  .post-Category-list.blog-details-list {
    margin-bottom: 20px;
    padding: 20px;
  }

  .service-logistics-card {
    padding: 25px;
  }

  .post-Category-list .footer-info-heading h2 {
    font-size: 22px;
  }

  .post-Category-list ul li a i {
    font-size: 18px;
  }

  .logistics-card-title h2 {
    font-size: 22px;
  }

  .logistics-card-body {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: space-between;
  }

  .logistics-card-body a {
    margin-right: 0px;
  }

  .get-quote {
    margin-bottom: 20px;
  }

  .get-quote .footer-info-heading h2 {
    font-size: 22px;
  }

  .contact-us .footer-info-heading h2 {
    font-size: 22px;
  }

  .google-map-iframe {
    height: 350px;
  }

  .google-map-iframe iframe {
    height: 350px;
  }

  .google-map iframe {
    height: 350px;
  }

  .blog-details-content-meta {
    margin-bottom: 20px;
  }

  .blog-details-content-meta ul li {
    margin-right: 15px;
  }

  .blog-details-post-widget {
    padding: 20px;
  }

  .recent-post-feature-img {
    width: 35%;
  }

  .recent-post-content {
    width: 60%;
  }

  .recent-post-content .post-readmore a {
    font-size: 14px;
  }

  .project-feature-image {
    margin-bottom: 30px;
  }

  .project-feature-image img {
    height: 150px;
  }

  .project-details-box {
    margin-bottom: 0px;
  }

  .project-details-content {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
  }

  .project-details-entry {
    margin-bottom: 20px;
  }

  .project-details-title {
    margin-bottom: 20px;
  }

  .project-details-title h2 {
    font-size: 28px;
  }

  .project-gallary-items {
    display: block;
  }

  .project-gallery-item {
    width: 100%;
    margin-right: 0px;
  }

  .page-faqs .section-title {
    width: 100%;
  }

  .faq-accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding: 10px 30px 10px 10px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translate(-10px, -11px);
    font-size: 18px;
  }

  .faq-accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 10px 30px 10px 10px;
  }

  .page-not-found-image {
    margin-bottom: 30px;
  }

  .page-not-found-box h2 {
    width: 280px;
    margin: 0 auto;
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.our-service .shape1 {
  position: absolute;
  top: 1925px;
  left: 05px;
  z-index: 5;
  height: 60px !important;
  width: 150px;
  animation: upDown 2s ease-in-out infinite alternate;
  will-change: transform;
}

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

  100% {
    transform: translateX(20px);
  }
}

@media only screen and (max-width: 991px) {
  .shape1 {
    display: none;
  }
}

/* Modern Glassmorphism Client Section */

.happy-clients-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  overflow: hidden;
}

.happy-clients-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  top: -220px;
  right: -150px;
  filter: blur(80px);
}

.happy-clients-section .section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.happy-clients-section .section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.happy-clients-section .section-title h2 span {
  color: var(--accent-color);
}

.happy-clients-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.8;
}

.clients-slider {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(to right, #111827 0%, transparent 100%);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(to left, #111827 0%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientMarquee 28s linear infinite;
}

.client-item {
  position: relative;
  width: 250px;
  height: 135px;
  margin: 0 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.client-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.client-item img {
  max-width: 75%;
  max-height: 70px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.4s ease;
}

.client-item:hover {
  transform: translateY(-12px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.client-item:hover::before {
  opacity: 1;
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .happy-clients-section {
    padding: 90px 0;
  }

  .happy-clients-section .section-title h2 {
    font-size: 38px;
  }

  .client-item {
    width: 210px;
    height: 115px;
    margin: 0 12px;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 100px;
  }
}

/* Mobile */

@media (max-width: 575px) {
  .happy-clients-section {
    padding: 70px 0;
  }

  .happy-clients-section .section-title {
    margin-bottom: 45px;
  }

  .happy-clients-section .section-title h2 {
    font-size: 30px;
  }

  .happy-clients-section .section-title p {
    font-size: 15px;
  }

  .client-item {
    width: 160px;
    height: 85px;
    border-radius: 18px;
  }

  .client-item img {
    max-height: 42px;
  }

  .clients-track {
    animation-duration: 16s;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 50px;
  }
}

/* ==========================================
   PARALLAX CONTACT SECTION
========================================== */

.our-contract1 {
  position: relative;
  padding: 120px 0;
  background: url("../images/parallax-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
        135deg,
        rgba(15,23,42,0.92),
        rgba(17,24,39,0.82),
        rgba(249,115,22,0.18)
    ); */
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

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

/* ==========================================
   CONTACT BOX
========================================== */

.support-contact-box {
  position: relative;
  /* background: rgba(255,255,255,0.08); */
  backdrop-filter: blur(18px);
  /* border: 1px solid rgba(255,255,255,0.12); */
  border-radius: 35px;
  padding: 80px 70px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #111827 0%, #1f2937 45%, #b6b4b3 100%);

  box-shadow: 0 35px 90px rgba(17, 24, 39, 0.18);
}

.support-contact-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  filter: blur(70px);
}

.support-contact-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(172, 172, 172, 0.521);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  filter: blur(60px);
}

/* ==========================================
   CONTENT
========================================== */

.support-contact-content {
  position: relative;
  z-index: 2;
}

.support-tagline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-contact-content h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
}

.support-contact-content h2 span {
  color: var(--accent-color);
}

.support-contact-content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
  word-spacing: 1px;
}

/* ==========================================
   EMAIL BUTTON
========================================== */

.support-contact-email {
  position: relative;
  z-index: 2;
  margin-top: 45px;
}

.support-contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 35px;
  border-radius: 80px;
  background: #ffffff;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.support-contact-email a i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.support-contact-email a:hover {
  transform: translateY(-8px);
  color: var(--accent-color);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .our-contract1 {
    padding: 90px 0;
  }

  .support-contact-box {
    padding: 65px 45px;
  }

  .support-contact-content h2 {
    font-size: 42px;
  }

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

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

@media (max-width: 575px) {
  .our-contract {
    padding: 70px 0;
  }

  .support-contact-box {
    padding: 45px 22px;
    border-radius: 24px;
  }

  .support-tagline {
    font-size: 12px;
    padding: 10px 18px;
  }

  .support-contact-content h2 {
    font-size: 30px;
  }

  .support-contact-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .support-contact-email {
    margin-top: 35px;
  }

  .support-contact-email a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    gap: 12px;
  }

  .support-contact-email a i {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

.our-goals-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0),
      rgba(255, 125, 68, 0.2));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.our-goals-item:hover .our-goals-counter h3 {
  color: var(--accent-color);
  transition: all 0.3s ease;
}

/*====================================
   Premium Achievement Section
====================================*/

.our-goals {
  position: relative;
  padding: 55px 0;
  background: linear-gradient(180deg, #eef2f6 0%, #ffffff 100%);
  overflow: hidden;
}

.our-goals::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 125, 68, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.our-goals::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(17, 24, 39, 0.04);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Title */

.achievement-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.our-goals .section-title {
  margin-bottom: 70px;
}

.our-goals .section-title h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.our-goals .section-title p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.8;
}

/* Card Design */

.our-goals-item {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 50px 35px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 15px 40px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transition: all 0.45s ease;
  z-index: 1;
  height: 100%;
}

.our-goals-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.7),
      rgba(255, 125, 68, 0.25),
      rgba(17, 24, 39, 0.08));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.goal-pattern {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 125, 68, 0.08);
  top: -70px;
  right: -60px;
  z-index: -1;
}

.our-goals-item:hover {
  transform: translateY(-14px);
  box-shadow:
    0 30px 70px rgba(17, 24, 39, 0.16),
    0 10px 25px rgba(255, 125, 68, 0.15);
}

/* Icon */

.counter-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      #111827 0%,
      #2f3d52 50%,
      var(--accent-color) 100%);

  box-shadow:
    0 20px 40px rgba(17, 24, 39, 0.18),
    0 10px 25px rgba(255, 125, 68, 0.18);

  transition: all 0.45s ease;
}

.counter-icon i {
  color: #fff;
  font-size: 42px;
}

.our-goals-item:hover .counter-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Counter */

.our-goals-counter h3 {
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.our-goals-item:hover .our-goals-counter h3 {
  color: var(--accent-color);
}

.our-goals-counter p {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */

@media (max-width: 991px) {

  .our-goals {
    padding: 80px 0;
  }

  .our-goals .section-title h2 {
    font-size: 40px;
  }

  .our-goals-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  .our-goals .section-title h2 {
    font-size: 32px;
  }

  .our-goals-counter h3 {
    font-size: 46px;
  }

  .our-goals-item {
    padding: 40px 25px;
  }
}

/*====================================
   Premium About Section
====================================*/

.home-transportation {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  overflow: hidden;
}

.home-transportation::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 125, 68, 0.06);
  top: -220px;
  right: -180px;
}

/* Section Title */

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.home-transportation .section-title {
  margin-bottom: 35px;
  text-align: left;
}

.home-transportation .section-title h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #ed580e;
  margin-bottom: 25px;
}

.home-transportation .section-title h2 span {
  color: var(--accent-color);
}

.home-transportation .section-title p {
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
}

/* Feature Boxes */

.service-info-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(17, 24, 39, 0.06);

  box-shadow:
    0 12px 35px rgba(17, 24, 39, 0.05);

  transition: all 0.4s ease;
}

.service-info-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(17, 24, 39, 0.12);
}

.service-info-box .icon-box {
  min-width: 60px;
  height: 60px;
  border-radius: 18px;

  background: linear-gradient(135deg,
      #111827,
      var(--accent-color));

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

  box-shadow: 0 10px 25px rgba(255, 125, 68, 0.2);
}

.service-info-box .icon-box i {
  color: #fff;
  font-size: 22px;
}

.service-info-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-left: 49px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-info-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
}

/* Footer */

.home-transportation-footer {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}

.transportation-footer-btn .btn-default {
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;

  box-shadow:
    0 15px 35px rgba(255, 125, 68, 0.2);
}

.header-contact-us a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;

  background: linear-gradient(135deg,
      #111827,
      #2d3748);

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

  box-shadow:
    0 15px 30px rgba(17, 24, 39, 0.15);
}

.contact-icon i {
  color: #fff;
  font-size: 22px;
}

.header-contact-us h3 {
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
}

.header-contact-us h3 span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 4px;
}

/* Images */

.home-transportation-right {
  position: relative;
  padding-bottom: 100px;
}

.transportation-img-1 img {
  width: 100%;
  border-radius: 32px;

  box-shadow:
    0 30px 70px rgba(17, 24, 39, 0.15);
}

.transportation-img-2 {
  position: absolute;
  right: -20px;
  bottom: 0;
  max-width: 280px;
}

.transportation-img-2 img {
  border-radius: 26px;
  border: 8px solid #fff;

  box-shadow:
    0 20px 50px rgba(17, 24, 39, 0.18);
}

/* Counter Box */

.transportation-counter-box {
  position: absolute;
  left: -30px;
  bottom: 70px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);

  border-radius: 26px;
  padding: 28px 34px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.6);

  box-shadow:
    0 25px 60px rgba(17, 24, 39, 0.15);
}

.counter-icon-small {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;

  border-radius: 18px;

  background: linear-gradient(135deg,
      #111827,
      var(--accent-color));

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

.counter-icon-small i {
  color: #fff;
  font-size: 24px;
}

.transportation-counter-box h3 {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.transportation-counter-box p {
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 991px) {

  .home-transportation {
    padding: 80px 0;
  }

  .home-transportation .section-title h2 {
    font-size: 38px;
  }

  .home-transportation-right {
    margin-bottom: 50px;
  }

  .transportation-counter-box {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {

  .home-transportation .section-title h2 {
    font-size: 30px;
  }

  .home-transportation-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .transportation-img-2 {
    max-width: 180px;
  }

  .transportation-counter-box {
    padding: 20px 24px;
  }

  .transportation-counter-box h3 {
    font-size: 40px;
  }
}

/*====================================
   ULTRA PREMIUM CLIENT SECTION
====================================*/

.velora-clients-section {
  position: relative;
  padding: 50px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 125, 68, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 25%),
    linear-gradient(180deg, #0b1018 0%, #111827 50%, #1b2431 100%);

  overflow: hidden;
  z-index: 1;
}

/* Animated Grid */

.velora-clients-section::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: linear-gradient(to bottom,
      transparent,
      rgba(0, 0, 0, 0.8),
      transparent);

  z-index: -1;
}

/* Glow Effects */

.velora-client-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;

  background: rgba(255, 125, 68, 0.15);

  top: -320px;
  left: -250px;

  filter: blur(80px);
}

.velora-client-glow-two {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  bottom: -250px;
  right: -180px;

  filter: blur(70px);
}

/* Header */

.velora-clients-header {
  position: relative;
  z-index: 2;
  margin-bottom: 90px;
}

.velora-client-subtitle {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: var(--accent-color);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  backdrop-filter: blur(10px);

  margin-bottom: 24px;
}

.velora-client-subtitle::before {
  content: '';
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent-color);

  box-shadow:
    0 0 15px var(--accent-color);
}

.velora-clients-header h2 {
  font-size: 47px;
  font-weight: 900;
  line-height: 1.1;

  color: #fff;

  margin-bottom: 24px;

  letter-spacing: -2px;
}

.velora-clients-header h2 span {
  background: linear-gradient(135deg,
      #ff7d44,
      #ffb98d);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.velora-clients-header p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.9;

  max-width: 780px;
  margin: auto;
}

/* Slider */

.velora-clients-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Edge Blur */

.velora-clients-slider::before,
.velora-clients-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 240px;
  height: 100%;
  z-index: 5;
}

.velora-clients-slider::before {
  left: 0;

  background: linear-gradient(to right,
      #0b1018 0%,
      rgba(11, 16, 24, 0.85) 30%,
      transparent 100%);
}

.velora-clients-slider::after {
  right: 0;

  background: linear-gradient(to left,
      #0b1018 0%,
      rgba(11, 16, 24, 0.85) 30%,
      transparent 100%);
}

/* Track */

.velora-clients-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: veloraInfiniteClients 38s linear infinite;
}

.velora-clients-slider:hover .velora-clients-track {
  animation-play-state: paused;
}

@keyframes veloraInfiniteClients {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Client Card */

.velora-client-card {
  position: relative;

  min-width: 300px;
  height: 180px;

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

  border-radius: 34px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.03));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  overflow: hidden;

  transition: all 0.5s ease;
}

/* Glass Shine */

.velora-client-card::before {
  content: '';

  position: absolute;

  top: -120%;
  left: -50%;

  width: 70%;
  height: 300%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent);

  transform: rotate(25deg);

  transition: all 0.8s ease;
}

/* Gradient Border */

.velora-client-card::after {
  content: '';

  position: absolute;
  inset: 0;

  border-radius: 34px;
  padding: 1px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 125, 68, 0.35),
      rgba(255, 255, 255, 0.04));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Logo */

.velora-client-card img {
  position: relative;
  z-index: 2;

  max-width: 203px;
  max-height: 114px;

  object-fit: contain;

  /*filter:*/
  /*  grayscale(100%) brightness(2.2);*/

  /*opacity: 0.75;*/

  transition: all 0.5s ease;
}

/* Hover */

.velora-client-card:hover {
  transform:
    translateY(-12px) scale(1.03);

  border-color: rgba(255, 125, 68, 0.25);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.30),
    0 10px 30px rgba(255, 125, 68, 0.18);
}

.velora-client-card:hover::before {
  left: 160%;
}

.velora-client-card:hover img {
  filter:
    grayscale(0%) brightness(1);

  opacity: 1;

  transform: scale(1.08);
}

/* Responsive */

@media(max-width:991px) {

  .velora-clients-section {
    padding: 100px 0;
  }

  .velora-clients-header h2 {
    font-size: 48px;
  }

  .velora-client-card {
    min-width: 240px;
    height: 150px;
  }
}

@media(max-width:767px) {

  .velora-clients-header h2 {
    font-size: 34px;
  }

  .velora-clients-header p {
    font-size: 15px;
  }

  .velora-client-card {
    min-width: 190px;
    height: 110px;
    border-radius: 24px;
  }

  .velora-client-card img {
    max-width: 120px;
  }

  .velora-clients-slider::before,
  .velora-clients-slider::after {
    width: 80px;
  }
}

.home-transportation {
  padding: 110px 0;
  background: #f5f5f7;
  overflow: hidden;
}

.home-transportation-content {
  padding-right: 40px;
}

.section-tagline {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff5a1f;
  padding-left: 35px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 62px;
  line-height: 1.1em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 30px;
}

.section-title p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6f7482;
  margin-bottom: 22px;
}

.transportation-feature-list {
  margin-top: 35px;
}

.transportation-feature-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.transportation-feature-list ul li {
  position: relative;
  padding-left: 18px;
  color: #071c3d;
  font-weight: 600;
  font-size: 15px;
}

.transportation-feature-list ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5a1f;
  font-size: 18px;
  font-weight: 700;
}

.home-transportation-footer {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #ff5a1f;
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-default:hover {
  background: #071c3d;
  color: #fff;
}

.header-contact-us a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.header-contact-us img {
  width: 46px;
}

.header-contact-us h3 {
  font-size: 14px;
  color: #071c3d;
  margin: 0;
  font-weight: 600;
  line-height: 1.5em;
}

.header-contact-us h3 span {
  display: block;
  color: #ff5a1f;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

/* Right Section */

.home-transportation-right {
  position: relative;
  padding-left: 30px;
}

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

.transportation-img-small figure,
.transportation-img-large figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.transportation-img-small img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px;
  transition: all 0.5s ease;
}

.transportation-img-large {
  grid-column: span 2;
}

.transportation-img-large img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  transition: all 0.5s ease;
}

.transportation-img-small:hover img,
.transportation-img-large:hover img {
  transform: scale(1.06);
}

.transportation-counter-box {
  position: absolute;
  left: -20px;
  bottom: 120px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.transportation-counter-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 5px;
}

.transportation-counter-box p {
  margin: 0;
  color: #6f7482;
  font-size: 15px;
  font-weight: 500;
}

.transportation-dots {
  position: absolute;
  right: 20px;
  bottom: -40px;
  width: 120px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.transportation-dots span {
  width: 4px;
  height: 4px;
  background: #071c3d;
  border-radius: 50%;
  opacity: 0.35;
}

/* Responsive */

@media only screen and (max-width: 991px) {

  .home-transportation {
    padding: 80px 0;
  }

  .home-transportation-content {
    padding-right: 0;
    margin-top: 50px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .transportation-counter-box {
    left: 10px;
    bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {

  .section-title h2 {
    font-size: 38px;
  }

  .transportation-feature-list ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .transportation-grid {
    gap: 12px;
  }

  .transportation-img-small img {
    height: 150px;
  }

  .transportation-img-large img {
    height: 250px;
  }

  .transportation-counter-box {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    width: fit-content;
  }

  .transportation-dots {
    display: none;
  }
}

.core-values-section {
  position: relative;
  padding: 55px 0;
  background: #f7f8fa;
  overflow: hidden;
}

/* Background Shape */
.core-values-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #eef2f6, #dfe7ef);
  border-radius: 50%;
  opacity: 0.9;
}

/* Header */
.core-values-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.core-values-header h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 20px;
}

.core-values-header h2 span {
  color: #ff5a1f;
}

.core-values-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Grid */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Card */
.core-value-card {
  position: relative;
  background: #fff;
  padding: 45px 35px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf0f5;
}

.core-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Active Card */
/* .active-card {
  background: linear-gradient(180deg, #071c3d, #0b2c5a);
} */

.active-card h3,
.active-card p,
.active-card .value-number {
  color: #fff;
}

.active-card .value-shape {
  background: rgba(255, 255, 255, 0.08);
}

/* Icon */
.value-icon {
  width: 95px;
  height: 95px;
  background: #f4f6fa;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.active-card .value-icon {
  background: rgba(255, 255, 255, 0.1);
}

.value-icon img {
  width: 60px;
}

/* Number */
.value-number {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  color: #dbe1ea;
  opacity: 0.8;
}

/* Heading */
.core-value-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Text */
.core-value-card p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Shape */
.value-shape {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: #f3f5f9;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Hover */
.core-value-card:hover .value-shape {
  transform: scale(1.1);
}

/* Responsive */

@media only screen and (max-width: 991px) {

  .core-values-section {
    padding: 80px 0;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-header h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-values-header h2 {
    font-size: 34px;
  }

  .core-value-card {
    padding: 35px 25px;
  }

  .value-number {
    font-size: 48px;
  }
}

.value-icon {
  width: 95px;
  height: 95px;
  background: #f4f6fa;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.value-icon i {
  font-size: 42px;
  color: #ff5a1f;
  transition: all 0.4s ease;
}

.active-card .value-icon {
  background: rgba(255, 255, 255, 0.1);
}

.active-card .value-icon i {
  color: #ffffff;
}

.core-value-card:hover .value-icon {
  transform: rotate(-8deg) scale(1.05);
}

.why-conveytech-section {
  position: relative;
  padding: 60px 0;
  background: #f7f8fa;
  overflow: hidden;
}

/* Background Shape */
.why-conveytech-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #edf2f7, #dce5ef);
  border-radius: 50%;
  opacity: 0.9;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: 14px;
  font-weight: 700;
  color: #ff5a1f;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 20px;
  max-width: 700px;
}

.section-title h2 span {
  color: #ff5a1f;
}

.section-title p {
  /max-width: 720px;
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Cards */
.why-conveytech-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.why-conveytech-card {
  position: relative;
  padding: 50px 40px;
  border-right: 1px solid #edf1f5;
  transition: all 0.4s ease;
  background: #fff;
}

.why-conveytech-card:last-child {
  border-right: none;
}

.why-conveytech-card:hover {
  background: #071c3d;
}

.why-conveytech-card:hover h3,
.why-conveytech-card:hover p,
.why-conveytech-card:hover .why-card-icon i {
  color: #fff;
}

.active-card {
  background: #071c3d;
}

.active-card h3,
.active-card p,
.active-card .why-card-icon i {
  color: #fff !important;
}

/* Icon */
.why-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.why-card-icon i {
  font-size: 34px;
  color: #ff5a1f;
  transition: all 0.4s ease;
}

.why-conveytech-card:hover .why-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.active-card .why-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

/* Card Heading */
.why-conveytech-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

/* Card Text */
.why-conveytech-card p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
  transition: all 0.4s ease;
}

/* Bottom Stats */
.why-conveytech-bottom {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.why-bottom-box {
  background: #fff;
  padding: 30px 45px;
  border-radius: 20px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.why-bottom-box h4 {
  font-size: 42px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 8px;
}

.why-bottom-box p {
  font-size: 15px;
  color: #6d7380;
  margin: 0;
  font-weight: 600;
}

/* Responsive */

@media only screen and (max-width: 991px) {

  .why-conveytech-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .why-conveytech-wrapper {
    grid-template-columns: 1fr;
  }

  .why-conveytech-card {
    border-right: none;
    border-bottom: 1px solid #edf1f5;
  }

  .why-conveytech-card:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 767px) {

  .section-title h2 {
    font-size: 34px;
  }

  .why-conveytech-card {
    padding: 40px 25px;
  }

  .why-bottom-box {
    width: 100%;
  }
}

.services-support-section {
  position: relative;
  padding: 55px 0;
  /* background: #f5f7fa; */
  overflow: hidden;
}

/* Header */
.services-support-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.services-support-header h2 {
  font-size: 54px;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 20px;
}

.services-support-header h2 span {
  color: #ff5a1f;
}

.services-support-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Wrapper */
.services-support-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Column */
.support-column {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.support-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff5a1f, #ff7b47);
}

.support-dark {
  background: #071c3d;
}

.support-dark .support-heading h3,
.support-dark .support-content h4,
.support-dark .support-content p {
  color: #fff;
}

.support-dark .support-icon {
  background: rgba(255, 255, 255, 0.08);
}

.support-dark .support-icon i {
  color: #fff;
}

/* Heading */
.support-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.support-heading span {
  width: 35px;
  height: 3px;
  background: #ff5a1f;
}

.support-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin: 0;
}

/* List */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Item */
.support-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Icon */
.support-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 20px;
  background: #f3f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.support-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

.support-item:hover .support-icon {
  transform: rotate(-8deg) scale(1.05);
}

/* Content */
.support-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.support-content p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .services-support-section {
    padding: 80px 0;
  }

  .services-support-wrapper {
    grid-template-columns: 1fr;
  }

  .services-support-header h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .services-support-header h2 {
    font-size: 34px;
  }

  .support-column {
    padding: 35px 25px;
  }

  .support-item {
    flex-direction: column;
  }
}

.global-presence-section {
  position: relative;
  padding: 55px 0;
  background: #f7f8fa;
  overflow: hidden;
}

/* Background Shape */
.global-presence-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.global-presence-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 60px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.global-presence-header h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2em;
  color: #071c3d;
  margin-bottom: 22px;
}

.global-presence-header h2 span {
  color: #ff5a1f;
}

.global-presence-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Wrapper */
.global-presence-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.presence-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.presence-info-box {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fff;
  padding: 35px;
  border-radius: 26px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border:1px solid #e4e5e98a;
}

.presence-info-box:hover {
  transform: translateY(-8px);
}

.presence-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff5a1f, #ff7d4f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence-icon i {
  font-size: 34px;
  color: #fff;
}

.presence-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 14px;
}

.presence-info p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Countries */
.presence-country-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.country-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 24px 22px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  color: #071c3d;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.country-box i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f3f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5a1f;
  font-size: 18px;
  transition: all 0.4s ease;
}

.country-box:hover {
  transform: translateY(-6px);
  background: #071c3d;
  color: #fff;
}

.country-box:hover i {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.active-country {
  background: #071c3d;
  color: #fff;
}

.active-country i {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .global-presence-section {
    padding: 80px 0;
  }

  .global-presence-wrapper {
    grid-template-columns: 1fr;
  }

  .global-presence-header h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .global-presence-header h2 {
    font-size: 34px;
  }

  .presence-info-box {
    flex-direction: column;
    padding: 30px 24px;
  }

  .presence-country-wrapper {
    grid-template-columns: 1fr;
  }

  .country-box {
    font-size: 16px;
  }
}

.belt-conveyor-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Content */
.belt-conveyor-content {
  padding-right: 40px;
}

.belt-conveyor-content h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 25px;
}

.belt-conveyor-content h2 span {
  color: #ff5a1f;
}

.belt-conveyor-content p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 22px;
}

/* Features */
.belt-feature-list {
  margin-top: 35px;
}

.belt-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.belt-feature-item i {
  color: #ff5a1f;
  font-size: 18px;
}

.belt-feature-item span {
  font-size: 16px;
  font-weight: 500;
  color: #071c3d;
}

/* Contact */
.belt-contact-box {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 20px 28px;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5a1f, #ff7a4b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #fff;
  font-size: 28px;
}

.contact-content span {
  display: block;
  font-size: 14px;
  color: #6d7380;
  margin-bottom: 4px;
}

.contact-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #071c3d;
  margin: 0;
}

/* Image */
.belt-conveyor-image-wrapper {
  position: relative;
  padding-left: 40px;
}

.belt-main-image {
  position: relative;
  z-index: 2;
}

.belt-main-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* Floating Box */
.belt-floating-box {
  position: absolute;
  left: 0;
  bottom: 40px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.floating-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 24px;
  color: #ff5a1f;
}

.floating-content span {
  font-size: 14px;
  color: #6d7380;
}

.floating-content h5 {
  font-size: 18px;
  color: #071c3d;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 700;
}

/* Dots */
.belt-dots {
  position: absolute;
  top: 40px;
  right: -60px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(#cfe2ff 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.8;
}

/* Conveyor Types */
.belt-conveyor-types {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.belt-type-item {
  text-align: center;
}

.belt-type-img {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 15px;
}

.belt-type-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.belt-type-item:hover .belt-type-img img {
  transform: scale(1.08);
}

.belt-type-item h4 {
  font-size: 17px;
  line-height: 1.5em;
  color: #071c3d;
  font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .belt-conveyor-section {
    padding: 80px 0;
  }

  .belt-conveyor-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .belt-conveyor-content h2 {
    font-size: 42px;
  }

  .belt-conveyor-image-wrapper {
    padding-left: 0;
  }

  .belt-conveyor-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {

  .belt-conveyor-content h2 {
    font-size: 34px;
  }

  .belt-floating-box {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .belt-conveyor-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .belt-type-img img {
    height: 120px;
  }

  .belt-dots {
    display: none;
  }
}


.technical-spec-section {
  position: relative;
  padding: 55px 0;
  background: #f5f7fa;
  overflow: hidden;
}

/* Header */
.technical-spec-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.spec-left h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin: 0;
}

.spec-left h2 span {
  color: #ff5a1f;
}

.spec-right p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Wrapper */
.technical-spec-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.specification-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.spec-highlight-box {
  background: #fff;
  padding: 35px 30px;
  border-radius: 26px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.dark-box {
  background: #071c3d;
}

.dark-box h3,
.dark-box p,
.dark-box .highlight-icon i {
  color: #fff;
}

.dark-box .highlight-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* Highlight */
.highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.highlight-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

.spec-highlight-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 16px;
}

.spec-highlight-box p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Content */
.specification-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spec-group {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.spec-group-title {
  padding: 24px 35px;
  background: linear-gradient(90deg, #071c3d, #10396e);
}

.spec-group-title h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

/* Rows */
.spec-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid #edf1f5;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  padding: 22px 35px;
  font-size: 16px;
  font-weight: 700;
  color: #071c3d;
  background: #f8fafc;
  border-right: 1px solid #edf1f5;
}

.spec-value {
  padding: 22px 35px;
  font-size: 16px;
  color: #6d7380;
  font-weight: 500;
}

/* Drawing */
.technical-drawing-box {
  margin-top: 70px;
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.drawing-header {
  margin-bottom: 25px;
}

.drawing-header h4 {
  font-size: 30px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.drawing-header span {
  font-size: 15px;
  color: #6d7380;
}

.drawing-image {
  overflow: hidden;
  border-radius: 18px;
}

.drawing-image img {
  width: 100%;
  object-fit: cover;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .technical-spec-section {
    padding: 80px 0;
  }

  .technical-spec-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .technical-spec-wrapper {
    grid-template-columns: 1fr;
  }

  .spec-left h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .spec-left h2 {
    font-size: 34px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-label {
    border-right: none;
    border-bottom: 1px solid #edf1f5;
  }

  .technical-drawing-box {
    padding: 25px;
  }

  .drawing-header h4 {
    font-size: 24px;
  }
}

.technical-dimension-section {
  position: relative;
  padding: 55px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.technical-dimension-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.technical-dimension-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.technical-dimension-header h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.technical-dimension-header h2 span {
  color: #ff5a1f;
}

.technical-dimension-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Main Layout */
.technical-dimension-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Info */
.dimension-left-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dimension-info-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.dark-card {
  background: #071c3d;
}

.dark-card h3,
.dark-card p,
.dark-card .info-icon i {
  color: #fff;
}

.dark-card .info-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* Icon */
.info-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.info-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

.dimension-info-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 15px;
}

.dimension-info-card p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Table */
.dimension-table {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.dimension-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #edf1f5;
}

.dimension-row:last-child {
  border-bottom: none;
}

/* Code */
.dimension-code {
  width: 100px;
  min-width: 100px;
  background: linear-gradient(135deg, #071c3d, #10396e);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.dimension-content {
  padding: 28px 35px;
  flex: 1;
}

.dimension-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.dimension-content p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Notes */
.dimension-note-box {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border-left: 5px solid #ff5a1f;
}

/* Header */
.note-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.note-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

.note-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.note-content p {
  font-size: 16px;
  color: #6d7380;
  margin: 0;
}

/* Notes List */
.note-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.note-item i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #ff5a1f;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.note-item span {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .technical-dimension-section {
    padding: 80px 0;
  }

  .technical-dimension-main {
    grid-template-columns: 1fr;
  }

  .technical-dimension-header h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .technical-dimension-header h2 {
    font-size: 34px;
  }

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

  .dimension-code {
    width: 100%;
    min-height: 70px;
  }

  .dimension-content {
    padding: 24px;
  }

  .dimension-note-box {
    padding: 30px 24px;
  }

  .note-header {
    align-items: flex-start;
  }

  .note-content h3 {
    font-size: 24px;
  }
}

.inclined-conveyor-section {
  position: relative;
  padding: 55px 0;
  background: #f5f7fa;
  overflow: hidden;
}

/* Background Shape */
.inclined-conveyor-section::before {
  content: '';
  position: absolute;
  left: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.inclined-section-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.inclined-section-header h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.inclined-section-header h2 span {
  color: #ff5a1f;
}

.inclined-section-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Main Wrapper */
.inclined-conveyor-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left */
.inclined-left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Spec Card */
.inclined-spec-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.spec-card-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #071c3d, #10396e);
}

.spec-card-header h3 {
  font-size: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* Table */
.specification-table {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #edf1f5;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-title {
  padding: 22px 30px;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 700;
  color: #071c3d;
  border-right: 1px solid #edf1f5;
}

.spec-value {
  padding: 22px 30px;
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
}

/* Note */
.inclined-note-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid #ff5a1f;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.note-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 18px;
  background: #fff3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

.note-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.note-content p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Right Side */
.inclined-right-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Drawing */
.inclined-image-box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.inclined-image-box img {
  width: 100%;
  border-radius: 18px;
}

/* Floating Tag */
.floating-tag {
  position: absolute;
  right: 35px;
  bottom: 35px;
  background: #071c3d;
  color: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-tag i {
  color: #ff5a1f;
}

/* Dimension Card */
.dimension-spec-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.dimension-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #ff5a1f, #ff7b47);
}

.dimension-header h3 {
  color: #fff;
  font-size: 26px;
  margin: 0;
  font-weight: 700;
}

/* Dimension List */
.dimension-list {
  padding: 10px 0;
}

.dimension-item {
  display: flex;
  gap: 22px;
  padding: 22px 30px;
  border-bottom: 1px solid #edf1f5;
}

.dimension-item:last-child {
  border-bottom: none;
}

.dimension-code {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  background: #f4f6fa;
  color: #071c3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.dimension-info h5 {
  font-size: 20px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.dimension-info p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .inclined-conveyor-section {
    padding: 80px 0;
  }

  .inclined-conveyor-wrapper {
    grid-template-columns: 1fr;
  }

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

@media only screen and (max-width: 767px) {

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

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-title {
    border-right: none;
    border-bottom: 1px solid #edf1f5;
  }

  .dimension-item {
    flex-direction: column;
  }

  .floating-tag {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    width: fit-content;
  }

  .inclined-note-box {
    flex-direction: column;
  }
}

.spacing-conveyor-section {
  position: relative;
  padding: 55px 0;
  background: #f5f7fa;
  overflow: hidden;
}

/* Background Shape */
.spacing-conveyor-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.spacing-section-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.spacing-section-header h2 {
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.spacing-section-header h2 span {
  color: #ff5a1f;
}

.spacing-section-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Main Wrapper */
.spacing-conveyor-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left */
.spacing-left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Specification Card */
.spacing-specification-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.card-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #071c3d, #10396e);
}

.card-header h3 {
  font-size: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* Spec List */
.specification-list {
  display: flex;
  flex-direction: column;
}

.spec-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #edf1f5;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item h4 {
  margin: 0;
  padding: 22px 30px;
  background: #f8fafc;
  border-right: 1px solid #edf1f5;
  font-size: 16px;
  font-weight: 700;
  color: #071c3d;
}

.spec-item p {
  margin: 0;
  padding: 22px 30px;
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
}

/* Note */
.spacing-note-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid #ff5a1f;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.note-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 18px;
  background: #fff3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

.note-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.note-content p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Right Side */
.spacing-right-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Drawing */
.spacing-drawing-box {
  background: #fff;
  padding: 25px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.drawing-top {
  margin-bottom: 20px;
}

.drawing-top h3 {
  font-size: 26px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.drawing-top span {
  font-size: 15px;
  color: #6d7380;
}

.drawing-image {
  overflow: hidden;
  border-radius: 18px;
}

.drawing-image img {
  width: 100%;
}

/* Dimension Card */
.spacing-dimension-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.dimension-card-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #ff5a1f, #ff7b47);
}

.dimension-card-header h3 {
  font-size: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* Dimension */
.dimension-list {
  display: flex;
  flex-direction: column;
}

.dimension-row {
  display: flex;
  gap: 22px;
  padding: 9px 30px;
  border-bottom: 1px solid #edf1f5;
}

.dimension-row:last-child {
  border-bottom: none;
}

.dimension-code {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  background: #f4f6fa;
  color: #071c3d;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dimension-info h5 {
  font-size: 20px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.dimension-info p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Bottom Note */
.spacing-bottom-note {
  background: #071c3d;
  padding: 35px;
  border-radius: 28px;
}

.spacing-bottom-note h4 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.spacing-bottom-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spacing-bottom-note ul li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.9em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.spacing-bottom-note ul li:last-child {
  margin-bottom: 0;
}

.spacing-bottom-note ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a1f;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .spacing-conveyor-section {
    padding: 80px 0;
  }

  .spacing-conveyor-wrapper {
    grid-template-columns: 1fr;
  }

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

@media only screen and (max-width: 767px) {

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

  .spec-item {
    grid-template-columns: 1fr;
  }

  .spec-item h4 {
    border-right: none;
    border-bottom: 1px solid #edf1f5;
  }

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

  .spacing-note-box {
    flex-direction: column;
  }

  .spacing-bottom-note {
    padding: 30px 24px;
  }
}

.curve-conveyor-section {
  position: relative;
  padding: 55px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.curve-conveyor-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.curve-section-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.curve-header-content {
  max-width: 760px;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.curve-header-content h2 {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.curve-header-content h2 span {
  color: #ff5a1f;
}

.curve-header-content p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Floating Card */
.curve-floating-card {
  background: #071c3d;
  border-radius: 26px;
  padding: 30px;
  min-width: 320px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.floating-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 32px;
  color: #ff5a1f;
}

.floating-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.floating-text span {
  font-size: 15px;
  line-height: 1.7em;
  color: rgba(255, 255, 255, 0.7);
}

/* Main Layout */
.curve-conveyor-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left */
.curve-left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card */
.curve-tech-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.curve-card-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #071c3d, #10396e);
}

.curve-card-header h3 {
  font-size: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* List */
.curve-tech-list {
  display: flex;
  flex-direction: column;
}

.curve-tech-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #edf1f5;
}

.curve-tech-item:last-child {
  border-bottom: none;
}

.curve-tech-item h4 {
  margin: 0;
  padding: 22px 30px;
  background: #f8fafc;
  border-right: 1px solid #edf1f5;
  font-size: 16px;
  font-weight: 700;
  color: #071c3d;
}

.curve-tech-item p {
  margin: 0;
  padding: 22px 30px;
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
}

/* Note */
.curve-note-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid #ff5a1f;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.note-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 18px;
  background: #fff3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

.note-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.note-content p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Right */
.curve-right-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Drawing */
.curve-drawing-box {
  background: #fff;
  padding: 25px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.drawing-header {
  margin-bottom: 20px;
}

.drawing-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.drawing-header span {
  font-size: 15px;
  color: #6d7380;
}

.drawing-image {
  overflow: hidden;
  border-radius: 18px;
}

.drawing-image img {
  width: 100%;
}

/* Dimension */
.curve-dimension-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.dimension-header {
  padding: 24px 35px;
  background: linear-gradient(90deg, #ff5a1f, #ff7b47);
}

.dimension-header h3 {
  font-size: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.curve-dimension-list {
  display: flex;
  flex-direction: column;
}

.curve-dimension-item {
  display: flex;
  gap: 22px;
  padding: 24px 30px;
  border-bottom: 1px solid #edf1f5;
}

.curve-dimension-item:last-child {
  border-bottom: none;
}

.dimension-code {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 18px;
  background: #f4f6fa;
  color: #071c3d;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dimension-info h5 {
  font-size: 20px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 8px;
}

.dimension-info p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Support */
.curve-support-box {
  background: #071c3d;
  padding: 35px;
  border-radius: 28px;
}

.curve-support-box h4 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.curve-support-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.curve-support-box ul li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.9em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.curve-support-box ul li:last-child {
  margin-bottom: 0;
}

.curve-support-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a1f;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .curve-conveyor-section {
    padding: 80px 0;
  }

  .curve-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .curve-conveyor-wrapper {
    grid-template-columns: 1fr;
  }

  .curve-header-content h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .curve-header-content h2 {
    font-size: 34px;
  }

  .curve-tech-item {
    grid-template-columns: 1fr;
  }

  .curve-tech-item h4 {
    border-right: none;
    border-bottom: 1px solid #edf1f5;
  }

  .curve-dimension-item {
    flex-direction: column;
  }

  .curve-note-box {
    flex-direction: column;
  }

  .curve-floating-card {
    min-width: 100%;
  }

  .curve-support-box {
    padding: 30px 24px;
  }
}

.automation-solutions-section {
  position: relative;
  padding: 55px 0;
  background: #f5f7fa;
  overflow: hidden;
}

/* Background Shape */
.automation-solutions-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.automation-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.automation-header h2 {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.automation-header h2 span {
  color: #ff5a1f;
}

.automation-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Grid */
.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Card */
.automation-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #d2dad7;
}

.automation-card:hover {
  transform: translateY(-10px);
  border: 1px solid #071c3d;

  color: white !important;
}


.active-card {
  background: #071c3d;
}

.active-card h3,
.active-card p,
.active-card .automation-icon i {
  color: #fff;
}

.active-card .automation-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* Image */
.automation-image {
  overflow: hidden;
}

.automation-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.automation-card:hover .automation-image img {
  transform: scale(1.08);
}

/* Content */
.automation-content {
  padding: 28px;
}

/* Icon */
.automation-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.automation-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

/* Text */
.automation-content h3 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 14px;
}

.automation-content p {
  font-size: 15px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Bottom */
.automation-bottom-wrapper {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* About */
.automation-about {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.automation-about h3 {
  font-size: 34px;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 20px;
}

.automation-about p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 20px;
}

.automation-about p:last-child {
  margin-bottom: 0;
}

/* Features */
.automation-feature-box {
  background: #071c3d;
  padding: 40px;
  border-radius: 28px;
}

.automation-feature-box h4 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 700;
}

.automation-feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.automation-feature-box ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.9em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.automation-feature-box ul li:last-child {
  margin-bottom: 0;
}

.automation-feature-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a1f;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .automation-solutions-section {
    padding: 80px 0;
  }

  .automation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-bottom-wrapper {
    grid-template-columns: 1fr;
  }

  .automation-header h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

  .automation-header h2 {
    font-size: 34px;
  }

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

  .automation-about,
  .automation-feature-box {
    padding: 30px 24px;
  }

  .automation-about h3,
  .automation-feature-box h4 {
    font-size: 28px;
  }
}

.conveyor-highlights-section {
  position: relative;
  padding: 55px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.conveyor-highlights-section::before {
  content: '';
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.highlight-section-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-bottom: 70px;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.highlight-section-header h2 {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.highlight-section-header h2 span {
  color: #ff5a1f;
}

.highlight-section-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Main Layout */
.highlight-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 35px;
  position: relative;
  z-index: 2;
}

/* Featured Box */
.highlight-featured-box {
  background: linear-gradient(135deg, #071c3d, #10396e);
  border-radius: 32px;
  padding: 45px;
  position: sticky;
  top: 100px;
  height: fit-content;
  overflow: hidden;
}

.highlight-featured-box::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

/* Icon */
.featured-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.featured-icon i {
  font-size: 36px;
  color: #ff5a1f;
}

/* Text */
.highlight-featured-box h3 {
  font-size: 38px;
  line-height: 1.3em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.highlight-featured-box p {
  font-size: 16px;
  line-height: 1.9em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
}

/* Points */
.featured-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.featured-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.featured-point i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff5a1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Right Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.highlight-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.active-card {
  background: #ff5a1f;
}

.active-card h3,
.active-card p,
.active-card .highlight-icon i {
  color: #fff;
}

.active-card .highlight-icon {
  background: rgba(255, 255, 255, 0.12);
}

/* Icon */
.highlight-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

/* Content */
.highlight-content h3 {
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 14px;
}

.highlight-content p {
  font-size: 15px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .conveyor-highlights-section {
    padding: 80px 0;
  }

  .highlight-wrapper {
    grid-template-columns: 1fr;
  }

  .highlight-featured-box {
    position: relative;
    top: auto;
  }

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

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

@media only screen and (max-width: 767px) {

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

  .highlight-featured-box {
    padding: 35px 28px;
  }

  .highlight-featured-box h3 {
    font-size: 30px;
  }

  .highlight-card {
    flex-direction: column;
    padding: 30px 24px;
  }
}

.automation-gallery-section {
  position: relative;
  padding: 55px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.automation-gallery-section::before {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.gallery-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

.gallery-header h2 {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.gallery-header h2 span {
  color: #ff5a1f;
}

.gallery-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Gallery Grid */
.automation-gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 24px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

/* Image */
.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7, 28, 61, 0.92),
      rgba(7, 28, 61, 0.2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Content */
.overlay-content span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffb08d;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.overlay-content h3 {
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Icon */
.gallery-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 18px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-icon i {
  color: #fff;
  font-size: 22px;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .automation-gallery-section {
    padding: 80px 0;
  }

  .gallery-header h2 {
    font-size: 42px;
  }

  .automation-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-column: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 767px) {

  .gallery-header h2 {
    font-size: 34px;
  }

  .automation-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .overlay-content h3 {
    font-size: 22px;
  }
}

.rack-solution-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.rack-solution-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Main Wrapper */
.rack-solution-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
}

/* Image Area */
.rack-image-area {
  position: relative;
}

/* Main Image */
.rack-main-image {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.rack-main-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.rack-main-image:hover img {
  transform: scale(1.06);
}

/* Floating Badge */
.rack-floating-badge {
  position: absolute;
  right: -30px;
  bottom: 40px;
  background: #071c3d;
  padding: 22px 26px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Badge Icon */
.badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

/* Badge Content */
.badge-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.badge-content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Right Content */
.rack-content-area {
  position: relative;
  z-index: 2;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.rack-content-area h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 28px;
}

.rack-content-area h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.rack-content-area p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 24px;
}

/* Counter */
.rack-counter-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.rack-counter-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.rack-counter-box h3 {
  font-size: 46px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 10px;
}

.rack-counter-box span {
  font-size: 15px;
  color: #6d7380;
}

/* Bottom */
.rack-bottom-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Card */
.rack-info-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.rack-info-card:hover {
  transform: translateY(-10px);
}

.active-card {
  background: linear-gradient(135deg, #071c3d, #10396e);
}

.active-card h3,
.active-card ul li,
.active-card .card-icon i {
  color: #fff;
}

.active-card .card-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* Top */
.card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Icon */
.card-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 32px;
  color: #ff5a1f;
}

/* Heading */
.card-top h3 {
  font-size: 32px;
  font-weight: 700;
  color: #071c3d;
  margin: 0;
}

/* List */
.rack-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rack-info-card ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 18px;
}




.rack-info-card ul li:last-child {
  margin-bottom: 0;
}

.rack-info-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a1f;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .rack-solution-section {
    padding: 80px 0;
  }

  .rack-solution-wrapper {
    grid-template-columns: 1fr;
  }

  .rack-bottom-wrapper {
    grid-template-columns: 1fr;
  }

  .rack-content-area h2 {
    font-size: 42px;
  }

  .rack-main-image img {
    height: auto;
  }

  .rack-floating-badge {
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {

  .rack-content-area h2 {
    font-size: 34px;
  }

  .rack-floating-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
  }

  .rack-counter-wrapper {
    flex-direction: column;
  }

  .rack-info-card {
    padding: 32px 24px;
  }

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

  .card-top h3 {
    font-size: 28px;
  }
}

.process-workflow-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.process-workflow-section::before {
  content: '';
  position: absolute;
  left: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.workflow-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.workflow-header h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 24px;
}

.workflow-header h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.workflow-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Timeline */
.workflow-timeline {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto;
}

/* Center Line */
.timeline-line {
  position: absolute;
  left: 70px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,
      #ff5a1f,
      #071c3d);
  border-radius: 10px;
}

/* Item */
.workflow-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.workflow-item:last-child {
  margin-bottom: 0;
}

/* Image */
.workflow-image {
  position: relative;
  z-index: 2;
}

.workflow-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Content */
.workflow-content {
  background: #fff;
  padding: 38px 40px;
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.workflow-item:hover .workflow-content {
  transform: translateY(-8px);
}

/* Tag */
.workflow-tag {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.workflow-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Title */
.workflow-content h3 {
  font-size: 34px;
  line-height: 1.3em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 16px;
}

/* Text */
.workflow-content p {
  font-size: 16px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Number */
.workflow-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5a1f, #ff7b47);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.3);
}

/* Alternate */
.workflow-item:nth-child(even) {
  grid-template-columns: 80px 1fr 140px;
}

.workflow-item:nth-child(even) .workflow-number {
  order: 1;
}

.workflow-item:nth-child(even) .workflow-content {
  order: 2;
}

.workflow-item:nth-child(even) .workflow-image {
  order: 3;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .process-workflow-section {
    padding: 80px 0;
  }

  .workflow-header h2 {
    font-size: 44px;
  }

  .workflow-item,
  .workflow-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .workflow-item:nth-child(even) .workflow-number,
  .workflow-item:nth-child(even) .workflow-content,
  .workflow-item:nth-child(even) .workflow-image {
    order: unset;
  }

  .timeline-line {
    display: none;
  }

  .workflow-number {
    margin: 0 auto;
  }

  .workflow-image {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {

  .workflow-header h2 {
    font-size: 34px;
  }

  .workflow-content {
    padding: 30px 24px;
  }

  .workflow-content h3 {
    font-size: 28px;
  }

  .workflow-image img {
    width: 120px;
    height: 120px;
  }
}

.warehouse-control-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.warehouse-control-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.warehouse-control-header {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.warehouse-control-header h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 24px;
}

.warehouse-control-header h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.warehouse-control-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Main Wrapper */
.warehouse-control-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 35px;
  align-items: center;
}

/* Feature List */
.control-feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Feature Card */
.control-feature-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.control-feature-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.feature-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

/* Content */
.feature-content h3 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Dashboard Area */
.warehouse-dashboard-area {
  position: relative;
  text-align: center;
}

/* Shape */
.dashboard-bg-shape {
  position: absolute;
  inset: 60px;
  border-radius: 40px;
  background: linear-gradient(135deg, #071c3d, #10396e);
  opacity: 0.04;
}

/* Image */
.dashboard-image {
  position: relative;
  z-index: 2;
}

.dashboard-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 30px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
}

/* Floating Card */
.dashboard-floating-card {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  background: #071c3d;
  border-radius: 24px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

/* Floating Icon */
.floating-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 28px;
  color: #ff5a1f;
}

/* Floating Content */
.floating-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.floating-content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Bottom Bar */
.warehouse-bottom-bar {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Bottom Feature */
.bottom-feature {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.bottom-feature:hover {
  transform: translateY(-8px);
}

/* Bottom Icon */
.bottom-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-icon i {
  font-size: 28px;
  color: #fff;
}

/* Bottom Content */
.bottom-content h4 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.bottom-content p {
  font-size: 15px;
  line-height: 1.8em;
  color: #6d7380;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .warehouse-control-section {
    padding: 80px 0;
  }

  .warehouse-control-wrapper {
    grid-template-columns: 1fr;
  }

  .warehouse-bottom-bar {
    grid-template-columns: 1fr;
  }

  .warehouse-control-header h2 {
    font-size: 42px;
  }

  .dashboard-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 25px;
    display: inline-flex;
  }
}

@media only screen and (max-width: 767px) {

  .warehouse-control-header h2 {
    font-size: 34px;
  }

  .control-feature-card,
  .bottom-feature {
    flex-direction: column;
    padding: 28px 24px;
  }

  .dashboard-floating-card {
    width: 100%;
    justify-content: center;
  }

  .floating-content h4 {
    font-size: 22px;
  }
}

.conveyor-categories-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.conveyor-categories-section::before {
  content: '';
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.categories-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 75px;
  text-align: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.categories-header h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.categories-header h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.categories-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Grid */
.categories-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.category-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #cdd1db8a;
}

.category-card:hover {
  transform: translateY(-10px);
}

.active-card {
  background: #071c3d;
}

.active-card h3,
.active-card span {
  color: #fff !important;
}

/* Image */
.category-image {
  position: relative;
  overflow: hidden;
}

.category-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7, 28, 61, 0.5),
      transparent);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.category-card:hover .category-image::before {
  opacity: 1;
}

.category-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

/* Content */
.category-content {
  padding: 26px;
}

.category-content h3 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 10px;
}

.category-content span {
  display: block;
  font-size: 14px;
  color: #6d7380;
  line-height: 1.7em;
}

/* Wide Card */
.wide-card {
  grid-column: span 2;
}

.wide-card .category-image img {
  height: 300px;
}

/* Responsive */
@media only screen and (max-width: 1199px) {

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wide-card {
    grid-column: span 3;
  }
}

@media only screen and (max-width: 991px) {

  .conveyor-categories-section {
    padding: 80px 0;
  }

  .categories-header h2 {
    font-size: 42px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 767px) {

  .categories-header h2 {
    font-size: 34px;
  }

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

  .wide-card {
    grid-column: span 1;
  }

  .category-image img,
  .wide-card .category-image img {
    height: 240px;
  }

  .category-content {
    padding: 24px;
  }

  .category-content h3 {
    font-size: 22px;
  }
}

.trusted-clients-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.trusted-clients-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Header */
.trusted-clients-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 75px;
  text-align: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.trusted-clients-header h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.trusted-clients-header h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.trusted-clients-header p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
}

/* Grid */
.trusted-clients-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

/* Card */
.client-logo-card {
  position: relative;
  height: 150px;
  background: #fff;
  border-radius: 28px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

/* Hover */
.client-logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

/* Active */
/* .active-card {
  background: linear-gradient(135deg, #071c3d, #10396e);
} */

/* Logo */
.client-logo-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: all 0.4s ease;
}

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

.client-logo-card:hover img {
  transform: scale(1.08);
}

/* Wide Card */
.wide-card {
  grid-column: span 2;
}

/* Stats */
.trusted-client-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Stat Box */
.client-stat-box {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border: 1px solid #ccd0d5;
}

.client-stat-box:hover {
  transform: translateY(-8px);
}

/* Number */
.client-stat-box h3 {
  font-size: 54px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 12px;
}

/* Text */
.client-stat-box span {
  display: block;
  font-size: 16px;
  line-height: 1.7em;
  color: #6d7380;
}

/* Responsive */
@media only screen and (max-width: 1199px) {

  .trusted-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wide-card {
    grid-column: span 3;
  }
}

@media only screen and (max-width: 991px) {

  .trusted-clients-section {
    padding: 80px 0;
  }

  .trusted-clients-header h2 {
    font-size: 42px;
  }

  .trusted-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }

  .trusted-client-stats {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {

  .trusted-clients-header h2 {
    font-size: 34px;
  }

  .trusted-clients-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: span 1;
  }

  .client-logo-card {
    height: 130px;
  }

  .client-stat-box {
    padding: 30px 24px;
  }

  .client-stat-box h3 {
    font-size: 42px;
  }
}

.industrial-solutions-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.industrial-solutions-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Solution Block */
.solution-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
}

.solution-block:last-child {
  margin-bottom: 0;
}

/* Reverse */
.reverse-layout {
  grid-template-columns: 1fr 1.1fr;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.solution-content h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 24px;
}

.solution-content h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.solution-content p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 24px;
}

/* Info Box */
.solution-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 28px;
  margin-bottom: 35px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.solution-info-box h4 {
  font-size: 24px;
  color: #071c3d;
  margin-bottom: 22px;
  font-weight: 700;
}

/* Tags */
.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.info-tags span {
  padding: 12px 20px;
  border-radius: 50px;
  background: #f4f6fa;
  color: #071c3d;
  font-size: 14px;
  font-weight: 600;
}

/* Feature List */
.solution-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Feature Item */
.feature-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

/* Icon */
.feature-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 30px;
  color: #fff;
}

/* Content */
.feature-content h4 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 12px;
}

.feature-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8em;
}

/* Gallery */
.solution-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 22px;
  align-items: center;
}

/* Main Image */
.gallery-main-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.gallery-main-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.gallery-main-image:hover img {
  transform: scale(1.08);
}

/* Side Images */
.gallery-side-images {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.side-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.side-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.side-image:hover img {
  transform: scale(1.08);
}

/* Dock Gallery */
.dock-gallery {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dock-top-image,
.dock-bottom-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.dock-top-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.dock-bottom-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.dock-top-image:hover img,
.dock-bottom-image:hover img {
  transform: scale(1.08);
}

/* Dock Features */
.dock-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* Dock Card */
.dock-feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.dock-feature-card:hover {
  transform: translateY(-8px);

}

.active-card {
  background: linear-gradient(135deg, #071c3d, #10396e);
}

.active-card h4,
.active-card i {
  color: #fff !important;
}

/* Icon */
.dock-feature-card i {
  font-size: 36px;
  color: #ff5a1f;
  margin-bottom: 18px;
}

/* Text */
.dock-feature-card h4 {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  color: #071c3d;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .industrial-solutions-section {
    padding: 80px 0;
  }

  .solution-block,
  .reverse-layout {
    grid-template-columns: 1fr;
  }

  .solution-content h2 {
    font-size: 42px;
  }

  .gallery-main-image img {
    height: 450px;
  }
}

@media only screen and (max-width: 767px) {

  .solution-content h2 {
    font-size: 34px;
  }

  .solution-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-side-images {
    flex-direction: row;
  }

  .side-image {
    flex: 1;
  }

  .gallery-main-image img {
    height: 350px;
  }

  .side-image img {
    height: 180px;
  }

  .dock-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-item,
  .dock-feature-card {
    padding: 28px 22px;
  }
}

.caster-deck-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.caster-deck-section::before {
  content: '';
  position: absolute;
  left: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Wrapper */
.caster-top-wrapper,
.why-caster-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Space */
.caster-top-wrapper {
  margin-bottom: 120px;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.caster-content h2,
.why-caster-content h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 24px;
}

.caster-content h2 span,
.why-caster-content h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.caster-content p,
.why-caster-content p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 24px;
}

/* Feature Points */
.caster-feature-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

/* Point */
.feature-point {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.feature-point:hover {
  transform: translateY(-8px);
}

/* Icon */
.point-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-icon i {
  font-size: 30px;
  color: #fff;
}

/* Content */
.point-content h4 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 12px;
}

.point-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8em;
}

/* Gallery */
.caster-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 22px;
  align-items: center;
}

/* Large Image */
.gallery-large-image {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.gallery-large-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.gallery-large-image:hover img {
  transform: scale(1.08);
}

/* Small Images */
.gallery-small-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.small-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.small-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.small-image:hover img {
  transform: scale(1.08);
}

/* Why Features */
.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

/* Why Item */
.why-feature-item {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.why-feature-item:hover {
  transform: translateY(-8px);
}

/* Why Icon */
.why-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 22px;
  background: #071c3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 30px;
  color: #fff;
}

/* Why Text */
.why-text h4 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 12px;
}

.why-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8em;
}

/* Right Image */
.why-caster-image {
  position: relative;
  text-align: center;
}

/* Shape */
.image-circle-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, #071c3d, #10396e);
  opacity: 0.05;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Main Image */
.main-caster-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 260px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.main-caster-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.main-caster-image:hover img {
  transform: scale(1.08);
}

/* Floating Box */
.floating-info-box {
  position: absolute;
  right: 20px;
  bottom: 50px;
  background: #fff;
  border-radius: 28px;
  padding: 26px 34px;
  z-index: 3;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.floating-info-box h3 {
  font-size: 48px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 8px;
}

.floating-info-box span {
  display: block;
  font-size: 15px;
  line-height: 1.7em;
  color: #6d7380;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .caster-deck-section {
    padding: 80px 0;
  }

  .caster-top-wrapper,
  .why-caster-wrapper {
    grid-template-columns: 1fr;
  }

  .caster-content h2,
  .why-caster-content h2 {
    font-size: 42px;
  }

  .gallery-large-image img {
    height: 450px;
  }

  .main-caster-image img {
    height: 520px;
  }
}

@media only screen and (max-width: 767px) {

  .caster-content h2,
  .why-caster-content h2 {
    font-size: 34px;
  }

  .caster-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-small-wrapper {
    flex-direction: row;
  }

  .small-image {
    flex: 1;
  }

  .gallery-large-image img {
    height: 350px;
  }

  .small-image img {
    height: 150px;
  }

  .feature-point,
  .why-feature-item {
    flex-direction: column;
    padding: 28px 22px;
  }

  .main-caster-image {
    border-radius: 40px;
  }

  .main-caster-image img {
    height: 420px;
  }

  .floating-info-box {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 25px;
  }
}

.contact-modern-section {
  position: relative;
  padding: 110px 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* Background Shape */
.contact-modern-section::before {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf2f7, #dfe7ef);
  opacity: 0.9;
}

/* Top Info */
.contact-top-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}

/* Card */
.contact-info-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

/* Active */
.active-card {
  background: linear-gradient(135deg, #071c3d, #10396e);
}

.active-card .contact-icon {
  background: rgba(255, 255, 255, 0.08);
}

.active-card .contact-icon i,
.active-card span,
.active-card h3 {
  color: #fff !important;
}

/* Icon */
.contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-icon i {
  font-size: 38px;
  color: #ff5a1f;
}

/* Content */
.contact-info-content span {
  display: block;
  font-size: 14px;
  color: #ff5a1f;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-content h3 {
  font-size: 20px;
  line-height: 1.8em;
  color: #071c3d;
  font-weight: 600;
  margin: 0;
}

/* Main Wrapper */
.contact-main-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.contact-left-content h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 24px;
}

.contact-left-content h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.contact-left-content p {
  font-size: 17px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 35px;
}

/* Features */
.contact-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Item */
.contact-feature-item {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

/* Feature Icon */
.feature-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 22px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: #fff;
}

/* Feature Content */
.feature-content h4 {
  font-size: 24px;
  color: #071c3d;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8em;
}

/* Form Box */
.contact-form-box {
  background: #fff;
  border-radius: 35px;
  padding: 50px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
}

/* Form Header */
.form-header {
  margin-bottom: 35px;
}

.form-header h3 {
  font-size: 38px;
  color: #071c3d;
  margin-bottom: 14px;
  font-weight: 800;
}

.form-header p {
  font-size: 16px;
  line-height: 1.8em;
  color: #6d7380;
}

/* Form */
.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #f4f6fa;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 15px;
  color: #071c3d;
}

.form-group textarea {
  resize: none;
}

/* Button */
.contact-btn {
  width: 100%;
  border: 0;
  outline: none;
  background: linear-gradient(135deg, #ff5a1f, #ff7a1f);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .contact-modern-section {
    padding: 80px 0;
  }

  .contact-top-info {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-left-content h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {

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

  .contact-left-content h2 {
    font-size: 34px;
  }

  .contact-form-box {
    padding: 35px 25px;
  }

  .form-header h3 {
    font-size: 30px;
  }

  .contact-feature-item {
    flex-direction: column;
  }
}

.why-choose-section {
  position: relative;
  padding: 110px 0;
  background: #f8f8f8;
  overflow: hidden;
}

/* Dotted BG */
.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d6d6d6 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.4;
}

/* Wrapper */
.why-choose-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Subtitle */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.why-choose-content h2 {
  font-size: 58px;
  line-height: 1.25em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 28px;
  max-width: 850px;
}

.why-choose-content h2 span {
  color: #ff5a1f;
}

/* Description */
.section-description {
  font-size: 18px;
  line-height: 1.9em;
  color: #6d7380;
  margin-bottom: 45px;
}

/* Feature List */
.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Feature Item */
.why-feature-item {
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.why-feature-item:hover {
  transform: translateY(-8px);
}

/* Active */
.active-item {
  background: linear-gradient(135deg, #071c3d, #10396e);
}

.active-item .feature-number,
.active-item h3,
.active-item p {
  color: #fff !important;
}

/* Number */
.feature-number {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 24px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #ff5a1f;
}

/* Feature Content */
.feature-content h3 {
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 700;
  color: #071c3d;
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Bottom Area */
.why-bottom-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
}

/* Button */
.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 34px;
  background: #071c3d;
  color: #fff;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
}

.why-btn:hover {
  transform: translateY(-5px);
  color: #fff;
}

.why-btn i {
  font-size: 16px;
}

/* Experience Box */
.experience-box {
  background: #fff;
  border-radius: 24px;
  padding: 22px 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.experience-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 6px;
}

.experience-box span {
  display: block;
  font-size: 15px;
  color: #6d7380;
}

/* Right Image */
.why-choose-image {
  position: relative;
  text-align: center;
}

/* Shape */
.image-shape {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: linear-gradient(135deg, #071c3d, #10396e);
  opacity: 0.05;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Main Image */
.main-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 280px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.main-image img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.main-image:hover img {
  transform: scale(1.08);
}

/* Floating Card */
.floating-card {
  position: absolute;
  left: -20px;
  bottom: 60px;
  z-index: 3;
  background: #fff;
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

/* Floating Icon */
.floating-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 30px;
  color: #fff;
}

/* Floating Content */
.floating-content h4 {
  font-size: 24px;
  color: #071c3d;
  font-weight: 700;
  margin-bottom: 6px;
}

.floating-content span {
  display: block;
  font-size: 14px;
  color: #6d7380;
  line-height: 1.7em;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .why-choose-section {
    padding: 80px 0;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .why-choose-content h2 {
    font-size: 42px;
  }

  .main-image img {
    height: 560px;
  }
}

@media only screen and (max-width: 767px) {

  .why-choose-content h2 {
    font-size: 34px;
  }

  .why-feature-item {
    flex-direction: column;
    padding: 28px 22px;
  }

  .why-bottom-area {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-image {
    border-radius: 40px;
  }

  .main-image img {
    height: 420px;
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 25px;
  }
}

/*========================================
=            AUTOMATION HERO             =
========================================*/

.automation-hero-header {
  position: relative;
  margin-bottom: 80px;
}

/* Main Heading */
.automation-main-title {
  font-size: 54px;
  line-height: 1.05em;
  font-weight: 800;
  color: #071c3d;
  letter-spacing: -2px;
  margin-bottom: 38px;
}

/* Highlight Text */
.automation-main-title span {
  color: #ff5a1f;
}

/* Description */
.automation-main-description {
  max-width: 920px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 2em;
  font-weight: 400;
  color: #6d7380;
}

/*========================================
=              RESPONSIVE                =
========================================*/

@media only screen and (max-width: 1199px) {

  .automation-main-title {
    font-size: 72px;
  }
}

@media only screen and (max-width: 991px) {

  .automation-hero-header {
    margin-bottom: 60px;
  }

  .automation-main-title {
    font-size: 58px;
    line-height: 1.12em;
    letter-spacing: -1px;
  }

  .automation-main-description {
    font-size: 17px;
    line-height: 1.9em;
  }
}

@media only screen and (max-width: 767px) {

  .automation-main-title {
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0;
  }

  .automation-main-description {
    font-size: 15px;
    line-height: 1.8em;
  }
}

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

.achievement-header-wrapper {
  position: relative;
  margin-bottom: 80px;
  z-index: 2;
}

/* Top Label */
.achievement-top-label {
  position: relative;
  display: inline-block;
  padding: 0 22px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
}

/* Decorative Lines */
.achievement-top-label::before,
.achievement-top-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42px;
  height: 2px;
  background: #ff6b35;
  transform: translateY(-50%);
}

.achievement-top-label::before {
  left: -42px;
}

.achievement-top-label::after {
  right: -42px;
}

/* Main Heading */
.achievement-main-heading {
  font-size: 52px;
  line-height: 1.05em;
  font-weight: 800;
  color: #071c3d;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

/* Highlight */
.achievement-main-heading span {
  color: #ff6b35;
}

/* Description */
.achievement-heading-description {
  max-width: 860px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 2em;
  color: #667085;
  font-weight: 400;
}

/*========================================
=              RESPONSIVE                =
========================================*/

@media only screen and (max-width: 1199px) {

  .achievement-main-heading {
    font-size: 68px;
  }
}

@media only screen and (max-width: 991px) {

  .achievement-header-wrapper {
    margin-bottom: 60px;
  }

  .achievement-main-heading {
    font-size: 54px;
    line-height: 1.12em;
    letter-spacing: -1px;
  }

  .achievement-heading-description {
    font-size: 17px;
    line-height: 1.9em;
  }
}

@media only screen and (max-width: 767px) {

  .achievement-top-label {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .achievement-top-label::before,
  .achievement-top-label::after {
    width: 28px;
  }

  .achievement-top-label::before {
    left: -28px;
  }

  .achievement-top-label::after {
    right: -28px;
  }

  .achievement-main-heading {
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0;
  }

  .achievement-heading-description {
    font-size: 15px;
    line-height: 1.8em;
  }
}

/*========================================
=         RECENT PROJECT HEADER          =
========================================*/

.recent-project-heading {
  position: relative;
  margin-bottom: 70px;
  z-index: 2;
}

/* Main Heading */
.recent-project-title {
  font-size: 50px;
  line-height: 1.08em;
  font-weight: 800;
  color: #071c3d;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

/* Highlight */
.recent-project-title span {
  color: #ff5a1f;
}

/* Description */
.recent-project-description {
  max-width: 920px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 2em;
  color: #6d7380;
  font-weight: 400;
}

/*========================================
=              RESPONSIVE                =
========================================*/

@media only screen and (max-width: 1199px) {

  .recent-project-title {
    font-size: 66px;
  }
}

@media only screen and (max-width: 991px) {

  .recent-project-heading {
    margin-bottom: 55px;
  }

  .recent-project-title {
    font-size: 52px;
    line-height: 1.12em;
    letter-spacing: -1px;
  }

  .recent-project-description {
    font-size: 17px;
    line-height: 1.9em;
  }
}

@media only screen and (max-width: 767px) {

  .recent-project-title {
    font-size: 38px;
    line-height: 1.2em;
    letter-spacing: 0;
  }

  .recent-project-description {
    font-size: 15px;
    line-height: 1.8em;
  }
}

.offering-modern-section {
  position: relative;
  padding: 110px 0;
  background: #f9f9f9;
  overflow: hidden;
}

/* Dotted Background */
.offering-modern-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d7d7d7 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.45;
}

/* Header */
.offering-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  margin: 0 auto 70px;
}

/* Subtitle */
.offering-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 34px;
  margin-bottom: 20px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offering-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
}

/* Heading */
.offering-header h2 {
  font-size: 68px;
  line-height: 1.1em;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 28px;
}

.offering-header h2 span {
  color: #ff5a1f;
}

/* Paragraph */
.offering-header p {
  font-size: 18px;
  line-height: 2em;
  color: #6d7380;
}

/* Wrapper */
.offering-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Column */
.offering-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */
.offering-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
   border: 1px solid #2928282e;
}

.offering-card:hover {
  transform: translateY(-8px);

}

/* Active Card */
.active-offering {
  background: linear-gradient(135deg, #071c3d, #10396e);
}

.active-offering h3,
.active-offering p,
.active-offering i {
  color: #fff !important;
}

/* Icon */
.offering-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 24px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-icon i {
  font-size: 30px;
  color: #ff5a1f;
}

/* Content */
.offering-content h3 {
  font-size: 28px;
  color: #071c3d;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4em;
}

.offering-content p {
  font-size: 15px;
  line-height: 1.9em;
  color: #6d7380;
  margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {

  .offering-modern-section {
    padding: 80px 0;
  }

  .offering-wrapper {
    grid-template-columns: 1fr;
  }

  .offering-header h2 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {

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

  .offering-header p {
    font-size: 15px;
    line-height: 1.8em;
  }

  .offering-card {
    flex-direction: column;
    padding: 25px;
  }

  .offering-content h3 {
    font-size: 22px;
  }
}