body,html{
    overflow-x: clip !important; 
font-family: public sans, sans-serif;
}
/*html{*/
/*    overflow-x: clip !important;*/
/*}*/

h1,h2,h3,h4,h5,h6{
    font-family: geologica, sans-serif;
   color:#000;
   
}
img{
    height:auto;
    max-width:100% !important; 
}

p{
   font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}
a{
    text-decoration:none;
}
ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

:root {
    --color-primary: #030303;
    --color-secondary: #FF4040;
}


.our-main-services.sec-big-title{
    width: 630px;
}
.sec-big-title {
    position: relative;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 29px;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}
.sec-small-title{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    padding: 0 16px 0 50px;
     color: var(--color-secondary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0px -23px;
    overflow: hidden;
      text-transform: uppercase
}
.sec-small-title::before{
    content: "";
    position: absolute;
    left: 25px;
    width: 23px;
    height: 23px;
    background: url(../images/svg/dta-arrow.webp) no-repeat center;
    background-size: contain;
    top: 7px;
}

.our-main-services{
    padding:3rem 0 0;
    background: #f3f3f3;
   position: relative;
       overflow: hidden;
}

.our-main-services .high-text{
    font-weight:500;
    font-family: "Geologica", Sans-serif;
        font-size: 17px;
        margin:0 0 28px;
}

.our-main-services .common-text{
    width:90%;
    padding: 70px 15px 5px 74px;
}
.our-main-services .row{
    margin:0 0 30px;
}
.animated-arrow-line {
    position: absolute;
   left: 55%;
    top: 0;
    /*transform: translateX(-50%); */

    z-index: 0;
    width: 61px;
    height: 203px;
    background-image: url("../images/svg/arrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    animation: slideDownArrow 1.8s ease forwards;
}

/* animation stays same */
@keyframes slideDownArrow {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: flex;
    min-height: 500px;
}

.service-card {
    position: relative;
    flex: 1;
   width: 120px;
    overflow: hidden;
    transition: flex 0.4s cubic-bezier(.645,.045,.355,1);
}

.service-card:hover {
    flex: 2;
}

.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    z-index: 0;
}

/* IMAGE PATHS */
.card-1 .service-bg { background-image: url("../images/bg/import-freight.webp"); }
.card-2 .service-bg { background-image: url("../images/bg/warehousing.webp"); }
.card-3 .service-bg { background-image: url("../images/bg/fulfillment.webp"); }
.card-4 .service-bg { background-image: url("../images/bg/distribution.webp"); }
.card-5 .service-bg { background-image: url("../images/bg/customs-vat-services.webp"); }

.service-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 43, 0.25);
    z-index: 1;
}

.service-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    /*background: linear-gradient(90deg, #030303 0%, rgb(6 11 43 / 36%) 50%, rgba(6, 11, 43, 0) 100%);*/
        background: linear-gradient(to right, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.78) 35%, rgba(3, 3, 3, 0.45) 65%, rgba(3, 3, 3, 0.12) 100%);
   transition: all 0.35s cubic-bezier(.645,.045,.355,1);
}


.service-title {
    position: absolute;
    right: -22px;
    bottom: 4px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
      font-size: 50px;
    font-weight: 600;
    z-index: 2;
    transition: 0.3s ease;
}

.service-title a {
    color: #fff;
}

.service-content {
    position: relative;
    /*z-index: 2;*/
    padding: 40px;
   width: 440px;
}
.service-step {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: var(--color-secondary);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
}
.our-main-services .service-heading,
.our-main-services .service-text,
.our-main-services .service-features,
.our-main-services .express-btn {
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-heading {
    color: #fff;
    font-size: 26px;
     margin-top: 54px;
}

.service-text {
    color: rgba(255,255,255,0.85);
}

.service-features {
    color: rgba(255,255,255,0.85);
    margin: 12px 0 22px;
    line-height: 1.6;
        width:70%;
}
.services-grid:hover .service-bg {
    filter: grayscale(100%);
}

.service-card:hover .service-bg {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-card:hover .service-bg::after {
    width: 100%;
}

.services-grid:hover .service-heading,
.services-grid:hover .service-text,
.services-grid:hover .service-features,
.services-grid:hover .express-btn {
    opacity: 0;
    transform: translateY(25px);
}

.service-card:hover .service-heading {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease 0.2s;
}

.service-card:hover .service-text {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease 0.3s;
}

.service-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease 0.4s;
}

.service-card:hover .express-btn {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease 0.5s;
}
.main-home-sector {
    padding:5rem 0;
        position: relative;
}
.main-home-sector .animated-arrow-line {
    top: 0;
    rotate: 90deg;
    position: relative;
    bottom: 0;
   left: 122px;
  
}
.main-home-sector .industry-swiper {
    position: relative;
    overflow: hidden;
    /*padding: 40px 0;*/
}

.main-home-sector  .swiper-slide {
    height: auto;
}
.main-home-sector  .industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
    border:1px solid #ddd;
    transition: 0.3s ease;
}
.main-home-sector  .industry-card-image {
    position: relative;
    z-index: 1;
        margin: 30px 0 0;
}
.main-home-sector  .industry-card-image img {
    width: 100%;
    display: block;
    mask-image: url("../images/bg/shape-1.png");
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
}
.industry-card-main h4,
.main-home-sector .industry-card h4 {
    font-size: 20px;
    font-weight: 600;
}
.industry-card-main h4 {
    margin-bottom: 10px;
    color: #1d2b4f;
}
.main-home-sector .industry-card h4 {
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}
.main-home-sector  .industry-card-main {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(.645,.045,.355,1);
      z-index: 1;
        gap: 14px;
}
.main-home-sector .industry-card:hover .industry-card-main {
    left: 0;
}
.industry-card-main p {
    margin-bottom: 20px;
}
.main-home-sector .arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--color-primary); 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: auto;
    transition: 0.3s ease;
}

