@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

html {
    font-size: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:focus,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: #002147;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 36px;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    line-height: 1.4;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

input,
select,
textarea {
    border: none;
    outline: 0;
}

button {
    border: none;
    cursor: pointer;
}

button,
button:focus,
button:hover {
    outline: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
    background-color: #fdfdfd;
}

.section_padding {
    padding: 100px 0;
}

.section_title {
    margin-bottom: 60px;
    text-align: center;
}

.section_title h2 {
    position: relative;
    margin-bottom: 15px;
}

.section_title span {
    color: #ff8c00;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bg_image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff5e14;
}

.main_bg {
    background: #ff8c00;
}

.dark_bg {
    background: #002147;
}

.gray_bg {
    background: #e9eef3;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.logistics_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    height: 50px;
    line-height: 1.2;
    text-align: center;
    background: #ff8c00;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logistics_btn:focus,
.logistics_btn:hover {
    background: #002147;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn_link {
    text-transform: uppercase;
    color: #6c6b71;
    display: inline-block;
    transition: all 0.5s;
}

.btn_link:focus,
.btn_link:hover {
    color: #ff5e14;
}

.btn_link:after {
    display: inline-block;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    padding-left: 10px;
    vertical-align: middle;
}

.form-element {
    margin-bottom: 20px;
}

.form-element:last-child {
    margin-bottom: 0;
}

.form-element label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.form-element label.custom-control-label {
    font-weight: 400;
    margin-bottom: 0;
}

.form-element label span {
    color: #ff3737;
}

input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
    display: inline-block;
    width: 100%;
    height: 50px;
    padding-left: 23px;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 1px;
}

select {
    border: 1px solid #ddd;
    height: 50px;
    width: 100%;
    padding-left: 20px;
    color: #38383c;
    outline: 0;
    font-size: 14px;
}

textarea {
    display: inline-block;
    width: 100%;
    height: 100px;
    padding: 15px 0 0 23px;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 1px;
}

button[type="submit"],
input[type="submit"] {
    border: none;
    color: #fff;
    padding: 14px 45px 14px;
    display: inline-block;
    outline: 0;
    font-weight: 600;
    background-color: #0a3041;
    border: 1px solid #0a3041;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: #fff;
    color: #0a3041;
}

::-webkit-input-placeholder {
    color: #38383c;
    opacity: 1;
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #38383c;
    opacity: 1;
    font-size: 14px;
}

::placeholder {
    color: #38383c;
    opacity: 1;
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #38383c;
    font-size: 14px;
}

::-ms-input-placeholder {
    color: #38383c;
    font-size: 14px;
}

.buttonBar {
    display: none;
}

div#particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

#footerSubscribeForm button[type="submit"] {
    padding: 0;
}

.search_wrapper.active {
    top: 0;
}

