
.psn-header ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.psn-header a{
    text-decoration: none;
}

/* ==========================
   CONTAINER
========================== */
.psn-container{
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/* ==========================
   TOP BAR
========================== */
.psn-topbar{
    /* background: #0f2a87; */
    background: #fd7e14;
    color: #ffffff;
    padding: 10px 0;
}

.psn-topbar .psn-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.psn-address{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.psn-address i{
    color: #fff;
}

.psn-social-icons{
    display: flex;
    align-items: center;
    gap: 15px;
}

.psn-social-icons a{
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s;
}

.psn-social-icons a:hover{
    color: #ff7a00;
}

/* ==========================
   MAIN NAVBAR
========================== */
.psn-navbar{
    background: #fffaf3;
}

.psn-navbar .psn-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

/* ==========================
   LOGO
========================== */
.psn-logo img{
    height: 70px;
    width: auto;
}

/* ==========================
   DESKTOP MENU
========================== */
.psn-menu ul{
    display: flex;
    align-items: center;
    gap: 35px;
}

.psn-menu ul li{
    position: relative;
}


.psn-menu ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    /* padding: 34px 0; */
    padding: 15px 0;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.psn-menu ul li a:hover{
    color: #fff;
}

/* ==========================
   DROPDOWN MENU
========================== */
.psn-submenu{
    position: absolute;
    top: 120%;
    left: 0;
    width: 320px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    padding: 10px 0;
}

.psn-dropdown:hover .psn-submenu{
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.psn-submenu li{
    width: 100%;
}

.psn-submenu li a{
    padding: 12px 20px;
    display: block;
    color: #222222;
    font-size: 15px;
}

.psn-submenu li a:hover{
    background: #f5f5f5;
    color: #fd7e14;
    padding-left: 28px;
}

/* ==========================
   CALL SECTION
========================== */
.psn-call-box{
    display: flex;
    align-items: center;
    gap: 15px;
}

.psn-call-icon{
    width: 55px;
    height: 55px;
    /* background: #0f2a87; */
    background:#fd7e14;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.psn-call-icon i{
    color: #ffffff;
    font-size: 22px;
}

.psn-call-text span{
    display: block;
    font-size: 12px;
    color: #777777;
    font-weight: 600;
    text-transform: uppercase;
}

.psn-call-text a{
    color: #222222;
    font-size: 18px;
    font-weight: 700;
}

.psn-call-text a:hover{
    color: #0f2a87;
}

/* ==========================
   MOBILE TOGGLE
========================== */
.psn-mobile-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0f2a87;
}

/* ==========================
   MOBILE MENU
========================== */
.psn-mobile-menu{
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    transition: 0.4s;
    overflow-y: auto;
    padding: 25px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
}

.psn-mobile-menu.active{
    right: 0;
}

.psn-close-menu{
    text-align: right;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 20px;
}

.psn-mobile-menu ul{
    padding: 0;
}

.psn-mobile-menu ul li{
    border-bottom: 1px solid #e5e5e5;
}

.psn-mobile-menu ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}

.psn-mobile-menu ul li a:hover{
    color: #0f2a87;
}

.psn-mobile-submenu{
    display: none;
    padding-left: 20px;
}

.psn-mobile-submenu.show{
    display: block;
}

.psn-mobile-submenu li a{
    font-size: 14px;
    padding: 12px 0;
}

/* ==========================
   OVERLAY
========================== */
.psn-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.psn-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 991px){

    .psn-topbar{
        display: none;
    }

    .psn-menu{
        display: none;
    }

    .psn-call-box{
        display: none;
    }

    .psn-mobile-toggle{
        display: block;
    }

    .psn-navbar .psn-container{
        min-height: 80px;
    }

    .psn-logo img{
        height: 55px;
    }
}

@media (max-width: 576px){

    .psn-mobile-menu{
        width: 280px;
        right: -280px;
    }

    .psn-address{
        font-size: 12px;
    }

    .psn-logo img{
        height: 50px;
    }
}

.planning-execute__item {
    background: #004d73;
    border-radius: 15px;
    padding: 35px 25px;
    border: 1px solid #ececec;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.05),
        0 12px 24px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.planning-execute__item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 10px 20px  #004d736d,
        0 20px 40px  #004d7369;
}

.psn-menu > ul{
    display: flex;
    align-items: center;
    gap: 35px;
}