.main-home-sector .arrow-btn:hover {
    background: var(--color-secondary); 
    color: #fff;
}
.industry-slider-wrap {
    position: relative;
    padding-left: 90px; 
}
.industry-prev,
.industry-next {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.industry-prev {
    top: 50%;
    transform: translateY(-120%);
}

.industry-next {
    top: 50%;
    transform: translateY(20%);
}
.industry-prev,
.industry-next {
    background: #fff;
    color: var(--color-primary);
    transition: 0.3s ease;
}
.industry-prev:hover,
.industry-next:hover {
    background: var(--color-secondary);
    color: #fff;
}
.industry-prev i,
.industry-next i {
      font-size: 18px;
    line-height: 1;
    margin-top: 3px;
}
.why-home-choose{
    padding:5rem 0 0;
}

.why-home-choose .info-card {
    position: relative;
    padding: 40px 30px;
    border: 1px solid #E8E8EE;;
    border-radius: 20px;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.3s ease;
}
.why-home-choose .info-card::before {
 content: "";
    position: absolute;
    top: 0px;
    left: 30px;
    width: 4px;
    height: 40px;
    background-color: rgb(17 25 78 / 7%);
    transition: height 0.3s ease;
}
.why-home-choose .icon-wrapper {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 70px;
    height: 70px;
    border: 1px solid #E8E8EE;;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}
.industry-card-main i{
    margin-top:2px;
}


.why-home-choose .icon-wrapper img {
    transition: 0.3s ease;
     filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(749%) hue-rotate(337deg) brightness(101%) contrast(101%);
}
.why-home-choose .card-content {
    margin-top: 90px;
}
.why-home-choose .card-content h4 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.why-home-choose .card-content p {
    margin: 0;
}
.why-home-choose .info-card:hover::before {
    background: var(--color-secondary);
}
.why-home-choose .info-card:hover .icon-wrapper {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}
.why-home-choose .info-card:hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}
.why-home-choose .section-title{
    margin:0 0 40px;
}

.howw-we-tabss {
    padding: 5rem 0 0;
}

.handle-goods {
    position: relative;
    background: var(--color-primary);
    padding: 70px 50px;
    border-radius: 16px 16px 0 0;
    overflow: hidden; 
}

.handle-goods::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 33%; 
    height: 100%;
    background: url("../images/home/dta-main-logo.png") no-repeat center;
    background-size: contain;
    opacity: 0.15; 
    z-index: 0;
}

.handle-goods .split-title {
    position: relative;
    z-index: 1;
}
.howw-we-tabss .split-title {
    display: flex;
    align-items: center;
    gap: 100px;
}

.howw-we-tabss .split-title .left {
    flex: 0 0 30%;
}
.howw-we-tabss .split-title .right {
    flex: 1;
}
.handle-goods .sec-small-title,
.handle-goods .sec-big-title {
    color: #fff;
}
.handle-goods .sec-big-title {
    margin: 0;
}


.howw-we-tabss .tab-content {
    background: rgb(243, 243, 243);
    padding: 50px;
}
.howw-we-tabss .nav-tabs {
    background: rgb(243, 243, 243);
    border: none;
}
.howw-we-tabss .nav-tabs .nav-item {
    flex: 1;
}

.howw-we-tabss .nav-tabs .nav-link {
    border: 1px solid #e8e8ee;
    border-top: 4px solid transparent;
    border-radius: 0;
    color: #333;
font-size: 16px;
   background: #fff;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 10px;
}

.howw-we-tabss .nav-tabs .nav-link.active {
          background: #FF4040;
    border-bottom: none;
    color: #fff;
}
.howw-we-tabss .accordion-item {
    border: none;
    /*border-bottom: 1px solid #dee2e6;*/
}
.howw-we-tabss .accordion-button {
    font-weight: 600;
    font-size: 19px;
    padding: 20px 0;
    color: var(--color-primary);
     background: rgb(243, 243, 243);
    box-shadow: none !important;
       border-bottom: 1px solid #dee2e6;
}
.howw-we-tabss .accordion-button:focus {
    box-shadow: none;
}
.howw-we-tabss .accordion-button::after {
    content: '+';
    background-image: none;
    font-size: 20px;
    background-color: #f0f0f0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
}
.howw-we-tabss .accordion-button:not(.collapsed)::after {
    content: '−';
    background-color: var(--color-secondary);
    color: #fff;
}
.howw-we-tabss .accordion-body {
    background: rgb(243, 243, 243);
    padding: 15px 0 25px;
    color: #000;
       font-size: 17px;
}

