/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #069239;
    --light: #fff;
    --dark: #000;
	--secondary: #0062ac;
	--yellow: #f8d809;
}
html{
	overflow-x:hidden !important;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container {
    max-width: 1400px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    color: #fff;
}

/* Background overlay */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0b1c3d, rgba(11,28,61,0.6));
    z-index: -1;
}

/* Top Bar */
.top-bar {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.info-item i {
    color: #089337;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #333333;
}

.info-item span {
    opacity: 0.7;
}

.info-item a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* Social */
.social-icons a {
    color: #069239;
    font-size: 14px;
    margin-right: 10px;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid #333333;
}

/* Main Header */
.main-header {
    padding: 15px 0;
}

/* Menu */
/* Default menu link */
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

/* Hover effect */
.nav-menu li a:hover {
   background: linear-gradient(45deg, #41414163, #069239);
    color: #fff;
}

/* Active menu item */
.nav-menu li.current-menu-item > a, .nav-menu li.current_page_item > a, .nav-menu li.current-menu-ancestor > a {
    background: linear-gradient(45deg, #41414163, #069239);
    color: #fff;
}
/* CTA Button */
.quote-btn {
    background: #ff2d2d;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #e60000;
}

/* Logo */
.logo img {
    max-height: 50px;
}
/* FLEX WRAPPER */
.header-wrapper {
    display: flex;
    align-items: stretch;
    background: linear-gradient(45deg, #030e07a3, #1b8b45b3);
}

/* LEFT LOGO SECTION */
.header-logo {
    width: 322px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
}

/* LOGO IMAGE */
.header-logo img {
    max-height: 140px;
}

/* SEPARATOR LINE */
.header-logo::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ddd;
}

/* RIGHT SIDE */
.header-right-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* TOP BAR + MAIN HEADER BG */
.top-bar,
.main-header {
    padding-left: 30px;
}

/* KEEP YOUR EXISTING COLORS */
.top-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* OPTIONAL: ALIGN HEIGHT */
.top-bar {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.main-header {
    min-height: 80px;
    display: flex;
    align-items: center;
}
ul#menu-primary {
    gap: 36px !important;
}
.Btn-Container {
    display: flex;
    width: 200px;
    height: fit-content;
    background: linear-gradient(45deg, #102c29, #0b9039);
    border-radius: 40px;
    box-shadow: 0px 5px 10px #bebebe;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
}
.icon-Container {
  width: 45px;
  height: 45px;
  background-color: #bebebe00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
}
.text {
    width: calc(212px - 39px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    letter-spacing: 1.2px;
}
.icon-Container svg {
  transition-duration: 1.5s;
}
.Btn-Container:hover .icon-Container svg {
  transition-duration: 1.5s;
  animation: arrow 1s linear infinite;
}
@keyframes arrow {
  0% {
    opacity: 0;
    margin-left: 0px;
  }
  100% {
    opacity: 1;
    margin-left: 10px;
  }
}
a.contact-btn {
    text-decoration: none !important;
}

/* ================================
   Sub Menu
================================ */

/* Parent menu with submenu */
.nav-menu li.menu-item-has-children {
    position: relative;
}

/* Add arrow icon */
.nav-menu li.menu-item-has-children > a {
    padding-right: 28px;
}

.nav-menu li.menu-item-has-children > a::after {
    content: "\f078"; /* Font Awesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Submenu styling */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Submenu items */
.nav-menu .sub-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

/* Hover submenu */
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Hover submenu link */
.nav-menu .sub-menu li a:hover {
    background: #f5f5f5;
}
/* First Level Submenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Show First Level Submenu */
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Child Submenu (3rd Level) */
.nav-menu .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    display: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Show Child Submenu */
.nav-menu .sub-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Submenu Links */
.nav-menu .sub-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.nav-menu .sub-menu li a:hover {
    background: #f5f5f5;
/*     color: var(--primary-color); */
}

/* Parent item relative */
.nav-menu li.menu-item-has-children {
    position: relative;
}

/* Arrow for child submenu */
.nav-menu .sub-menu li.menu-item-has-children > a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
}

/* ================================
   Mobile Menu
================================ */
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
/* #menu-primary-1 li {
    padding: 7px;
    border-bottom: 1px solid #fff;
} */
#menu-primary-1 li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}



/* ================================
   Mobile Multi Level Menu
================================ */

#mobileMenu .menu-item-has-children{
    position:relative;
}

/* Hide all submenus */
#mobileMenu .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: rgba(255,255,255,0.08);
    margin-top: 8px;
    padding: 0;
    border-radius: 6px;
    box-shadow: none;

    /* Scrollable submenu */
    max-height: 250px; /* Change as needed */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Optional scrollbar styling */
#mobileMenu .sub-menu::-webkit-scrollbar {
    width: 5px;
}

#mobileMenu .sub-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
}

#mobileMenu .sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

/* Show active submenu */
#mobileMenu .menu-item-has-children.active > .sub-menu{
    display:block;
}

/* Nested submenu */
#mobileMenu .sub-menu .sub-menu{
    margin-left:15px;
    margin-top:8px;
    border-left:2px solid rgba(255,255,255,.2);
    padding-left:10px;
}

