:root {
    margin-left: 0;
}
html {
    scrollbar-color: #fd9802 #000;
    scrollbar-width: thin;
    -webkit-scrollbar-color: #fd9802 #000;
    -webkit-scrollbar-width: thin;
    margin: 0;
}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* Animation Base */
.fade-in,
.fade-left,
.fade-right,
.fade-right2 {
    opacity: 0;
    visibility: hidden;
    transition: all 1.8s ease;
    will-change: opacity, transform;
}

/* Slide directions */
.fade-in {
    transform: translateY(50px);
}
.fade-left {
    transform: translateX(-50px);
}
.fade-right {
    transform: translateX(50px);
}
.fade-right2 {
    transform: translateX(50%);
}

/* Active when visible */
.fade-in.show,
.fade-left.show,
.fade-right.show,
.fade-right2.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}
input:focus,
textarea:focus,
.form-control:focus {
    box-shadow: none;
}
.txt {
    font-weight: 400;
    line-height: 32px;
    margin: 16px 0px;
    color: #3f3e3c;
}
.theme-hero {
    background-image: url(../imgs/main-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 10px;
}
.h1-main-heading {
    color: #fd9802;
    font-size: 250px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.h2-heading {
    color: #000;
    font-size: 46px;
    line-height: 65px;
    font-weight: 600;
}
.c-img {
    position: absolute;
    top: 42%;
    left: 49%;
    transform: translate(-50%, -50%);
    animation: spin 15s linear infinite;
    z-index: 1;
}

/* Define rotation keyframes */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.c-img:hover {
    animation-play-state: paused;
}
.main-img {
    max-width: 98%;
}
.row-up {
    margin-top: -150px;
}
.hero-padding {
    padding: 30px 50px 0px 0px;
}
.logis-btn {
    position: relative;
    padding: 10px 26px;
    background-color: #000;
    color: #fff;
    border-radius: 0px;
    overflow: hidden;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.4s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logis-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fd9802;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logis-btn:hover {
    color: #fff;
}

.logis-btn:hover span {
    width: 400px;
    height: 400px;
}

.red222 span {
    background: #ff3f42 !important;
}

.logis-btn-full {
    position: relative;
    width: 100%;
    padding: 12px 26px;
    background-color: #000;
    color: #fff;
    border-radius: 0px;
    overflow: hidden;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.5s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.logis-btn-full span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fd9802;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logis-btn-full:hover {
    color: #fff;
}

.logis-btn-full:hover span {
    width: 1300px;
    height: 1300px;
}
.colr2 {
    background-color: #fd9802 !important;
    color: #000 !important;
}

.btn-color2 {
    background-color: #fd9802 !important;
    color: #000 !important;
}
.btn-color2 span {
    background: #000 !important;
}
.btn-color2:hover {
    color: #fff !important;
}

.logis-btn-simple {
    background-color: #000;
    color: #fff;
    padding: 10px 26px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 400;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Hover Effects */
.logis-btn-simple:hover {
    background-color: #fd9802;
}

.navbar {
    border-bottom: 1px solid #0000001c;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.main-menu {
    margin-left: auto;
}
.main-menu li {
    margin-left: 18px;
}
.main-menu li a {
    color: #000;
    font-weight: 500;
    cursor: pointer;
}
.main-menu li a:hover {
    color: #fd9802;
}
.sec2-slider {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    align-items: center;
    position: relative;
}

/* Add image before each item */
.sec2-slider h3::before {
    content: "";
    display: inline-block;
    background-image: url("../imgs/start.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    margin-right: 16px;
    vertical-align: middle;
}

/* Continuous loop animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-150%);
    }
}
.sec2-slider:hover {
    animation-play-state: paused;
}

/* Hide overflow */
.container-fluid {
    overflow: hidden;
}

/* Color classes */
.purplue {
    color: #7e69e5;
}
.green {
    color: #2aab74;
}
.t-pink {
    color: #ff6f6f;
}
.padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.title-style {
    background-color: #fd98021c;
    color: #000;
    font-weight: 600;
    padding: 7px 18px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
}
.title-style::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fd9802;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.info-box {
    background-color: #e6e6e6;
    padding: 20px;
    transition: all 0.5s ease;
}
.info-box h5 {
    font-weight: 600;
    color: #000;
    margin: 14px 0px;
}
.info-box:hover {
    background-color: #fd9802;
}
.s3-martop {
    margin-top: 45px;
}
.sec4-bg {
    background-image: url(../imgs/bg-map.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 70px;
}
.bg-gry {
    background-color: #f6f6f6;
}
.counter-text {
    font-size: 150px;
    font-weight: 600;
    color: #000;
}
button.btn-close {
    position: fixed;
    top: 30px !important;
    right: 30px;
    opacity: 1 !important;
    background-color: #fff !important;
    color: #000 !important;
    padding: 10px;
    border-radius: 0;
}
.modal-content {
    background-color: transparent !important;
}
.vedio-img {
    cursor: pointer;
}
.info-box2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.info-box2 img.img-fluid {
    width: 100%;
    transition: transform 0.6s ease;
}

.info-box2:hover img.img-fluid {
    transform: scale(1.1);
}

/* Overlay Gradient */
.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 88%), rgba(0, 0, 0, 0.1));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 20px 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-box2:hover .overlay-content {
    opacity: 1;
}

/* Text + Icon */
.overlay-content .icon {
    width: 70px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.overlay-content h5 {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    margin: 0;
}

/* Hover Border Bottom Effect */
.info-box2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #fd9802; /* your theme green */
    transition: width 0.4s ease;
}

.info-box2:hover::after {
    width: 100%;
}
.slick-slide {
    margin: 10px;
}

.accordion-item {
    background-color: #f6f6f6 !important;
    margin: 20px 0px;
    border: none;
}
.accordion-button {
    background: transparent !important;
    box-shadow: 0 0 4px 1px #0000000d;
}
.accordion-button {
    color: #000 !important;
    font-weight: 500;
    font-size: 16px;
    border: none !important;
    box-shadow: none !important;
}

span.accordion-icon.ms-auto i {
    font-size: 17px;
    color: #000;
}
.accordion-body {
    background-color: #fff !important;
    padding-left: 5px;
    padding-bottom: 0px;
    line-height: 30px;
}
.accordion-button::after {
    display: none;
}
.accordion-button .plus-icon {
    display: inline;
}

.accordion-button .minus-icon {
    display: none;
}

.accordion-button:not(.collapsed) .plus-icon {
    display: none;
}

.accordion-button:not(.collapsed) .minus-icon {
    display: inline;
}
.accordion-button:not(.collapsed) {
    background-color: #fd9802 !important;
}
.accordion-button {
    border-radius: 0px !important;
}
.faq-image {
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translate(40%, -48%);
    max-width: 800px;
}
.max-heading {
    max-width: 90%;
}
.client-img {
    max-width: 110px;
}
.client-heading {
    font-weight: 300;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    margin-left: 20px;
}
.client-box {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 1px 1px #0000000d;
    position: relative;
}
.client-details {
    margin-left: 20px;
    margin-top: 10px;
}
.client-details h4 {
    font-weight: 600;
    color: #000;
    font-size: 20px;
    margin-bottom: 10px;
}
.client-details p {
    margin-top: 6px;
    margin-bottom: 0px;
}
.client-box img {
    max-width: 65px;
    max-height: 65px;
}
.quote-img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 90px !important;
    max-height: 90px !important;
}
.slick-prev:before,
.slick-next:before {
    font-size: 28px !important;
    opacity: 1 !important;
    color: white;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 0 1px 1px #0000000d;
}
.client-slider .slick-prev,
.client-slider .slick-next {
    top: 108% !important;
}
.client-slider .slick-prev {
    left: 11px !important;
}
.client-slider .slick-next {
    right: 22px !important;
}
/* Hide default slick arrows */
.slick-prev:before,
.slick-next:before {
    content: "";
}

/* Correct Font Awesome arrows */
.slick-prev::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
    font-style: normal;
    display: inline-block;
    font-size: 16px;
    color: #000;
    position: relative;
    top: -13px;
    left: 6px;
}

.slick-next::after {
    content: "\f054"; /* Right chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
    font-style: normal;
    display: inline-block;
    font-size: 16px;
    color: #000;
    position: relative;
    top: -13px;
    left: 6px;
}
.call-header::before {
    content: "";
    border-left: 1px solid #ffffff2b;
    height: 71px;
    position: absolute;
    margin-left: -27px;
}
.call-header::after {
    content: "";
    border-left: 1px solid #ffffff2b;
    height: 71px;
    position: absolute;
    margin-left: 190px;
}
.btn-close {
    background-image: none;
}
.btn-close::after {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* 900 for solid style */
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact-info {
    margin-left: 16px;
}
.contact-info p {
    margin: 0px;
}
.contact-info h5 {
    font-weight: 600;
    margin-top: 6px;
}
.contact-information img {
    max-width: 7%;
}
.contact-information {
    margin: 28px 0px;
}
.quote-form {
    background-color: #fff;
    max-width: 650px;
    margin: auto;
    padding: 30px;
    box-shadow: 0 0 20px 5px #00000014;
}

.form-input {
    background-color: #f8f8f8 !important;
    border: 1px solid #e6e6e6 !important;
    border-radius: 2px;
    height: 45px;
    font-size: 16px;
    color: #333;
}
.form-label {
    font-weight: 500;
    color: #000;
}
.form-input:focus {
    border-color: #fd98025c !important;
    box-shadow: none !important;
}

.map-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-bg {
    background-image: url(../imgs/main-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer-links h5 {
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.footer-links ul li {
    margin: 14px 0px;
}
.footer-links ul li a {
    color: #3f3e3c;
    transition: all 0.4s ease;
}
.footer-links ul li a:hover {
    color: #fd9802;
    transition: all 0.4s ease;
}
.left-footer {
    display: flex;
    justify-content: space-around;
}
.middle-footer {
    text-align: center;
    margin: auto;
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links i {
    background-color: #000;
    color: #fff;
    font-size: 20px;
    padding: 13px;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: 45px;
    height: 45px;
    margin: 1px 7px;
}
.social-links i:hover {
    background-color: #fd9802;
    transition: all 0.4s ease;
}
.copy-right {
    text-align: center;
    background-color: #fd9802;
    color: #000;
    padding-top: 16px;
    padding-bottom: 16px;
}
.copy-right h6 {
    font-size: 14px;
    font-weight: 400;
}
.experience {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #fd9802;
    color: #000;
    padding: 10px;
    width: 290px;
    position: absolute;
    bottom: 50px;
    left: 185px;
    box-shadow: 0 0 1px 1px #0000000d;
}
.experience h5 {
    font-weight: 600;
    font-size: 28px;
}
.video-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 109px;
    cursor: pointer;
}

.vedio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-wrapper:hover .vedio-img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 78%);
    transition: background 0.4s ease;
}

.video-wrapper:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fd9802;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 26px;
    animation: pulse 1.1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* Home page2 css */

.theme-hero2 {
    background-image: url(../imgs/home-banner2.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 130px;
    padding-bottom: 30px;
}
.main-menu2 li a {
    color: #fff;
}

.theme-color {
    color: #fd9802;
}
.main-heading {
    font-size: 50px;
    line-height: 68px;
    margin-top: 18px;
    margin-bottom: 5px;
    color: #fff;
}
.h2-heroslider {
    position: absolute;
    bottom: 0;
}
.h2-form .mb-4 {
    margin-bottom: 36px !important;
}

.h2-info-box {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

.h2-info-box img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.h2-info-box:hover img {
    transform: scale(1.02);
}

.h2-info-box .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    padding: 20px;
    transition: background 0.4s ease;
}

.h2-info-box:hover .overlay {
    background: rgba(0, 0, 0, 0.8);
}

.icon-circle {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease;
}

.icon-circle img {
    width: 28px;
    height: 28px;
}

.h2-info-box h5 {
    font-size: 18px;
    color: #fff;
}

.h2-info-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    margin-top: 8px;
}

.h2-info-box .number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
}
.h2-info-box:hover .icon-circle {
    background-color: #fd9802;
}

.team-box {
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.team-box:hover {
    transform: translateY(-3px);
}

.team-img {
    position: relative;
}

.team-img img {
    transition: transform 0.5s ease;
}

.team-box:hover .team-img img {
    transform: scale(1.02);
}

.share-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fd9802;
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.social-icons {
    position: absolute;
    top: 120px;
    right: -60px;
    transform: translateY(-50%);
    transition: right 0.4s ease;
    z-index: 1;
}

.team-box:hover .social-icons {
    right: 12px;
}

.social-icons li {
    margin: 5px 0;
}

.social-icons li i {
    background: #fff;
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icons li i:hover {
    background: #fd9802;
}
.social-icons li i {
    font-size: 18px;
}
.team-info h5 {
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-bottom: 8px;
}
.team-info p {
    font-size: 14px;
}
.h2-faq-image {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 1100px;
    z-index: -1;
}

.image-gallery {
    margin-top: 20px;
}
.gallery-img-container {
    position: relative;
    margin: 26px 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-img-container:hover {
    transform: scale(1.01);
}

/* Overlay Styles */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 30px;
}

/* Custom CSS for Blog Card */
.blog-card {
    background-color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 0 1px 1px #0000000d;
    overflow: hidden;
}
.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.blog-card-body {
    padding: 20px;
}

.blog-date {
    font-size: 0.9em;
    color: #3f3e3c; /* Muted text color */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 8px; /* Space between icon and text */
    color: #000; /* Primary blue for the icon, matching your example */
}

.blog-title {
    font-size: 18px; /* Slightly larger title */
    font-weight: 600; /* Bold title */
    color: #000;
    line-height: 28px;
}
.blog-card-body .txt {
    margin: 7px 0px;
    font-size: 15px;
    line-height: 27px;
}
.blog-card-body .logis-btn {
    width: max-content;
    font-size: 14px;
    padding: 8px 28px;
    margin-top: 5px;
    transition: all 0.4s ease;
}
.blog-card:hover .logis-btn {
    background: #fd9802;
    transition: all 0.4s ease;
}
.footer2-bg {
    background-color: #000;
    padding-top: 70px;
    padding-bottom: 70px;
}
.soical-white {
    justify-content: left;
}
.soical-white i {
    background-color: #fff;
    color: #000;
}
.footer-white a {
    color: #fff !important;
    font-weight: 300;
}
.footer-white a:hover {
    color: #fd9802 !important;
}
.n-des {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0px;
    font-weight: 300;
}

/* Newsletter Section Styles */
.newsletter-section {
    background-color: #000; /* Black background for the whole section */
    padding: 60px 0; /* Add some vertical padding */
}

.newsletter-form .input-group {
    border: 1px solid #fff; /* White border around the entire input group */
    overflow: hidden; /* Ensures contents stay within the rounded border */
}

.newsletter-input {
    background-color: #fff; /* White background for the input field */
    border: none; /* Remove default input border */
    height: 40px; /* Adjust height to match your example */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 0px;
    color: #333; /* Text color for entered email */
}

.newsletter-input::placeholder {
    color: #6c757d;
    opacity: 1;
    font-size: 14px;
}

.newsletter-button {
    position: relative;
    padding: 10px 26px;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none !important;
}

.newsletter-button span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fd9802;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.newsletter-button:hover {
    color: #fff;
}

.newsletter-button:hover span {
    width: 500px;
    height: 500px;
}

.newsletter-button:focus {
    outline: none; /* Remove default focus outline */
}

.f2 {
    background-color: #000;
    border-top: 1px solid #171717;
}
.desk-none {
    display: none !important;
}
.home1 .mb-4 {
    margin-bottom: 24px !important;
}
.modal {
    background: #000000b5;
}
.btn-close:focus {
    box-shadow: none;
}
.navbar-toggler {
    background-color: #fd9802;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar-toggler-icon::after {
    content: "\f0c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    position: relative;
    top: 4px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
/* Home page3 css */

.theme-hero3 {
    background-image: url(../imgs/h3-banner.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: visible;
}
.home3-nav .container {
    background-color: #000;
    padding: 8px 35px;
}
.home3-nav {
    border: none;
}
.main-menu3 {
    margin-left: auto;
    margin-right: auto;
}
.main-menu3 li a {
    color: #fff;
    font-weight: 400;
}
.main-menu3 li {
    margin: 0px 12px;
}
.h3-form {
    position: relative;
    top: 140px;
}
.h3-heroslider {
    top: 25px;
    padding-bottom: 40px;
}
.h3-video {
    border-radius: 0px;
}
.h3-video .overlay {
    display: none;
}

.experience3 {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    width: 210px;
    position: absolute;
    top: 135px;
    left: 100px;
    box-shadow: 0 0 1px 1px #0000000d;
}
.experience3 h5 {
    font-weight: 500;
    font-size: 22px;
    margin-top: 12px;
    margin-bottom: 2px;
}
.experience3 p {
    font-size: 14px;
    font-weight: 400;
}
.h3-video .play-btn {
    top: 76%;
    left: 62%;
    cursor: pointer;
}
.about-icon {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.about-icon img {
    margin-right: 12px;
    max-width: 18%;
}
.about-icon h5 {
    font-weight: 600;
    margin-bottom: 5px;
}
.about-icon .txt {
    margin: 0px;
}
.h3-video img {
    max-width: 97%;
}

/* Home page 4 css */

.theme-hero4 {
    background-image: url(../imgs/ff.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 130px;
    padding-bottom: 70px;
    overflow: visible;
}
.theme-hero4 .main-heading {
    margin-top: 10px;
}
.right-side-nav {
    display: flex;
    align-items: center;
}
.right-side-nav .social-links i {
    font-size: 16px;
    padding: 11px;
    width: 38px;
    height: 38px;
    margin: 0px 5px;
}
.nav-search {
    background-color: #fff;
    color: #000;
    margin-right: 10px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
}
.nav-search::before {
    position: relative;
    left: -9px;
}
.call-header {
    margin: 0px 30px;
    padding: 0px 25px;
}
.home4-nav {
    border-color: #ffffff2b;
    padding-left: 30px;
    padding-right: 30px;
}
.main-menu4 li a {
    color: #fff;
    font-weight: 500;
}
.main-menu4 {
    margin-left: 20px;
}

.track-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    padding-top: 18px;
    padding-bottom: 12px;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
}

.custom-input {
    background-color: #f9f9f9 !important;
    height: 48px;
    font-size: 15px;
    color: #333;
    border-radius: 0px;
    padding-left: 15px;
    border-color: transparent;
}

.custom-input::placeholder {
    color: #aaa;
}

.track-btn {
    position: absolute;
    right: 18px;
    top: 20.35px;
    height: 40px;
    padding: 0 20px;
    background-color: #fd9802;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Circle background */
.track-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Hover effects */
.track-btn:hover {
    color: #fff;
}

.track-btn:hover span {
    width: 300px;
    height: 300px;
}

.h4-heroslider {
    padding-top: 35px;
    padding-bottom: 35px;
}
.h4-border {
    border-bottom: 1px solid #e9e9e9;
}

.logistics-section {
    background: url("../imgs/h4-img-overlay.png") center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 25px;
}

.logistics-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 82%);
    z-index: 1;
}

.logistics-section .container {
    position: relative;
    z-index: 2;
}

.icon-img {
    width: 55px;
    height: 55px;
}
.btn-color3 {
    background-color: #fff !important;
    color: #000;
}
.logistics-section h2 {
    margin-bottom: 50px;
    font-weight: 500;
}
.text-left {
    text-align: left;
    margin-left: 15px;
}
.text-left h5 {
    color: #fd9802;
    margin-bottom: 8px;
}
.text-left p {
    font-size: 14px;
    font-weight: 300;
}
.border-topp {
    padding-top: 50px;
}
.new-hr {
    border-color: #cccccca8;
    z-index: 2;
    position: absolute;
    width: 100%;
    top: 71%;
}
.slider-bg {
    background: url("../imgs/h4-slider-img.png") center/cover no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}
.testimonial-slider {
    margin-top: 50px;
}
.testimonial-slider .slick-prev,
.slick-next {
    top: -44% !important;
}
.testimonial-slider .slick-prev {
    left: 65% !important;
}
.testimonial-slider .slick-next {
    right: 31.5% !important;
}
.testimonial-slider {
    position: relative;
    left: 15.5%;
}
.testimonial-slider h4 {
    color: #fd9802;
}
.ready-bg {
    background: url("../imgs/ready-bg.png") center/cover no-repeat;
    padding-top: 50px;
    padding-bottom: 40px;
}

/* Overlay container - hidden by default (off screen at top) */
.overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b5;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide in overlay when shown */
.overlay2.show {
    transform: translateY(0);
}

/* Placeholder white */
.overlay2 input[type="text"]::placeholder {
    color: #fff;
    opacity: 1; /* ensures it's fully visible */
}

/* Close button */
.overlay2 .closebtn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

/* Overlay content container */
.overlay-content2 {
    text-align: center;
    width: 100%;
    max-width: 600px;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}
.overlay-content2 h4 {
    color: #fff;
    font-size: 33px;
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 600;
    text-decoration: underline;
}

.overlay2.show .overlay-content2 {
    transform: translateY(0);
}

/* Input field */
.overlay2 input[type="text"] {
    padding: 15px;
    font-size: 18px;
    border: none;
    color: #fff;
    width: 79%;
    background: transparent;
    border-radius: 0px;
    outline: none;
    border-bottom: 1px solid #fff;
}

/* Submit button */
.overlay2 button {
    width: 20%;
    margin-left: -5px;
    padding: 15px;
    font-size: 18px;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-bottom: 1px solid #fff;
}

.overlay2 button:hover {
    background-color: #000;
}

/* Home page 5 css */

.theme-hero5 {
    position: relative;
    background-image: url(../imgs/h5-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 220px;
    padding-bottom: 180px;
    overflow: visible;
    z-index: 1;
}
.home4-nav {
    z-index: 2;
    background: #fd9802;
}
.theme-hero5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 76%);
    z-index: -1;
}
.bor {
    border-left: 1px solid #fff;
}
.h5-line {
    color: #ffffff52;
    width: 32%;
    rotate: 90deg;
    opacity: 1;
    height: 100%;
    position: absolute;
    top: -3px;
    left: 35%;
}
.down-img {
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 7%;
}
.h5-exp {
    padding: 8px 20px 24px 18px;
    border: 5px solid #ffff;
    box-shadow: none;
    position: absolute;
    bottom: 20px;
    left: 00px;
    background-color: #000;
    color: #fff;
    width: 210px;
}
.h5-exp h5 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}
.h5-exp p {
    font-size: 14px;
}
.h5-exp img {
    position: relative;
    top: 18px;
    margin-left: auto;
    display: block;
}
.h5-abo img {
    margin-right: 24px;
    max-width: 12%;
}
.h5-abo h5 {
    font-size: 18px;
}
.h5-abo p {
    font-size: 14px;
    line-height: 27px;
}
.h5-ser .blog-date {
    font-size: 45px;
    color: #3f3e3c26;
    font-weight: 700;
    justify-content: space-between;
    margin-bottom: 0px;
}
.h5-ser {
    padding-top: 6px;
    padding-bottom: 15px;
}
.ser-card {
    position: relative;
    transition: all 0.3s ease;
}

.ser-card .hover-img {
    position: absolute;
    right: 0;
    bottom: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ser-card:hover {
    box-shadow: inset 0 -3px 0 rgb(253 152 2);
}

.ser-card:hover .hover-img {
    opacity: 1;
    visibility: visible;
}

.ser-card {
    margin: 15px 0px;
}

/* Form Container Styling */
.quote-form-container {
    box-shadow: 0 0 1px 1px #0000000d;
    background-color: #f6f6f6;
    padding: 30px;
}

/* Title Styling */
.quote-title {
    font-weight: 600;
    font-size: 23px;
    /* Optional: To match the slightly underlined look */
    border-bottom: 2px solid var(--quote-orange);
    display: inline-block;
    padding-bottom: 5px;
}

/* Required Label Styling */
.required-label::after {
    content: "*";
    color: #fd9802;
    margin-left: 2px;
}

/* General Input Styling (Optional: to match a slightly softer look) */
.form-control,
.form-select {
    border-radius: 0px;
    height: 45px; /* Consistent height */
}

/* Checkbox Customization (to achieve the look in your image) */
.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    /* Hides the default Bootstrap checkbox */
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-right: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.h5-f-mob .form-label {
    font-weight: 400;
}
label.form-check-label {
    color: #5b5b5b;
}

.exp-f {
    padding: 30px;
}
.map-section2 {
    margin-top: 20px;
}
.blog-card-img-container img {
    width: 100%;
}
.form-control:focus {
    border-color: #fd98025c;
    box-shadow: none;
}
.form-check-input:focus {
    box-shadow: none;
}
.hr-on-mbl {
    display: none;
}
.h2-hr {
    border-color: #ffffff1c !important;
}

/* Home page 6 css */

.theme-hero6 {
    background-image: url(../imgs/h6-banner.png);
    background-position: right bottom;
    background-size: 82%;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: visible;
    background-color: #fad6aa;
}
.h6-hero-line .mid::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    margin: 0px 13px;
    font-size: 10px;
    color: #000;
}
.h6-hero-line h6 {
    font-size: 15px;
    font-weight: 400;
}
.theme-hero6 h1 {
    font-weight: 600;
    color: #000;
}
.hom6-nav {
    position: relative !important;
    background-color: #fad6aa;
}
.home6-down {
    bottom: -4%;
    left: 19%;
}
.track2 {
    top: 20px;
}

/* Home page 7 css */

.theme-hero7 {
    background-image: url(../imgs/h7-banner.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 180px;
    padding-bottom: 150px;
    overflow: visible;
}
.theme-hero7 h1 {
    font-weight: 600;
    color: #000;
}
.theme-hero7 .h6-hero-line .mid::before {
    color: #fd9802 !important;
}
.dark-box {
    background-color: #000 !important;
}
.max-wid {
    max-width: 60% !important;
}
.turcks-img {
    margin-top: 60px;
}
.border-h7 {
    border-top: 1px solid #ededed;
    padding-top: 30px;
    margin-top: 30px;
}
.border-h7 .text-left h5 {
    color: #000 !important;
    font-weight: 600;
}

/* Home page 8 css */

.theme-hero8 {
    background-image: url(../imgs/h8-banner.png);
    background-position: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: visible;
}
.menu8 li a {
    color: #000 !important;
}
.menu8 li a:hover {
    color: #ff3f42 !important;
}
.s-red i {
    background-color: #f6f6f6 !important;
}
.s-red i:hover {
    background-color: #ff3f42 !important;
    color: #fff !important;
}
.color-blue {
    color: #3578fa;
}
.color-red {
    color: #ff3f42;
}
.nav-s8 {
    background-color: #3578fa;
    color: #fff;
}
.btn-color4 {
    background-color: #ff3f42 !important;
    color: #fff !important;
}
.btn-color4 span {
    background: #3578fa !important;
}
.hom8-nav {
    position: relative !important;
    background-color: #fff;
    border-bottom: 1px solid #6c6c6c2b !important;
}
.hom8-nav .navbar-toggler {
    background-color: #ff3f42 !important;
}

.call-header8::before {
    border-left: 1px solid #6c6c6c2b !important;
}

.call-header8::after {
    border-left: 1px solid #6c6c6c2b !important;
}
.play-red {
    border: 1px solid #ff3f42;
    border-radius: 50px;
}
.h8-icons {
    margin-top: 50px;
    margin-right: 50px;
}
.h8-icons img {
    margin-bottom: 15px;
}
.h8-icons h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.title-red {
    background-color: #ff3f421c !important;
}
.title-red::before {
    background-color: #ff3f42 !important;
}
.ex-red {
    background-color: #ff3f42 !important;
}
.play-redd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff3f42 !important;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 26px;
    animation: pulse2 1.1s infinite;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 63, 66, 0.5), 0 0 0 10px rgba(255, 63, 66, 0.3), 0 0 0 20px rgba(255, 63, 66, 0.1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 63, 66, 0.3), 0 0 0 20px rgba(255, 63, 66, 0.15), 0 0 0 30px rgba(255, 63, 66, 0.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 63, 66, 0), 0 0 0 10px rgba(255, 63, 66, 0), 0 0 0 20px rgba(255, 63, 66, 0);
    }
}

.btn-blackblue {
    background-color: #000 !important;
    color: #fff !important;
}
.btn-blackblue span {
    background: #3578fa !important;
}

.ser-red:hover {
    box-shadow: inset 0 -3px 0 #ff3f42 !important;
}
.faq-red .accordion-button:not(.collapsed) {
    background-color: #ff3f42 !important;
    color: #fff !important;
}
.faq-red i.fa-solid.fa-minus.minus-icon {
    color: #fff;
}
.blog-red .blog-card:hover .logis-btn {
    background: #ff3f42 !important;
}
.btn-blackred {
    background-color: #000 !important;
    color: #fff !important;
}
.btn-blackred span {
    background: #ff3f42 !important;
}
.team-red .share-icon {
    background: #ff3f42;
    color: #fff;
}
.team-red .social-icons li a:hover {
    background: #ff3f42;
    color: #fff;
}
button.btn-close.close-red {
    background-color: #fff !important;
    color: #fff !important;
}
.footer-red .footer-white a:hover {
    color: #ff3f42 !important;
}
.footer-red .social-links i:hover {
    background-color: #ff3f42;
    color: #fff;
}
.copyred {
    background-color: #ff3f42 !important;
}
.copyred h6 {
    color: #fff !important;
}

/* Home page 9 css */

.theme-hero9 {
    background-image: url(../imgs/h9-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 110px;
    padding-bottom: 110px;
    overflow: visible;
}
.h9-red .info-box:hover {
    background-color: #ff3f42 !important;
}
.h9-red .info-box:hover h5 {
    color: #ffff;
}
.h9-red .info-box:hover .txt {
    color: #ffff !important;
}

.h9-red .info-box img {
    transition: filter 0.1s ease;
}

.h9-red .info-box:hover img {
    filter: brightness(0) invert(1);
}

/* Blog Grid */

.theme-all {
    position: relative;
    background-image: url(../imgs/all-pages-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: visible;
    z-index: 1;
}

/* 🔹 Black Overlay */
.theme-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 78%);
    z-index: 0;
}
.main-heading2 {
    color: #fff;
    font-weight: 500;
}
.main-heading2::before {
    content: "";
    display: inline-block;
    background-image: url(../imgs/lines.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 50px;
    margin-right: 28px;
    vertical-align: middle;
}
.btn-yellowblack {
    background-color: #fd9802 !important;
    color: #000 !important;
    font-weight: 500;
}
.btn-yellowblack:hover {
    color: #fff !important;
}
.btn-yellowblack span {
    background: #000 !important;
    color: #fff !important;
}
.blog-sec i {
    color: #fd9802 !important;
}
.blog-sec {
    margin-bottom: 30px;
}
.details-right {
    padding: 28px;
    box-shadow: 0 0 1px 1px #0000000d;
}
.right-head {
    font-weight: 600;
    font-size: 18px;
}
ul.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.detail-list li {
    border-bottom: 1px solid #ebebeb;
}

ul.detail-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3f3e3c;
    text-decoration: none;
    padding: 23px 0px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

ul.detail-list li h6 {
    font-weight: 400;
    margin: 0;
}

ul.detail-list li h6:first-child::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 15px;
    font-size: 20px;
    color: #868686;
    transition: color 0.3s ease;
}

.blog-related img {
    width: 90px;
    height: 90px;
}
.blog-related .blog-date i {
    color: #fd9802;
    font-size: 18px;
}
.blog-related .blog-title {
    font-weight: 500;
}

.blog-related .d-flex {
    border-bottom: 1px solid #ebebeb;
    padding: 6px 0;
}

.r2 {
    margin-top: 30px;
    margin-bottom: 5px;
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    background-color: #f6f6f6;
    color: #3f3e3c;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #fd9802;
    color: #000;
}
.custom-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.custom-pagination .page-item {
    margin: 0 5px;
}

.custom-pagination .page-link {
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    color: #3f3e3c;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px !important;
}

.custom-pagination .page-link:hover {
    background-color: #fd9802;
    color: #000;
}

.custom-pagination .page-link.active {
    background-color: #fd9802;
    color: #000;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: #f6f6f6;
    color: #999;
    pointer-events: none;
}
.hr-all {
    border-color: #ffffff4f !important;
    position: absolute !important;
    top: 72px !important;
    z-index: 2 !important;
    width: 100%;
}
.custom-breadcrumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}
.custom-breadcrumb a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-breadcrumb .home {
    color: #fff;
}

.custom-breadcrumb .current {
    color: #fd9802;
}

.custom-breadcrumb .divider {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

/* Service Page */

.service-detail p {
    font-weight: 400;
    line-height: 32px;
    margin: 16px 0px;
    color: #3f3e3c;
}
.service-detail h4 {
    font-weight: 600;
    color: #000;
    line-height: 38px;
}
.service-detail img {
    margin-bottom: 22px;
}
.service-detail i.fa-check-double {
    color: #fd9802;
    font-size: 22px;
    margin-right: 20px;
}
.logis-btn-simple2 {
    background-color: #fd9802 !important;
    color: #000 !important;
}
.logis-btn-simple2:hover {
    background-color: #000 !important;
    color: #fff !important;
}
textarea.form-control {
    height: 150px;
}
.a {
    background: url(../imgs/s2img.png) no-repeat center / cover;
    padding: 100px 20px 30px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 71%);
}
.a > * {
    position: relative;
    z-index: 2;
}
.b {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}
h2.c {
    font-size: 18px;
    margin-top: 20px;
}
.mtb-auto {
    margin: 30px 0px;
}
.blog-info {
    display: flex;
    align-items: center;
    padding: 0px;
    margin-bottom: 10px;
}
.blog-info .blog-date i {
    color: #fd9802;
    font-size: 22px;
    margin-right: 9px;
}

.blog-info .cen {
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 0px 16px;
    height: 25px;
    margin: 0px 16px;
}
.service-detail h3 {
    line-height: 46px;
}
.blog-quote {
    padding: 22px;
    border-left: 5px solid #fd9802;
    font-size: 17px;
    font-weight: 400;
    line-height: 33px;
    background-color: #f5f5f5;
    position: relative;
}
.coma {
    position: absolute;
    bottom: 17px;
    right: 243px;
    margin: 0px !important;
}
.blog-info .blog-date {
    margin-top: 0px;
    margin-bottom: 0px;
}

.post-nav-wrap {
    background: #fef3e7; /* pale peach outer wrap */
    padding: 30px;
    margin-top: 60px;
}
.b-one {
    text-align: right;
}
.post-meta.p-one {
    justify-content: end;
}
.post-meta .p-two {
    justify-content: start;
}
.post-card {
    background: #ffffff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0%);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    color: inherit;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.post-card .thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    flex: 0 0 72px;
    margin-bottom: 0px;
}

.post-title {
    color: #000;
    font-weight: 500;
    line-height: 27px;
}

.post-meta .small {
    font-weight: 400;
    font-size: 15px;
    color: #3f3e3c;
}
.post-meta i {
    font-size: 18px;
    margin-right: 5px;
}

.comments-section {
    margin: 3rem auto;
}
.comment-box {
    padding: 22px;
    margin-bottom: 1.8rem;
    box-shadow: 0 0 1px 1px #0000000d;
}
.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.comment-date {
    font-size: 14px;
    color: #fd9802;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.comment-date img {
    width: 17px;
}

.comment-text {
    margin-top: 15px;
    line-height: 28px;
    color: #3f3e3c;
    font-size: 15px;
    position: relative;
    left: -64px;
    width: 111%;
}
.reply-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
    color: #3f3e3c;
    margin-top: 0.5rem;
    cursor: pointer;
}
.nested-comment {
    background: #fff4e5;
    padding: 18px;
    margin-top: 20px;
    margin-left: 4rem;
}
.nested-comment .comment-avatar {
    width: 50px;
    height: 50px;
}
.r-des-none {
    display: none;
}
.all-team-details {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 1px 1px #0000000d;
}

/* General Styling for the Sidebar */
.sidebar {
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 14%);
    overflow: hidden;
    border-radius: 5px;
}

.name {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 7px;
}

.title {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #3f3e3c;
}

/* --- Social Links Section --- */
/* --- Social Links Section (CSS) --- */

/* No change here, keeps the layout and box shape */
.social-links2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 10px 0 25px;
}