.howw-we-tabss .tab-pane .row {
    display: flex;
    align-items: stretch;
}
.howw-we-tabss .tab-pane .col-lg-6 {
    display: flex;
}
.letf-blund {
    /*padding-right: 60px;*/
    display: flex;
    flex-direction: column;
    width: 100%;
}
.howw-we-tabss .letf-blund p {
    margin: 0;
    color:#000;
    font-size:18px;
}
.howw-we-tabss .letf-blund .accordion {
    margin-top: auto;
}

.img-cbox {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
}

.img-cbox img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    padding-left: 1px;
}

.img-btn{
    position: absolute;
       left: 29px;
    bottom: 29px;
}
.express-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 55px;
    padding: 0 35px 0 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    gap: 12px;
    z-index: 1;
    margin-left: -18px;
}

.express-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color:  #030303;
    -webkit-mask: url("../images/bg/mask-btn.png") no-repeat center / 100% 100%;
    mask: url("../images/bg/mask-btn.png") no-repeat center / 100% 100%;
    left:20px;
    transition: background-color 0.4s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.btn-icon.main {
    background: rgba(255, 255, 255, 0.2);
}
.btn-icon.hover {
    position: absolute;
    right: -50px;
    background: #fff;
    opacity: 0;
}
.btn-icon.hover i {
    color: #030303;
    font-size: 12px;
    line-height: 1;
}
.express-btn > span:not(.btn-icon) {
    transition: transform 0.4s ease;
}
.express-btn:hover::before {
    background-color:#fe000b; 
}
.express-btn:hover > span:not(.btn-icon) {
   transform: translateX(-30px);
}
.express-btn:hover .btn-icon.main {
    opacity: 0;
    transform: translateX(-20px);
}
.express-btn:hover .btn-icon.hover {
    opacity: 1;
    right: 20px;
}




.home-about-parallax {
    position: relative;
  padding: 240px 0 120px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-about-parallax .about-content-whe {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-right: 24px;
    margin-left: 44px;
        
}

.home-about-parallax .brand-text-right {
    float: right;
    font-size: 14px;
    color: #888;
}

.home-about-parallax .about-content-white p {
    margin-bottom: 20px;
}
.home-about-parallax .stat-boxes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 40px;
}
.home-about-parallax .stat-title{
    color:#fff;
        font-weight: 600;
}
.home-about-parallax .stat-box-red {
    background-color: #ff4040;
    color: #fff;
    padding: 40px;
    border-radius: 15px 15px 15px 0;
clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 0 100%);
}
.home-about-parallax .stat-number {
    font-size: 60px;
    font-weight: 800;
}
.home-about-parallax .express-btn{
     margin: 15px 0 0 -21px;
}
.home-about-parallax .stat-box-blue {
   background-color: #030303;
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%, 0 84%);
    height: 213px;
    display: flex;
    align-items: center;
}
.home-about-parallax .stat-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.home-about-parallax .stat-text p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    /*max-width: 220px;*/
    color: #ffffff;
}
.home-about-parallax .stat-cert-icon img {
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    width: 239px;
}



.home-testi-secc {
    padding: 5rem 0;
    position: relative;
}
.home-testi-secc .wraps-testi{
    margin-left:60px;
}

.home-testi-secc .review-thumb-wrapper {
    position: relative;
    padding-left: 40px;
}

.home-testi-secc .review-thumb-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -4px;
    width: 90%;
    height: 100%;
    border: 2px solid #ff4040;
    border-radius: 0 80px 500px 500px;
z-index: 2;
}

.home-testi-secc .review-thumb {
    position: relative;
    z-index: 1;
    max-width: 354px;
    border-radius: 0 80px 500px 500px;
    overflow: hidden;
}

.home-testi-secc .review-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.home-testi-secc .review-slider {
    padding-top: 56px;
        border-top: 1px solid #d3cccc9e;
}