/* Menu links */
#mobileMenu .sub-menu li{
    list-style:none;
}

#mobileMenu .sub-menu li a{
    display:block;
    padding:10px 15px;
    color:#fff;
    font-size:15px;
    text-decoration:none;
}

/* Parent menu link */
#mobileMenu .menu-item-has-children > a{
    position:relative;
    display:block;
    padding-right:45px;
}

/* Arrow */
#mobileMenu .dropdown-arrow{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#fff;
}

#mobileMenu .menu-item-has-children.active > a > .dropdown-arrow i{
    transform:rotate(180deg);
    transition:.3s;
}


.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://muneslogistics.com/wp-content/uploads/2026/04/page-banner-2-scaled-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
}
.breadcrumb-item.active {
    color: #ffffff !important;
}
.breadcrumb-content {
    padding: 35px 0px;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: #ffffff !important;
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 84px;
    background: #ffffff;
    margin: auto;
    margin-top: 8px;
    margin-left: 35px !important;
}
.underline2 {
    height: 3px;
    width: 31px;
    background: var(--primary);
    margin: auto;
    margin-top: -2px;
    border-radius: 4px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: #0b1c3d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    z-index: 1;
    padding-top: 100px;
    border-top: 1px solid #fff;
    overflow-x: hidden !important;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
/*     background: rgba(255, 255, 255, 0.6);  */
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
    border-top: 1px solid #ffffff26;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 25px;
}
ul.footer-details li i {
    background: #ffffff;
    padding: 10px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.footer-details li i {
    background: #ffffff;
    padding: 12px;
    height: 36px;
    width: 36px;
    /* font-size: 20px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a {
    color: #ffffff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
	color:#fff !important;
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--primary) !important;
    background-color: #e1e1e1;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
/* COPYRIGHT */
.copyright {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid #4f4f4f;
    overflow: visible;
	margin-top:40px;
}

/* TRUCK IMAGE */
.copyright::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -105%;
    width: 99px;
    height: 83px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/1.png') no-repeat center;
    background-size: contain;
    animation: truckMove 10s linear infinite;
    z-index: 1;
    overflow: hidden;
}
/* ANIMATION */
@keyframes truckMove {
    0% {
        left: -80px;
    }
    100% {
        left: 100%;
    }
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}

.footer-top {
    background: #0b1c3d;
    padding: 35px 40px 0px 40px;
    border-radius: 12px;
    margin-top: -110px;
    position: relative;
    z-index: 9;
    border-top: 1px solid #fff;
}

/* LOGO */
.footer-logo img {
    max-width: 180px;
}

/* SUBSCRIPTION LAYOUT */
.subscription {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* TEXT */
.subscribe-content h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.subscribe-content p {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
    margin: 0;
}

/* FORM WRAPPER */
.subscribe-form {
    min-width: 320px;
}

/* INPUT GROUP */
.subscribe-form .input-group {
    position: relative;
}

/* INPUT FIELD */
.subscribe-form input[type="email"] {
    width: 100%;
    padding: 14px 60px 14px 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
}

/* BUTTON */
.subscribe-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: #0b1c3d;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.subscribe-btn:hover {
    background: #000;
}

/* ICON */
.subscribe-btn i {
    font-size: 14px;
}

/* INPUT FOCUS EFFECT */
.subscribe-form input[type="email"]:focus {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

/* REMOVE CF7 DEFAULT STYLE */
.wpcf7-form p {
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .footer-top {
        padding: 25px 20px;
        margin-top: -50px;
    }

    .subscription {
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-form {
        width: 100%;
    }
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
.primary-btn {
    display: inline-block;
    align-self: center;
    background: linear-gradient(45deg, #079237, #000000d6);
    color: #fff;
    padding: 14px 28px 14px 59px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

/* TEXT */
.primary-btn .text-btn {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease; /* smooth move */
}
.primary-btn .icon {
    position: absolute;
    left: 9px;
    width: 30px;
    height: 30px;
    background: #0b1c3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.5s ease;
}

/* ARROW */
.primary-btn .icon i {
    color: #fff;
    font-size: 14px;
    transition: 0.4s ease;
}
.primary-btn .btn-text {
    display: inline-block; /* REQUIRED for transform */
    transition: transform 0.4s ease;
}
/* HOVER EFFECT */
.primary-btn:hover {
    background: linear-gradient(45deg, black, #079237);
}
/* ICON MOVE RIGHT */
.primary-btn:hover .icon {
    left: calc(100% - 50px);
}

.primary-btn:hover .btn-text{
    transform: translateX(-28px) !important;
}
.primary-btn:hover .icon i {
    transform: translateX(3px);
}
/* Hero slider */
/* FULL HEIGHT SLIDER */
.slide-bg {
    height: 108vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 4%);
}

.slide-content {
    position: relative;
    color: #fff;
    max-width: 60%;
    transform: translate(4%, 20%);
}
.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
	line-height:60px;
}

.slide-content p {
    border-radius: 4px;
    font-size: 18px;
    margin: 15px 0;
    width: 70%;
    border-left: 3px solid var(--primary);
    padding: 0px 0 0 12px;
}
/* Default state */
.slide-content h2,
.slide-content p,
.slide-content a {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Active slide animation */
.carousel-item.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.carousel-item.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.carousel-item.active .slide-content a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
/* POSITION */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

/* CUSTOM BUTTON */
.custom-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.custom-arrow:hover {
    background: linear-gradient(45deg, #069239, #dee9e296);
    transform: scale(1.1);
    border: 1px solid #dfd1d1;
}

.carousel-control-prev {
    left: 20px;
}

/* POSITION RIGHT */
.carousel-control-next {
    right: 20px;
}

/* -------------------
 * About Us
 * -------------------- */
/* SECTION */
.about-section {
    padding: 100px 0 50px;
    background: #f8f9fc;
}

.about-tag {
    display: inline-flex;   /* important for alignment */
    align-items: center;
    color: var(--primary);
    padding: 6px 9px;
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Image after text */
.about-tag::after {
    content: "";
    display: inline-block;
    width: 101px;
    height: 44px;
    background-image: url('https://muneslogistics.com/wp-content/uploads/2026/04/1-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -36px;
    margin-top: -7px;
    animation: moveLine 2s ease-in-out infinite;
}

/* Smooth small movement */
@keyframes moveLine {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px); /* move right */
    }
    100% {
        transform: translateX(0); /* back */
    }
}

/* TITLE */
.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.about-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* IMAGE */
.about-img {
    height: 462px;
    object-fit: cover;
    width: 100%;
}
.about-img img {
    width: 100%;
    border-radius: 12px;
    height: 450px;
    /* object-fit: cover; */
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, black, #069239);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

/* Pulse Effect */
@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #0692396e;
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px #0692396e;
    }
    100% {
        transform: scale(1);
    }
}
/* BOTTOM IMAGE */
.about-bottom-img {
    margin-top: 50px;
}

.about-bottom-img img {
    width: 100%;
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 26px;
    }
}

/* SECTION */
.expertise-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 10px;
}

.expertise-section p {
    color: #6c757d;
    margin-bottom: 30px;
}

/* SKILL BOX */
.skill-box {
    margin-bottom: 25px;
}

/* HEADER */
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.skill-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.skill-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* BAR BACKGROUND */
.skill-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

/* PROGRESS */
.skill-progress {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #104121, #198754);
    transition: width 1.8s ease-in-out;
}

/* OPTIONAL SHINE EFFECT 🔥 */
.skill-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -40%; }
    100% { left: 120%; }
}

/* ----------------------
 * stata section
 * -------------------- */
/* MAIN SECTION */
.support {
    position: relative;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/2151998731.jpg') center/cover no-repeat;
    background-attachment: fixed;
    height: 580px;
    display: flex;
    align-items: center;
    overflow: visible;
    margin-bottom: 20%;
}

/* DARK OVERLAY */
.support-overlay {
    width: 100%;
    background: linear-gradient(45deg, #19875485, #0963298f);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    height: 580px;
}

.support-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
}

.support-overlay p {
    margin-bottom: 20px;
    color: #fff;
}


/* STATS SECTION */
.support-stats {
    position: absolute;
    bottom: -95px;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    padding: 26px 0 31px;
    background: #0b1c3d;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.stat-box {
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
}
/* ICON BOX */
.stat-icon {
    margin-bottom: 10px;
}

/* IMAGE */
.stat-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-box h3 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 5px;
}
.stat-box p {
    margin: 0;
    font-size: 17px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .support {
        height: auto;
    }

    .support-stats {
        position: static;
        margin-top: 30px;
    }
}

/* services card section */
.center-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0px 20px 36px;
}
.card-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 20px;
}
/*card section*/
.card-section {
    margin-top: -10rem;
    padding: 80px 0px;
    position: relative; /* required for positioning */
}