.search_wrapper {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #001e3c;
    height: 50%;
    width: 100%;
    z-index: 999999;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.search_wrapper .close_link {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ff5e14;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 22px;
}

.search_wrapper .form_control {
    background: 0 0;
    width: 70%;
    position: absolute;
    top: 50%;
    left: 15%;
    height: 60px;
    padding-left: 30px;
    margin: 0 auto;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    transition: all 0.5s;
}

.search_wrapper .form_control:focus {
    border-color: #ff5e14;
}

.search_wrapper .form_control::placeholder {
    color: #fff;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.sticky.header_v1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 337;
    background: #656673;
}

.header_v1 .hainer_main_content {
    display: flex;
}

.header_v1 .hainer_main_content .logo {
    max-width: 250px;
    width: 100%;
    background: #ff5e14;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.header_v1 .header_navigation {
    background: #121c45;
    width: calc(100% - 250px);
}

.sticky.header_v1 .top_header {
    display: none;
}

.header_v1 .top_header {
    padding: 10px 70px 10px 30px;
    border-bottom: 1px solid #ffffff10;
}

.header_v1 .top_header .top_left span {
    margin-right: 35px;
}

.header_v1 .top_header .top_left span i {
    margin-right: 10px;
    opacity: 0.8;
    color: #fff;
}

.header_v1 .top_header .top_left span a {
    color: #fff;
    opacity: 0.8;
}

.header_v1 .top_header .top_right {
    float: right;
}

.header_v1 .top_header .top_right .social {
    margin-right: 40px;
}

.header_v1 .top_header .top_right .social li {
    display: inline-block;
    margin-left: 15px;
}

.header_v1 .top_header .top_right .social li a {
    color: #d6d7da;
}

.header_v1 .top_header .top_right .social li a:focus,
.header_v1 .top_header .top_right .social li a:hover {
    color: #ff5e14;
}

.header_v1 .top_header .top_right .dropdown .btn {
    color: #fff;
    padding: 0;
    border: none;
}

.header_v1 .top_header .top_right .dropdown .btn i {
    margin-right: 10px;
}

.header_v1 .top_header .top_right .dropdown .btn.dropdown-toggle:focus,
.header_v1 .top_header .top_right .dropdown .btn.dropdown-toggle:hover {
    border: none;
    box-shadow: none;
}

.header_v1 .site_menu {
    padding: 0 70px 0 30px;
}

.header_v1 .header_navigation .site_menu .button_box {
    float: right;
}

.header_v1 .header_navigation .site_menu .button_box .search_icon {
    color: #fff;
    font-size: 18px;
}

.header_v1 .header_navigation .site_menu .button_box .logistics_btn {
    height: 50px;
    line-height: 50px;
    min-width: 150px;
    border-radius: 25px;
    margin-left: 50px;
}

.mean-container .mean-bar {
    background: 0 0;
    padding: 0;
    min-height: 0;
}

.mean-container .mean-nav {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    margin-top: 0;
}

.mean-container a.meanmenu-reveal {
    top: -36px;
    padding: 0;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul li:first-child a {
    padding-left: 0;
}

.main-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.main-menu ul > li > a {
    display: block;
    padding: 25px 13px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

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

.main-menu ul li.menu-item-has-children > a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 600;
    margin-left: 10px;
}

.main-menu ul li > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 250px;
    text-align: left;
    padding: 15px 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-menu ul li:hover > ul.sub-menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.main-menu ul li > ul.sub-menu li {
    display: block;
    margin: 0;
}

.main-menu ul li > ul.sub-menu li > a {
    display: block;
    padding: 5px 35px;
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
    transition: all 0.3s;
}

.main-menu ul li > ul.sub-menu li:hover > a:after {
    display: none;
}

.main-menu ul li > ul.sub-menu li:hover > a {
    color: #fff;
    padding-left: 40px;
    background: 0 0;
}

.main-menu ul li ul.sub-menu li > ul.sub-menu {
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.main-menu ul li ul.sub-menu li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
}

.main-menu ul li.static {
    position: static;
}

.main-menu ul li ul.mega-menu {
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 35px;
    z-index: 0;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    text-align: left;
    box-shadow: 0 15px 30px 0 rgba(0, 3, 143, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    z-index: 150;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.main-menu ul li ul.mega-menu li.mega-item ul li:hover > a,
.main-menu ul li ul.mega-menu li.mega-item:hover > a {
    background: 0 0;
    color: #ff5e14;
}

.main-menu ul li:hover ul.mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-menu ul li ul.mega-menu li.mega-item {
    margin: 0;
    margin-bottom: 15px;
}

.main-menu ul li ul.mega-menu li.mega-item > a {
    color: #233d63;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

.main-menu ul li ul.mega-menu li.mega-item ul {
    margin-top: 15px;
}

.main-menu ul li ul.mega-menu li.mega-item ul li {
    display: block;
    margin: 0;
    margin-bottom: 16px;
}

.main-menu ul li ul.mega-menu li.mega-item ul li:last-child {
    margin-bottom: 0;
}

.main-menu ul li ul.mega-menu li.mega-item ul li a {
    color: #233d63;
    padding: 0;
    text-transform: capitalize;
    font-weight: 400;
}

.main-menu ul li ul.mega-menu li.mega-item ul li a:hover {
    color: #f36233;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-menu ul > li > a {
        padding: 38px 10px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu ul li {
        margin-left: 5px;
        margin-right: 5px;
    }
    .main-menu ul > li > a {
        padding: 38px 8px;
        font-size: 14px;
    }
}

li.submenus ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: #222;
    width: 250px;
    z-index: 0;
    display: none;
}

li.submenus:hover > ul {
    display: block;
}

li.submenus {
    position: relative;
}

.main-menu li.submenus ul {
    padding: 15px 0;
}

li.submenus::after {
    content: "\f101";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #fff;
}

.banner_v1 {
    position: relative;
}

.banner_content {
    position: relative;
    z-index: 150;
}

.hero_slide_v1 .single_slider {
    padding: 230px 0 245px;
}

.hero_slide_v1 .single_slider .bg_overlay {
    opacity: 0.7;
}

.hero_slide_v1 .single_slider .banner_content span {
    color: #fff;
    font-size: 27px;
    display: block;
    margin-bottom: 15px;
}

.hero_slide_v1 .single_slider .banner_content h1 {
    color: #fff;
    max-width: 400px;
    margin-bottom: 50px;
}

.blog_slide .slick-next:before,
.blog_slide .slick-prev:before,
.hero_slide_v1 .slick-next:before,
.hero_slide_v1 .slick-prev:before,
.pricing_slide .slick-next:before,
.pricing_slide .slick-prev:before,
.project_slide .slick-next:before,
.project_slide .slick-prev:before,
.service_slide .slick-next:before,
.service_slide .slick-prev:before,
.team_slide .slick-next:before,
.team_slide .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 50px;
    height: 50px;
    font-size: 16px;
    background: #ff5e14;
    color: #fff;
    display: block;
    opacity: 1;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
}

.hero_slide_v1 .slick-prev {
    z-index: 1;
    left: -60px;
    transition: all 0.5s;
}

.hero_slide_v1 .slick-next {
    right: -60px;
    transition: all 0.5s;
}

.hero_slide_v1:hover .slick-prev {
    left: 60px;
}

.hero_slide_v1:hover .slick-next {
    right: 60px;
}

.blog_slide .slick-prev:before,
.hero_slide_v1 .slick-prev:before,
.pricing_slide .slick-prev:before,
.project_slide .slick-prev:before,
.service_slide .slick-prev:before,
.team_slide .slick-prev:before {
    content: "\f104";
}

.blog_slide .slick-next:before,
.hero_slide_v1 .slick-next:before,
.pricing_slide .slick-next:before,
.project_slide .slick-next:before,
.service_slide .slick-next:before,
.team_slide .slick-next:before {
    content: "\f105";
}

.blog_slide:hover .slick-prev,
.pricing_slide:hover .slick-prev,
.project_slide:hover .slick-prev,
.service_slide:hover .slick-prev,
.team_slide:hover .slick-prev {
    left: 60px;
    opacity: 1;
    visibility: visible;
}

.blog_slide:hover .slick-next,
.pricing_slide:hover .slick-next,
.project_slide:hover .slick-next,
.service_slide:hover .slick-next,
.team_slide:hover .slick-next {
    right: 60px;
    opacity: 1;
    visibility: visible;
}

.blog_slide .slick-next,
.pricing_slide .slick-next,
.project_slide .slick-next,
.service_slide .slick-next,
.team_slide .slick-next {
    right: -60px;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}

.blog_slide .slick-prev,
.pricing_slide .slick-prev,
.project_slide .slick-prev,
.service_slide .slick-prev,
.team_slide .slick-prev {
    z-index: 1;
    width: 50px;
    height: 50px;
    left: -60px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}

.feature_v1 {
    margin-top: -70px;
    position: relative;
}

.feature_v1 .container-fluid {
    padding-left: 150px;
    padding-right: 150px;
}

.feature_v1 .grid_item {
    padding: 70px 30px;
    background: #121c45;
    transition: all 0.3s;
}

.feature_v1 .active_item {
    background: #ff5e14;
}

.feature_v1 .grid_item:hover {
    background: #ff5e14;
}

.feature_v1 .grid_item:hover .logistics_icon i {
    background: #ffffff20;
}

.feature_v1 .grid_item.active_item .logistics_icon i {
    background: #ffffff20;
}

.feature_v1 .grid_item .logistics_icon i {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff10;
    color: #fff;
    font-size: 40px;
}

.feature_v1 .grid_item .logistics_content {
    margin-left: 20px;
}

.feature_v1 .grid_item .logistics_content h4 {
    max-width: 200px;
    color: #fff;
    line-height: 32px;
    font-weight: 600;
}

.about_v1 .logistics_box_img .logistics_img {
    position: relative;
    z-index: 1;
}

.logistics_box_img {
    position: relative;
}

.logistics_box_img .logistics_img {
    position: relative;
    border: 10px solid #fff;
    box-shadow: 0 6px 47px 3px rgba(37, 37, 37, 0.05);
    max-width: 340px;
}

.logistics_box_img .logistics_img:nth-child(2) {
    margin-left: 28%;
    margin-top: -39%;
}

.play_box {
    position: absolute;
    top: -50px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
}

.play_box .play_btn {
    display: block;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    background: #ff5e14;
    color: #fff;
    border: 10px solid #fff;
    z-index: 1;
    height: 100px;
    line-height: 80px;
    font-size: 20px;
}

.section_title h2 {
    position: relative;
}

.section_title h2:after {
    display: block;
    content: "";
    width: 110px;
    height: 3px;
    margin-top: 25px;
    background-color: #d8dce6;
    border-radius: 50%;
}

.service_v1 .section_title h2 {
    max-width: 580px;
    color: #fff;
}

.service_v1 .service_slide {
    margin-left: -15px;
    margin-right: -15px;
}

.service_v1 .service_slide .grid_item {
    padding: 45px 40px 40px;
    margin-left: 15px;
    margin-right: 15px;
    background: #ffffff0a;
    transition: all 0.5s;
}

.service_v1 .service_slide .grid_item:hover {
    background: #ff5e14;
}

.service_v1
    .service_slide
    .grid_item
    .grid_inner_item
    .logistics_content
    .btn_link {
    color: #fff;
}

.service_v1 .service_slide .grid_item .grid_inner_item .logistics_icon {
    background: #ffffff10;
    display: block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 35px;
}

.service_v1 .service_slide .grid_item .grid_inner_item .logistics_icon i {
    font-size: 60px;
    color: #fff;
}

.service_v1 .service_slide .grid_item .grid_inner_item .logistics_icon img {
    margin: 0 auto;
    display: inline-block;
    max-width: 60px;
    width: 100%;
}

.service_v1 .service_slide .grid_item .grid_inner_item .logistics_content h4 {
    margin-bottom: 20px;
    color: #fff;
}

.service_v1 .service_slide .grid_item .grid_inner_item .logistics_content p {
    margin-bottom: 35px;
    color: #fff;
}

.service_v1
    .service_slide
    .grid_item
    .grid_inner_item
    .logistics_content
    .btn_link {
    color: #fff;
}

.we_do_v1 .logistics_icon_box .icon_list {
    margin-bottom: 60px;
}

.we_do_v1 .logistics_icon_box .icon_list:last-child {
    margin-bottom: 0;
}

.we_do_v1 .logistics_icon_box .icon_list .icon {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    display: block;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    background: #ff5e1410;
    padding-top: 9px;
}

.we_do_v1 .logistics_icon_box .icon_list .icon i {
    font-size: 40px;
    color: #ff5e14;
    display: inline-block;
}

.we_do_v1 .logistics_icon_box .icon_list .text {
    margin-left: 20px;
}

.we_do_v1 .logistics_icon_box .icon_list .text h4 {
    margin-bottom: 15px;
}

.logistics_fun_v1 .bg_overlay {
    opacity: 0.8;
}

.logistics_fun_v1 .counter_box {
    text-align: center;
}

.logistics_fun_v1 .counter_box .icon {
    position: relative;
    margin-bottom: 18px;
}

.logistics_fun_v1 .counter_box .icon i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 40px;
    background: #fff;
    color: #ff5e14;
}

.logistics_fun_v1 .counter_box h2 {
    color: #fff;
}

.logistics_fun_v1 .counter_box p {
    color: #fff;
}

.testimonial_v1 {
    position: relative;
}

.blog_v1 .section_title h2:after,
.pricing_v1 .section_title h2:after,
.testimonial_v1 .section_title h2:after {
    margin: auto;
    margin-top: 25px;
}

.testimonial_v1 .section_title h2 {
    max-width: 720px;
    margin: auto;
}

.testimonial_v1 .testimonial_slide .testimonial_box {
    position: relative;
    padding: 40px;
    background: #e9eef3;
    margin-left: 15px;
    margin-right: 15px;
}

.testimonial_v1 .testimonial_slide .testimonial_box:after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 90px;
    color: #dce1e5;
    opacity: 0.8;
    top: 40px;
    right: 40px;
}

.testimonial_v1 .testimonial_slide .testimonial_box .logistics_img {
    width: 33.65%;
}

.testimonial_v1 .testimonial_slide .testimonial_box .logistics_content {
    margin-left: 30px;
    width: 60%;
}

.testimonial_v1 .testimonial_slide .testimonial_box .logistics_content h4 {
    margin-bottom: 5px;
}

.testimonial_v1 .testimonial_slide .testimonial_box .logistics_content h6 {
    margin-bottom: 20px;
}

.testimonial_v1 .testimonial_slide .testimonial_box {
    margin-bottom: 75px;
}

.testimonial_slide.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.testimonial_slide .slick-dots {
    bottom: 0;
}

.testimonial_slide .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: #cfd3e4;
    border-radius: 50%;
    transition: all 0.3s;
}