.home-testi-secc .review-card {
    position: relative;
    padding: 33px 0 0px;
}
.home-testi-secc .review-card::before {
    content: "\f159";
    font-family: flaticon_normal-icon !important;
    position: absolute;
    left: 0;
    top: -48px;
    font-size: 53px;
    color: #ff4040;
    opacity: 0.25;
    transform: rotate(180deg);
}
.home-testi-secc .review-card p {
    margin: 0;
}
.home-testi-secc .swiper-nav {
    display: flex;
    gap: 15px;
 margin: 20px 0 0 ;
}
.home-testi-secc .testi-prev,
.home-testi-secc .testi-next {
    width: 50px;
    height: 50px;
    background: #030303;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}
.home-testi-secc .testi-prev:hover,
.home-testi-secc .testi-next:hover {
    background: #ff4040;
}
.home-testi-secc .testi-prev i,
.home-testi-secc .testi-next i {
    font-size: 16px;
    line-height: 1.0;
        margin-top: 1px;
}

.home-testi-secc .client-info{
    margin-top: 24px;
}

.home-testi-secc .client-info h5{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.home-testi-secc .client-info span{
    font-size: 15px;
    color: #777;
    display: block;
}


.our-header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.4s ease;
}
.our-header-wrap {
    position: relative;
    overflow: visible !important;
    transition: 0.4s ease;
    z-index: 99;
    padding: 15px 20px 25px;
    border-radius: 100px;
}
.our-header-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home/header-bg.png) no-repeat left center;
    background-size: contain;
    z-index: -1;
}
/*.our-header-wrap::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    right: -80px;*/
/*    top: 0;*/
/*    width: 280px;*/
/*    height: 100%;*/
/*    background: rgba(0, 21, 59, 0.05);*/
/*    border-radius: 100px 0 0 100px;*/
/*    z-index: -1;*/
/*}*/

.logo-area img {
/*max-width: 164px !important;*/
    transition: 0.4s ease;
}
.main-menu {
    display: flex;
    justify-content: center;
}
.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu > ul > li {
    position: relative;
}
.main-menu > ul > li > a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 36px 0;
    font-size: 16px;
    font-weight: 600;
    color: #0b1633;
    text-decoration: none;
    transition: 0.35s ease;
}
.main-menu > ul > li > a:hover {
    color: #ff4040;
}
.main-menu > ul > li > a.active {
    color: #ff4040;
}


.main-menu .submenu {
    position: absolute;
    top: 79%;
    left: 0;
    min-width: 290px;
    background: #fff;
    border-radius: 20px;
    padding: 15px 0;
    margin: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 99999;
}
.main-menu .submenu li {
    width: 100%;
}
.main-menu .submenu li a {
    width: 100%;
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: #0b1633;
    transition: 0.35s ease;
    text-decoration: none;
}
.main-menu .submenu li a:hover {
    color: #ff4040;
    padding-left: 30px;
}
.main-menu .submenu li a.active {
    color: #ff4040;
    padding-left: 30px;
}

.main-menu .has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-menu .has-dropdown > a i {
    font-size: 13px;
    transition: 0.35s ease;
    line-height: 1.6;
    margin-top: 7px;
}
.sticky .main-menu .has-dropdown > a i {
    top: 27px;
    position: absolute;
    left: 67px;
}

/*.sticky .main-menu .has-dropdown:hover > a i {*/
    /*transform: rotate(180deg);*/
   /*top: 23px;*/
/*}*/
/*.main-menu .has-dropdown:hover > a i {*/
/*transform: rotate(180deg);*/
    /*top: 31px;*/
    /*position: absolute;*/
    /*right: -17px;*/
/*}*/


.header-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 7px;
}
.header-btn .head-btn {
      display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 26px;
    background: #030303;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
        transition: background 0.3s ease;
}
.arrow-wrap {
    display: inline-flex;
    margin: 6px 0 0;
}
.arrow-wrap i {
    font-size: 14px;
    margin-left: -4px;
    opacity: 0.2;
    animation: waveOpacity 2s linear infinite;
}

/* DELAY FOR WAVE EFFECT */
.arrow-wrap i:nth-child(1) { animation-delay: 0s; }
.arrow-wrap i:nth-child(2) { animation-delay: 0.2s; }
.arrow-wrap i:nth-child(3) { animation-delay: 0.4s; }
.arrow-wrap i:nth-child(4) { animation-delay: 0.6s; }
.arrow-wrap i:nth-child(5) { animation-delay: 0.8s; }

/* TEXT */
.btn-text {
    font-weight: 500;
}

@keyframes waveOpacity {
    0%   { opacity: 0.15; }
    20%  { opacity: 1; }
    40%  { opacity: 0.7; }
    60%  { opacity: 0.4; }
    80%  { opacity: 0.25; }
    100% { opacity: 0.15; }
}
.header-btn .head-btn:hover {
    background: #FF4040;
}


.our-header-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    animation: headerSlideDown 0.8s ease forwards;
background: #fff;
    padding: 0 50px;
    /*box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);*/
}

.our-header-section.sticky .common-headers {
  
    /*padding-left: 0;*/
    /*padding-right: 0;*/
}
.our-header-section.sticky .our-header-wrap {
    padding: 0;
    border-radius: 0 !important;
    
}
.our-header-section.sticky .main-menu > ul > li > a {
    padding: 28px 0;
}
.our-header-section.sticky .logo-area img {
    max-width: 200px;
}
.our-header-section.sticky .our-header-wrap::before{
 display:none;
    }
    
    
    

@keyframes headerSlideDown {

    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.banner-main-sec {
    position: relative;
    overflow: hidden;
}


.banner-item {
    position: relative;
        height: 100vh;
   min-height: 684px;
    display: flex;
    align-items: center;
    background-size: cover !important;
   background-position: center !important;
    overflow: hidden;
       transition: none;
    
}

.banner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}