.card-section::before {
    content: "";
    position: absolute;
    top: -6%;
    right: 0;
    width: 359px;
    height: 528px;
    background-image: url('https://muneslogistics.com/wp-content/uploads/2026/04/collaborative-logistics-abstract-concept-vector-illustration_335657-5697-removebg-preview.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
}
.card-section .cards-wrapper {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 3;
}
.card-section .card-item{
    position:relative;
    flex:1;
    height:450px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:flex .7s cubic-bezier(.25,.8,.25,1);
}
.card-section .card-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
.card-section .card-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgb(0 0 0), transparent);
    z-index: 1;
    pointer-events: none;
}
.card-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    color: #fff;
    transition: all .5s ease;
    z-index: 9;
    overflow: hidden;
}
.card-section .card-title{
    font-size:22px;
    font-weight:600;
    letter-spacing:1px;
    transform:translateY(20px);
    opacity:.8;
    transition:all .5s ease;
    overflow: hidden;
	color:#fff !important;
}
.card-section .card-title,
.card-section .card-title h5 {
    color: #fff !important;
	font-size:16px;
}
.card-section .cards-wrapper:hover .card-item{
    flex:.8;
}
.card-section .cards-wrapper .card-item:hover{
    flex:3;
}
.card-section .card-item:hover img{
    transform:scale(1.1);
}
.card-section .card-item:hover .card-title{
    transform:translateY(0);
    opacity:1;
}


