  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-margin-top: 100px;
  }

  body {
      font-family: Montserrat;
  }

  :root {
      --primary-color: #FAA634;
  }

  .call-to-action {
      color: var(--primary-color);
      text-decoration: none;
  }

  .heading {
      font-size: 36px;
      line-height: 1.4;
      text-transform: uppercase;
      font-weight: 500;

  }


  .description {
      font-size: 18px;
      line-height: 1.4;
      font-weight: 600;
      color: #000;
  }

  .main {
      overflow-x: hidden;
  }

  .home-about-container {
      max-width: 1520px;
      width: 100%;
      margin: 0 auto;
  }

  .text-justify {
      text-align: justify;
  }

  .text-align-last-right {
      text-align-last: right;
  }

  /* header  */

  .header-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0;
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 999999;
  }

  .top_header {
      padding: 0 15px 25px;
  }

  .header-logo {
      max-height: 60px;
  }

  .bottom_header_logo .header-logo {
      max-height: 75px;
  }

  .dropdown-submenu {
      position: relative;
  }

  .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      display: none;
      position: absolute;
      z-index: 1001;
  }

  .dropdown-submenu:hover>.dropdown-menu,
  .dropdown-submenu:focus-within>.dropdown-menu,
  .dropdown-submenu.show>.dropdown-menu {
      display: block;
  }

  .header-btn-orange {
      background-color: #FAA634;
      color: white;
      border-radius: 0 0 25px 25px;
      margin-right: 10px;
      font-size: 18px;
      padding: 10px 30px;
      border: none;
      transition: 0.3s all ease;
      width: 180px;
  }

  .header-btn-orange.show,
  .header-btn-orange:hover,
  .header-btn-orange:active {
      transform: scale(1.1);
      background-color: #FAA634;
      color: white;
      border: none
  }

  .bottom_header_logo {
      position: absolute;
      left: 0;
      top: -60px;
      padding: 0 35px 25px 25px;
      background: #fff;
      border-radius: 0 0 80px 0;
  }

  .top_header .header-logo {
      opacity: 0;
  }

  .dropdown-menu {
      min-width: 200px;
      z-index: 1000000;
      border-radius: 0;
      border: 0;
      background-color: #FAA634;
      padding: 0;
  }

  .top_header .dropdown-menu {
      border-top: 2px solid #fff;
  }

  .dropdown-submenu {
      position: relative;
  }

  .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: 0.1rem;
      display: none;
      position: absolute;
  }

  /* Show submenu on hover */
  .dropdown-submenu:hover .dropdown-menu {
      display: block;
  }

  .dropdown-menu li a {
      color: #fff;
      border-bottom: 1px solid #fff;
  }

  .header-container .navbar-nav .nav-link {
      font-weight: 500;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 20px;
      position: relative;
  }

  .custom-nav {
      background: #fff;
      padding-left: 35px;
      border-radius: 25px 0 0 25px;
      position: absolute;
      top: -25px;
  }

  .mobile-btns .dropdown {
      margin-right: 5px;
  }

  .orange-text {
      color: #FAA634;
  }

  .header-container .navbar-nav .nav-link:not(.dropdown-toggle)::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 5px;
      width: 0;
      height: 2px;
      background-color: #05264E;
      /* Change underline color */
      transition: all 0.4s ease;
      transform: translateX(-50%);
  }

  .header-container .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
  .header-container .navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
      width: 95%;
  }

  /* footer */
  .footer .footer-logo {
      margin-top: 25px;
  }

  .footer .footer-logo img {
      width: 35px;
      transition: 0.3s all ease;
  }

  .footer .footer-logo img:hover {
      transform: scale(1.3) translateY(-5px);
  }

  .footer {
      background-size: cover;
      background-position: center;
      color: #ffffff;
      position: relative;
      margin-top: 80px;
  }

  .footer a {
      font-size: 20px;
  }

  .footer_bottom,
  .footer_bottom a {
      font-size: 18px
  }

  .footer ul {
      padding: 0;
      list-style: none;
  }

  .footer ul li {
      margin-bottom: 10px;
  }

  .footer ul li a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 20px;
  }

  .footer ul li a:hover {
      color: #FAA634;
  }

  .arrow-warehouse {

      animation: arrowBounce .8s infinite;

  }

  @keyframes arrowBounce {
      0% {
          transform: rotate(0) translateY(0);
          opacity: 1;
      }

      50% {
          transform: rotate(0) translateY(10px);
          opacity: 1;
      }

      100% {
          transform: rotate(0) translateY(0);
          opacity: 1;
      }
  }

  .footer a {
      color: #ffffff;
      text-decoration: none;
  }

  .footer a:hover {
      color: #FAA634;
  }

  .footer img {
      display: inline-block;
  }

  .footer .subscribe-input {
      background-color: #fff;
      border: none;
      padding: 0.6rem 2rem;
      font-size: 18px;
      color: #000;
      font-weight: 600;
  }

  .footer .subscribe-input::placeholder {
      color: #000;
      opacity: 1;
  }

  .footer-container {
      max-width: 1500px;
      margin: 0 auto;
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
  }

  .footer .btn-warning {
      background-color: #FAA634;
      color: #fff;
      border: none;
      font-weight: 500;
      font-size: 24px;
  }

  .footer .btn-warning:hover {
      background-color: #f4aa42;
  }

  .footer .social-icons img {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
  }

  .footer .social-icons img:hover {
      transform: scale(1.1);
  }

  .footer .footer_bottom {
      border-top: 1px solid rgb(255, 255, 255);
      border-bottom: 1px solid rgb(255, 255, 255);
  }

  .subscribe-container {
      width: 1200px;
      padding: 20px;
      background: #fff;
      border-radius: 40px;
      position: relative;
      top: -95px;
      left: 50%;
      transform: translate(-50%, 0);
  }

  /* ******* About Section Start ********* */
  .service-main {
      width: 100%;
      max-width: 1920px;
      padding: 100px 45px 20px;
  }

  .services-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
  }

  /* Tabs */
  .tabs-nav {
      display: flex;
      justify-content: center;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 25px;
  }

  .tab-button {
      padding: 10px 25px;
      border-radius: 40px;
      background-color: #e0e0e0;
      color: #000;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 24px;
      width: 370px;
  }

  .tab-button.active,
  .tab-button:hover {
      background-color: #FAA634;
      color: white;
  }

  /* Tab content */
  .tab-content {
      display: none;
      opacity: 0;
      transition: all 0.5s ease;
  }

  .tab-content.show {
      display: block;
      opacity: 1;
  }

  /* Cards */
  .services-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
  }

  .service-card {
      width: 80px;
      height: 450px;
      position: relative;
      border-radius: 30px;
      transition: width 0.5s ease;
      cursor: pointer;
      min-width: 80px;
      flex-grow: 1;
  }

  .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
  }

  .service-label {
      position: absolute;
      right: -15px;
      bottom: 0;
      background: rgba(255, 255, 255, 1);
      padding: 15px 6px;
      font-weight: 600;
      font-size: 14px;
      border-radius: 20px;
      writing-mode: sideways-lr;
      transform-origin: right bottom;
      transition: all 0.6s ease;
      white-space: nowrap;
      font-size: 24px;
  }

  .service-card.active,
  .service-card:hover {
      width: 500px;
      z-index: 1;
  }

  .service-card.active .service-label,
  .service-card:hover .service-label {
      left: 50%;
      bottom: -15px;
      right: auto;
      transform: translateX(-50%);
      transform-origin: bottom center;
      writing-mode: horizontal-tb;
      border-radius: 20px;
      padding: 6px 15px;


  }


  .about-hero-banner {
      position: relative;
      max-width: 1920px;
      margin: 0 auto;
  }

  .about-hero-banner img {
      width: 100%;
      height: 700px;
      position: relative;
      top: -45px;
      z-index: -10;
      border-bottom-right-radius: 60px;
      object-fit: cover;

  }

  .about-banner-heading {
      position: absolute;
      top: 70%;
      background: rgba(0, 0, 0, 0.6);
      padding: 18px 45px;
      border-radius: 0 50px 50px 0;
  }

  .about-banner-heading h1 {
      color: white;
      margin-bottom: 0;
      margin-left: 150px;
      font-weight: bolder;
      text-transform: uppercase;
  }

  .about-us-heading {
      font-size: 36px;
      line-height: 1.4;
      text-transform: uppercase;
      font-weight: 500;

  }

  .about-us-text {
      font-size: 18px;
      line-height: 1.4;
      font-weight: 600;
  }

  .mini-title {
      font-size: 16px;
      line-height: 1.5;
      color: #000000;
      font-weight: 300;
  }

  .about-us-image2 img {
      width: 100%;
  }

  .about-us-image1 {
      width: 90%;
  }

  .about-us-left {
      position: relative;
  }

  .about-us-img1 {
      width: 95%;
  }

  .about-us-img2 {
      position: absolute;
      right: 0;
      bottom: -8%;
  }

  .about-experience {
      background: white;
      padding: 30px;
      position: absolute;
      top: 8%;
      left: 7%;
      width: 30%;
      text-align: center;
  }

  .about-experience h4 {
      line-height: 2rem;
      margin-bottom: 0;
      font-weight: 600;
  }

  .about-experience span {
      color: #FEA22A;
      font-size: 40px;
      font-weight: bolder;
  }

  .about-counter h1 {
      color: #FEA22A;
      font-weight: 800;
      margin-bottom: 0;
  }


  .mission-vision {
      background: url(../images/about/mission-bg.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin: 80px 0
  }

  .mission-vision-inner {
      max-width: 1920px;
      margin: 0 auto;
  }

  .vision-image {
      padding: 0;
      position: relative;
  }

  .vision-text,
  .home-service {
      padding: 60px;
  }

  .vision-image img {
      border-radius: 0 100px 100px 0;
      width: 100%;
  }

  .vision-text h2::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 2px;
      background: white;
      left: -60px;
      top: 55px;
  }

  .vision-text p {
      max-width: 600px;
      margin-top: 25px;
      color: white;
  }

  .vision-text h2 {
      color: white;
      position: relative;
  }

  .mission-text {
      display: flex;
      flex-direction: column;
      align-items: end;
  }

  .mission-text p {
      max-width: 600px;
      margin-top: 25px;
      color: white;
  }

  .mission-text h2 {
      color: white;
      position: relative;
  }

  .mission-image img {
      border-radius: 100px 0 0 100px;
      width: 100%;
  }

  .mission-image {
      padding: 60px 0px 60px 60px;
      position: relative;
  }

  .mission-text h2::after {
      content: "";
      position: absolute;
      width: 500px;
      height: 2px;
      background: white;
      right: -72px;
      top: 55px;
  }


  .why-choose-us {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
  }

  .about-1 {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
  }

  .why-choose-us {
      max-width: 1550px;
      width: 100%;
      margin: 0 auto;
  }

  .why-choose-us-left1 {
      background: #EBA067;
      padding: 15px;
      border-radius: 30px;
  }

  .why-choose-us-left2 {
      border-radius: 30px;
      height: 240px;
      object-fit: cover;
  }

  .why-choose-us-left2 img {
      width: 100%;
  }

  .why-choose-us-left h4,
  .why-choose-us-left p {
      color: white;
  }

  .why-choose-us-left p {
      font-size: 18px;
      font-weight: 400;
  }

  .why-choose-us-left h4 {
      font-size: 25px
  }

  .why-choose-us-right-img {
      position: relative;
      width: 100%
  }

  .slide-image {
      transition: transform 1s ease, opacity 1s ease;
      opacity: 0;
  }

  .slide-left {
      transform: translateX(-100%);
  }

  .slide-right {
      transform: translateX(100%);
  }

  .slide-image.in-view {
      transform: translateX(0);
      opacity: 1;
  }

  .why-choose-us-right-img img {
      border-radius: 30px;
      position: relative;
      width: 100%;
      height: 470px;
      object-fit: cover;
  }

  .why-choose-us-right-img video {
      border-radius: 30px;
      position: relative;
      width: 100%;
      height: 465px;
      object-fit: cover;
  }

  .why-choose-us-right-float {
      padding: 25px;
      background: white;
      position: absolute;
      width: 55%;
      top: 25px;
      left: 4%;
      border-radius: 20px;
  }

  .why-choose-us-right-float h4 {
      font-size: 30px;
  }

  .why-choose-us-right-float p {
      font-size: 16px;
  }

  .scale-hover {
      transition: 0.3s all ease;
      cursor: pointer;
  }

  .scale-hover:hover {
      transform: scale(1.03);
  }

  /* ******* About Section End ********* */

  /* Home  */

  .home-banner.about-hero-banner video {
      width: 100%;
      height: 900px;
      object-fit: cover;
      border-bottom-right-radius: 150px;
  }

  .home-banner.about-hero-banner .about-banner-heading {
      top: 520px;
  }

  .home-banner.about-hero-banner .about-banner-heading h1 {
      font-weight: 500;
      margin-left: 50px;
  }

  .home-banner.about-hero-banner .about-banner-heading p {
      font-size: 20px;
      color: #fff;
      font-weight: 500;
      margin-left: 50px;
      max-width: 600px;
      text-transform: uppercase;
  }

  .home-banner.about-hero-banner .about-banner-heading {
      border-radius: 0 90px 90px 0;
      margin-right: 15px;
  }

  .video-section {
      width: 100%;
      background: #FAA634;
      height: 750px;
      border-top-left-radius: 150px;
      border-bottom-left-radius: 150px;
      border-top-right-radius: 150px;
      position: relative;
      overflow: hidden;
  }

  .video-section video {
      position: absolute;
      width: 95%;
      right: 0;
      height: inherit;
      object-fit: cover;
      border-top-left-radius: 150px;
      border-bottom-left-radius: 150px;
      border-top-right-radius: 150px;
  }

  .service {
      background: url(../images/about/mission-bg.jpg);
      background-size: cover;
      background-position: center -150px;
      background-repeat: no-repeat;
      margin: 100px 0;
  }

  .service2 {
      background: none;
  }

  .service-inner-section {
      max-width: 1920px;
      margin: 0 auto;
  }

  .service-heading {
      width: 80%;
      margin: 0 auto;
      color: white;
      text-align: center;
  }

  .service-btn {
      border: none;
      padding: 10px 30px;
      border-radius: 35px;
      font-weight: 700;
      background: white;
      margin-top: 25px;
      transition: 0.3s all ease !important;

  }

  .service-btn2 {
      border: none;
      padding: 10px 30px;
      border-radius: 35px;
      font-weight: 700;
      background: #F9A733;
      color: white;
      transition: 0.3s all ease !important;
      margin-top: 25px;
  }

  .service-btn:hover,
  .service-btn2:hover {
      transform: scale(1.2) !important;
  }

  .home-sec-img {
      position: relative;
      top: -150px;
      z-index: 1;
  }

  /*  .home-sec-img2 {
      position: absolute;
      left: 0;
      bottom: 6%;
  }*/
  .home-about-counter {
      position: absolute;
      left: 0;
      bottom: 6%;
      background: #ffffff;
      border-radius: 50%;
      width: 150px;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 10px;
  }

  .home-about-counter-inner {
      background: #FAA634;
      border-radius: 50%;
      height: 130px;
      width: 130px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }

  .home-about-counter-inner h2 {
      color: white;
      font-weight: 800;
  }

  .home-about-counter-inner span {
      font-size: 45px;
  }

  .service-text1 {
      max-width: 600px;
      color: white;
  }

  .service2 .service-text1 {
      max-width: 600px;
      color: black;
  }

  .service-details-img1 {
      border-radius: 0 100px 100px 0;
      width: 100%;
  }

  .service-text1 h2 {
      position: relative;
  }

  .service-text1 p {
      margin-top: 20px;
  }

  .service-text1 h2::after {
      content: "";
      position: absolute;
      width: 355px;
      height: 2px;
      background: white;
      left: -60px;
      bottom: 0;
  }

  .home-counter {
      max-width: 1020px;
      background: url("../images/home/worldmap.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding-bottom: 50px;
      padding-top: 70px
  }

  .service2 .service-text1 h2::after {
      content: "";
      position: absolute;
      width: 355px;
      height: 2px;
      background: black;
      left: -60px;
      bottom: 0;
  }

  .service-text2 {
      display: flex;
      flex-direction: column;
      align-items: end;
      max-width: 600px;
      color: white;
  }

  .service2 .service-text2 {
      display: flex;
      flex-direction: column;
      align-items: end;
      max-width: 600px;
      color: black;
  }

  .service-details-img2 {
      border-radius: 100px 0 0 100px;
      width: 100%;
  }

  .service-text2 h2 {
      position: relative;
  }

  .service-text2 p {
      margin-top: 20px;
  }

  .service-text2 h2::before {
      content: "";
      position: absolute;
      width: 355px;
      height: 2px;
      background: white;
      right: -60px;
      bottom: 0;
  }

  .service2 .service-text2 h2::before {
      content: "";
      position: absolute;
      width: 355px;
      height: 2px;
      background: black;
      right: -66px;
      bottom: 0;
  }

  /* warehouse  start */
  .service-slider {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
      transform: translateY(-275px);
      margin-bottom: -275px;
      padding-right: 15px;
      padding-left: 15px;
  }

  .what-we-do-service {
      background-image: url(../images/warehouse/BG_Lines.png);
      background-size: cover;
      padding-top: 150px;
      padding-bottom: 100px;
  }

  .service-warehousewhydo {
      max-width: 1920px;
      width: 100%;
      margin: 0 auto;
  }

  .why-we-left {
      max-width: 700px;
      padding-right: 75px;
  }

  .service-warehouse-orangebg {
      background-image: url(../images/warehouse/BG.png);
      background-size: cover;
      background-position: center center;
  }

  .servicetablink {
      font-size: 24px;
      line-height: 1.3;
      color: #ffffff;
      font-weight: 600;
      border-bottom: 2px solid #fff;
      max-width: 450px;
      padding-bottom: 15px;
      padding-right: 82px;
      cursor: pointer;
  }

  .service-warehouse-orangebg {
      max-width: 1800px;
      margin: 0 auto;
      width: 99%;
      padding: 80px 50px;
      padding-bottom: 350px;
      border-radius: 50px;
  }

  .service-tab {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
  }

  .tabdata {
      padding-top: 80px;
      padding-bottom: 50px;
  }

  ul {
      padding-left: 0;
      list-style-position: inside;
  }

  .tabdata li,
  .arealist li {
      padding-bottom: 12px;
  }

  .slider-custom-arrow .owl-nav {
      position: absolute;
      width: 100%;
      top: -130px;

  }

  .slider-custom-arrow .owl-nav .owl-next,
  .slider-custom-arrow .owl-nav .owl-prev {
      background: none !important;
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
      background: var(--primary-color) !important;
  }

  .owl-dots {
      margin-top: 35px;
  }

  .service-slider-label {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 20px;
      background: #fff;
      width: 300px;
      border-radius: 25px;
      text-align: center;
      font-weight: 600;

  }

  .service-slider-card {
      margin-bottom: 15px;
  }

  .service-slider-card img {
      border: 7px solid #fff;
      border-radius: 45px;
  }

  .warehouse-facility {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
      padding: 50px 20px;
  }

  .ware-fac-inner1 img,
  .ware-fac-inner4 img {
      padding: 0 40px;
  }

  .warehouse-facilty-heading {
      background-color: #FF7309;
      border-radius: 0 35px 35px 0;
      padding: 10px 40px;
  }

  .warehouse-facilty-para {
      border-radius: 35px;
      margin: 0;
      padding: 15px 40px;
  }

  .warehouse-facilty-para.greybg {
      background-color: #E5E5E5;
  }

  .warehouse-service-facilty {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
  }

  .ware-fac-inner2 .warehouse-facilty-para,
  .ware-fac-inner3 .warehouse-facilty-para {
      position: relative;
  }

  .ware-fac-inner2 .warehouse-facilty-para::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #FF7309;
      border-radius: 50%;
      left: -12.5px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
  }

  .ware-fac-inner3 .warehouse-facilty-para::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #FF7309;
      border-radius: 50%;
      right: -12.5px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
  }

  .lastfacility {
      position: relative;
  }

  .lastfacility::before {
      position: absolute;
      content: '';
      height: calc(50% - 8px);
      width: 5.8px;
      background-color: #fff;
      left: -5.5px;
      bottom: -9.5px;
      z-index: 99;
      transform: scaleX(1.2);

  }

  .ware-fac-inner2,
  .ware-fac-inner4 {
      border-left: 5px solid #FF7309;
  }

  .facility-anim {

      transition: 1.5s ease transform;
  }

  .facility-anim.ware-fac-inner1,
  .ware-fac-inner3 .facility-anim {
      transform: rotateY(90deg);
      transform-origin: right;

  }

  .ware-fac-inner2 .facility-anim,
  .ware-fac-inner4 .facility-anim {
      transform: rotateY(-90deg);
      transform-origin: left;

  }

  .facility-anim.animated-facility {
      transform: rotateY(0);

  }

  .delay-1 {
      transition-delay: 0.3s;
  }

  .delay-2 {
      transition-delay: 0.6s;
  }

  .delay-3 {
      transition-delay: 0.9s;
  }

  .delay-4 {
      transition-delay: 1.2s;
  }

  .delay-5 {
      transition-delay: 1.5s;
  }

  .delay-6 {
      transition-delay: 1.8s;
  }

  .delay-7 {
      transition-delay: 2.1s;
  }

  .delay-8 {
      transition-delay: 2.4s;
  }

  .delay-9 {
      transition-delay: 2.7s;
  }

  .delay-10 {
      transition-delay: 3.0s;
  }

  .warehouse-facility .description {
      font-weight: 600;
      line-height: 1.5;
  }

  .location-section {
      max-width: 1450px;
      width: 100%;
      padding: 50px 20px;
      margin: 0 auto;
  }

  .warehouse-endsection {
      max-width: 1800px;
      margin: 0 auto;
      width: 100%;
      padding: 50px 20px;
      border-radius: 30px;
      background-image: url(../images/warehouse/Image_5.png);
      position: relative;
      margin-bottom: 35px;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .warehouse-endsection::after {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: #FFE191;
      background: -webkit-linear-gradient(90deg, rgba(255, 225, 145, 0) 40%, rgba(251, 165, 52, 1) 60%);
      background: -moz-linear-gradient(90deg, rgba(255, 225, 145, 0) 40%, rgba(251, 165, 52, 1) 60%);
      background: linear-gradient(90deg, rgba(255, 225, 145, 0) 40%, rgba(251, 165, 52, 1) 60%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFE191", endColorstr="#FBA534", GradientType=1);
      z-index: 0;
      left: 0;
      top: 0;
      border-radius: 30px;

  }

  .warehouse-end-sub {
      position: relative;
      z-index: 99;
  }

  .warehouse-end-text {
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
      padding: 50px 0;
  }

  .warehouse-end-img {
      max-width: 550px;
      width: 100%;
      position: absolute;
      bottom: -85px;
      right: 45%;
  }

  /* warehouse  end */


  /* ---------Privacy Policy------------- */

  .accordion-button {
      padding-right: 55px;
  }

  .accordion-button:focus {
      box-shadow: none;
  }

  .accordion-button.custom-header {
      background-color: var(--primary-color);
      color: black;
      font-weight: bold;
  }

  .accordion-button:not(.collapsed) {
      box-shadow: none;
      font-size: 22px;

  }

  .accordion-item {
      border: none;
      border-radius: 10px;
      margin-bottom: 20px;
  }

  .accordion-button {
      border-radius: 10px !important;
      min-height: 70px;
  }

  .accordion-button.collapsed {
      background-color: #707070;
      color: white;
      font-weight: bold;
      font-size: 22px;
  }

  .accordion-body {
      padding: 1rem;
  }

  .accordion-button::after {
      content: '+';
      position: absolute;
      right: 1.5rem;
      font-size: 1.5rem;
      color: inherit;
      transition: all 0.3s ease;
      background-image: none !important;
  }

  .accordion-button:not(.collapsed)::after {
      content: '−';
  }

  .recognitions-banner {
      margin-bottom: -45px;
  }

  .recognition-sec1-right {
      max-width: 350px;
      text-align: center;
      margin: 0 auto;
      margin-top: 100px;

  }

  .recognitions-compliance-main.what-we-do-service {
      padding-top: 100px;
  }

  .recognitions-compliance-slider {
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
  }

  .recognitions-compliance-carousel .item img {
      padding: 0 25px;
  }

  /* tariff start */
  .logistic-oporation {
      max-width: 1920px;
      width: 100%;
      margin: 0 auto;
      padding: 50px 0;
  }

  .tariif-sec1-left {
      position: relative;
      padding: 0 10px;
  }

  .tariif-sec1-left .icon-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -40px;
  }

  .tariif-sec1-left:nth-child(1),
  .tariif-sec1-left:nth-child(3) {
      transform: translateY(35px);

  }

  .tariif-sec1-right {
      background: url(../images/tariff/BG.png);
      background-size: cover;
      background-position: center center;
      padding: 70px 50px 40px;
      border-radius: 50px 0 0 50px;
  }

  .form-control,
  .form-select {
      padding: 10px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
  }

  .form-control::placeholder,
  .form-select {
      color: #4e4e4e;
  }

  .form-control:focus,
  .form-select:focus {
      box-shadow: none;
  }

  .form-button {
      all: unset;
      background: #F17A1E;
      padding: 15px 20px;
      border-radius: 50px;
      color: #fff;
      font-size: 18px;
      width: 250px;
      text-align: center;
      margin: 0 auto;
      font-size: 24px;
      text-transform: uppercase;
      line-height: 1.3;
      font-weight: 600;
      border: 3px solid #FFF;
  }

  .tariff-slider-carousel img {
      border-radius: 50px;
      width: 100%;
      height: 400px;
      object-fit: cover;
  }

  .tariff-slider-carousel.owl-theme .owl-dots .owl-dot {
      zoom: 1.4 !important;
      padding: 0 12px !important;
  }

  .tarrif-image-slider-main {
      padding: 80px 15px 27px;
      position: relative;
      max-width: 1920px;
      margin: 0 auto;
      width: 100%;

  }

  .tarrif-image-slider-main::after {
      position: absolute;
      content: '';
      width: 50%;
      height: 100%;
      border-radius: 0 50px 50px 0;
      background: linear-gradient(to bottom, #FF8A00, #FFB170);
      top: 0;
      left: 0;
      z-index: -1;

  }

  .tariff-img-slider {
      max-width: 1700px;
      margin: 0 auto;
      width: 100%;
  }

  .tariff-img-slider .owl-theme .owl-dots,
  .tariff-img-slider .owl-theme .owl-nav {
      text-align: right;
      margin-right: 25px;
      margin-top: 30px !important;
  }

  /* tariff end */

  /* services panvel start */
  .salient-features {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      transform: translateX(20px);
      position: relative;
  }

  .salient-features-text {
      position: absolute;
      bottom: -25px;
      z-index: 2;
      font-size: 86px;
      line-height: 95px;
      text-transform: uppercase;
      color: #ffffff;
      font-weight: 700;
  }

  .salient-features-left {
      width: 50%;
      border-radius: 20px;
      z-index: 1;
  }

  .salient-features-left img {
      width: 100%;
  }

  .salient-features-right {
      width: 50%;
      border-radius: 30px 60px 60px 30px;
      background: linear-gradient(275deg, #FF8A00, #FFB170);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      height: -webkit-fill-available;
      transform: translateX(-45px);
  }

  .salient-features-right .heading {
      border-bottom: 2px solid;
      width: fit-content;
      color: #000000;
  }

  .salient-features-right .description {
      line-height: 2;
  }

  .freight-station {
      max-width: 1450px;
      width: 100%;
      margin: 0 auto;
  }

  .freight-station-heading {
      position: relative;
      display: inline-block;
  }

  .freight-station-heading::before {
      content: '';
      position: absolute;
      width: 60%;
      height: 2px;
      background-color: black;
      bottom: -8px;
      left: 20%;
  }

  .freight-container {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin: 50px 0;
      flex-wrap: wrap;
  }

  .freight-card {
      width: 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 40px;
      border-radius: 20px;
  }

  .freight-card p {
      text-align: center;
      line-height: 30px;
  }

  .freight-card img {
      margin-bottom: 10px;
  }

  /* services panvel end */
  /* Responsive  */



  @media (max-width:1500px) {
      .warehouse-end-img {

          right: 52%;
      }

      .service-warehouse-section1 {
          max-width: 1250px;
      }

      .bottom_header_logo .header-logo {
          max-height: 60px;
      }

      .bottom_header_logo {
          top: -40px;
          padding: 25px 35px 25px 15px;
      }

      .header-container .navbar-nav .nav-link {
          padding-left: 10px;
          padding-right: 10px;
      }

      .bottom_header_logo .header-logo {
          max-height: 45px;
      }

      .header-container .navbar-nav .nav-link {
          font-size: 14px;
      }

      .header-btn-orange {
          background-color: #FAA634;
          color: white;
          border-radius: 0 0 20px 20px;
          margin-right: 10px;
          font-size: 14px;
          padding: 7px 21px;
          width: fit-content;
      }
  }

  @media (max-width: 1450px) and (min-width: 1230px) {
      .why-choose-us-left p {
          font-size: 16px;
          font-weight: 400;
      }

      .why-choose-us-left h4 {
          font-size: 22px;
      }
  }

  @media (max-width: 1229px) and (min-width: 991px) {
      .why-choose-us-left p {
          font-size: 14px;
          font-weight: 400;
      }

      .why-choose-us-left h4 {
          font-size: 20px;
      }
  }

  @media (max-width:1440px) {
      .subscribe-container {
          width: 90%;
      }

      .service {

          margin: 0;
      }

      .vision-image::before,
      .mission-image::after {
          top: 170px;
      }

      .service-text1 h2::after {
          left: -68px;
      }

      .service-text2 h2::before {
          right: -54px;
      }

      .service2 .service-text1 h2::after {
          left: -68px;
      }

      .service2 .service-text2 h2::before {
          right: -54px;
      }

      .service {
          background-position: center;
      }
  }

  @media (max-width:1200px) {
      .recognition-sec1-right {
          max-width: 250px;
          margin-top: 50px;
      }

      .warehouse-end-text {
          padding-top: 0;
          padding-left: 10px;
          padding-right: 10px;
      }

      .warehouse-end-img {
          width: auto;
          height: 350px;
          position: absolute;
          bottom: -225px;
          left: 30%;
          right: auto;
          padding: 10px;
      }

      .warehouse-endsection {
          padding-bottom: 200px;
      }


      .warehouse-endsection::after {
          background: rgba(251, 165, 52, 0.8);

      }

      .why-we-left {
          padding-right: 30px;
      }

      .about-experience {
          width: 40%;
      }

      .about-us-img2 {
          bottom: -35%;
      }

      .about-counter p {
          font-size: 13px;
      }

      .home-about-heading {
          font-size: 30px;
      }

      .home-about-text {
          font-size: 18px;
      }

      .home-sec-img1 {
          height: 700px;
      }

      .service-text2 h2::before {
          right: 50%;
          transform: translateX(55%);
      }

      .service-text1 h2::after {
          left: 50%;
          transform: translateX(-65%);
      }

      .service-text1 h2,
      .service-text2 h2 {
          font-size: 25px;
      }

      .service2 .service-text2 h2::before {
          right: 50%;
          transform: translateX(55%);
      }

      .service2 .service-text1 h2::after {
          left: 50%;
          transform: translateX(-65%);
      }

      .service2 .service-text1 h2,
      .service2 .service-text2 h2 {
          font-size: 25px;
      }

      .salient-features {
          padding: 20px;
          transform: initial;
      }

      .salient-features-right {
          transform: translateX(-10px);
      }

      .salient-features-text {
          bottom: -6px;
      }
  }



  @media (max-width:1024px) {
      * {
          scroll-margin-top: 200px;
      }

      .slider-custom-arrow .owl-nav {
          top: -100px;
      }

      .servicetablink {
          max-width: 100%;
          text-align: center;
          margin-bottom: 20px;
          padding-left: 0;
          padding-right: 0;
      }

      .tabdata {
          padding: 25px 0;
          padding-bottom: 250px;
      }

      .service-slider {
          transform: translateY(-170px);
          margin-bottom: -170px;
      }

      .service-warehouse-orangebg {
          padding: 30px 25px;
      }

      ul {
          text-align: left;
      }

      .why-choose-us-left h4 {
          font-size: 20px;
      }

      .why-choose-us-left p {
          font-size: 12px;
      }

      .why-choose-us-right-img img {
          height: 440px;
      }

      .why-choose-us-right-img video {
          height: 440px;
      }

      .why-choose-us-right-float h4 {
          font-size: 20px;
      }

      .why-choose-us-right-float p {
          font-size: 12px;
      }

      .about-hero-banner img {
          border-bottom-right-radius: 150px;
      }
  }


  @media (max-width:991px) {
      .tariif-sec1-right {
          margin-top: 95px;
          padding: 50px 20px 30px;
      }

      .form-button {
          font-size: 14px;
          width: 180px;
          padding: 10px 15px;
      }

      .facility-anim.ware-fac-inner1,
      .ware-fac-inner3 .facility-anim {
          transform-origin: left;
      }

      .ware-fac-inner3 .warehouse-facilty-para::after {
          left: -12.5px;
          right: auto;
      }

      .warehouse-facility .ware-fac-inner1,
      .warehouse-facility .ware-fac-inner3 {
          border-left: 5px solid #FF7309;
      }

      .what-we-do-service {
          padding-top: 50px;
          padding-bottom: 50px;
      }

      .home-banner.about-hero-banner .about-banner-heading h1 {
          margin-left: 0;
          font-size: 25px;
      }

      .home-banner.about-hero-banner .about-banner-heading p {
          margin-left: 0;
          font-size: 15px;
      }

      .home-banner.about-hero-banner video {
          height: 550px;
      }

      .video-section video {
          border-top-left-radius: 100px;
          border-bottom-left-radius: 100px;
          border-top-right-radius: 100px;
      }

      .video-section {
          height: 450px;
          border-top-left-radius: 100px;
          border-bottom-left-radius: 100px;
          border-top-right-radius: 100px;
      }

      .home-banner.about-hero-banner .about-banner-heading {
          top: 300px;
      }

      .header-container .navbar-nav .nav-link:not(.dropdown-toggle)::after {
          display: none;
      }

      .dropdown-menu.mobile-right {
          right: 0 !important;
          left: auto !important;
      }

      .footer .subscribe-input {
          font-size: 18px;
      }

      .footer .btn-warning {
          font-size: 18px;
      }



      .top_header {
          padding: 10px 15px 10px;
      }

      .top_header .header-logo {
          opacity: 1;
      }

      .custom-nav {
          border-radius: 0;
          position: static;
      }

      .dropdown-menu {
          min-width: 150px;
          width: fit-content;
      }

      .header-btn-orange {
          border-radius: 15px;
          margin-right: 0;
          padding: 7px 15px;
      }

      .footer_bottom,
      .footer_bottom a {
          font-size: 14px;
      }

      .footer ul li a,
      .footer a {
          font-size: 18px;
      }

      .about-us-img2 {
          bottom: 0%;
      }

      .about-counter div {
          text-align: center;
      }

      .vision-text {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 0;
      }

      .vision-text p {
          margin: 25px auto;
      }

      .vision-text h2::before {
          left: -170px
      }

      .mission-text {
          align-items: center;
      }

      .mission-text h2::after {
          right: -175px;
      }

      .home-sec-img {
          top: 0;
          margin-bottom: 30px;
      }

      .home-sec-img1 {
          height: initial;
      }

      .service-text1 {
          max-width: 100%;
          color: white;
          padding: 20px;
      }

      .service-text1 h2::after {
          left: 0%;
          transform: none;
      }

      .service-text2 {
          align-items: start;
          max-width: 100%;
          color: white;
          padding: 20px;
      }

      .service-text2 h2::before {
          left: 0%;
          transform: none;

      }

      .service-text2 h2 {
          text-align: left !important;
      }

      .service-text2 p {
          text-align-last: left;
      }

      .service2 .service-text1 {
          max-width: 100%;
          color: black;
          padding: 20px;
      }

      .service2 .service-text1 h2::after {
          left: 0%;
          transform: none;
      }

      .service2 .service-text2 {
          align-items: start;
          max-width: 100%;
          color: black;
          padding: 20px;
      }

      .service2 .service-text2 h2::before {
          left: 0%;
          transform: none;

      }

      .service2 .service-text2 h2 {
          text-align: left !important;
      }

      .service2 .service-text2 p {
          text-align-last: left;
      }

      .dropdown-submenu>.dropdown-menu {
          position: relative;
          top: 0;
          left: 0;
          margin: 0;
          width: 100%;
      }

      .navbar-collapse {
          max-height: 60vh;
          overflow-y: scroll;
      }

      .salient-features-left,
      .salient-features-right {
          max-width: 100%;
          flex: 1 1 100%;
          transform: none;
      }

      .salient-features-right {
          border-radius: 60px;
          padding: 20px;
          margin-top: 20px;
      }

      .salient-features {
          transform: initial;
      }

      .salient-features-text {
          bottom: 250px;
          font-size: 70px;
      }
  }

  @media (max-width:768px) {
      .tariff-slider-carousel img {
          height: 300px;
          object-fit: cover;
      }

      .tariff-slider-carousel.owl-theme .owl-dots .owl-dot {
          zoom: 1 !important;
          padding: 0 3px !important;
      }

      .tarrif-image-slider-main {
          padding: 55px 15px 0;
          position: relative;

      }

      .logistic-oporation {
          padding-top: 0;
      }

      .tariff-img-slider .owl-theme .owl-dots,
      .tariff-img-slider .owl-theme .owl-nav {
          text-align: center;
          margin-right: 25px;
      }

      .tariif-sec1-left .icon-img {
          width: 50px;
          height: 50px;
          bottom: -25px;
      }

      .about-banner-heading h1 {
          margin-left: 0;
      }

      .warehouse-end-img {
          height: 300px;
          left: 20%;
      }

      .why-we-left {
          padding-right: 0;
          text-align: center;
      }

      .home-counter {
          padding-bottom: 0;
      }

      .vision-text,
      .home-service {
          padding: 15px;
      }

      .about-experience {
          width: 30%;
          padding: 20px;
          top: 6%;
          left: 6%;
      }

      .services-wrapper {
          flex-direction: column;
          align-items: center;
          gap: 20px;
      }

      .service-card {
          width: 100% !important;
          height: auto;
          min-width: unset;
      }

      .service-card img {
          height: auto;
          aspect-ratio: 3 / 2;
      }

      .service-card.active .service-label,
      .service-card .service-label {
          writing-mode: horizontal-tb;
          text-align: center;
          display: block;
          padding: 6px 25px;
          margin-top: 10px;
          transform: none !important;
          border-radius: 30px !important;
          background: #fff;
          left: 50%;
          bottom: 10px;
          right: auto;
          transform: translateX(-50%) !important;
          font-size: 18px;
      }

      .service-card:hover .service-label {
          bottom: 10px;
          padding: 6px 35px !important;
      }

      .service-main {
          width: 100%;
          max-width: 1920px;
          padding: 50px 25px 15px 0;
      }

      .tab-button {

          font-size: 18px;
      }

      .mission-vision {
          margin: 0 0 50px;
      }

      .salient-features-text {
          bottom: 244px;
          font-size: 50px;
      }

      .freight-container {
          padding: 0 30px;
      }

      .freight-card {
          width: 100%;
      }
  }

  @media (max-width:575px) {
      .warehouse-end-img {
          height: 250px;
          left: 15px;
          bottom: -125px;
      }

      .warehouse-endsection {
          padding-bottom: 100px;
      }

      .service-slider-label {
          width: 250px;

      }

      .about-us-img2 {
          width: 50%;
          right: 3%
      }

      .about-experience h4 {
          font-size: 15px;
          line-height: 1.5rem;
      }

      .about-experience span {
          font-size: 30px;
      }
  }

  @media (max-width:430px) {
      .about-hero-banner img {
          height: 300px;
          border-bottom-right-radius: 60px;
      }

      .about-banner-heading {
          top: 40%;
      }



      .heading {
          font-size: 25px;
      }

      .description {
          font-size: 15px;
      }

      .about-us-heading {
          font-size: 25px;
      }

      .about-us-text,
      .form-control,
      .form-select {
          font-size: 15px;
      }

      .mini-title {
          font-size: 12px;

      }

      .about-experience {
          top: 9%;
          left: 9%
      }

      .vision-text h2::before {
          width: 280px;
          left: -90px;
      }

      .vision-text {
          padding: 10px;
      }

      .mission-text h2::after {
          width: 280px;
          right: -90px;
      }

      .home-about-heading {
          font-size: 20px;
      }

      .home-about-text {
          font-size: 13px;
      }

      .service-text1 h2::after {
          width: 260px;
      }

      .service-text2 h2::before {
          width: 260px;
      }

      .service2 .service-text1 h2::after {
          width: 260px;
      }

      .service2 .service-text2 h2::before {
          width: 260px;
      }
  }


  @media (max-width:600px) {
      .subscribe-container {
          width: 99%;
          position: absolute;
          top: -40px;
      }

      .footer .subscribe-input {
          font-size: 14px;
      }

      .footer .btn-warning {
          font-size: 14px;
      }

      .footer_bottom,
      .footer_bottom a {
          font-size: 14px;
      }

      .footer ul li a,
      .footer a {
          font-size: 14px;
      }

      .salient-features-right .heading {
          margin: 0 auto;
      }

      .salient-features-right {
          border-radius: 40px;
      }

      .salient-features-text {
          bottom: 260px;
          font-size: 30px;
      }
  }

  @media (max-width:325px) {
      .about-experience h4 {
          font-size: 12px;
          line-height: 1.2rem;
      }


  }