@keyframes bannerMoveLeft {
    from { background-position: 60% center; }
    to   { background-position: 40% center; }
}

.banner-content {
    position: absolute;
    z-index: 1;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 45px;
    bottom: 70px;
    align-items: flex-end;
}

.howw-we-tabss .tab-content>.active{
    margin:50px 0;
}
.footer-bottom p{
    margin:0;
}

.banner-content h1,
.banner-content h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 56px;
    line-height: 65px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    max-width: 362px;
    margin: 0 0 4px;
    opacity: 0; 
    animation: fadeRight 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-next{
  top: 49%;
      right: 105px !important;
    transform: translateY(-50%);
}

.banner-prev{
  top: 49%;
      left: 82px;
    right: auto;
    transform: translateY(-50%);
}

.banner-arrow {
    position: absolute;
    right: 40px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    color: #071130;
    display: flex;
        background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    z-index: 11;
    cursor: pointer;
    transition: 0.35s ease;
    font-size: 24px;
}
.banner-arrow i {
    font-family: flaticon_normal-icon !important;
    color:#fff;
    line-height:1;
}

.banner-arrow:hover {
    background: #ff1d25;
    color: #fff;
}
.banner-one {
    background: url("../images/home/warehouse-storage.webp") no-repeat center center;
}
.banner-two {
    background: url("../images/home/customs-clearance.webp") no-repeat center center;
}

.banner-one-1 {
    /*background: url("../images/home/warehouse-storage.webp") no-repeat center center;*/
}
.banner-two-1 {
    /*background: url("../images/home/customs-clearance.webp") no-repeat center center;*/
}


.banner-main-sec .express-btn::before,
.our-main-services .express-btn::before{
    background-color: #ff4040;
}
.banner-main-sec .express-btn.expres-2::before {
    background-color: #fff;
}


.copy2-banner-main-sec{
    position:relative;
    overflow:hidden;
}

.copy2-banner-item{
    position:relative;
    height:100vh;
    min-height:684px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.copy2-banner-item>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.copy2-banner-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
    z-index:1;
}
.mobile-bnr{
    height: 400px !important;
}
.copy2-banner-content{
    position:absolute;
    z-index:2;
    max-width:100%;
    display:flex;
    justify-content:space-between;
    gap:45px;
    bottom:70px;
    align-items:flex-end;
}

.copy2-banner-content h1,
.copy2-banner-content h2{
    max-width:760px;
    margin-bottom:0;
    color:#fff;
    font-weight:600;
    font-size:56px;
    line-height:65px;
}

.copy2-banner-content p{
    font-size:18px;
    line-height:30px;
    color:#fff;
    max-width:362px;
    margin:0 0 4px;
}

.copy2-banner-next{
    top:49%;
    right:105px;
    transform:translateY(-50%);
}

.copy2-banner-prev{
    top:49%;
    left:82px;
    right:auto;
    transform:translateY(-50%);
}

.copy2-banner-arrow{
    position:absolute;
    width:66px;
    height:66px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:11;
    cursor:pointer;
}

.copy2-banner-main-sec i {
    font-family: flaticon_normal-icon !important;
    color:#fff;
    line-height:1;
        font-size: 20px;
}
.copy2-banner-main-sec .copy2-banner-arrow:hover {
    background: #ff1d25;
}

.copy2-banner-main-sec .copy2-banner-arrow:hover i {
    color: #fff;
}

@media (max-width: 767px){

    .copy2-banner-item{
    min-height: 399px;
              height: 51vh;
    }

    .copy2-banner-content{
        flex-direction: column;
        gap: 15px;
        bottom: 40px;
        left: 15px;
              top: 73px;
        align-items: flex-start;
        justify-content:flex-start;
    }

    .copy2-banner-content h1,
    .copy2-banner-content h2{
        font-size: 26px;
        line-height: 38px;
        max-width: 100%;
    }

    .copy2-banner-content p{
        font-size: 15px;
        line-height: 24px;
        max-width: 100%;
    }

    .copy2-banner-arrow{
        width: 45px;
        height: 45px;
    }

    .copy2-banner-main-sec i{
        font-size: 14px;
    }

    .copy2-banner-prev{
        left: 15px;
        top: auto;
        bottom: 15px;
        transform: none;
    }

    .copy2-banner-next{
        left: 70px;
        right: auto;
        top: auto;
        bottom: 15px;
        transform: none;
    }
    .mobile-bnr {
    height: auto !important;
}
}




.express-btn.expres-2{
    color: #000;
}

.express-btn.expres-2 .btn-icon.main {
    background: #000;
}
.express-btn.expres-2 .btn-icon i{
     color: #fff;
}
.express-btn.expres-2:hover .btn-icon i{
     color: #fff;
}
  .express-btn.expres-2:hover .btn-icon.hover {
    background: #000 !important;
}