/* why choose us  */
.why-choose {
    background: #f8f9fa;
    position: relative; /* required for positioning */
    overflow: hidden;   /* prevents overflow */
}

.why-choose::after {
    content: "";
    position: absolute;
    right: -3%;
    bottom: 0;
    width: 421px;
    height: 270px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/2150172438-removebg-preview.png') no-repeat;
    background-size: contain;
    opacity: 0.9;
    animation: moveLR 4s ease-in-out infinite;
}

/* Animation */
@keyframes moveLR {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px); /* move left */
    }
    100% {
        transform: translateX(0);
    }
}
section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 20px;
}
section.why-choose h2 {
    width: 80%;
    margin-bottom: 24px;
}
.col-lg-6.position-relative.left-img img {
    height: 100vh;
    object-fit: none;
    object-position: left;
}
.col-lg-6.position-relative.left-img {
    height: 100vh;
    object-fit: cover;
}

.feature-item {
    margin-bottom: 30px;
}
.feature-item p {
    width: 82%;
}
/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #000000cc, #0d923a);
    border: 1px dashed #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: absolute;
    left: -90px;

    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.icon-box:hover {
    transform: rotateY(180deg);
}
.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    backface-visibility: visible;
}
/* spacing for text */
.feature-item > div:last-child {
    margin-left: 10px;
    padding-left: 20px;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
    .icon-box {
        position: static;
        margin-right: 15px;
    }

    .feature-item {
        flex-direction: row;
    }
}

/* Testimonial  */

.testimonial-section {
    position: relative;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(https://muneslogistics.com/wp-content/uploads/2026/04/map-1.png) no-repeat center;
    background-size: cover;
    padding: 80px 0px 40px !important;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.9); 
    z-index: -1;
}

/* Card */
.testimonial-card {
    background: #eee;
    padding: 70px 20px 30px;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
    overflow: visible; /* important */
	height:260px !important;
	margin-bottom:20%;
}

/* Bottom-left polygon */
.testimonial-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -36px;
    width: 60px;
    height: 72px;
    background: var(--primary);
    clip-path: polygon(15% 170%, -16% -10%, 80% 4%);
    overflow: visible;
}
/* Active center card effect */
.swiper-slide-active .testimonial-card {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.swiper-slide {
    margin-right: 73px !important;
}
/* Image */
.client-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-top: -50px;
    border: 3px solid #069239;
}

.quote {
    position: absolute;
    right: 20px;
    top: 8px;
	opacity:0.4;
}

.client-name {
    background: var(--primary);
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    bottom: 0;
    left: -22px;
    position: absolute;
    font-weight: 600;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: red;
    opacity: 1;
}

/*contact section  */
.quote-section {
    background: #f8f9fa;
	height:100vh;
}

/* WRAPPER */
.quote-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* LEFT IMAGE */
.quote-img {
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/request-quote-thumb.jpg') no-repeat center;
    background-size: cover;
    height: 100vh;
    min-height: 100%;
}

/* FORM */
.quote-form {
    padding: 40px;
}

.quote-form h3 {
    font-weight: 700;
}

/* INPUTS */
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    background: #fff;
}

/* OPTIONS */
.options label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* BUTTON */
.btn-danger {
    background: red;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    transition: 0.3s;
}

.btn-danger:hover {
    background: #c40000;
}

/* RIGHT SIDE */
.quote-info {
    background: #0b1c5c;
    color: #fff;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quote-info h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 30px;
}

.quote-info p {
    font-size: 17px;
    opacity: 0.9;
	line-height:30px;
}

/* GLOBE */
.globe {
    position: absolute;
    bottom: -41%;
    right: -70px;
    width: 130%;
    height: 105%;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/1116960_740-removebg-preview.png') no-repeat center;
    background-size: contain;
    opacity: 0.9;
    animation: rotateGlobe 25s linear infinite,
               floatGlobe 6s ease-in-out infinite;
}