.psn-menu > ul > li > a{
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    padding: 34px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.psn-menu > ul > li > a:hover{
    color: #fd7e14;
}

.psn-menu > ul > li > a i{
    font-size: 12px;
    transition: 0.3s;
}


.psn-menu > ul > li{
    position: relative;
}

/* Dropdown parent */
.psn-dropdown{
    position: relative;
}

/* Dropdown menu */
.psn-submenu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fd7e14;
    color: #fff;
    border-top: 3px solid #fff;

    padding: 10px 0;
    list-style: none;

    /* Important */
    display: block !important;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}


.working-process__item-icon-img{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.working-process__item-icon-img i{
    font-size:30px;
    color:#fd7e14;
    transition:.3s ease;
}

.working-process__item:hover .working-process__item-icon-img i{
    color:#ff7a00;
    transform:scale(1.1);
}

/*==========================
 Counter Section
==========================*/

.counter-section{
    position:relative;
    padding:60px 0;
    background:url('./assets/website_images/counter_bg.png') center center/cover no-repeat;
    background-attachment:fixed;
    overflow:hidden;
}

.counter-overlay{
    position:absolute;
    inset:0;
    background:url('./assets/website_images/counter_bg.png') center center/cover no-repeat;
    background-attachment:fixed;
}

.counter-section .container{
    position:relative;
    z-index:2;
}

.counter-card{
    background:#fff;
    border-radius:30px;
    padding:30px 30px;
    min-height:240px;
    transition:.4s;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    overflow:hidden;
    position:relative;
    padding-bottom: 10px !important;
}

.counter-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.20);
}

.counter-card.active{
    background:#f57a13;
    color:#fff;
}

.counter-card.active h4,
.counter-card.active p,
.counter-card.active .counter-number,
.counter-card.active i{
    color:#fff;
}

.counter-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f57a13;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.counter-card.active .counter-icon{
    background:#fff;
}

.counter-icon i{
    font-size:30px;
    color:#fff;
}

.counter-card.active .counter-icon i{
    color:#f57a13;
}

.counter-number{
    /* font-size:60px; */
    font-size:38px;
    font-weight:700;
    color:#f57a13;
    line-height:1;
    margin-bottom:15px;
}

.counter-card h4{
    font-size:28px;
    font-weight:700;
    /* margin-bottom:15px; */
}

.counter-card p{
    color:#666;
    line-height:30px;
}

.counter-card.active p{
    color:#fff;
}

.offcanvas__area{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100%;
    /* background:#fff; */
    z-index:99999;
    transition:.4s;
    overflow-y:auto;
}

.offcanvas__area.opened{
    right:0;
}

.offcanvas__overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    visibility:hidden;
    opacity:0;
    transition:.4s;
    z-index:9999;
}

.offcanvas__overlay.opened{
    visibility:visible;
    opacity:1;
}

/* Modal */
.premium-modal{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

/* Left Section */
.modal-left{
    background:#000;
    color:#fff;
    padding:45px 35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:100%;
}

.modal-logo{
    width:170px;
    margin-bottom:25px;
}

.modal-left h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.modal-left p{
    line-height:25px;
    opacity:.95;
}

/* Contact Details */
.contact-box{
    margin-top:35px;
}

.contact-box div{
    display:flex;
    align-items:center;
    margin-bottom:7px;
}

.contact-box i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    color:#fd7e14;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    font-size:18px;
}

/* Right Side */
.modal-body{
    padding:45px;
    background:#fff;
}

.modal-body h3{
    color:#000;
    font-weight:700;
}

/* Input Group */
.input-group{
    margin-bottom:18px;
}

.input-group-text{
    background:#000;
    color:#fff;
    border:none;
    width:52px;
    justify-content:center;
}

.form-control{
    border:1px solid #0000005e !important;
    height:45px;
    box-shadow:none;
    border-left:none;
}

textarea.form-control{
    height:140px;
    resize:none;
}

.form-control:focus{
    border-color:#fd7e14;
    box-shadow:0 0 10px rgba(253,126,20,.2);
}

/* Submit Button */
.premium-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#fd7e14,#d65f00);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.35s;
}

.premium-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(253,126,20,.35);
}

/* Close Button */
.custom-close{
    position:absolute;
    right:18px;
    top:18px;
    background:#fff;
    border-radius:50%;
    opacity:1;
    padding:10px;
    z-index:99;
}

/* Animation */
.modal.fade .modal-dialog{
    transform:scale(.85);
    transition:.35s ease;
}

.modal.show .modal-dialog{
    transform:scale(1);
}