.testimonial_slide .slick-dots li.slick-active button {
    width: 25px;
    background: #f3a783;
    border-radius: 6px;
}

.logistics_img img {
    width: 100% !important;
}

.project_v1 .container-fluid {
    padding-left: 150px;
    padding-right: 150px;
}

.project_v1 .section_title h2 {
    max-width: 630px;
}

.project_slide {
    margin-left: -10px;
    margin-right: -10px;
}

.project_slide .grid_item {
    margin-left: 10px;
    margin-right: 10px;
}

.project_slide .grid_item .logistics_content {
    padding: 35px 0 40px;
}

.project_slide .grid_item .grid_inner_item .logistics_img {
    position: relative;
    overflow: hidden;
}

.project_slide .grid_item .grid_inner_item .logistics_img .overlay_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff5e14;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.project_slide .grid_item .grid_inner_item .logistics_img .overlay_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.project_slide
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .button_box
    .logistics_btn {
    background: #fff;
    border-radius: 30px;
    color: #111;
    font-weight: 600;
}

.project_slide .grid_item:hover .grid_inner_item .logistics_img .overlay_img {
    opacity: 0.8;
    visibility: visible;
}

.project_slide
    .grid_item:hover
    .grid_inner_item
    .logistics_img
    .overlay_content {
    visibility: visible;
    opacity: 1;
}