/*.express-btn .flaticon-right-arrow-2:before {*/
/*    content: "\f124";*/
/*    line-height: 1;*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    left: 49px;*/
/*    font-size: 14px;*/
/*}*/
.common-buttons{
    display:flex;
    gap:30px;
}



.global-press-secc {
    position: relative;
   background: #000;
     height: 900px;
    overflow: hidden;
}
.global-press-secc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.12) 0px,
        rgba(255,255,255,0.12) 1px,
        transparent 1px,
        transparent 150px
    );
}
.global-press-secc::before {
    content: "";
    position: absolute;
    top: 17%;
    left: 68%;
    transform: translate(-73%, -46%);
    width: 45%;
    height: 94%;
    background: url(../images/home/europ-map.webp) no-repeat center;
    background-size: contain;
    z-index: 0;
}


.global-press-secc .content {
    position: relative;
    padding: 0;
    margin: 0;
}
.global-press-secc .small-text {
    position: absolute;
    top: 56px;
      left: 205px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
    width: 25%;
    content: "";
}

.global-press-secc .big-text {
    position: absolute;
    left: 25%;
    /* transform: translateX(-51%); */
    font-size: 147px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
    line-height: 0.7;
    content: "";
      top: 390px;
          z-index: 1;
}
.location-wrapper {
    position: absolute;
    bottom: 39px;
    left: 21%;
    right: 160px;
    color: #fff;
           z-index: 1;
}
/* Description */
.location-wrapper p {
    font-size: 16px;
   color:#fff;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin:20px 0 0;
}
.location-col h4 {
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
color: #fff;
}
.location-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-col ul li {
      font-size: 17px;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    opacity: 0.9;
    transition: 0.3s;
}
.location-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
      width: 19px;
    height: 19px;
    background: url('../images/svg/location-area.svg') no-repeat center;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.location-col .blue-location li::before {
    filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(3435%) hue-rotate(205deg) brightness(102%) contrast(102%);
}

.location-col .yellow-location li::before {
filter: brightness(0) saturate(100%) invert(83%) sepia(49%) saturate(2145%) hue-rotate(356deg) brightness(101%) contrast(95%);
}


.location-col .red-location li::before {
filter: brightness(0) saturate(100%) invert(33%) sepia(92%) saturate(2876%) hue-rotate(340deg) brightness(97%) contrast(94%);
}

.location-col ul li:hover {
    opacity: 1;
    transform: translateX(6px);
}

.group-compy{
        display: flex;
    /* flex-wrap: wrap; */
    gap: 40px;
    align-items: center;
}
/*.group-compy img{*/
/*    filter: brightness(0) invert(1);*/
/*}*/

.group-compy .group-tit{
    margin:0;
    font-size: 28px;
}










.dta-footer {
    background: #030303;
    color: #fff;
    padding: 50px 0 0;
}
.dta-footer .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.dta-footer .common-addr {
    display: flex;
    gap: 25px;
    align-items: center;
}
.dta-footer .newsletter {
    display: flex;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 350px;
}
.dta-footer .newsletter input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}
.dta-footer .send-btn {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4040;
    font-size: 20px;
    text-decoration: none;
}
.dta-footer .contact-bar {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    background: #FF4040;
    border-radius: 8px;
    overflow: hidden;
}

.dta-footer .contact-bar li {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(0,0,0,0.2);
    transition: background 0.3s ease;
      color: #fff;
     display: flex;
    align-items: center;
    justify-content: center; 
}
.dta-footer .contact-bar li h4{
    margin-bottom:0;
}
.contact-bar li:hover h4 {
    color: #000;
}

.dta-footer .contact-bar li:last-child {
    border-right: none;
}
.dta-footer .contact-bar li:hover {
    background: #fff;
    color: #000;
}
.dta-footer .contact-bar a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.dta-footer .contact-bar a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor; 
    transition: width 0.3s ease;
}
.dta-footer .contact-bar a:hover:after {
    width: 100%;
}
.dta-footer h3 {
    margin-bottom: 30px;
    font-size: 23px;
    color: #fff;
    width: 76%;
}
.dta-footer h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}
.dta-footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links li {
    margin-bottom: 8px;
}
.dta-footer .links a {
    display: inline-block;
    width: fit-content;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    position: relative;
    /*padding-left: 12px;*/
    font-size: 15px;
}
.dta-footer .links a:before {
    content: '/';
    position: absolute;
      left: -11px;
    opacity: 0;
    transition: 0.3s;
}
.dta-footer .links a:hover:before {
    opacity: 1;
}
.dta-footer .links a:after {
    content: '';
    position: absolute;
    bottom: 0;
       left: -2px;
    width: 0;
    height: 1px;
       background: #ffffff96;
    transition: width 0.3s ease;
}
.dta-footer .links a:hover:after {
    width: 100%;
}
.dta-footer .social a {
    display: inline-block;
      width: 35px;
    height: 35px;
    background: #FF4040;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
}
.dta-footer .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
}
.dta-footer .footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-size:15px;
}
.dta-footer .express-btn::before {
    background: #FF4040;
}