/* Mobile */
@media(max-width:991px){

    .modal-left{
        text-align:center;
        padding:35px 25px;
    }

    .contact-box div{
        justify-content:center;
    }

    .modal-body{
        padding:30px;
    }

}

/* Custom Close Button */
.custom-close-btn{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#fd7e14;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    cursor:pointer;
    transition:all .3s ease;
    z-index:1055;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.custom-close-btn:hover{
    background:#fd7e14;
    color:#fff;
    transform:rotate(90deg) scale(1.08);
    box-shadow:0 10px 25px rgba(253,126,20,.35);
}

.custom-close-btn:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(253,126,20,.25);
}

.vision-box{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:30px;
}

.vision-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.vision-item i{
    width:55px;
    height:55px;
    background:#fd7e14;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.vision-item h5{
    margin-bottom:8px;
    font-weight:700;
}

.vision-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/* Offcanvas Customizations */
.offcanvas__logo {
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.offcanvas__logo a img {
    width: 165px !important;
    height: auto !important;
    display: block;
}

/* Mobile Navbar Underline Customization */
.mean-container .mean-nav ul li a, 
.mean-container .mean-nav ul li span {
    border-bottom: 2px solid #fff !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.offcanvas__contact {
    clear: both !important;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas__contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.offcanvas__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offcanvas__contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.offcanvas__contact ul li i {
    color: #fd7e14;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offcanvas__contact ul li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.offcanvas__contact ul li a:hover {
    color: #fff;
}

.latest-project__item-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.latest-project__item-thumb img {
    width: 100%;
    transition: 0.5s;
    display: block;
    cursor: pointer;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* only image area covered */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.image-popup {
    width: 60px;
    height: 60px;
    background: #fff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff7a00 !important;
    font-size: 24px;
    transform: scale(0);
    transition: 0.4s;
    text-decoration: none;
}

.image-popup i {
    color: #ff7a00 !important;
}

.image-popup:hover {
    background: #ff7a00 !important;
    color: #fff !important;
}

.image-popup:hover i {
    color: #fff !important;
}

.latest-project__item:hover .project-overlay {
    opacity: 1;
    visibility: visible;
}

.latest-project__item:hover .image-popup {
    transform: scale(1);
}

.latest-project__item:hover img {
    transform: scale(1.1);
}

.mfp-bg {
    opacity: 0.6 !important;
}


/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.latest-project__item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Stagger Effect */
.grid-item:nth-child(1) .latest-project__item {
    animation-delay: 0.2s;
}

.grid-item:nth-child(2) .latest-project__item {
    animation-delay: 0.4s;
}

.grid-item:nth-child(3) .latest-project__item {
    animation-delay: 0.6s;
}

.grid-item:nth-child(4) .latest-project__item {
    animation-delay: 0.8s;
}

.grid-item:nth-child(5) .latest-project__item {
    animation-delay: 1.0s;
}

.grid-item:nth-child(6) .latest-project__item {
    animation-delay: 1.2s;
}

.grid-item:nth-child(7) .latest-project__item {
    animation-delay: 1.4s;
}

.grid-item:nth-child(8) .latest-project__item {
    animation-delay: 1.6s;
}

.popup-image-gallery {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

button.mfp-close::after {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: "\f00d" !important;
}

.services_h2 {
    font-size: 37px;
    line-height: 1.25;
}

.custom-gap {
    --bs-gutter-x: 4rem;
}

.service-image-wrapper {
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/0.65;
}

.orange-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fd7e14;
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: -1;
}

.service-image-wrapper {
    position: relative;
    padding: 40px 0;
}

/* Orange Background Block */
.orange-bg {
    position: absolute;
    width: 100%;
    height: 85%;
    background: #000;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    z-index: 1;

    /* Box Shadow */
    box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.25);
    animation: fadeBackground 5s ease-in-out infinite alternate;
}

.fade-section {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-section.hide {
    opacity: 0;
    transform: translateY(-80px);
}

/* Image Container */
.service-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    display: block;
    border-radius: 20px;

    animation: fadeImage 4s ease-in-out infinite alternate;
}

/* Image Fade Animation */
@keyframes fadeImage {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.03);
    }
}

/* Background Fade Animation */
@keyframes fadeBackground {
    0% {
        opacity: 0.65;
    }

    100% {
        opacity: 1;
    }
}


.service-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.warehouse-benefits {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.warehouse-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 17px;
}

.warehouse-benefits li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #fd7e14;
    font-size: 12px;
}