.blog_v1 .blog_slide,
.pricing_v1 .pricing_slide,
.service_v1 .service_slide,
.team_v1 .team_slide,
.testimonial_v1 .testimonial_slide {
    margin-left: -15px;
    margin-right: -15px;
}

.blog_v1 .blog_slide .grid_item,
.pricing_v1 .pricing_slide .pricing_box,
.team_v1 .team_slide .grid_item {
    margin-left: 15px;
    margin-right: 15px;
}

.pricing_v1 .section_title h2 {
    max-width: 730px;
    margin: auto;
}

.pricing_v1 .pricing_box {
    position: relative;
    padding: 40px 0;
    background: #fff;
    border: 4px solid #e4e8ec;
    transition: all 0.3s;
}

.pricing_v1 .pricing_box:hover {
    border-color: #ff5e14;
}

.pricing_v1 .pricing_title {
    margin-bottom: 20px;
}

.pricing_v1 .pricing_box .pricing_price {
    background: #e9eef3;
    padding: 20px 10px;
    transition: all 0.5s;
}

.pricing_v1 .pricing_box .pricing_body {
    padding: 30px 40px;
}

.pricing_v1 .pricing_box .pricing_body ul li {
    line-height: 36px;
}

.team_v1 .button_box {
    float: right;
}

