*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

:root {
  --red: rgb(190, 42, 28);
  --red-rgb: 190, 42, 28;
  --blue: rgb(39, 105, 184);
  --blue-rgb: 39, 105, 184;

  /* Font Family */
  --poppins: "Poppins", sans-serif;
  --ar_one: "AR One Sans", sans-serif;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  font-family: var(--poppins);
  font-size: 16px;
  color: #5c5c5c;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--poppins);
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

input,
button,
select,
textarea {
  outline: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li,
ol li {
  display: block;
  font-family: var(--poppins);
  color: #5c5c5c;
  font-size: 16px;
}

img,
video {
  width: 100%;
}

/* Utilities */
.section-mt {
  margin-top: 70px;
}

.highlight_heading {
  color: var(--blue);
  font-weight: bold;
}

.section_paragraph {
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
}

.btn {
  padding: 5px 22px;
  font-family: var(--ar_one);
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 99px;
}

.btn_red {
  background-color: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: all 0.5s;
}

.btn_red:hover {
  background-color: #fff;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn_light_red {
  background-color: rgba(var(--red-rgb), 0.1);
  color: #d5170b;
}

.btn_white {
  background-color: #fff;
  color: var(--red);
}

.btn_white:hover {
  background-color: var(--red);
  color: #fff;
}

.btn_blue {
  background-color: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  transition: all 0.5s;
}

.btn_blue:hover {
  background-color: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-red {
  background-color: var(--red);
}

.text-blue {
  color: var(--blue);
}

.text-red {
  color: var(--red);
}

/* Reset Swiper */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: all 0.5s;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 99px;
}

.swiper-pagination.red > .swiper-pagination-bullet {
  background-color: rgba(var(--red-rgb), 0.5);
}

.swiper-pagination.red > .swiper-pagination-bullet-active {
  background-color: var(--red);
}

.swiper-pagination.blue > .swiper-pagination-bullet {
  background-color: rgba(var(--blue-rgb), 0.5);
}

.swiper-pagination.blue > .swiper-pagination-bullet-active {
  background-color: var(--blue);
}

.swiper-pagination.white > .swiper-pagination-bullet {
  background-color: #ffffff84;
}

.swiper-pagination.white > .swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: white;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  color: #000;
  font-size: 20px !important;
  box-shadow: 0 0 8px -3px #000;
}

.swiper-button-prev {
  left: 2px;
}

.swiper-button-next {
  right: 2px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--red);
  color: #fff;
}

.swiper-button-next:active,
.swiper-button-prev:active {
  transform: scale(0.98);
}

/* Header Starts Here */
header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 0 8px -4px #333;
}

.navbar {
  height: 100%;
  width: 100%;
  padding: 0 !important;
  padding-bottom: 8px !important;
}

#navbar.sticky {
  margin: 0 auto;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

#navbar.sticky.visible {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.burger_menu {
  display: none;
}

.navbar_image {
  width: auto;
  height: 65px;
}

.navbar_right_section {
  height: 100%;
}