/* ROTATION */
@keyframes rotateGlobe {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* FLOAT */
@keyframes floatGlobe {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .quote-img {
        display: none;
    }

    .quote-info {
        text-align: center;
    }

    .globe {
        width: 250px;
        height: 250px;
        right: -50px;
        bottom: -50px;
    }
}

section.home-blog-section.py-5 {
    padding: 80px 0px !important;
}


/* BUTTON (CENTERED LIKE SCREENSHOT) */


/* Floating */
.floating-bg-section {
    position: relative;
    height: 500px;

    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('https://muneslogistics.com/wp-content/uploads/2026/04/h3-9-1536x768-1.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* -------------------------
 * About Page
 * ------------------------- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #f5f5f5;
    padding: 15px 0;
  }

  .marquee-track {
    display: inline-block;
    animation: scroll 45s linear infinite;
  }

  /* Pause on hover */
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }

  .item {
    display: inline-block;
    margin: 0 20px;
    font-size: 70px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px #6b7280;
    transition: all 0.5s ease;
    cursor: pointer;
}

  .item span {
    margin: 0 10px;
  }

  /* Fill on hover */
  .item:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

/* Func facts section */
section.fun-fact {
    background: #fff;
    padding: 80px 0px 60px;
}
img.fun-fact-img {
    margin-bottom: 20px;
    width: 100%;
    clip-path: polygon(0 0, 80% 0, 100% 34%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    border-radius: 12px;
}

.feature-box {
    transition: 0.3s ease;
    background: #0b1c3d;
    mask-image: url(https://muneslogistics.com/wp-content/uploads/2026/04/ab-mask.png);
    mask-repeat: no-repeat;
    height: 278px !important;
    color: #ffffff !important;
    width: 285px;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

section.work-process {
    padding: 80px 60px 180px;
    background: #0b1c3d;
    border-radius: 0 0px 40px 40px;
    position: relative;
    overflow: hidden;
}

section.work-process::before {
    content: "";
    position: absolute;
    top: 55px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/process-shape1.png') no-repeat;
    background-size: contain;
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Right Top Image */
section.work-process::after {
    content: "";
    position: absolute;
    top: 13px;
    right: -20px;
    width: 229px;
    height: 200px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/process-shape2.png') no-repeat;
    background-size: contain;
    animation: floatUpDown 5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* move up */
    }
    100% {
        transform: translateY(0); /* back down */
    }
}
section.work-process h2 {
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.process-box {
    text-align: center;
    position: relative;
    transform: translateY(50%);
    color: #fff;
}

/* Process line / connector image */
.process-box {
    text-align: center;
    position: relative;
    transform: translateY(50%);
    color: #fff;
}

/* Default connector */
.process-box::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 100px;
    top: 40px;
    right: -120px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/process-border.png') no-repeat center;
    background-size: contain;
}

/* 1st box adjustment */

.process-box:nth-child(1)::before {
    top: -35%;
    right: -123px;
    transform: rotate(
355deg);
}

.process-box:nth-child(2)::before {
    top: -1%;
    right: -127px;
    transform: rotate(
22deg);
}
/* 3rd box (optional if needed) */
.process-box:nth-child(3)::before {
    top: 30px;
    right: -120px;
}

/* Remove connector from last */
.process-box:last-child::before {
    display: none;
}

.icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 40px;
}

.process-row {
  position: relative;
}

.center-box {
    transform: translateY(35px);
}


.process-box h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 14px;
  opacity: 0.8;
}

/* Team section */
section.team-section {
    padding: 80px 0px 130px;
    position: relative; 
    overflow: hidden;
}

/* Left side image */
section.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 300px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/container.png') no-repeat;
    background-size: contain;

    animation: floatUpDown 5s ease-in-out infinite;
}

/* Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px); /* move up */
    }
    100% {
        transform: translateY(0); /* back down */
    }
}
.team-card {
    text-align: center;
}

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 360px;
}

.team-img img {
    width: 100%;
    display: block;
    height: inherit;
    object-fit: cover;
}

/* Social panel */
.team-social {
    position: absolute;
    top: 0;
    right: -60px; /* hidden initially */
    height: 100%;
    width: 60px;
    background: #0b1c3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: 0.4s ease;
}

/* Slide in on hover */
.team-card:hover .team-social {
    right: 0;
}

/* Icons */
.team-social a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #f4b400;
}

/* Info */
.team-info {
    margin-top: 15px;
}

.team-info h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #0b1c3d;
    font-size: 22px;
}

.team-info span {
    font-size: 14px;
    color: #0e0e0e;
    background: #19875461;
    padding: 2px 14px;
    border-radius: 20px;

}

/* ------------------
 * Career Page
 * ------------------ */
.carrer_one {
    max-width: 800px;
    margin: 0 auto;
}
section.career-section {
    padding: 60px 0px 100px;
    position: relative;
    overflow: hidden;
}

/* Bottom Left Image */
section.career-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;   /* adjust size */
    height: 200px;
    background: url('https://muneslogistics.com/wp-content/uploads/2026/04/solution-sh.png') no-repeat;
    background-size: contain;

    animation: floatLeftRight 6s ease-in-out infinite;
}

/* Left ↔ Right Animation */
@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px); /* move right */
    }
    100% {
        transform: translateX(0); /* back left */
    }
}
section.career-section p {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

/* Value Section */
section.value-sec {
    padding: 60px 0px 120px;
    background: #fff;
}
.benefit-card {
    background: #0b1c3d;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #079139;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.benefit-icon img {
    width: 40px;
    height: auto;
}

.benefit-card:hover .benefit-icon {
    background: #2e549f;
}

.benefit-card:hover .benefit-icon img {
    filter: brightness(0) invert(1);
}

.benefit-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .value-sec h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .value-sec {
        padding: 60px 0;
    }

    .value-sec h2 {
        font-size: 22px;
    }

    .value-sec .row:first-child {
        text-align: center;
    }

    .value-sec .col-lg-6:last-child {
        margin-top: 15px;
        align-items: center !important;
    }
}