.dta-footer .common-addr p{
    margin:0;
}
.dta-footer .newsletter i{
   line-height: 1;
}
.dta-footer .address-boxx {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
}
.dta-footer .address-boxx h5 {
    color: #FF4040;
    font-size: 16px;
    margin-bottom: 10px;
}
.dta-footer .address-boxx p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color:rgba(255, 255, 255, .7);
}
.dta-footer .address-emails {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dta-footer .main p{
    color:rgba(255, 255, 255, .7);
}

.dta-footer .address-emails a {
   color:rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 15px;
}
.dta-footer .address-emails a:hover {
    text-decoration: underline;
}



.banner-carosel {
    overflow: hidden;
    background-color: #ff4040;
    padding: 20px 0;
    width: 100%;
}
.pxl-track {
    display: flex;
    width: max-content;
    animation: pxl_text_slide_l 20s linear infinite;
}
.pxl-text-slide {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #fff;
}
.pxl-text-slide span {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.pxl-text-slide span + span {
    margin-left: 40px;
}
.pxl-text-slide span::after {
    content: "•";
    margin-left: 40px; 
    margin-right: 40px; 
}
.pxl-text-slide span + span {
    margin-left: 0px; 
}

@keyframes pxl_text_slide_l {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.whatsappicon {
    position: fixed;
    right: 7px;
    top: 50%;
    z-index: 9999;
}
.whatsappicon .call-icons {
    display: none;
}

.express-btn i{
        line-height: 1;
    margin-top: 3px;
}
.hambuuefer {
    display: none; /* hidden on desktop */
}

.close-button {
     display: none; 
}

.our-header-section .col-lg-3.text-end{
    padding-right:0;
}


.howw-we-tabss .nav-tabs .nav-link,
.howw-we-tabss .nav-tabs .nav-link.active {
    border-bottom: none !important;
}
.contact-bar i{
    margin-left:2px;
}

/*Contact Us*/
.contact-secc{
    padding: 5rem 0;
}

.contact-secc .left-side-contact{
       padding: 33px 35px 49px;
       background-color: #F3F3F6;
       border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DDDDE6;
    border-radius: 13px;
}

.dta-express-textarea{
    border-radius: 10px;
  padding: 15px;
     /*color: #5c677b; */
    font-size: 16px;
    min-height: 110px;
    border: 1px solid #e8e8ee;
}



.left-side-contact label{
    font-weight: 400;
    line-height: 28px;
    display: block;
    margin-bottom: 5px;
    margin-top: 7px;
}

.dta-contact-input{
    border: 1px solid #e8e8ee;
    background-color: #fff;
    border-radius: 10px;
    height: 55px;
    padding-left: 17px;
    color: #5c677b;
    font-size: 16px;
    width: 100%;
    margin-bottom: 1rem;
}

.contact-btn {
    margin-top: 2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 55px;
        width: max-content;
    padding: 0 35px 0 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    gap: 12px;
    z-index: 1;
    margin-left: -18px;
    
    /* Button-specific resets added here */
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color:  #030303;
    -webkit-mask: url("../images/bg/mask-btn.png") no-repeat center / 100% 100%;
    mask: url("../images/bg/mask-btn.png") no-repeat center / 100% 100%;
    left: 20px;
    transition: background-color 0.4s ease;
}

/* Icon styles */
.contact-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-btn .btn-icon.main {
    background: rgba(255, 255, 255, 0.2);
}

.contact-btn .btn-icon.hover {
    position: absolute;
    right: -50px;
    background: #fff;
    opacity: 0;
}

.contact-btn .btn-icon.hover i {
    color: #030303;
    font-size: 12px;
    line-height: 1;
}

/* Animations */
.contact-btn > span:not(.btn-icon) {
    transition: transform 0.4s ease;
}

.contact-btn:hover::before {
    background-color: #fe000b; 
}

.contact-btn:hover > span:not(.btn-icon) {
   transform: translateX(-30px);
}

.contact-btn:hover .btn-icon.main {
    opacity: 0;
    transform: translateX(-20px);
}

.contact-btn:hover .btn-icon.hover {
    opacity: 1;
    right: 20px;
}

.right-contact {
    background: #030303;
    border-radius: 13px;
  padding: 60px 40px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.dta-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dta-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ffffff;
}
.dta-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.dta-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #FF4040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.dta-info-text h4 {
   color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 8px 0;
}
.dta-info-text p {
        color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.dta-info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
.dta-info-text a:hover {
    color: #FF4040;
}

.dta-icon-circle i{
    font-size: 22px;
    padding-top: 3px;
}

.dta-social-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
}
.dta-social-area span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}
.dta-social-links {
    display: flex;
    gap: 10px;
}
.dta-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #FF4040;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.dta-social-links a:hover {
    background: #FF4040;
}


   .client-logos-section {
    background-color: #030303;
    padding: 4rem 0 2rem;
    width: 100%;
    overflow: hidden;
}

.client-logos-section .client-heading {
    color: #ffffff;
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 40px 0;
}