.team_v1 .grid_item:hover .grid_inner_item .logistics_img .overlay_content {
    top: 0;
}

.team_v1 .grid_item .grid_inner_item .logistics_content {
    padding: 25px 30px;
}

.team_v1 .grid_item .grid_inner_item .logistics_img {
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 18, 75, 0.05);
}

.team_v1 .grid_item .grid_inner_item .logistics_img .overlay_content {
    position: absolute;
    top: -100%;
    left: 30px;
    background: #ff5e14;
    padding: 34px 13px;
    transition: all 0.5s;
}

.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul
    li {
    margin-bottom: 10px;
}

.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul
    li:last-child {
    margin-bottom: 0;
}

.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul {
    transform: rotate(-180deg);
}

.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul
    li
    a {
    display: block;
    width: 33px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #686868;
    box-shadow: 0 5px 20px 0 rgba(7, 20, 73, 0.1);
    transform: rotate(90deg);
    transition: all 0.5s;
}

.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul
    li
    a:focus,
.team_v1
    .grid_item
    .grid_inner_item
    .logistics_img
    .overlay_content
    .social_box
    ul
    li
    a:hover {
    background: #29282f;
    color: #fff;
}

.blog_v1 .section_title h2 {
    max-width: 660px;
    margin: auto;
}