/* Proven Sucess */
.proven-sucess {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(45deg, #020f29, #0c2e71);
    padding: 80px 0px;
}

/* Background Layer */
.proven-sucess::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-image: url("https://muneslogistics.com/wp-content/uploads/2026/04/carrer-bg.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    background-attachment: fixed;
    opacity: 0.7;
    z-index: -1;
}

.proven-sucess h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    margin-top: 6px;
}

/* Cards */
.success-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.success-card.active, .success-card:hover {
    transform: translateX(6px);
    border-left: 4px solid #079139;
    background: rgba(255,255,255,0.08);
}
.success-card h5 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #fff;
}

.success-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
}

.arrow {
    width: 43px;
    height: 43px;
    background: #07913996;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow img {
    width: 24px;
}
.success-img {
    position: relative;
    height: 500px;
}

.success-img img {
    width: 100%;
    border-radius: 20px;
    height: inherit;
    object-fit: cover;
}

/* Floating Box */
.floating-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    max-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-box h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.floating-box p {
    font-size: 13px;
    color: #555;
}

.floating-box a {
    font-size: 13px;
    font-weight: 600;
    color: #ff5a2f;
    text-decoration: none;
}
.success-content {
    display: none;
}

.success-content.active {
    display: block;
    height: 500px;
}
/* Responsive */
@media (max-width: 991px) {
    .proven-sucess {
        padding: 70px 0;
    }

    .proven-sucess h2 {
        font-size: 26px;
    }

    .floating-box {
        position: static;
        margin-top: 20px;
    }
}

/* Blog PAge  */
.blog-page {
    padding: 30px 0px 130px;
}

/* Conatct Page  */
section.contact-details {
    padding: 40px 0px 100px;
}
.contact-page-box {
    margin-top: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: justify;
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-card i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    background: #0c1b39;
    color: #19bf72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed;
}

.info-card h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.info-card span,
.info-card a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