.client-logos-section .shippers-heading {
    margin-top: 80px;
}

.client-logos-section .swiper-slide {
        width: 128.778px !important;
    margin-right: 33px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logos-section .client-logo-img {
    max-width: 148px !important;
    width: 100%;
    height: auto;
    object-fit: contain;
    -webkit-filter: invert(100%);
    filter: invert(100%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.client-logos-section .client-logo-img:hover {
    transform: scale(1.15);
}
.client-logos-section .swiper {
    overflow: visible;
    margin-bottom: 2rem;
}

/* CRITICAL: Forces Swiper to move continuously without stopping */
.client-logos-section .associatesSwiper .swiper-wrapper,
.client-logos-section .shippersSwiperRight .swiper-wrapper,
.client-logos-section .shippersSwiperLeft .swiper-wrapper {
    transition-timing-function: linear !important;
}

.get-quote-secc {
    padding: 5rem 0;
}

/* Master Wrapper to hold the border and border-radius like the image */
.get-quote-secc .quote-main-wrapper {
    border: 1px solid #E8E8EE;
    border-radius: 12px;
    overflow: hidden; /* Keeps the image inside the rounded corners */
}

/* Left Form Area */
.get-quote-secc .left-form-quote {
    padding: 54.5px 3rem;
    background-color: #ffffff;
    height: 100%;
}

.get-quote-secc .quote-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.get-quote-secc .quote-title-area h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

/* The red arrow using pseudo-element logic on a div */
.get-quote-secc .quote-arrow-icon {
    width: 52px;
    height: 86px;
    position: relative;
}

.get-quote-secc .quote-arrow-icon::before {
    content: '';
    position: absolute;
    top: -103px;
    right: 8px;
    width: 163%;
    height: 209px;
    background-image: url(../images/services/arrow-mark-quote.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Form Fields Styling */
.get-quote-secc .form-group {
    margin-bottom: 1.2rem;
}

.get-quote-secc label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
    padding-left: 5px;
}

/* Base input styling replacing dta-quote-input */
.get-quote-secc .dta-quote-input,
.get-quote-secc .dta-express-textarea {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    color: #555555;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.get-quote-secc .dta-quote-input:focus,
.get-quote-secc .dta-express-textarea:focus {
    border-color: #ff4040;
    outline: none;
}

.get-quote-secc .dta-express-textarea {
    height: 100px;
    resize: vertical;
}

/* Bottom Action Area (Tooltip + Button) */
.get-quote-secc .form-bottom-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaeb;
}

/* Tooltip Design */
.get-quote-secc .info-tooltip-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}


.get-quote-secc .info-text {
    font-weight: 600;
    color: #0b112c;
    font-size: 15px;
}

.get-quote-secc .tooltip-box {
    position: absolute;
    bottom: 130%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 12px 15px;
    border-radius: 6px;
    width: 250px;
    font-size: 13px;
    color: #555;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Tooltip triangle pointer */
.get-quote-secc .tooltip-box::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    transform: rotate(45deg);
}

.get-quote-secc .info-tooltip-wrap:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensuring your pre-existing contact-btn aligns properly */
.get-quote-secc .contact-btn {
    margin: 0;
}

/* Right Image Area */
.get-quote-secc .right-quote-image {
    height: 100%;
    width: 100%;
}

.get-quote-secc .right-quote-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.form-bottom-action .questin-mark{
        background: #040404;
    color: #ffffff;
    width: 40px;
    height: 39px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .get-quote-secc .left-form-quote {
        padding: 2rem 0;
    }
    .get-quote-secc .form-bottom-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .get-quote-secc .right-quote-image {
        min-height: 400px; /* Gives image height when stacked on mobile */
    }
}


@media (max-width: 768px) {
    .client-logo-img {
        max-width: 120px;
    }
}

.sticky .main-menu .has-dropdown > a i.plain {
    left: 99px;
}




.services-listing-sec .industry-slider-wrap {
 
     padding-left:0 !important; 
}


.services-listing-sec .industry-slider-wrap .row{
    row-gap:30px;
    justify-content:center;
}

.sector-table-sec {
    padding:0 0 4rem;
}

.planin-scector-pan .five-point li {
    display: flex;
    flex-wrap: wrap;
}

.planin-scector-pan .five-point {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
}

.five-point h4{
    color:#fff;
    font-size: 22px;
}

.sector-main-choose {
    padding:4rem 0 0;
}

a.link{
    color: var(--color-secondary);
    font-weight:500;
    
}


.services-listing-sec .arrow-btn  {
    position: relative;
    bottom: 37px;
}

.service-why .card-content h4{
    font-size:19px;
}

.get-quote-secc .right-quote-image {
    height: 900px;
}

.planin-scector-pan .five-point li:nth-child(3)::after {
    display: none;
}

.outline-btn {
    display: inline-block;
  padding: 12px 26px;
    background: #ffffff;
    color: #000; /* Button text color */
    border: 2px solid #000; /* Outline color */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.our-header-section.sticky .main-menu > ul {
    gap: 28px;
}

.splacial {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}