.blog_v1 .grid_item .grid_inner_item .logistics_img img {
    width: 100%;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .post_meta {
    margin-bottom: 18px;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .post_meta span {
    display: inline-block;
    margin-right: 25px;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .post_meta span a {
    color: #6a6b71;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .post_meta span i {
    margin-right: 10px;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content h3.post_title {
    font-size: 22px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content h3.post_title a:hover {
    color: #ff5e14;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content h3.post_title a {
    color: #29282f;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link {
    padding-top: 20px;
    text-transform: capitalize;
    color: #6a6b71;
    display: inline-block;
    transition: all 0.5s;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link:focus,
.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link:hover {
    color: #ff5e14;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link:after {
    display: inline-block;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    padding-left: 10px;
    vertical-align: middle;
    transition: all 0.5s;
}

.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link:focus:after,
.blog_v1 .grid_item .grid_inner_item .logistics_content .btn_link:hover:after {
    padding-left: 35px;
}

.partner_v1 .partner_slide .single_partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.partner_v1 .partner_slide .single_partner img {
    filter: grayscale(1);
    margin: 0 auto;
}

.partner_v1 .partner_slide .single_partner:hover img {
    filter: grayscale(0);
}

.cta_v1 .section_title {
    margin-bottom: 0;
}

.cta_v1 .section_title h2:after {
    display: none;
}

.cta_v1 .button_box {
    float: right;
}

.cta_v1 .button_box .logistics_btn {
    background: #29282f;
    min-width: 200px;
}

.cta_v1 .button_box .logistics_btn:focus,
.cta_v1 .button_box .logistics_btn:hover {
    background: #fff;
    color: #29282f;
}

.footer_v1 .widget_box h4.widget_title {
    color: #fff;
    margin-bottom: 35px;
}

.footer_v1 .widget_box.about_widget img {
    margin-bottom: 30px;
}

.footer_v1 .widget_box.about_widget p,
.footer_v1 .widget_box.contact_widget p {
    margin-bottom: 15px;
}

.footer_v1 .contact_widget {
    margin-left: 45px;
}

.footer_v1 .widget_box.contact_widget p {
    max-width: 210px;
}

.footer_v1 .widget_box .widget_link li {
    line-height: 32px;
}

.footer_v1 .widget_box .widget_link li:hover a {
    color: #ff5e14;
    padding-left: 10px;
}

.footer_v1 .widget_box .widget_link li a {
    transition: all 0.5s;
}

.footer_v1 .widget_box.newsletter_box p {
    margin-bottom: 25px;
}

.footer_v1 .widget_box.newsletter_box .form_control {
    margin-bottom: 10px;
}

.footer_v1 .widget_box.newsletter_box .logistics_btn {
    border-radius: 25px;
    height: 50px;
    line-height: 50px;
    color: #fff;
}

.footer_v1 .footer_bottom {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid #ffffff10;
}

.footer_v1 .footer_bottom .copyright_text p,
.footer_v1 .widget_box .widget_link li a,
.footer_v1 .widget_box.about_widget p,
.footer_v1 .widget_box.contact_widget p,
.footer_v1 .widget_box.contact_widget p a {
    color: #6c6b71;
}

.footer_v1 .footer_bottom .copyright_text p span {
    color: #ff5e14;
}

.footer_v1 .footer_bottom .social_box {
    float: right;
}

.footer_v1 .footer_bottom .social_box ul li {
    display: inline-block;
    margin-left: 5px;
}

.footer_v1 .footer_bottom .social_box ul li a {
    font-size: 15px;
    display: block;
    width: 34px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #5f5f5f;
    box-shadow: 0 5px 20px 0 rgba(7, 20, 73, 0.1);
    transition: all 0.5s;
}

.footer_v1 .footer_bottom .social_box ul li a:focus,
.footer_v1 .footer_bottom .social_box ul li a:hover {
    background: #ff5e14;
    color: #fff;
}

.form_control {
    width: 100%;
    height: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 3px;
}

#scroll_up {
    background: #1f2332;
    border-radius: 50%;
    bottom: 10px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 10px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    z-index: 337;
}

#scroll_up:focus,
#scroll_up:hover {
    background: #ff5e14;
    color: #fff;
}

.breadcrumb-area .breadcrumb-txt {
    padding: 90px 0 90px 0 !important;
}

.breadcrumb-txt span {
    font-family: Montserrat, sans-serif !important;
}

.subscribe-section span {
    font-family: Montserrat, sans-serif !important;
}

.subscribe-form button[type="submit"],
.subscribe-form input[type="submit"] {
    font-family: Montserrat, sans-serif !important;
}

a.readmore-btn {
    font-family: Montserrat, sans-serif !important;
}

.product-items .section-title {
    font-family: Montserrat, sans-serif !important;
}

.subscribe-section h3 {
    font-size: 22px !important;
}

.subscribe-section span {
    font-size: 14px !important;
}

.subscribe-form button[type="submit"],
.subscribe-form input[type="submit"] {
    font-size: 14px !important;
}

.project-infos h3 {
    font-size: 22px !important;
}

.single-pic h4 {
    font-size: 22px !important;
}

.faq-section .accordion .card .card-header .btn {
    font-size: 16px !important;
}

.blog-txt .blog-title {
    font-size: 22px !important;
}

a.readmore-btn {
    font-size: 14px !important;
}

.contact-form-section .section-summary {
    font-size: 32px !important;
}

.order-comfirmation {
    padding: 120px 0 120px !important;
}

.requirement-wrapper .title h3 {
    font-size: 26px !important;
    line-height: 36px;
}

.content-info h3 {
    font-size: 28px !important;
    line-height: 38px !important;
}

.event-details-section .nice-number input {
    height: 43px !important;
}

.header_v1 .top_header .top_right .dropdown {
    margin-right: 30px !important;
}

a#cartIcon .cart-length {
    padding: 8px 10px 5px !important;
}

.popup_main-content h1 {
    line-height: 64px;
}

/* Megamenu CSS */

.main-menu ul li.static {
    position: static;
}

.main-menu ul li .mega-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 650px;
    overflow-y: auto;
    background: #851c1e;
    padding: 30px 15px 20px;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #ffffff; /* Secondary Brand Color */
    transition: 0.3s;
    z-index: 9999;
}

.main-menu ul li .mega-menu a,
.main-menu ul li .mega-menu p,
.main-menu ul li .mega-menu h3,
.main-menu ul li .mega-menu h4,
.main-menu ul li .mega-menu li {
    color: #ffffff !important; /* Force dark navy text */
}

.main-menu ul li .mega-menu a:hover {
    color: #ff8c00 !important; /* Orange on hover */
    background: transparent !important;
}

.main-menu ul li .mega-menu::-webkit-scrollbar {
    background-color: #ccc;
    width: 8px;
}

.header_navigation .main-menu ul li .mega-menu::-webkit-scrollbar-thumb {
    background-color: #00000a;
}

.main-menu ul li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-menu ul li .mega-menu .sidebar-menu .widget-categories ul.widget-link li {
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #ffffff1a;
    padding-bottom: 10px;
}

.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li:last-child {
    margin-bottom: 0px;
}

.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li
    a:hover,
.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li.active
    a {
    color: #ff3737;
}

.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li
    a {
    font-size: 14px;
    padding: 0;
    color: #fff;
}

.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li:last-child {
    margin-bottom: 20px;
}

.sidebar-main-wrapper .mega-row h4.title {
    margin-bottom: 10px;
    margin-top: 10px;
}

.sidebar-main-wrapper .mega-row h4.title a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.sidebar-main-wrapper .mega-row {
    margin-bottom: 20px;
}

.sidebar-main-wrapper .mega-row:last-child {
    margin-bottom: 0px;
}

.sidebar-main-wrapper .box-item .box-img {
    margin-bottom: 10px;
}

.sidebar-main-wrapper .box-item .box-img img {
    width: 100%;
}

.sidebar-main-wrapper .box-item .box-info h4 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.sidebar-main-wrapper .box-item .box-info h4 a {
    padding: 0 !important;
    color: #fff !important;
}

.sidebar-main-wrapper .box-item .box-info h4 a:hover {
    color: #ff3737 !important;
}

li.mega-wrap {
    display: block !important;
}

.main-menu
    ul
    li
    .mega-menu
    .sidebar-menu
    .widget-categories
    ul.widget-link
    li:hover
    > a {
    background: transparent;
}

/*Large Device*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .breakpoint-on .main-menu ul li.static {
        position: relative;
    }
    .breakpoint-on .nav-menu .main-menu ul li .mega-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0px 20px 0 40px;
        opacity: 1;
        visibility: visible;
        text-align: left;
        box-shadow: none;
        display: none;
        transition: none;
    }
}

/*Medium Device*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar-main-wrapper {
        display: none;
    }
}

/* Small Devices, Tablets */

@media only screen and (max-width: 991px) {
    .sidebar-main-wrapper {
        display: none;
    }
    .breakpoint-on .main-menu ul li.static {
        position: relative;
    }
    .breakpoint-on .nav-menu .main-menu ul li .mega-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0px 20px 0 40px;
        opacity: 1;
        visibility: visible;
        text-align: left;
        box-shadow: none;
        display: none;
        transition: none;
    }
    .header_navigation .main-menu ul > li.menu-item-has-children > a:after {
        display: none;
    }
}
.mean-container .mean-nav ul.mega-menu {
    max-height: 350px;
    overflow: auto;
}
/* New Package Style Start */
.logistics_pricing .filter-nav {
    margin-bottom: 40px;
}

.logistics_pricing .filter-nav .filter-btn li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    color: #212121;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.logistics_pricing .filter-nav .filter-btn li:hover,
.logistics_pricing .filter-nav .filter-btn li:focus,
.logistics_pricing .filter-nav .filter-btn li.active {
    color: #61dc96;
}

/* New Package Style End */

/* New Portfolio Style Start */
.logistics_project .filter-nav {
    margin-bottom: 40px;
}

.logistics_project .filter-nav .filter-btn li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    color: #212121;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.logistics_project .filter-nav .filter-btn li:hover,
.logistics_project .filter-nav .filter-btn li:focus,
.logistics_project .filter-nav .filter-btn li.active {
    color: #61dc96;
}
.project_slide.masonry-row {
    width: 100%;
}
/* New Portfolio Style End */

/* =======================================================
   ASOSH PREMIUM HERO STYLES
   ======================================================= */
:root {
    --asosh-red: #ff8c00;
    --asosh-dark: #002147;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

.unique-hero-section {
    position: relative;
    overflow: hidden;
    background: var(--asosh-dark);
    cursor: default;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.unique-hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.unique-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(18, 28, 69, 0.4) 100%
    );
    z-index: 1;
}

.unique-hero-content {
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--asosh-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unique-tagline {
    display: inline-block;
    color: var(--asosh-red);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--asosh-red);
}

.unique-title {
    color: #fff;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.unique-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.unique-premium-btn {
    position: relative;
    border-radius: 100px;
    padding: 0 50px;
    height: 70px;
    line-height: 70px;
    background: var(--asosh-red);
    font-weight: 700;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 40px rgba(255, 94, 20, 0.3);
    transition: 0.4s;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: 0.5s;
}

.unique-premium-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 94, 20, 0.5);
}