/* Link Hover */
.info-card a:hover {
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 767px) {
    .info-card {
        padding: 15px;
    }

    .info-card i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

section.contact-section.py-5 {
    margin-bottom: 100px;
}


/* Service details Page */
section.service-details {
    padding: 80px 0px 130px;
}
.service-list {
    padding: 35px 20px;
    background: #d5d5d585;
    border-radius: 16px;
}
.service-list h3 {
    color: #0b1c3d;
    margin-bottom: 20px;
}
/* Reset */
.srvc-list-item ul {
    list-style: none;
    padding: 0;
}

/* List Item */
.srvc-list-item ul li {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 14px 50px 14px 18px;
    border: 1px solid var(--primary);
    color: #0b1c3d;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

/* Background fill layer */
.srvc-list-item ul li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #0b1c3d, #069239);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Arrow */
.srvc-list-item ul li::after {
    content: "\f061"; /* diagonal arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    transition: all 0.35s ease;
}

/* Hover effects */
.srvc-list-item ul li:hover {
    color: #fff;
    border-color: transparent;
}

/* Background fill animation */
.srvc-list-item ul li:hover::before {
    transform: scaleX(1);
}

/* Arrow diagonal movement */
.srvc-list-item ul li:hover::after {
    transform: translate(6px, -8px); /* diagonal move */
    color: #fff;
}

/* Service details Contact form */
/* Form Wrapper */
.contact-form {
    background: #0b1c3d;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    /* color: #fff; */
}

/* Inputs & Textarea */
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 8px 15px;
    margin-bottom: 7px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

/* Focus Effect */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(6,146,57,0.1);
}

/* Submit Button */
.contact-form input[type="submit"] {
    background: linear-gradient(45deg, #0b1c3d, #069239);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

/* Button Hover */
.contact-form input[type="submit"]:hover {
    background: linear-gradient(45deg, #069239, #0b1c3d);
}

/* Labels */
.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: #fff;
}

/* CF7 Response Messages */
.contact-form .wpcf7-response-output {
    margin-top: 15px;
    border-radius: 4px;
    padding: 10px;
}

/* Error Message */
.contact-form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: red;
}

/* Two Column Layout (optional) */
.contact-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-form .form-row .col {
    width: 50%;
}
.contact-form p {
    margin-bottom: 0;
}
/* Mobile Fix */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-row .col {
        width: 100%;
    }
}

.download-box {
    background: #e9e9e9;
    padding: 25px;
    border-radius: 10px;
}

.download-box h3 {
    color: #0b3d4f;
    margin-bottom: 20px;
}

/* Item */
.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f3f3;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

/* Icon box */
.download-item i {
    background: #ffeaea;
    color: red;
    padding: 10px;
    border-radius: 6px;
    font-size: 18px;
}

/* Hover */
.download-item:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.object-fit-cover {
    object-fit: cover !important;
    height: 300px;
}

.col-lg-7 img {
    min-height: 100%;
}
.service-details .col-lg-7 img {
    height: 460px !important;
    object-fit: cover !important;
}
.col-lg-12.mt-4.service-desc ul li {
    margin-bottom: 10px;
    font-size: 17px;
}
/* Box */
.stats-box {
    background: #091836;
    padding: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.stats-box .icon {
    font-size: 50px;
    color: var(--primary);
}
/* Content */
.stats-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stats-box h2 {
    font-size: 38px;
    color: #fff;
    margin: 0;
}

.stats-box p {
    margin: 5px 0 0;
    color: #fff;
}

/* Hover */
.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

img.img-fluid.w-100.rounded.wp-post-image {
    height: 400px !important;
    object-fit: cover;
}
main.container.my-5.blog-single {
    margin-bottom: 120px !important;
}

/* Responsive */
@media (max-width: 1200px) {
	img.fun-fact-img {
    height: 449px !important;
}

	
}

@media (max-width: 1024px) {

	.social-icons a {
    color: #069239;
    font-size: 14px;
    padding: 5px 9px;
}
		.text {
    width: calc(200px - 15px);
    font-size: 12px;
}
	.Btn-Container {
    width: 142px !important;
}
	ul#menu-primary {
    gap: 12px !important;
}
	.slide-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}
	.slide-content {
    transform: translate(12%, 20%) !important;
}
	.about-section h2 {
    font-size: 32px;
}
	section.why-choose h2 {
    width: 100%;
    margin-bottom: 24px;
}
	section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 20px;
}
	.feature-item h5 {
    font-size: 16px !important;
}
	.feature-item p {
    width: 100%;
    font-size: 14px;
}
	.why-choose::after {
   display:none !important;
}
	.feature-box {
    width: 244px;
}
	section.career-section::before {
    bottom: -40px;
    width: 125px;
    height: 167px;
}
}
@media (max-width: 991px) {
button#mobileMenuBtn.d-md-none {
    display: block !important;
    height: 45px;
    width: 45px;
    color: #0c8337 !important;
    border: 1px solid #fff;
    border-radius: 12px;
    margin-right: -55% !important;
    background: #fff;
}
	ul#menu-primary {
    display: none !important;
}
	
	html {
    overflow-x: hidden !important;
}
	.about-section {
    padding: 60px 0 50px;
}
	.about-img {
    height: 618px !important;
}
	.about-img img {
    height: inherit !important;
}
	.slide-bg {
    height: 100vh;
    overflow-x: hidden !important;
}
	.carousel-control-prev {
    left: 20px;
    top: 45% !important;
}
	.carousel-control-next {
    right: 20px;
    top: 45% !important;
}
	.card-section::before {
    top: 3% !important;
    right: -32px !important;
    width: 305px !important;
    height: 258px !important;
}
	.quote-info {
    display: none !important;
}
	img.fun-fact-img {
    height: 520px !important;
}
	.feature-box {
    width: 283px;
}
	.process-box {
    width: 77% !important;
    margin-bottom: 28px !important;
}
	.process-box:nth-child(1)::before {
display:none !important;
}
	.center-box {
    transform: translateY(88px) !important;
}
	.process-box:nth-child(2)::before {
   display:none !important;
}
	.process-row {
    position: relative;
    margin-top: -35px !important;
}
	.team-img img {
    object-position: top !important;
}
	.floating-box {
    position: absolute !important;
    margin-top: -16px;
}
	
	.container.my-5.mb-5.blog-page .col-md-4 {
    flex: 0 0 auto;
    width: 48.333333%;
}
	section.contact-details {
    padding: 40px 0px 0px;
}
.col-md-4 {
    flex: 0 0 auto;
    width: 43.333333%;
}
}
@media (max-width: 767px) {
	.top-bar {
    display: none !important;
}
	.header-logo img {
    max-height: 106px !important;
}
	.Btn-Container {
    width: 171px !important;
}
	.slide-content {
    max-width: 92%;
}
	.support-stats {
    position: relative;
}
	.support {
    display: flex;
    flex-direction: column !important;
}
	.support-stats {
    position: absolute !important;
    margin: -25px 0px !important;
		 bottom: 14px !important;
}
	.stat-box {
    padding: 10px 15px !important;
}
	
	.stat-icon {
    width: 31px !important;
    height: 45px !important;
}
	.stat-box h3 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 2px;
}
	.testimonial-card {
    padding: 70px 63px 30px;
    margin: 0 auto !important;
		width:60% !important;
}
	.swiper-slide {
    margin-right: 30px !important;
/* 		margin:0 auto !important; */
}
	.quote-section {
    background: #f8f9fa;
    height: auto !important;
}
	section.team-section::before {
    width: 142px !important;
}
	.container.my-5.mb-5.blog-page .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
}
	.blog-card {
    width: 100%;
}
	.info-card {
    padding: 33px;
}
	.col-md-4 {
    flex: 0 0 auto;
    width: 100% !important;
}
}
@media (max-width: 667px) {
	
}
@media (max-width: 568px) {
	.testimonial-card {
    width: 85% !important;
}
	.icon-box {
    width: 102px !important;
}
	.card-section .cards-wrapper {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 3;
    flex-direction: column;
}
	.card-section .card-item {
    height: auto;
}
		.card-section {
    margin-top: -7rem;
    padding: 60px 0px;
    position: relative;
}
	section.home-blog-section.py-5 {
    padding: 40px 0px !important;
}
	img.fun-fact-img {
    height: 375px !important;
}
	section.work-process {
    padding: 80px 12px 129px;
}
	section.value-sec {
    padding: 40px 0px 40px;
    background: #fff;
}
}
@media (max-width: 479px) {
	.copyright::before {
    top: -69% !important;
}
	.about-img {
    height: 500px !important;
}
	.card-section {
    margin-top: -7rem;
    padding: 60px 0px;
    position: relative;
}
	section.contact-section.py-5 {
    margin-bottom: 0px !important; 
}
	section.career-section::before {
    bottom: -57px;
    width: 111px;
    height: 167px;
}
	.col-6 {
    flex: 0 0 auto;
    width: 100% !important;
}
	.feature-box {
    width: 290px;
    margin: 0 auto;
}
	section.work-process::before {
    top: 35px;
    width: 172px;
}
	section.work-process::after {
    top: 13px;
    right: -42px;
    width: 195px;
    height: 145px;
}
	section.work-process h2 {
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
    line-height: 36px;
}
	.process-box {
    width: 100% !important;
    margin-bottom: 20px !important;
}
	.center-box {
    transform: translateY(114px) !important;
}
	.testimonial-section {
    padding: 83px 0px 63px !important;
    overflow-x: hidden !important;
}
	.testimonial-card {
    height: 300px !important;
}
	section.team-section {
    padding: 80px 0px 40px;
}
	.custom-arrow {
    width: 33px;
    height: 34px;
}
	.carousel-control-prev {
    left: 0px;
    top: 31% !important;
}
	.carousel-control-next {
    right: 0px;
    top: 31% !important;
}
	.slide-content {
    transform: translate(5%, 20%) !important;
		max-width:100% !important;
}
	.support-stats .col-6 {
    width: 50% !important;
}
	.support-stats {
    position: absolute !important;
    margin: 9px 0px !important;
    bottom: 18px !important;
}
	.support-overlay {
    height: 676px;
}
	.card-section::before {
display:none !important;
}
	
}
@media (max-width: 414px) {
	.support-stats .col-6 {
    width: 100% !important;
}
	.support-overlay {
    height: 914px;
}
	.icon-box {
    width: 141px !important;
		 margin-right: 0px;
}
.testimonial-card {
    padding: 70px 18px 30px;
}
	img.fun-fact-img {
    height: 410px !important;
}
	section.work-process::before {
    top: 35px;
    width: 127px;
}
	section.work-process::after {
    top: 1px;
    right: -42px;
    width: 159px;
    height: 114px;
}
	section.work-process h2 {
    font-size: 30px;
}
	.process-row {
    position: relative;
    margin-top: -80px !important;
}
	section.team-section::before {
    width: 121px !important;
}
	section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1c3d;
    margin-bottom: 8px;
}
	section.work-process h2 {
    font-size: 26px;
}
	section.fun-fact {
    background: #fff;
    padding: 40px 0px 60px;
}
	.about-section h2 {
    font-size: 26px;
}
	.support-overlay h2 {
    font-size: 26px;
}.card-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}
	.blog-title a {
    font-size: 18px;
}
	section.service-details {
    padding: 80px 0px 60px;
}
	.breadcrumb-title h2 {
    color: #ffffff !important;
    font-size: 20px;
}
}
@media (max-width: 379px) {
	.header-logo img {
    max-height: 84px !important;
}
}
@media (max-width: 360px) {
	.about-img {
    height: 380px !important;
}
	.slide-content h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 27px;
}
	.header-logo img {
    max-height: 73px !important;
}
	.slide-bg {
    height: 89vh;
    overflow-x: hidden !important;
}

	
}