.social-links2 .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-links2 .social-icon:hover {
    transform: translateY(-2px);
}

/* **NEW** - Target the Font Awesome icon tag (<i>) for specific colors */
.social-links2 .social-icon i {
    font-size: 18px;
    background-color: #f1f1f1;
    padding: 11px 21px;
    color: #000;
    border: 1px solid #d9d9d9;
}
.social-links2 .social-icon i::before {
    position: relative;
    left: -8px;
}
.social-links2 .social-icon i:hover {
    background-color: #fd9802;
}

/* --- Contact Info Section --- */
.contact-info2 {
    border-top: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {
    margin-right: 15px;
    font-size: 1.2em; /* Makes the emoji icons stand out */
    color: #555; /* Icon color */
}

/* --- Business Hours Section --- */
.business-hours {
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.hours-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 15px 20px;
    color: #000;
}

.hours-list {
    margin-top: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.95em;
    border-bottom: 1px solid #eee;
}

.hour-row:last-child {
    border-bottom: none;
}

.alt-bg {
    background-color: #f8f8f8; /* Light gray background for alternating rows */
}

.day {
    font-weight: 400;
    color: #555555;
}

.time {
    font-weight: normal;
    color: #555;
}

.tab-btn {
    border: none;
    background: #000;
    color: #fff;
    padding: 7px 22px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn.active {
    background: #fd9802;
    color: #000;
}
.tab-content {
    transition: opacity 0.5s ease;
}
.error-padding {
    padding-top: 250px;
    padding-bottom: 250px;
}

/* Keep your existing dropdown CSS */
.dropdown-toggle::after {
    display: none;
}
.dropdown-item {
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 8px 18px;
}
.main-menu .dropdown-menu li {
    margin: 0px;
}
.main-menu .dropdown-menu li a:hover {
    background-color: #000;
    color: #fff;
}
.main-menu2 .dropdown-menu li a {
    color: #000;
}
.main-menu3 .dropdown-menu li a {
    color: #000;
}
.main-menu4 .dropdown-menu li a {
    color: #000;
}
.menu8 .dropdown-menu li a:hover {
    background-color: #ff3f42;
    color: #fff !important;
}
.overlay3 {
    background: #000000b5 !important;
}
.overlay3 .closebtn {
    color: #fff !important;
}

/* Desktop hover dropdown */
@media (min-width: 999px) {
    .main-menu .dropdown-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: all 0.6s ease;
        transform: translateY(-4px);
        visibility: hidden;
        background: #fff;
        border: none;
        border-radius: 0px;
        box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
        padding: 8px 0;
        z-index: 3;
        position: relative;
        margin-top: 16px;
        opacity: 0;
    }

    /* On hover, slide dropdown down */
    .main-menu .nav-item.dropdown:hover .dropdown-menu {
        max-height: 500px;
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }
    .main-menu .dropdown-menu .dropdown-item {
        padding: 8px 40px 8px 22px !important;
    }
}

.h3-left {
    position: absolute;
    left: 0;
    bottom: 0px;
}
.h3-right {
    position: absolute;
    right: 0;
    bottom: 0px;
}
.search-pop {
    max-width: 42px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Static preview image (light gray style) */
.map-static {
    position: absolute;
    inset: 0;
    background: url("../imgs/map-img.png") center/cover no-repeat;

    transition: opacity 0.3s ease;
}

/* Live iframe map (hidden initially) */
.map-live {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* On hover, reveal live map */
.map-container:hover .map-live {
    opacity: 1;
    pointer-events: auto;
}

/* Fade out static image */
.map-container:hover .map-static {
    opacity: 0;
}

.landing {
    padding-bottom: 200px !important;
    padding-top: 120px !important;
}
.landing-image {
    position: absolute;
    bottom: 0px;
    max-width: 50%;
    right: 0;
}
.top-land {
    position: relative;
    top: 70px;
    padding-right: 100px;
}
.land-top {
    border-radius: 50px;
    padding: 15px;
    border: 1px solid #fd9802;
}
.land-top {
    border-radius: 100px;
    padding: 10px 15px;
    border: 1px solid #fd9802;
    background: #fd98021c;
    display: inline-block;
    color: #000;
    font-weight: 400;
    margin-bottom: 18px;
}
.hed {
    font-size: 80px;
    font-weight: 700;
    color: #fd9802;
}
.custom-input:focus {
    border-color: #fd98025c !important;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: #fd98025c !important;
    box-shadow: none !important;
    border: 1px solid;
}
.t-red .social-icons li i:hover {
    background: #ff3f42 !important;
    color: #fff;
}
.land-info {
    background-color: #e8e8e8;
    padding: 25px 20px 15px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin: 15px 0px;
}
.l1 {
    position: absolute;
    top: 12px;
    left: 20px;
}
.l2 {
    margin-top: 20px;
}
.land-info h5 {
    font-weight: 600;
    color: #000;
    font-size: 19px;
    margin-top: 18px;
}
.land-btn2 {
    border-color: #fd9802;
    background-color: #ffe6c1 !important;
    font-weight: 600;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    padding: 16px 65px;
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    font-size: 20px;
}
.sec-2 {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 1px 1px #0000000d;
    height: 180px;
    margin: 15px 0px;

    /* Center content */
    display: flex;
    flex-direction: column; /* stack image + text */
    align-items: center; /* horizontal center */
    justify-content: center; /* vertical center */

    text-align: center;
}

.sec-2 h6 {
    font-weight: 600;
    margin-top: 15px;
    color: #000;
    line-height: 23px;
}

button.track-btn.h7-h {
    height: 43px;
    top: 19px;
}

#imageModal .prev-btn {
    position: absolute;
    top: 50%;
    left: 30px;
    background-color: #fff;
    color: #0000;
    padding: 7px 10px;
    border: none;
}
#imageModal .next-btn {
    position: absolute;
    top: 50%;
    right: 30px;
    background-color: #fff;
    color: #0000;
    padding: 7px 10px;
    border: none;
}
/* Preloader Container */
#logistic__preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Circle Loader */
#logistic__circle_loader {
  width: 200px;
  height: 200px;
  border-style: solid;
  border-width: 5px;
  border-color: #fd9802 #fff #fd9802 #fff;
  border-radius: 50%;
  animation: spinLoader 2s linear infinite;
}

/* Center Logo */
.logistic__loader_logo {
  position: absolute;
  width: 130px;
}

/* Rotation Animation */
@keyframes spinLoader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade-out class (added via JS) */
#logistic__preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.form-select:focus {
    border-color: #fd98025c !important;
    outline: 0;
    box-shadow: none;
}