.unique-premium-btn:hover .btn-glow {
    opacity: 1;
}

.interactive-hero-assets {
    position: relative;
    height: 600px;
    z-index: 2;
}

.parallax-card {
    position: absolute;
    z-index: 10;
    transition: transform 0.1s linear;
}
.card-top {
    top: 10%;
    right: -20px;
}
.card-bottom {
    bottom: 10%;
    left: -20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 25px 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.icon-pulse {
    width: 65px;
    height: 65px;
    background: rgba(255, 94, 20, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--asosh-red);
    animation: softPulse 3s infinite;
}

.main-image-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 15px solid rgba(255, 255, 255, 0.1);
}

.main-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.main-image-blob:hover img {
    transform: scale(1.1);
}

.animated-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}
.c1 {
    width: 400px;
    height: 400px;
    background: var(--asosh-red);
    top: -100px;
    right: -100px;
    animation: orbit 20s infinite linear;
}
.c2 {
    width: 300px;
    height: 300px;
    background: #002147;
    bottom: -50px;
    left: -50px;
    animation: orbit 25s infinite reverse linear;
}

@keyframes orbit {
    from {
        transform: rotate(0) translateX(50px) rotate(0);
    }
    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes softPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px 10px rgba(255, 94, 20, 0.1);
    }
}

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

@media (max-width: 991px) {
    .unique-title {
        font-size: 50px !important;
    }
    .unique-hero-content {
        text-align: center;
    }
    .unique-hero-description {
        margin: 0 auto 40px;
    }
    .unique-btn-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .video-play-btn {
        margin-left: 0;
    }
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.quick-link-item i {
    font-size: 20px;
    color: var(--asosh-red);
}
.quick-link-item span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}
.quick-link-item:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* =======================================================
   ASOSH GLOBAL MAP STYLES
   ======================================================= */
.global-stats-list li span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}
.map-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ff8c00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 1);
    animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}