.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ddd;
    transition:0.4s;
    position:relative;
    height:100%;
}
.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image .service-box {
    padding: 25px 20px;
    background: none !important;
    text-align: center;
    height: 100%;
    border-radius: 0 !important;
    transition: .3s;
}
.blog-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s;
    display:block;
}
.blog-image .service-image {
    height: 244px !important;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
    display: block;
    border-radius: 24px 24px 0 0;
}
.blog-card:hover .blog-image img{
    transform:scale(1.02);
}
.date-box{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    width:85px;
    border-radius:18px;
    text-align:center;
    padding:12px 10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    z-index:2;
}
.date-box span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#666;
    margin-bottom:10px;
    text-transform:uppercase;
}
.date-circle{
    width:55px;
    height:55px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:600;
    color:#333;
}
.blog-content{
    padding:20px;
}
.blog-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}
.blog-category::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:160px;
    height:1px;
    background:#ddd;
}
.blog-title{
    font-size:22px;
    line-height:1.4;
    font-weight:600;
    margin-bottom:25px;
}
.blog-title a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}
.blog-title a:hover{
    color:#000;
}
.blog-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}
.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:600;
    color:var(--secondary);
    text-decoration:none;
    transition:0.3s;
}
.read-more:hover{
    gap:14px;
    color:#000;
}
.blog-meta{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:15px;
    color:#777;
}
.blog-meta i{
    margin-right:6px;
}
section.blog-section,.policy,.blog-page {
    background: #fff;
    padding: 60px 0;
}
section.single-blog {
    padding: 60px 0px;
    background: #fff;
}