.navbar_contact {
  padding: 7px;
  padding-left: 16px;
  border-radius: 99px 0 0 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar_contact::after {
  position: absolute;
  right: -60%;
  content: "";
  display: block;
  width: 800px;
  height: 38px;
  background: var(--blue);
}

.navbar_contact * {
  color: #fff;
}

.navbar_contact > .div,
.navbar_contact > .div > a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav_link_item > a {
  color: #141212;
}
.nav_link_item.active > a {
  color: var(--blue);
  font-weight: 600;
}

.navbar_links_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav_links_list {
  display: flex;
  gap: 60px;
}

.navbar_btn {
  position: relative;
  display: inline-block;
  color: #fff;
  line-height: 44px;
  font-weight: 700;
  background: var(--red);
  padding: 1px 25px 0px;
  overflow: hidden;
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 2px solid var(--red);
  z-index: 1;
}

.navbar_btn:hover {
  border: 2px solid var(--red);
  color: var(--red);
}

/* Header Ends Here */

/* Footer Starts Here */
footer {
  background-color: #1d487b;
  box-shadow: 0 0 17px -13px #000;
}

.footer_logo_img {
  width: 130px;
}

.footer_cta_section {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer_cta_section::after {
  content: "";
  display: block;
  background-color: #ffffff;
  height: 100%;
  width: 50vw;
  position: absolute;
  right: -50vw;
}

.footer_cta_title {
  margin-left: 20px;
  display: flex;
  justify-self: start;
  align-items: center;
}

.footer_cta_section_edge {
  width: 0;
  height: 0;
  border-bottom: 90px solid #1d487b;
  border-right: 50px solid transparent;
}

.footer_cta_section > :nth-child(1) {
  display: flex;
  align-items: center;
}

.footer_cta_section img {
  width: 40px;
  height: 40px;
}

.footer_cta_section > a {
  margin-left: auto;
}

.footer_middle {
  justify-content: space-between;
}

.footer_nav_heading {
  color: #fff;
  opacity: 0.3;
}

.footer_links_list {
  flex-direction: column;
}

.footer_nav_link {
  color: #fffdfd !important;
  font-size: 14px;
}

.footer_contact_detail {
  display: flex;
  align-items: start;
}

.footer_bottom {
  border-top: 1px solid #ffffff44;
  justify-content: space-between;
}

.footer_bottom_policy {
  display: flex;
  justify-content: end;
}

/* Footer Ends Here */

/* Hero Section Starts Here */
.hero_swiper {
  position: relative;
}

.hero_pagination {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  z-index: 9;
}

.hero_section_slide {
  height: 470px;
  background-size: cover;
  background-position: 50% 70%;
}

.hero_section_slide .container {
  height: 100%;
}

.hero_text_wrapper {
  padding-top: 20px;
  padding-bottom: 40px;
  width: 380px;
  background-color: #1f589eb0;
  border-radius: 0 0 999px 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero_text_wrapper > p {
  max-width: 80%;
}

.hero_buttons_wrapper {
  padding-top: 60px;
  padding-bottom: 20px;
  width: 380px;
  border-radius: 999px 999px 0 0;
  backdrop-filter: brightness(0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

/* Hero Section Ends Here */

/* About Section Starts Here */

.about_content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.about_right_images_wrapper {
  position: relative;
  width: 100%;
}

.about_image_wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.about_image_wrapper > img {
  transition: all 0.5s;
}

.about_image_wrapper:hover img {
  transform: scale(1.05);
}

.about_right_images_wrapper > :nth-child(3) {
  width: 30%;
  position: absolute;
  top: 10%;
  left: -20%;
}

.about_right_images_wrapper > :nth-child(2) {
  width: 50%;
  position: absolute;
  bottom: 10%;
  left: -20%;
}

.about_right_images_wrapper > :nth-child(1) {
  right: 0%;
  margin-left: auto;
}

.about_right_images_wrapper > :nth-child(1) > img {
  border-radius: 32px;
}
/* About Section Ends Here */

/* Mission, Vision and Values Section Starts Here */
.mission_values_vission_bg {
  background-color: #173c69;
}

.mission_values_vission_bg > .container {
  display: flex;
}

.virticle_text_wrapper {
  max-width: 50px;
  height: 100%;
  position: relative;
}

.virticle_text_wrapper > .verticle_text {
  width: max-content;
  text-align: center;
  transform: rotate(-90deg);
  position: absolute;
  left: -200px !important;
  top: 46%;
  color: #fff;
}

.mission_values_vission_img {
  height: 100% !important;
  width: 100% !important;
  background-size: cover;
}

.mission_values_vision_card {
  width: calc(100% + 255px);
  padding: 20px 25px;
  padding-bottom: 5px;
  background-color: #fff;
  border-radius: 27px;
  transform: translateX(-200px);
  transition: all 0.5s;
}

.mission_values_vision_card:hover {
  background-color: #2b65ab;
}

.mission_values_vision_card:hover h4 {
  color: #fff;
}

.mission_values_vision_card:hover p {
  color: #fff;
  opacity: 0.8;
}
/* Mission, Vision and Values Section Ends Here */

/* Services Section Starts Here */
.services_swiper {
  padding: 0 20px;
}

.services_card_image_wrapper {
  border-radius: 32px;
  overflow: hidden;
}

.service_card img {
  transition: all 0.5s;
}

.service_card:hover img {
  transform: scale(1.1);
}

.services_card_content {
  margin: 0 auto;
  padding: 20px 27px;
  width: 90%;
  background-color: #fff;
  box-shadow: 0 0 9px -5px #000;
  border-radius: 20px;
  transform: translateY(-50px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.services_card_content > a {
  position: absolute;
  transform: translateY(100%);
  transition: all 0.5s;
}

.service_card:hover .services_card_content {
  background: linear-gradient(126deg, #2b65ab, #173c69);
}

.services_card_content h4 {
  transition: all 0.5s;
}

.service_card:hover h4 {
  color: #fff;
}

.service_card:hover p {
  filter: opacity(0);
}

.service_card:hover a {
  transform: translateY(-100%);
}

.service_swiper_pagination {
  z-index: 99999;
}
/* Services Section Ends Here */

/* Testimonials Section Starts Here */
.testimonials_section {
  background-color: #edf5ff;
}

.single_testimonial {
  min-height: 400px;
  position: relative;
  transition: all 0.5s !important;
}

.testimonial_bg_shape {
  filter: brightness(10);
  position: absolute;
}

.swiper-slide-active.testimonial {
  z-index: 999;
  width: auto; /* or set a % or fixed width */
  flex-shrink: 0;
}

.swiper-slide-active.testimonial > .single_testimonial {
  transform: scale(1.2);
  transition: all 0.2s;
}

.swiper-slide-active.testimonial .testimonial_bg_shape {
  filter: none;
}

.single_testimonial_content {
  width: 80%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
}

.single_testimonial h3 svg:nth-of-type(1) {
  margin-bottom: 20px;
}

.single_testimonial h3 svg:nth-of-type(2) {
  margin-bottom: -20px;
}

.swiper-slide-active.testimonial p {
  color: #fff;
}

.swiper-slide-active.testimonial h3 {
  color: white;
  white-space: nowrap;
}

/* Testimonials Section Ends Here */

/* ---------------------------- */
/* ------ About us page ------- */
/* ---------------------------- */

/* Hero Section Starts Here */
.hero_section {
  height: 350px;
  background-position: 50% 75%;
  background-size: cover;
  position: relative;
}

.hero_heading_bg_shape {
  width: 40vw;
  height: 350px;
}

.hero_section > .container {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero_section_page_heading {
  color: #fff;
  font: bold;
}

/* Hero Section Starts Here */

.company_overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate_img_wrapper {
  display: flex;
  justify-content: end;
}

.certificate_img_about {
  width: 90%;
  border-radius: 16px;
  border: 3px solid #e5e5e5;
}

.certificate_virticle_heading_wrapper {
  height: 100%;
  position: relative;
}

.certificate_virticle_heading {
  color: #e5e5e5;
  font-size: clamp(48px, 6vmax, 75px);
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(90deg);
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(90deg);
}

.services_offered_section {
  position: relative;
  background-color: #173c69;
}

.services_offered_img_wrapper {
  width: 25vw;
  min-width: 350px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 0;
}

.services_offered_heading {
  padding: 20px 50px;
  margin: 0 auto;
  background-color: #d5170b;
  color: #fff;
  text-align: center;
  width: max-content;
  border-radius: 0 0 99px 99px;
}

.services_offered_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.services_offered_list_item {
  padding: 12px 22px;
  background-color: #143761;
  color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  transition: all 0.5s;
}

.services_offered_list_item:hover {
  background-color: #fff;
  color: var(--blue);
}

.about_services_card {
  margin: 12px 0;
  padding: 16px 22px;
  padding-top: 28px;
  background-color: #f8f8f8;
  border-radius: 16px;
  transition: all 0.5s;
}

.about_services_card:hover {
  background-color: #143761;
}

.about_services_card:hover p {
  color: #fff;
}

.about_services_img_wrapper {
  width: 90px;
  background-color: #fff;
  border-radius: 50%;
  padding: 16px;
}

.quality_policy_section {
  margin-top: 150px;
  padding: 100px 0;
  padding-bottom: 50px;
  background: linear-gradient(to right, #1d487b 50%, #fff 50%);
  box-shadow: 0 0 17px -12px #000;
}

.quality_policy_section .container {
  position: relative;
}

.quality_heading_wrapper {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 16px;
  background: linear-gradient(to right, #d5170b, #8f0303);
  border-radius: 16px;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, calc(50% - 100px));
}

.quality_heading_wrapper > * {
  color: #fff;
}

.quality_policy_left * {
  color: #fff;
  text-align: center;
}

.quality_policy_right * {
  text-align: center;
}

.quality_policy_left ul,
.quality_policy_right ul {
  margin: 0 auto;
  width: 90%;
}

.quality_policy_left ul li,
.quality_policy_right ul li {
  margin-top: 30px;
}

.quality_policy_right > h2 {
  color: var(--blue);
}

.integrated_section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integrated_section > a {
  margin-top: 30px;
}

/* ------------------------------ */
/* ------- Solutions Page ------- */
/* ------------------------------ */

.solution_links_lists_wrapper {
  background-color: #eff6ff;
  padding: 12px;
  border-radius: 12px;
}

.solutions_links_lists {
  max-height: 80vh;
  overflow-y: scroll;
  padding-right: 12px;
}

.solutions_links_lists::-webkit-scrollbar {
  width: 6px;
}

.solutions_links_lists::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 5px;
}

.solutions_links_lists::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 5px;
}

.solutions_links_lists_item {
  margin-top: 12px;
  padding: 8px 22px;
  padding-right: 8px;
  background-color: #fff;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.solutions_links_lists_item:hover {
  background-color: #e2353520;
}

.solutions_links_lists_item a {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-transform: capitalize;
}

.solutions_links_lists_item a i {
  background-color: #eff6ff;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.solutions_links_lists_item.active {
  background: linear-gradient(to right, #d40a0a, #8f0303);
}

.solutions_links_lists_item.active a {
  color: #fff;
}

.solutions_links_lists_item.active a i {
  background-color: #ffffff5f;
  color: #fff;
}

.our_solution_page_image {
  border-radius: 20px;
  margin-top: 30px;
}

.type_of_transportation {
  background-color: #173c69;
}

.type_of_transportation_heading {
  width: 105%;
  padding-left: 32px !important;
  background-color: #d70a0a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 99px 0 99px 99px;
}

.type_of_transportation_list {
  margin: 40px 0;
  list-style: disc !important;
  list-style-type: disc !important;
  list-style-position: inside !important;
}

.type_of_transportation_list li {
  margin-top: 20px;
  display: list-item;
  color: #fff;
}

.services_types_image {
  width: 110%;
  border-radius: 20px 0 0 20px;
  border: 5px solid #fff;
  border-right: none;
}

/* ------------------------------------------ */
/* ------- Over Dimension Consignment ------- */
/* ------------------------------------------ */

.hero_heading_bg_shape.over_dimension_consignment {
  width: 45%;
}

.solution_sidebar_img_wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.network_card {
  padding: 20px 20px 20px 0;
  width: calc(100% - 60px);
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transform: translateX(60px);
  transition: all 0.5s;
}

.network_card:hover {
  background-color: var(--blue);
}

.network_card:hover h4,
.network_card:hover p {
  color: #fff;
}

.network_card_image_wrapper {
  padding: 20px;
  height: 130px;
  width: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  border: 3px solid #f4f4f4;
  transition: all 1s;
}

.network_card:hover .network_card_image_wrapper {
  transform: translateX(-50%) rotate(360deg);
}

.network_card_image_wrapper img {
  display: block;
}

.network_card_heading {
  color: var(--blue);
}

/* ---------------------------- */
/* ----- Contact Us page -----  */
/* ---------------------------- */
.contact_us_card {
  margin-top: 20px;
  padding: 26px 16px 26px 0;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  border-radius: 16px;
}

.contact_us_card:nth-of-type(1) {
  margin-top: 0;
}

.contact_us_card_icon {
  background-color: #fff;
  padding: 16px;
  border-radius: 99px;
  height: 80px;
  width: 80px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid #dce6f8;
  transform: translateX(-50%);
}

.contact_us_card p,
.contact_us_card h3 {
  color: #fff !important;
}

.contact_form {
  background-color: #e9f1ff;
  padding: 16px;
  border-radius: 16px;
}

.input_wrapper {
  margin-top: 30px;
  position: relative;
}

.input_wrapper > label,
.text_area_wrapper > label {
  position: absolute;
  left: 30px;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.2s;
}

.input_wrapper > label {
  top: 50%;
}

.input_wrapper > input,
.input_wrapper > select,
.text_area_wrapper > textarea {
  padding: 12px 22px;
  width: 100%;
  border-radius: 16px;
  border: none;
  color: var(--sub-text);
}

.input_wrapper > select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2rem;
}

.input_wrapper > select {
  appearance: none;
  padding-right: 2rem;
}

.input_wrapper:nth-of-type(5)::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--red);
  font-size: 14px;
}

.input_wrapper > select::picker-icon {
  color: #fff;
  background-color: #007bff;
  border-radius: 4px;
}

.input_wrapper > select::picker-icon {
  color: #8f0303 !important;
  background-color: var(--blue) !important;
}

.input_wrapper > input:focus + label,
.input_wrapper > input:not(:placeholder-shown) + label,
.text_area_wrapper > textarea:focus + label,
.text_area_wrapper > textarea:not(:placeholder-shown) + label {
  top: -12px;
  left: 10px;
  opacity: 1;
  transform: translateY(-50%) scale(0.9);
}

.text_area_wrapper {
  margin-top: 40px;
  position: relative;
}

.text_area_wrapper > label {
  top: 20px;
}
/* ---------------------- */
/* ----- Blogs Page ----- */
/* ---------------------- */
.blog_card {
  margin-top: 20px;
  border: 2px solid #ebf0f4;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s;
}

.blog_card:hover {
  background-color: var(--blue);
}

.blog_card_image_wrapper {
  overflow: hidden;
}

.blog_card_image_wrapper img {
  transition: all 0.5s;
}

.blog_card:hover .blog_card_image_wrapper img {
  transform: scale(1.22);
}

.blog_card_content {
  padding: 16px;
}

.blog_card h4 > a {
  color: #000;
}

.blog_card:hover p,
.blog_card:hover h4,
.blog_card:hover i,
.blog_card:hover a {
  color: #fff !important;
}

/* ----------------------------- */
/* ----- Blog Details Page ----- */
/* ----------------------------- */

.blog_details_hero_section {
  height: 400px;
  background: linear-gradient(25deg, #2d77cf, #173c69);
}

.blog_details_hero_section > .row > div {
  position: relative !important;
  height: 100%;
}

.blog_detail_hero_img_wrapper {
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: end;
  position: relative;
}

.blog_detail_hero_img_wrapper img {
  height: 300px;
  border-radius: 115px 115px 0 0;
  position: absolute;
  left: 0;
}

.blog_detail_hero_text_wrapper {
  height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}
