/*=====================================
HEADER
=====================================*/

:root{
    --primary:#0A4DA3;
    --primary-dark:#083C80;
    --secondary:#ff6b00;
    --secondary-hover:#e95e00;
    --white:#ffffff;
    --black:#111111;
    --text:#4b5563;
    --heading:#0f172a;
    --border:#e5e7eb;
    --footer:#081C39;
    --shadow:0 8px 30px rgba(0,0,0,.08);
    --radius:6px;
    --transition:.35s ease;
    --heading-font:'Poppins',sans-serif;
    --body-font:'Inter',sans-serif;
    --container:1320px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--body-font);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.psh-container{
    width:100%;
    max-width:var(--container);
    margin:auto;
    padding:0 15px;
}

/*=====================================
HEADER
=====================================*/

.psh-header{
    width:100%;
    background:var(--white);
    position:sticky;
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 3px 18px rgba(0,0,0,.05);
}

.psh-header .psh-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

/*=====================================
LOGO
=====================================*/

.psh-logo{
    display:flex;
    align-items:center;
}

.psh-logo img{
    width:150px;
    transition:var(--transition);
}

/*=====================================
NAVBAR
=====================================*/

.psh-navbar{
    margin-left:auto;
    margin-right:40px;
}

.psh-nav-list{
    display:flex;
    align-items:center;
    gap:28px;
}

.psh-nav-list>li{
    position:relative;
}

.psh-nav-link{
    position:relative;
    display:flex;
    align-items:center;
    gap:6px;
    height:90px;
    font-size:13px;
    font-weight:600;
    color:var(--heading);
    transition:var(--transition);
    text-transform:uppercase;
}

/*==========================
HOVER LINE
==========================*/

.psh-nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:20px;
    width:0%;
    height:3px;
    background:var(--primary);
    border-radius:20px;
    transition:var(--transition);
}

.psh-nav-link:hover{
    color:var(--primary);
}

.psh-nav-link:hover::after{
    width:100%;
}

/*==========================
ACTIVE MENU
==========================*/

.psh-nav-link.active{
    color:var(--primary);
}

.psh-nav-link.active::after{
    width:100%;
}

/*=====================================
DROPDOWN
=====================================*/

.psh-dropdown{
    position:relative;
}

.psh-dropdown-menu{
    position:absolute;
    top:110%;
    left:0;
    min-width:260px;
    background:var(--white);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-radius:8px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:var(--transition);
    overflow:hidden;
}

.psh-dropdown:hover .psh-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.psh-dropdown-menu li{
    border-bottom:1px solid var(--border);
}

.psh-dropdown-menu li:last-child{
    border:none;
}

.psh-dropdown-menu li a{
    display:block;
    padding:15px 20px;
    color:var(--heading);
    font-size:15px;
    font-weight:500;
    transition:var(--transition);
}

.psh-dropdown-menu li a:hover{
    background:var(--primary);
    color:var(--white);
    padding-left:28px;
}

/*=====================================
QUOTE BUTTON
=====================================*/

.psh-header-right{
    display:flex;
    align-items:center;
}

.psh-quote-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    background:var(--secondary);
    color:var(--white);
    font-size:14px;
    font-weight:600;
    border-radius:6px;
    transition:var(--transition);
    text-transform:uppercase;
    letter-spacing:.3px;
}

.psh-quote-btn i{
    font-size:17px;
}

.psh-quote-btn:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

/*=====================================
MENU ICON
=====================================*/

.psh-menu-toggle{
    display:none;
    border:none;
    background:none;
    cursor:pointer;
}

.psh-menu-toggle i{
    font-size:34px;
    color:var(--heading);
}

/*=====================================
MOBILE MENU
=====================================*/

.psh-mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:330px;
    height:100vh;
    background:var(--white);
    z-index:99999;
    transition:.4s;
    overflow:auto;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
}

.psh-mobile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid var(--border);
}

.psh-mobile-header img{
    width:130px;
}

.psh-close-menu{
    border:none;
    background:none;
    cursor:pointer;
}

.psh-close-menu i{
    font-size:28px;
}

.psh-mobile-nav{
    padding:20px;
}

.psh-mobile-nav li{
    border-bottom:1px solid var(--border);
}

.psh-mobile-nav li a,
.psh-mobile-dropdown-btn{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    font-size:16px;
    font-weight:500;
    color:var(--heading);
    background:none;
    border:none;
    cursor:pointer;
    transition:var(--transition);
}

.psh-mobile-nav li a:hover,
.psh-mobile-dropdown-btn:hover{
    color:var(--primary);
}

.psh-mobile-nav li a.active{
    color:var(--primary);
    font-weight:600;
}

.psh-mobile-submenu{
    display:none;
    padding-left:15px;
}

.psh-mobile-submenu li a{
    font-size:15px;
    padding:12px 0;
}

.psh-mobile-btn{
    display:flex;
    justify-content:center !important;
    margin-top:20px;
    background:var(--secondary);
    color:var(--white)!important;
    padding:15px;
    border-radius:6px;
    font-weight:600;
    transition:var(--transition);
}

.psh-mobile-btn:hover{
    background:var(--primary);
}
/*==================================
OPEN MENU
==================================*/

.psh-mobile-menu.active{
    right:0;
}
/*=========================================
992px
=========================================*/

@media (max-width:992px){

    .psh-header .psh-container{
        height:80px;
    }

    .psh-logo img{
        width:135px;
    }

    .psh-navbar,
    .psh-header-right{
        display:none;
    }

    .psh-menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        border-radius:6px;
        background:var(--primary);
        color:var(--white);
        cursor:pointer;
        transition:var(--transition);
    }

    .psh-menu-toggle:hover{
        background:var(--secondary);
    }

    .psh-menu-toggle i{
        color:var(--white);
        font-size:30px;
    }

}

/*=========================================
768px
=========================================*/

@media(max-width:768px){

    .psh-header .psh-container{
        height:75px;
    }

    .psh-logo img{
        width:125px;
    }

    .psh-mobile-menu{
        width:300px;
    }

    .psh-mobile-header{
        padding:18px;
    }

    .psh-mobile-nav{
        padding:18px;
    }

    .psh-mobile-nav li a,
    .psh-mobile-dropdown-btn{
        font-size:15px;
    }

    .psh-mobile-btn{
        padding:14px;
        font-size:15px;
    }

}

/*=========================================
576px
=========================================*/

@media(max-width:576px){

    .psh-container{
        padding:0 18px;
    }

    .psh-header .psh-container{
        height:72px;
    }

    .psh-logo img{
        width:115px;
    }

    .psh-mobile-menu{
        width:280px;
    }

    .psh-mobile-header img{
        width:110px;
    }

    .psh-close-menu i{
        font-size:25px;
    }

}

/*=========================================
480px
=========================================*/

@media(max-width:480px){

    .psh-container{
        padding:0 15px;
    }

    .psh-logo img{
        width:105px;
    }

    .psh-menu-toggle{
        width:42px;
        height:42px;
    }

    .psh-menu-toggle i{
        font-size:27px;
    }

    .psh-mobile-menu{
        width:100%;
    }

    .psh-mobile-header{
        padding:16px;
    }

    .psh-mobile-nav{
        padding:16px;
    }

    .psh-mobile-nav li a,
    .psh-mobile-dropdown-btn{
        padding:15px 0;
    }

}

/*=========================================
375px
=========================================*/

@media(max-width:375px){

    .psh-header .psh-container{
        height:68px;
    }

    .psh-logo img{
        width:95px;
    }

    .psh-menu-toggle{
        width:40px;
        height:40px;
    }

    .psh-menu-toggle i{
        font-size:25px;
    }

    .psh-mobile-header img{
        width:95px;
    }

    .psh-mobile-btn{
        font-size:14px;
    }

}
/*==================================
OVERLAY
==================================*/

.psh-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9990;

}

.psh-overlay.active{

    opacity:1;

    visibility:visible;

}
/*=====================================
MOBILE SUBMENU
=====================================*/

.psh-mobile-submenu{

    display:none;

    padding-left:18px;

}

.psh-mobile-submenu.open{

    display:block;

    animation:submenu .35s ease;

}

.psh-mobile-dropdown-btn i{

    transition:.35s;

}

.psh-mobile-dropdown-btn.active i{

    transform:rotate(180deg);

}

@keyframes submenu{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=========================================
FOOTER
=========================================*/

.psh-footer{
    background:var(--footer);
    color:var(--white);
    position:relative;
    overflow:hidden;
    margin-top:30px;
}

.psh-footer-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.4fr;
    gap:50px;
    padding:80px 0 60px;
}

/*=========================================
FOOTER LOGO
=========================================*/

.psh-footer-logo{
    display:inline-block;
    margin-bottom:25px;
}

.psh-footer-logo img{
    width:170px;
}

.psh-footer-box p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.9;
    margin-bottom:30px;
}

/*=========================================
FOOTER TITLE
=========================================*/

.psh-footer-box h3{
    position:relative;
    font-size:22px;
    font-family:var(--heading-font);
    font-weight:600;
    margin-bottom:30px;
    color:var(--white);
}

.psh-footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:55px;
    height:3px;
    background:var(--secondary);
    border-radius:20px;
}

/*=========================================
FOOTER LINKS
=========================================*/

.psh-footer-box ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.psh-footer-box ul li{
    display:flex;
    align-items:flex-start;
}

.psh-footer-box ul li a{
    color:rgba(255,255,255,.75);
    font-size:15px;
    transition:var(--transition);
}

.psh-footer-box ul li a:hover{
    color:var(--secondary);
    padding-left:8px;
}

/*=========================================
SOCIAL
=========================================*/

.psh-footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.psh-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:var(--white);
    transition:var(--transition);
}

.psh-footer-social a i{
    font-size:18px;
}

.psh-footer-social a:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/*=========================================
CONTACT
=========================================*/

.psh-footer-contact{
    gap:22px !important;
}

.psh-footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.psh-footer-contact li i{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:16px;
}

.psh-footer-contact li span,
.psh-footer-contact li a{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.8;
    transition:var(--transition);
}

.psh-footer-contact li a:hover{
    color:var(--secondary);
    padding-left:0;
}

/*=========================================
BOTTOM
=========================================*/

.psh-footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    padding:22px 0;
}

.psh-footer-bottom-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.psh-footer-bottom p{
    color:rgba(255,255,255,.75);
    font-size:15px;
}

.psh-footer-policy{
    display:flex;
    align-items:center;
    gap:15px;
}

.psh-footer-policy span{
    color:rgba(255,255,255,.35);
}

.psh-footer-policy a{
    color:rgba(255,255,255,.75);
    font-size:15px;
    transition:var(--transition);
}

.psh-footer-policy a:hover{
    color:var(--secondary);
}
/*=========================================
FOOTER RESPONSIVE
=========================================*/

/*==========================
1200px
==========================*/

@media (max-width:1200px){

    .psh-footer-wrapper{
        grid-template-columns:repeat(4,1fr);
        gap:35px;
    }

    .psh-footer-box:first-child{
        grid-column:1/-1;
        max-width:700px;
    }

}

/*==========================
992px
==========================*/

@media (max-width:992px){

    .psh-footer-wrapper{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

        padding:70px 0 50px;

    }

    .psh-footer-logo img{

        width:160px;

    }

    .psh-footer-box h3{

        font-size:20px;

    }

    .psh-footer-box p{

        margin-bottom:25px;

    }

    .psh-footer-bottom-wrapper{

        flex-direction:column;

        justify-content:center;

        text-align:center;

        gap:15px;

    }

}

/*==========================
768px
==========================*/

@media (max-width:768px){

    .psh-footer{

        margin-top:60px;

    }

    .psh-footer-wrapper{

        grid-template-columns:1fr;

        gap:35px;

        padding:60px 0 45px;

    }

    .psh-footer-box{

        text-align:center;

    }

    .psh-footer-logo{

        display:flex;

        justify-content:center;

    }

    .psh-footer-box h3::after{

        left:50%;

        transform:translateX(-50%);

    }

    .psh-footer-box ul{

        align-items:center;

    }

    .psh-footer-box ul li{

        justify-content:center;

    }

    .psh-footer-contact li{

        justify-content:flex-start;

        text-align:left;

        max-width:420px;

        margin:auto;

    }

    .psh-footer-social{

        justify-content:center;

    }

    .psh-footer-policy{

        justify-content:center;

        flex-wrap:wrap;

    }

}

/*==========================
576px
==========================*/

@media (max-width:576px){

    .psh-footer-wrapper{

        padding:50px 0 40px;

        gap:30px;

    }

    .psh-footer-logo img{

        width:145px;

    }

    .psh-footer-box h3{

        font-size:19px;

    }

    .psh-footer-box p{

        font-size:14px;

    }

    .psh-footer-box ul li a{

        font-size:14px;

    }

    .psh-footer-contact li{

        gap:12px;

    }

    .psh-footer-contact li i{

        width:36px;

        height:36px;

        min-width:36px;

        font-size:15px;

    }

    .psh-footer-contact li span,

    .psh-footer-contact li a{

        font-size:14px;

    }

    .psh-footer-social a{

        width:40px;

        height:40px;

    }

}

/*==========================
480px
==========================*/

@media (max-width:480px){

    .psh-footer-wrapper{

        padding:45px 0 35px;

    }

    .psh-footer-logo img{

        width:130px;

    }

    .psh-footer-box h3{

        font-size:18px;

    }

    .psh-footer-box p{

        line-height:1.8;

    }

    .psh-footer-social{

        gap:10px;

    }

    .psh-footer-social a{

        width:38px;

        height:38px;

    }

    .psh-footer-social a i{

        font-size:16px;

    }

    .psh-footer-bottom{

        padding:18px 0;

    }

    .psh-footer-bottom p,

    .psh-footer-policy a{

        font-size:14px;

    }

}

/*==========================
375px
==========================*/

@media (max-width:375px){

    .psh-footer-wrapper{

        gap:28px;

    }

    .psh-footer-logo img{

        width:120px;

    }

    .psh-footer-box h3{

        font-size:17px;

    }

    .psh-footer-box p{

        font-size:13px;

    }

    .psh-footer-box ul li a{

        font-size:13px;

    }

    .psh-footer-contact li{

        gap:10px;

    }

    .psh-footer-contact li i{

        width:34px;

        height:34px;

        min-width:34px;

        font-size:14px;

    }

    .psh-footer-contact li span,

    .psh-footer-contact li a{

        font-size:13px;

    }

    .psh-footer-social a{

        width:36px;

        height:36px;

    }

    .psh-footer-bottom p{

        line-height:1.7;

    }

    .psh-footer-policy{

        gap:8px;

    }

}
/*=====================================
HERO SECTION
======================================*/

.psh-hero{
    position:relative;
    background:
    linear-gradient(rgba(255,255,255,.72),
    rgba(255,255,255,.22)),
    url("./assests/img/hero-bg-img.png")
    center center/cover no-repeat;
    padding:20px 0 0;
    overflow:hidden;
}

.psh-hero-wrapper{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    align-items:start;
    gap:70px;
    min-height:620px;
}

/*=====================================
LEFT CONTENT
======================================*/

.psh-hero-content{
    max-width:700px;
    padding-top: 100px;
}

.psh-hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:rgba(10,77,163,.08);
    border-left:4px solid var(--secondary);
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    border-radius:6px;
    margin-bottom:25px;
}

.psh-hero-tag i{
    font-size:18px;
    color:var(--secondary);
}

.psh-hero-content h1{
    font-family:var(--heading-font);
    font-size:35px;
    line-height:1.15;
    font-weight:700;
    color:var(--heading);
    margin-bottom:25px;
}

.psh-hero-content h1 span{
    display:block;
    color:var(--primary);
}

.psh-hero-content p{
    max-width:600px;
    font-size:16px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:40px;
}

/*=====================================
BUTTONS
======================================*/

.psh-hero-btns{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.psh-primary-btn,
.psh-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    font-size:15px;
    font-weight:600;
    border-radius:6px;
    transition:var(--transition);
    text-transform:uppercase;
    letter-spacing:.3px;
}

.psh-primary-btn{
    background:var(--secondary);
    color:var(--white);
}

.psh-primary-btn:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

.psh-outline-btn{
    border:2px solid var(--primary);
    color:var(--primary);
    background:var(--white);
}

.psh-outline-btn:hover{
    background:var(--primary);
    color:var(--white);
    transform:translateY(-4px);
}

/*=====================================
QUOTE FORM
======================================*/

.psh-hero-form{
    background:var(--white);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.psh-form-title{
    background:var(--primary);
    color:var(--white);
    text-align:center;
    padding:22px;
    font-size:22px;
    font-weight:700;
    font-family:var(--heading-font);
    text-transform:uppercase;
    letter-spacing:.5px;
}

.psh-hero-form form{
    padding:30px;
}

/*=====================================
INPUTS
======================================*/

.psh-form-group{
    position:relative;
    margin-bottom:10px;
}

.psh-form-group i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:var(--primary);
    font-size:16px;
}

.psh-form-group input,
.psh-form-group select,
.psh-form-group textarea{
    width:100%;
    padding:15px 18px 15px 48px;
    border:1px solid var(--border);
    outline:none;
    font-size:12px;
    color:var(--heading);
    border-radius:6px;
    background:#fff;
    transition:var(--transition);
    font-family:var(--body-font);
}

.psh-form-group textarea{
    resize:none;
    padding:18px;
    min-height:80px;
}

.psh-form-group.textarea i{
    display:none;
}

.psh-form-group input:focus,
.psh-form-group select:focus,
.psh-form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(10,77,163,.12);
}

/*=====================================
SUBMIT BUTTON
======================================*/

.psh-submit-btn{
    width:100%;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:17px;
    border-radius:6px;
    background:var(--secondary);
    color:var(--white);
    font-size:16px;
    font-weight:600;
    transition:var(--transition);
    margin-top:10px;
}

.psh-submit-btn:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.psh-hero-form small{
    display:block;
    text-align:center;
    margin-top:16px;
    color:var(--text);
    font-size:13px;
    line-height:1.7;
}
/*=====================================
HERO STATS BAR
======================================*/

.psh-hero-stats{
    position:relative;
    margin-top:60px;
    background:var(--footer);
    border-radius:18px 18px 0 0;
    overflow:hidden;
}

.psh-stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.psh-stat-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px 35px;
    border-right:1px solid rgba(255,255,255,.08);
    transition:var(--transition);
}

.psh-stat-box:last-child{
    border-right:none;
}

.psh-stat-box:hover{
    background:rgba(255,255,255,.04);
}

/*=====================================
STAT ICON
======================================*/

.psh-stat-box i{
    width:50px;
    height:50px;
    min-width:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:var(--secondary);
    font-size:25px;
    transition:var(--transition);
}

.psh-stat-box:hover i{
    background:var(--secondary);
    color:var(--white);
    transform:rotate(8deg) scale(1.08);
}

/*=====================================
STAT CONTENT
======================================*/

.psh-stat-box h3{
    font-family:var(--heading-font);
    font-size:24px;
    font-weight:700;
    color:var(--white);
    line-height:1;
    margin-bottom:8px;
}

.psh-stat-box p{
    color:rgba(255,255,255,.75);
    font-size:13px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.5px;
    line-height:1.5;
}

/*=====================================
HERO ANIMATIONS
======================================*/

.psh-hero-content{
    animation:heroLeft .8s ease;
}

.psh-hero-form{
    animation:heroRight .8s ease;
}

@keyframes heroLeft{

    from{

        opacity:0;
        transform:translateX(-50px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes heroRight{

    from{

        opacity:0;
        transform:translateX(50px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

/*=====================================
BUTTON ICON
======================================*/

.psh-primary-btn i,
.psh-outline-btn i,
.psh-submit-btn i{
    transition:var(--transition);
}

.psh-primary-btn:hover i,
.psh-outline-btn:hover i,
.psh-submit-btn:hover i{
    transform:translateX(5px);
}

/*=====================================
INPUT PLACEHOLDER
======================================*/

.psh-form-group input::placeholder,
.psh-form-group textarea::placeholder{
    color:#8b9098;
}

.psh-form-group select{
    cursor:pointer;
}

/*=====================================
INPUT HOVER
======================================*/

.psh-form-group input:hover,
.psh-form-group textarea:hover,
.psh-form-group select:hover{
    border-color:var(--primary);
}

/*=====================================
SECTION SPACING
======================================*/
/* 
.psh-hero + section{
    margin-top:90px;
} */

/*=====================================
OPTIONAL GLASS EFFECT
======================================*/

.psh-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,0)
    );
    pointer-events:none;
}
/*=====================================
HERO RESPONSIVE
======================================*/

/*==========================
1200px
==========================*/

@media (max-width:1200px){

    .psh-hero-wrapper{
        gap:50px;
        grid-template-columns:1fr .75fr;
    }

    .psh-hero-content h1{
        font-size:48px;
    }

    .psh-hero-content p{
        font-size:17px;
    }

    .psh-stat-box{
        padding:25px 20px;
    }

    .psh-stat-box h3{
        font-size:28px;
    }

}


/*==========================
992px
==========================*/

@media (max-width:992px){

    .psh-hero{
        padding:70px 0 0;
    }

    .psh-hero-wrapper{

        grid-template-columns:1fr;

        gap:45px;

        min-height:auto;

    }

    .psh-hero-content{

        text-align:center;

        max-width:100%;

    }

    .psh-hero-content p{

        margin:auto auto 35px;

    }

    .psh-hero-btns{

        justify-content:center;

    }

    .psh-hero-form{

        max-width:650px;

        width:100%;

        margin:auto;

    }

    .psh-stats-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

    .psh-stat-box{

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

}


/*==========================
768px
==========================*/

@media (max-width:768px){

    .psh-hero{

        padding:60px 0 0;

    }
    .psh-hero-content{
    
    padding-top: 10px;
}

    .psh-hero-content h1{

        font-size:38px;

    }

    .psh-hero-content p{

        font-size:16px;

        line-height:1.8;

    }

    .psh-hero-btns{

        flex-direction:column;

        width:100%;

    }

    .psh-primary-btn,

    .psh-outline-btn{

        width:100%;

        justify-content:center;

    }

    .psh-hero-form form{

        padding:25px;

    }

    .psh-form-title{

        font-size:20px;

        padding:18px;

    }

    .psh-stats-wrapper{

        grid-template-columns:1fr;

    }

    .psh-stat-box{

        border-bottom:1px solid rgba(255,255,255,.08);

    }

}


/*==========================
576px
==========================*/

@media (max-width:576px){

    .psh-hero{

        padding:50px 0 0;

    }

    .psh-hero-tag{

        font-size:13px;

        padding:8px 15px;

    }

    .psh-hero-content h1{

        font-size:32px;

        line-height:1.25;

    }

    .psh-hero-content p{

        font-size:15px;

    }

    .psh-primary-btn,

    .psh-outline-btn{

        font-size:14px;

        padding:14px 20px;

    }

    .psh-form-group input,

    .psh-form-group select,

    .psh-form-group textarea{

        font-size:14px;

    }

    .psh-submit-btn{

        font-size:15px;

        padding:15px;

    }

    .psh-stat-box{

        padding:22px 18px;

    }

    .psh-stat-box i{

        width:55px;

        height:55px;

        min-width:55px;

        font-size:24px;

    }

    .psh-stat-box h3{

        font-size:24px;

    }

    .psh-stat-box p{

        font-size:13px;

    }

}


/*==========================
480px
==========================*/

@media (max-width:480px){

    .psh-hero-content h1{

        font-size:28px;

    }

    .psh-hero-content p{

        font-size:14px;

    }

    .psh-hero-form{

        border-radius:10px;

    }

    .psh-form-title{

        font-size:18px;

    }

    .psh-hero-form form{

        padding:20px;

    }

    .psh-form-group{

        margin-bottom:15px;

    }

    .psh-form-group input,

    .psh-form-group select{

        padding:14px 15px 14px 45px;

    }

}


/*==========================
375px
==========================*/

@media (max-width:375px){

    .psh-hero{

        padding:40px 0 0;

    }

    .psh-hero-tag{

        font-size:12px;

    }

    .psh-hero-content h1{

        font-size:25px;

    }

    .psh-hero-content p{

        font-size:13px;

        line-height:1.7;

    }

    .psh-primary-btn,

    .psh-outline-btn{

        font-size:13px;

        padding:13px 18px;

    }

    .psh-form-title{

        font-size:17px;

    }

    .psh-form-group input,

    .psh-form-group select,

    .psh-form-group textarea{

        font-size:13px;

    }

    .psh-submit-btn{

        font-size:14px;

    }

    .psh-stat-box{

        gap:15px;

        padding:18px 15px;

    }

    .psh-stat-box i{

        width:48px;

        height:48px;

        min-width:48px;

        font-size:20px;

    }

    .psh-stat-box h3{

        font-size:22px;

    }

    .psh-stat-box p{

        font-size:12px;

    }

}
/*=====================================
ABOUT SECTION
======================================*/

.psh-about-section{
    padding:70px 0;
    background:var(--white);
    position:relative;
    overflow:hidden;
}

.psh-about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

/*=====================================
ABOUT IMAGE
======================================*/

.psh-about-image{
    position:relative;
}

.psh-about-image img{
    width:100%;
    max-width:620px;
    display:block;
    margin:auto;
    transition:var(--transition);
}

.psh-about-image:hover img{
    transform:scale(1.03);
}

/*=====================================
ABOUT CONTENT
======================================*/

.psh-about-content{
    max-width:620px;
}

.psh-about-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:rgba(12,59,145,.08);
    color:var(--primary);
    border-left:4px solid var(--secondary);
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
}

.psh-about-tag i{
    color:var(--secondary);
    font-size:18px;
}

.psh-about-content h2{
    font-family:var(--heading-font);
    font-size:30px;
    font-weight:700;
    color:var(--heading);
    line-height:1.25;
    margin-bottom:15px;
}

.psh-about-content h2 span{
    color:var(--primary);
}

.psh-about-content p{
    font-size:16px;
    color:var(--text);
    line-height:1.9;
    margin-bottom:15px;
}

/*=====================================
FEATURES
======================================*/

.psh-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 30px;
    margin-bottom:40px;
}

.psh-feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.psh-feature-item i{
    color:var(--primary);
    font-size:20px;
    margin-top:2px;
}

.psh-feature-item span{
    color:var(--heading);
    font-size:16px;
    font-weight:500;
    line-height:1.7;
}

/*=====================================
BUTTON
======================================*/

.psh-about-btn{
    margin-top:10px;
}

.psh-about-btn .psh-primary-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 34px;
    border-radius:6px;
    background:var(--primary);
    color:var(--white);
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    transition:var(--transition);
}

.psh-about-btn .psh-primary-btn:hover{
    background:var(--secondary);
    transform:translateY(-4px);
}

.psh-about-btn .psh-primary-btn i{
    transition:var(--transition);
}

.psh-about-btn .psh-primary-btn:hover i{
    transform:translateX(6px);
}

/*=====================================
DECORATION
======================================*/

.psh-about-section::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(12,59,145,.03);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.psh-about-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,107,0,.04);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}
/*=====================================
ABOUT SECTION RESPONSIVE
======================================*/

/*==========================
1200px
==========================*/

@media (max-width:1200px){

    .psh-about-wrapper{
        gap:50px;
    }

    .psh-about-content h2{
        font-size:40px;
    }

    .psh-about-image img{
        max-width:550px;
    }

}

/*==========================
992px
==========================*/

@media (max-width:992px){

    .psh-about-section{
        padding:80px 0;
    }

    .psh-about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .psh-about-image{
        order:1;
        text-align:center;
    }

    .psh-about-content{
        order:2;
        max-width:100%;
        text-align:center;
    }

    .psh-about-tag{
        margin:auto auto 25px;
    }

    .psh-about-content p{
        max-width:700px;
        margin:0 auto 35px;
    }

    .psh-about-features{
        max-width:700px;
        margin:0 auto 40px;
    }

    .psh-about-btn{
        text-align:center;
    }

}

/*==========================
768px
==========================*/

@media (max-width:768px){

    .psh-about-section{
        padding:70px 0;
    }

    .psh-about-content h2{
        font-size:34px;
    }

    .psh-about-content p{
        font-size:16px;
        line-height:1.8;
    }

    .psh-about-features{
        grid-template-columns:1fr;
        gap:18px;
        text-align:left;
    }

    .psh-feature-item{
        justify-content:flex-start;
    }

    .psh-about-image img{
        max-width:470px;
    }

    .psh-about-btn .psh-primary-btn{
        width:100%;
        justify-content:center;
    }

}

/*==========================
576px
==========================*/

@media (max-width:576px){

    .psh-about-section{
        padding:60px 0;
    }

    .psh-about-tag{
        font-size:13px;
        padding:8px 15px;
    }

    .psh-about-tag i{
        font-size:16px;
    }

    .psh-about-content h2{
        font-size:30px;
    }

    .psh-about-content p{
        font-size:15px;
    }

    .psh-feature-item span{
        font-size:15px;
    }

    .psh-about-image img{
        max-width:100%;
    }

}

/*==========================
480px
==========================*/

@media (max-width:480px){

    .psh-about-section{
        padding:50px 0;
    }

    .psh-about-content h2{
        font-size:27px;
        line-height:1.35;
    }

    .psh-about-content p{
        font-size:14px;
    }

    .psh-feature-item{
        gap:10px;
    }

    .psh-feature-item i{
        font-size:18px;
    }

    .psh-feature-item span{
        font-size:14px;
    }

    .psh-about-btn .psh-primary-btn{
        padding:14px 20px;
        font-size:14px;
    }

}

/*==========================
375px
==========================*/

@media (max-width:375px){

    .psh-about-section{
        padding:45px 0;
    }

    .psh-about-content h2{
        font-size:24px;
    }

    .psh-about-content p{
        font-size:13px;
        line-height:1.7;
    }

    .psh-about-tag{
        font-size:12px;
    }

    .psh-about-tag i{
        font-size:15px;
    }

    .psh-feature-item span{
        font-size:13px;
    }

    .psh-feature-item i{
        font-size:17px;
    }

    .psh-about-btn .psh-primary-btn{
        font-size:13px;
        padding:13px 18px;
    }

}
/*=====================================
PRODUCT SECTION
======================================*/

.psh-products-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/*=====================================
SECTION HEADING
======================================*/

.psh-section-heading{
    text-align:center;
    margin-bottom:60px;
}

.psh-section-heading span{
    display:inline-block;
    color:var(--primary);
    font-size:16px;
    font-weight:600;
    /* text-transform:uppercase; */
    letter-spacing:1px;
    margin-bottom:12px;
}

.psh-section-heading h2{
    font-family:var(--heading-font);
    font-size:30px;
    color:var(--heading);
    font-weight:700;
    line-height:1.2;
}

.psh-section-heading h2 span{
    color:var(--primary);
    font-size:30px;
    font-weight:inherit;
}

/*=====================================
SWIPER
======================================*/

.psh-product-slider{
    position:relative;
    padding-bottom:70px;
}

.psh-product-slider .swiper-slide{
    height:auto;
}

/*=====================================
PRODUCT CARD
======================================*/

.psh-product-card{
    background:var(--white);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:var(--transition);
    height:100%;
    cursor:pointer;
}

.psh-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/*=====================================
IMAGE
======================================*/

.psh-product-image{
    position:relative;
    overflow:hidden;
}

.psh-product-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.psh-product-card:hover .psh-product-image img{
    transform:scale(1.08);
}

/*=====================================
BOTTOM STRIP
======================================*/

.psh-product-bottom{
    background:var(--primary);
    padding:22px 20px 20px 70px;
    position:relative;
    min-height:90px;
    display:flex;
    align-items:center;
}

.psh-product-bottom h3{
    color:var(--white);
    font-size:18px;
    font-family:var(--heading-font);
    font-weight:600;
    line-height:1.4;
    transition:var(--transition);
}

/*=====================================
FLOATING ICON
======================================*/

.psh-product-icon{
    position:absolute;
    left:18px;
    top:-22px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:var(--transition);
}

.psh-product-icon i{
    font-size:22px;
    color:var(--primary);
    transition:var(--transition);
}

.psh-product-card:hover .psh-product-icon{
    background:var(--secondary);
    transform:rotate(10deg) scale(1.08);
}

.psh-product-card:hover .psh-product-icon i{
    color:var(--white);
}

/*=====================================
OPTIONAL OVERLAY
======================================*/

.psh-product-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.15),
        transparent
    );
    opacity:0;
    transition:var(--transition);
}

.psh-product-card:hover .psh-product-image::before{
    opacity:1;
}
/*=====================================
SWIPER NAVIGATION
======================================*/

.psh-product-prev,
.psh-product-next{
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    z-index:10;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:var(--transition);
}

.psh-product-prev{
    left:-25px;
}

.psh-product-next{
    right:-25px;
}

.psh-product-prev i,
.psh-product-next i{
    font-size:20px;
    color:var(--primary);
    transition:var(--transition);
}

.psh-product-prev:hover,
.psh-product-next:hover{
    background:var(--primary);
    transform:translateY(-50%) scale(1.08);
}

.psh-product-prev:hover i,
.psh-product-next:hover i{
    color:var(--white);
}

/*=====================================
PAGINATION
======================================*/

.psh-product-slider .swiper-pagination{
    bottom:0 !important;
}

.psh-product-slider .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#d1d5db;
    opacity:1;
    transition:var(--transition);
    margin:0 6px !important;
}

.psh-product-slider .swiper-pagination-bullet-active{
    width:35px;
    border-radius:30px;
    background:var(--secondary);
}

/*=====================================
CARD TITLE HOVER
======================================*/

.psh-product-card:hover h3{
    color:#fff;
}

/*=====================================
IMAGE SHINE EFFECT
======================================*/

.psh-product-image::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform:skewX(-25deg);
}

.psh-product-card:hover .psh-product-image::after{
    left:150%;
    transition:.9s;
}

/*=====================================
DECORATIVE BACKGROUND
======================================*/

.psh-products-section::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(12,59,145,.04);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.psh-products-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,107,0,.05);
    border-radius:50%;
    left:-100px;
    bottom:-100px;
}

/*=====================================
SWIPER FIX
======================================*/

.psh-product-slider{
    overflow:hidden;
}

.psh-product-slider .swiper-wrapper{
    align-items:stretch;
}

.psh-product-slider .swiper-slide{
    display:flex;
    height:auto;
}

.psh-product-card{
    width:100%;
}

/*=====================================
FOCUS ACCESSIBILITY
======================================*/

.psh-product-prev:focus,
.psh-product-next:focus{
    outline:2px solid var(--secondary);
    outline-offset:4px;
}

/*=====================================
SMOOTH TRANSITIONS
======================================*/

.psh-product-card,
.psh-product-image img,
.psh-product-icon,
.psh-product-bottom,
.psh-product-prev,
.psh-product-next{
    transition:all .35s ease;
}
/*=====================================
PRODUCT SECTION RESPONSIVE
======================================*/

/*==========================
1200px
==========================*/

@media (max-width:1200px){

    .psh-products-section{
        padding:90px 0;
    }

    .psh-section-heading h2{
        font-size:38px;
    }

    .psh-product-image img{
        height:220px;
    }

    .psh-product-prev{
        left:0;
    }

    .psh-product-next{
        right:0;
    }

}

/*==========================
992px
==========================*/

@media (max-width:992px){

    .psh-products-section{
        padding:80px 0;
    }

    .psh-section-heading{
        margin-bottom:45px;
    }

    .psh-section-heading h2{
        font-size:34px;
    }

    .psh-product-bottom{
        padding:20px 18px 20px 65px;
    }

    .psh-product-bottom h3{
        font-size:17px;
    }

    .psh-product-icon{
        width:46px;
        height:46px;
        top:-20px;
    }

    .psh-product-icon i{
        font-size:20px;
    }

}

/*==========================
768px
==========================*/

@media (max-width:768px){

    .psh-products-section{
        padding:70px 0;
    }

    .psh-section-heading h2{
        font-size:30px;
    }

    .psh-section-heading span{
        font-size:14px;
    }

    .psh-product-image img{
        height:240px;
    }

    .psh-product-bottom{
        min-height:80px;
        padding:18px 18px 18px 60px;
    }

    .psh-product-bottom h3{
        font-size:16px;
    }

    .psh-product-prev,
    .psh-product-next{
        width:45px;
        height:45px;
    }

    .psh-product-prev i,
    .psh-product-next i{
        font-size:18px;
    }

}

/*==========================
576px
==========================*/

@media (max-width:576px){

    .psh-products-section{
        padding:60px 0;
    }

    .psh-section-heading{
        margin-bottom:35px;
    }

    .psh-section-heading h2{
        font-size:27px;
    }

    .psh-product-image img{
        height:220px;
    }

    .psh-product-bottom{
        padding:18px 18px 18px 58px;
    }

    .psh-product-bottom h3{
        font-size:15px;
        line-height:1.5;
    }

    .psh-product-icon{
        width:44px;
        height:44px;
        left:15px;
    }

    .psh-product-icon i{
        font-size:18px;
    }

    /* Hide arrows on mobile */

    .psh-product-prev,
    .psh-product-next{
        display:none;
    }

}

/*==========================
480px
==========================*/

@media (max-width:480px){

    .psh-products-section{
        padding:50px 0;
    }

    .psh-section-heading h2{
        font-size:24px;
    }

    .psh-section-heading span{
        font-size:13px;
    }

    .psh-product-card{
        border-radius:12px;
    }

    .psh-product-image img{
        height:200px;
    }

    .psh-product-bottom{
        padding:16px 16px 16px 55px;
    }

    .psh-product-bottom h3{
        font-size:14px;
    }

    .psh-product-icon{
        width:40px;
        height:40px;
    }

    .psh-product-icon i{
        font-size:17px;
    }

}

/*==========================
375px
==========================*/

@media (max-width:375px){

    .psh-products-section{
        padding:45px 0;
    }

    .psh-section-heading h2{
        font-size:22px;
    }

    .psh-product-image img{
        height:185px;
    }

    .psh-product-bottom{
        padding:15px 15px 15px 52px;
        min-height:75px;
    }

    .psh-product-bottom h3{
        font-size:13px;
    }

    .psh-product-icon{
        width:38px;
        height:38px;
        top:-18px;
    }

    .psh-product-icon i{
        font-size:16px;
    }

    .psh-product-slider{
        padding-bottom:55px;
    }

    .psh-product-slider .swiper-pagination-bullet{
        width:10px;
        height:10px;
    }

    .psh-product-slider .swiper-pagination-bullet-active{
        width:28px;
    }

}
/*=====================================
WHY CHOOSE US SECTION
======================================*/

.psh-why-section{
    position:relative;
    padding:50px 0;
    background:#081b36;
    overflow:hidden;
}

.psh-why-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(8,27,54,.88),
        rgba(8,27,54,.88)
    );
}

.psh-why-section .psh-container{
    position:relative;
    z-index:2;
}

/*=====================================
LAYOUT
======================================*/

.psh-why-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*=====================================
IMAGE
======================================*/

.psh-why-image{
    position:relative;
}

.psh-why-image img{
    width:100%;
    max-width:620px;
    display:block;
    margin:auto;
    transition:.5s ease;
}

.psh-why-image:hover img{
    transform:scale(1.04);
}

/*=====================================
CONTENT
======================================*/

.psh-why-content{
    color:var(--white);
}

.psh-why-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    color:var(--secondary);
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.psh-why-tag i{
    font-size:18px;
}

.psh-why-content h2{
    font-family:var(--heading-font);
    font-size:30px;
    line-height:1.25;
    color:var(--white);
    margin-bottom:35px;
}

.psh-why-content h2 span{
    color:#2d8cff;
}

/*=====================================
FEATURE GRID
======================================*/

.psh-why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px 40px;
}

/*=====================================
FEATURE ITEM
======================================*/

.psh-why-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    transition:.35s ease;
}

.psh-why-item i{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:.35s ease;
}

.psh-why-item span{
    color:rgba(255,255,255,.92);
    font-size:16px;
    line-height:1.6;
    font-weight:500;
}

.psh-why-item:hover{
    transform:translateX(8px);
}

.psh-why-item:hover i{
    transform:rotate(360deg);
    background:var(--primary);
}

/*=====================================
BUTTON
======================================*/

.psh-why-btn{
    margin-top:45px;
}

.psh-why-btn .psh-primary-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:var(--secondary);
    color:var(--white);
    padding:16px 34px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    transition:.35s ease;
}

.psh-why-btn .psh-primary-btn:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

.psh-why-btn .psh-primary-btn i{
    transition:.35s ease;
}

.psh-why-btn .psh-primary-btn:hover i{
    transform:translateX(6px);
}

/*=====================================
DECORATION
======================================*/

.psh-why-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    top:-120px;
    right:-120px;
}
/*=====================================
WHY CHOOSE US RESPONSIVE
======================================*/

/*==========================
1200px
==========================*/

@media (max-width:1200px){

    .psh-why-wrapper{
        gap:50px;
    }

    .psh-why-content h2{
        font-size:38px;
    }

    .psh-why-image img{
        max-width:540px;
    }

    .psh-why-features{
        gap:20px 25px;
    }

}

/*==========================
992px
==========================*/

@media (max-width:992px){

    .psh-why-section{
        padding:80px 0;
    }

    .psh-why-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .psh-why-image{
        text-align:center;
        order:1;
    }

    .psh-why-content{
        order:2;
        text-align:center;
    }

    .psh-why-tag{
        justify-content:center;
    }

    .psh-why-features{
        max-width:700px;
        margin:auto;
    }

    .psh-why-btn{
        text-align:center;
    }

}

/*==========================
768px
==========================*/

@media (max-width:768px){

    .psh-why-section{
        padding:70px 0;
    }

    .psh-why-content h2{
        font-size:32px;
    }

    .psh-why-features{
        grid-template-columns:1fr;
        gap:18px;
        text-align:left;
    }

    .psh-why-item{
        justify-content:flex-start;
    }

    .psh-why-image img{
        max-width:460px;
    }

    .psh-why-btn .psh-primary-btn{
        width:100%;
        justify-content:center;
    }

}

/*==========================
576px
==========================*/

@media (max-width:576px){

    .psh-why-section{
        padding:60px 0;
    }

    .psh-why-tag{
        font-size:13px;
    }

    .psh-why-content h2{
        font-size:28px;
        line-height:1.35;
    }

    .psh-why-item span{
        font-size:15px;
    }

    .psh-why-item i{
        width:30px;
        height:30px;
        min-width:30px;
        font-size:14px;
    }

}

/*==========================
480px
==========================*/

@media (max-width:480px){

    .psh-why-section{
        padding:50px 0;
    }

    .psh-why-content h2{
        font-size:25px;
    }

    .psh-why-image img{
        max-width:100%;
    }

    .psh-why-item{
        gap:10px;
    }

    .psh-why-item span{
        font-size:14px;
        line-height:1.6;
    }

    .psh-why-btn .psh-primary-btn{
        padding:15px 22px;
        font-size:14px;
    }

}

/*==========================
375px
==========================*/

@media (max-width:375px){

    .psh-why-section{
        padding:45px 0;
    }

    .psh-why-content h2{
        font-size:22px;
    }

    .psh-why-tag{
        font-size:12px;
    }

    .psh-why-item span{
        font-size:13px;
    }

    .psh-why-item i{
        width:28px;
        height:28px;
        min-width:28px;
        font-size:13px;
    }

    .psh-why-btn .psh-primary-btn{
        font-size:13px;
        padding:14px 18px;
    }

}

/*=====================================
PROCESS SECTION
======================================*/

.psh-process-section{
    padding:50px 0;
    background:var(--white);
    overflow:hidden;
    position:relative;
}

.psh-process-heading{
    text-align:center;
    margin-bottom:70px;
}

.psh-process-heading span{
    display:inline-block;
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.psh-process-heading h2{
    font-size:30px;
    font-family:var(--heading-font);
    color:var(--heading);
    font-weight:700;
}

/*=====================================
PROCESS WRAPPER
======================================*/

.psh-process-wrapper{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:12px;

}

/*=====================================
PROCESS CARD
======================================*/

.psh-process-card{

    flex:1;

    text-align:center;

    position:relative;

    transition:.35s ease;

}

.psh-process-card:hover{

    transform:translateY(-8px);

}

/*=====================================
ICON
======================================*/

.psh-process-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:auto;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(12,59,145,.18);

}

.psh-process-icon i{

    font-size:30px;

    color:var(--white);

    transition:.35s ease;

}

.psh-process-card:hover .psh-process-icon{

    background:var(--secondary);

    transform:scale(1.08);

}

.psh-process-card:hover .psh-process-icon i{

    transform:rotate(15deg);

}

/*=====================================
NUMBER
======================================*/

.psh-process-number{

    display:block;

    margin:18px 0 10px;

    font-size:20px;

    font-weight:700;

    color:var(--primary);

    font-family:var(--heading-font);

}

/*=====================================
TITLE
======================================*/

.psh-process-card h3{

    font-size:18px;

    color:var(--heading);

    line-height:1.6;

    font-weight:600;

    max-width:180px;

    margin:auto;

}

/*=====================================
ARROW
======================================*/

.psh-process-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--secondary);

    font-size:28px;

    margin-top:28px;

    animation:pshArrowMove 1.5s infinite;

}

@keyframes pshArrowMove{

    0%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(8px);

    }

    100%{

        transform:translateX(0);

    }

}

/*=====================================
HOVER TITLE
======================================*/

.psh-process-card:hover h3{

    color:var(--primary);

}

/*=====================================
DECORATION
======================================*/

.psh-process-section::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(12,59,145,.04);

    top:-100px;

    left:-100px;

}

.psh-process-section::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,107,0,.05);

    bottom:-80px;

    right:-80px;

}

/*=====================================
SMOOTH
======================================*/

.psh-process-card,
.psh-process-icon,
.psh-process-icon i,
.psh-process-card h3{

    transition:.35s ease;

}
/*=====================================
PROCESS SECTION RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-process-section{

        padding:80px 0;

    }

    .psh-process-heading{

        margin-bottom:50px;

    }

    .psh-process-heading h2{

        font-size:34px;

        line-height:1.3;

    }

    .psh-process-wrapper{

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:35px 20px;

    }

    .psh-process-arrow{

        display:none;

    }

    .psh-process-card{

        background:#fff;

        border-radius:12px;

        padding:25px 18px;

        box-shadow:0 10px 30px rgba(0,0,0,.08);

    }

    .psh-process-icon{

        width:80px;

        height:80px;

    }

    .psh-process-icon i{

        font-size:34px;

    }

    .psh-process-number{

        font-size:26px;

    }

    .psh-process-card h3{

        font-size:17px;

        max-width:100%;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-process-section{

        padding:60px 0;

    }

    .psh-process-heading{

        margin-bottom:40px;

    }

    .psh-process-heading span{

        font-size:13px;

    }

    .psh-process-heading h2{

        font-size:28px;

        line-height:1.4;

    }

    .psh-process-wrapper{

        display:flex;

        flex-direction:column;

        gap:0;

    }

    .psh-process-card{

        position:relative;

        display:flex;

        align-items:center;

        gap:18px;

        text-align:left;

        padding:22px;

        background:#fff;

        border-radius:12px;

        box-shadow:0 10px 25px rgba(0,0,0,.08);

        margin-bottom:45px;

    }

    .psh-process-card:last-child{

        margin-bottom:0;

    }

    .psh-process-icon{

        width:65px;

        height:65px;

        min-width:65px;

    }

    .psh-process-icon i{

        font-size:28px;

    }

    .psh-process-number{

        position:absolute;

        top:12px;

        right:18px;

        margin:0;

        font-size:18px;

    }

    .psh-process-card h3{

        font-size:16px;

        max-width:220px;

        margin:0;

    }

    .psh-process-arrow{

        display:flex;

        justify-content:center;

        align-items:center;

        margin:-20px auto 22px;

        font-size:26px;

        color:var(--secondary);

        transform:rotate(90deg);

        animation:pshProcessDown 1.2s infinite;

    }

    .psh-process-arrow:last-child{

        display:none;

    }

}


/*=====================================
DOWN ARROW
======================================*/

@keyframes pshProcessDown{

    0%{

        transform:rotate(90deg) translateX(0);

    }

    50%{

        transform:rotate(90deg) translateX(8px);

    }

    100%{

        transform:rotate(90deg) translateX(0);

    }

}
/*=====================================
TESTIMONIAL SECTION
======================================*/

.psh-testimonial-section{
    padding:50px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.psh-testimonial-heading{
    text-align:center;
    margin-bottom:60px;
}

.psh-testimonial-heading span{
    display:inline-block;
    color:var(--primary);
    font-size:30px;
    font-weight:600;
    /* text-transform:uppercase; */
    letter-spacing:1px;
    margin-bottom:12px;
}

.psh-testimonial-heading h2{
    font-family:var(--heading-font);
    font-size:42px;
    font-weight:700;
    color:var(--heading);
    line-height:1.2;
}

.psh-testimonial-heading h2 span{
    color:var(--primary);
}

/*=====================================
SWIPER
======================================*/

.psh-testimonial-slider{
    position:relative;
    padding-bottom:70px;
}

.psh-testimonial-slider .swiper-slide{
    height:auto;
}

/*=====================================
CARD
======================================*/

.psh-testimonial-card{

    background:var(--white);

    border-radius:18px;

    padding:30px;

    height:100%;

    border:1px solid rgba(12,59,145,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;

}

.psh-testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=====================================
QUOTE
======================================*/

.psh-testimonial-quote{

    margin-bottom:18px;

}

.psh-testimonial-quote i{

    font-size:42px;

    color:var(--primary);

}

/*=====================================
STARS
======================================*/

.psh-testimonial-stars{

    display:flex;

    align-items:center;

    gap:5px;

    margin-bottom:22px;

}

.psh-testimonial-stars i{

    color:#ffc107;

    font-size:18px;

}

/*=====================================
TEXT
======================================*/

.psh-testimonial-card p{

    font-size:16px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:28px;

    min-height:145px;

}

/*=====================================
USER
======================================*/

.psh-testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

    border-top:1px solid rgba(0,0,0,.08);

    padding-top:20px;

}

.psh-testimonial-user img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary);

}

.psh-testimonial-user h4{

    font-size:18px;

    color:var(--heading);

    font-weight:600;

    margin-bottom:4px;

}

.psh-testimonial-user span{

    font-size:15px;

    color:var(--primary);

    font-weight:500;

}

/*=====================================
CARD HOVER
======================================*/

.psh-testimonial-card:hover .psh-testimonial-user img{

    transform:scale(1.08);

}

.psh-testimonial-user img{

    transition:.35s ease;

}

/*=====================================
SECTION DECORATION
======================================*/

.psh-testimonial-section::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(12,59,145,.04);

    top:-120px;

    left:-120px;

}

.psh-testimonial-section::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,107,0,.05);

    bottom:-100px;

    right:-100px;

}
/*=====================================
TESTIMONIAL NAVIGATION
======================================*/

.psh-testimonial-prev,
.psh-testimonial-next{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--white);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:10;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.35s ease;

}

.psh-testimonial-prev{

    left:-26px;

}

.psh-testimonial-next{

    right:-26px;

}

.psh-testimonial-prev i,
.psh-testimonial-next i{

    font-size:20px;

    color:var(--primary);

    transition:.35s ease;

}

.psh-testimonial-prev:hover,
.psh-testimonial-next:hover{

    background:var(--primary);

    transform:translateY(-50%) scale(1.08);

}

.psh-testimonial-prev:hover i,
.psh-testimonial-next:hover i{

    color:var(--white);

}

/*=====================================
PAGINATION
======================================*/

.psh-testimonial-slider .swiper-pagination{

    bottom:0 !important;

}

.psh-testimonial-slider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#d1d5db;

    opacity:1;

    margin:0 6px !important;

    transition:.35s ease;

}

.psh-testimonial-slider
.swiper-pagination-bullet-active{

    width:34px;

    border-radius:30px;

    background:var(--secondary);

}

/*=====================================
QUOTE HOVER
======================================*/

.psh-testimonial-card:hover
.psh-testimonial-quote i{

    color:var(--secondary);

    transform:rotate(-12deg);

}

.psh-testimonial-quote i{

    transition:.35s ease;

}

/*=====================================
STAR HOVER
======================================*/

.psh-testimonial-card:hover
.psh-testimonial-stars i{

    transform:scale(1.15);

}

.psh-testimonial-stars i{

    transition:.35s ease;

}

/*=====================================
SHINE EFFECT
======================================*/

.psh-testimonial-card{

    position:relative;

    overflow:hidden;

}

.psh-testimonial-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:skewX(-25deg);

}

.psh-testimonial-card:hover::before{

    left:160%;

    transition:.9s;

}

/*=====================================
BORDER EFFECT
======================================*/

.psh-testimonial-card:hover{

    border-color:rgba(12,59,145,.18);

}

/*=====================================
SWIPER FIX
======================================*/

.psh-testimonial-slider{

    overflow:hidden;

}

.psh-testimonial-slider
.swiper-wrapper{

    align-items:stretch;

}

.psh-testimonial-slider
.swiper-slide{

    display:flex;

    height:auto;

}

.psh-testimonial-card{

    width:100%;

}

/*=====================================
FOCUS
======================================*/

.psh-testimonial-prev:focus,
.psh-testimonial-next:focus{

    outline:2px solid var(--secondary);

    outline-offset:4px;

}

/*=====================================
SMOOTH
======================================*/

.psh-testimonial-card,
.psh-testimonial-prev,
.psh-testimonial-next,
.psh-testimonial-user img,
.psh-testimonial-quote i,
.psh-testimonial-stars i{

    transition:all .35s ease;

}
/*=====================================
TESTIMONIAL RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-testimonial-section{

        padding:80px 0;

    }

    .psh-testimonial-heading{

        margin-bottom:45px;

    }

    .psh-testimonial-heading h2{

        font-size:34px;

    }

    .psh-testimonial-card{

        padding:25px;

    }

    .psh-testimonial-card p{

        min-height:120px;

        font-size:15px;

        line-height:1.8;

    }

    .psh-testimonial-user img{

        width:55px;

        height:55px;

    }

    .psh-testimonial-user h4{

        font-size:17px;

    }

    .psh-testimonial-user span{

        font-size:14px;

    }

    .psh-testimonial-prev{

        left:0;

    }

    .psh-testimonial-next{

        right:0;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-testimonial-section{

        padding:60px 0;

    }

    .psh-testimonial-heading{

        margin-bottom:35px;

    }

    .psh-testimonial-heading span{

        font-size:13px;

    }

    .psh-testimonial-heading h2{

        font-size:28px;

        line-height:1.4;

    }

    .psh-testimonial-card{

        padding:22px;

    }

    .psh-testimonial-quote{

        margin-bottom:15px;

    }

    .psh-testimonial-quote i{

        font-size:34px;

    }

    .psh-testimonial-stars{

        margin-bottom:18px;

    }

    .psh-testimonial-stars i{

        font-size:16px;

    }

    .psh-testimonial-card p{

        font-size:14px;

        line-height:1.8;

        min-height:auto;

        margin-bottom:22px;

    }

    .psh-testimonial-user{

        gap:12px;

        padding-top:18px;

    }

    .psh-testimonial-user img{

        width:50px;

        height:50px;

    }

    .psh-testimonial-user h4{

        font-size:16px;

    }

    .psh-testimonial-user span{

        font-size:13px;

    }

    /* Hide Navigation */

    .psh-testimonial-prev,

    .psh-testimonial-next{

        display:none;

    }

    .psh-testimonial-slider{

        padding-bottom:55px;

    }

    .psh-testimonial-slider .swiper-pagination-bullet{

        width:10px;

        height:10px;

    }

    .psh-testimonial-slider .swiper-pagination-bullet-active{

        width:28px;

    }

}
/*=====================================
CTA SECTION
======================================*/

.psh-cta-section{
    padding:0px 0;
    background:#ffffff;
}

.psh-cta-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:var(--primary);

    border-radius:10px;

    overflow:hidden;

    position:relative;

    min-height:180px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}


/*=====================================
LEFT SIDE
======================================*/

.psh-cta-left{

    width:48%;

    background:var(--secondary);

    color:#fff;

    padding:18px 27px;

    position:relative;

    z-index:2;

}

/* Orange Arrow */

.psh-cta-left::after{

    content:"";

    position:absolute;

    top:0;

    right:-90px;

    width:0;

    height:0;

    border-top:90px solid transparent;

    border-bottom:90px solid transparent;

    border-left:90px solid var(--secondary);

}

/*=====================================
TEXT
======================================*/

.psh-cta-subtitle{

    display:block;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:12px;

    color:#fff;

}

.psh-cta-left h2{

    font-family:var(--heading-font);

    font-size:30px;

    line-height:1.2;

    font-weight:700;

    margin-bottom:15px;

    color:#fff;

}

.psh-cta-left p{

    color:rgba(255,255,255,.92);

    font-size:15px;

    line-height:1.8;

}


/*=====================================
RIGHT SIDE
======================================*/

.psh-cta-right{

    width:52%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    padding:25px 35px;

    position:relative;

    z-index:3;

}


/*=====================================
BUTTON
======================================*/

.psh-cta-btn{

    width:260px;

    height:68px;

    background:#fff;

    border-radius:8px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.psh-cta-btn i{

    font-size:20px;

    transition:.35s;

}


/*=====================================
REQUEST BUTTON
======================================*/

.psh-quote-btn{

    color:var(--primary);

}

.psh-quote-btn:hover{

    background:#eef5ff;

    transform:translateY(-5px);

}

.psh-quote-btn:hover i{

    transform:translateX(6px);

}


/*=====================================
WHATSAPP
======================================*/

.psh-whatsapp-btn{

    color:#111;

}

.psh-whatsapp-btn .bi-whatsapp{

    color:#25D366;

    font-size:24px;

}

.psh-whatsapp-btn:hover{

    background:#25D366;

    color:#fff;

    transform:translateY(-5px);

}

.psh-whatsapp-btn:hover .bi-whatsapp{

    color:#fff;

}


/*=====================================
SMOOTH
======================================*/

.psh-cta-btn,
.psh-cta-btn i,
.psh-cta-left{

    transition:all .35s ease;

}
/*=====================================
CTA SECTION RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-cta-section{

        padding:70px 0;

    }

    .psh-cta-wrapper{

        flex-direction:column;

    }

    .psh-cta-left{

        width:100%;

        text-align:center;

        padding:45px 35px;

    }

    .psh-cta-left::after{

        display:none;

    }

    .psh-cta-left h2{

        font-size:34px;

    }

    .psh-cta-left p{

        max-width:600px;

        margin:0 auto;

    }

    .psh-cta-right{

        width:100%;

        justify-content:center;

        flex-wrap:wrap;

        gap:20px;

        padding:35px;

    }

    .psh-cta-btn{

        width:260px;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-cta-section{

        padding:60px 0;

    }

    .psh-cta-wrapper{

        border-radius:10px;

    }

    .psh-cta-left{

        padding:35px 22px;

    }

    .psh-cta-subtitle{

        font-size:13px;

    }

    .psh-cta-left h2{

        font-size:28px;

        line-height:1.35;

    }

    .psh-cta-left p{

        font-size:14px;

        line-height:1.8;

    }

    .psh-cta-right{

        flex-direction:column;

        padding:25px 20px;

        gap:15px;

    }

    .psh-cta-btn{

        width:100%;

        height:60px;

        font-size:15px;

        border-radius:8px;

    }

    .psh-cta-btn i{

        font-size:18px;

    }

}
/*==============================
    ABOUT BANNER
==============================*/

.about-banner{
    position: relative;
    background: linear-gradient(rgba(7,22,45,.88), rgba(7,22,45,.88)),
    url("../images/about-bg.jpg") center center/cover no-repeat;
    padding: 90px 0;
    overflow: hidden;
    background-color: var(--primary);
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 15px;
}

.about-banner .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/*==============================
        LEFT
==============================*/

.about-content{
    width:50%;
    color:var(--white);
}

.about-small{
    display:inline-block;
    font-size:14px;
    margin-bottom:18px;
    color:#d9d9d9;
    font-family:var(--body-font);
}

.about-small strong{
    color:var(--white);
}

.about-content h2{
    font-size:35px;
    line-height:1.1;
    font-family:var(--heading-font);
    font-weight:700;
    margin-bottom:15px;
    color:var(--white);
}   

.about-content h2 span{
    color:var(--secondary);
}

.about-content h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:22px;
    color:var(--white);
    font-family:var(--heading-font);
}

.about-content p{
    color:#d1d5db;
    line-height:1.9;
    font-size:16px;
    max-width:600px;
    margin-bottom:40px;
}

/*==============================
      COUNTERS
==============================*/

.about-counter{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.counter-box{
    flex:1;
    /* min-width:130px; */
    text-align:center;
}
.counter-box .icon{
    width:50px;
    height:50px;
    margin:auto;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.04);
    color:var(--secondary);
    font-size:20px;
    margin-bottom:18px;
    transition:var(--transition);
}

.counter-box:hover .icon{
    background:var(--secondary);
    color:var(--white);
    transform:translateY(-8px);
}

.counter-box h3{
    color:var(--white);
    font-size:17px;
    font-weight:500;
    margin-bottom:8px;
    font-family:var(--heading-font);
}

.counter-box span{
    color:#d9d9d9;
    font-size:14px;
    line-height:1.5;
    display:block;
}

/*==============================
        RIGHT IMAGE
==============================*/

.about-image{
    width:50%;
    display:flex;
    justify-content:flex-end;
}

.image-frame{
    position:relative;
    width:100%;
    max-width:600px;
    padding:12px;
    border:4px solid var(--secondary);
    background:#fff;
    overflow:hidden;

    clip-path:polygon(
    12% 0,
    100% 0,
    100% 85%,
    88% 100%,
    0 100%,
    0 15%
    );

    box-shadow:var(--shadow);
}

.image-frame img{
    width:100%;
    display:block;
    height:100%;
    object-fit:cover;

    clip-path:polygon(
    12% 0,
    100% 0,
    100% 85%,
    88% 100%,
    0 100%,
    0 15%
    );
}

/*==============================
     IMAGE SHADOW
==============================*/

.image-frame::after{
    content:"";
    position:absolute;
    left:-20px;
    bottom:-25px;
    width:95%;
    height:30px;
    background:rgba(0,0,0,.30);
    filter:blur(18px);
    z-index:-1;
}
/* --------------------------------------------------- WHO ARE YOU PART 1 CSS ------------------------------------------*/
/*============================
      ABOUT SECTION
============================*/

.about-company{
    padding:50px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
}

/* Left */

.about-content{
    width:48%;
}

.sub-title{
    color:#f57c00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-company-h2{
    font-size:30px !important;
    line-height:1.2 !important;
    margin:15px 0 20px  !important;
    color:#173d7a !important;
    font-weight:700;
}


.about-content p{
    font-size:16px;
    line-height:30px;
    color:#f3f3f3;
    margin-bottom:25px;
}

.discover-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    background:#154a9a;
    color:#fff;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.discover-btn:hover{
    background:#f57c00;
}

/* Right */

.about-gallery{
    width:52%;
    position:relative;
}

.big-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.small-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:15px;
}

.img-box img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:8px;
}

/* Dots */

.dots{
    position:absolute;
    top:-15px;
    right:-20px;
    width:120px;
    height:150px;

    background-image: radial-gradient(#d8d8d8 1.5px, transparent 1.5px);
    background-size:12px 12px;
    z-index:-1;
}


/*============================
      Responsive
============================*/

@media(max-width:992px){

.container{
    flex-direction:column;
}

.about-content,
.about-gallery{
    width:100%;
}

.about-content h2{
    font-size:35px;
}

.big-img img{
    height:220px;
}

}

@media(max-width:768px){

.about-company{
    padding:70px 0;
}

.about-content h2{
    font-size:30px;
}

.about-content p{
    font-size:15px;
    line-height:28px;
}

.small-gallery{
    grid-template-columns:repeat(2,1fr);
}

.small-gallery .img-box:last-child{
    grid-column:1/3;
}

.big-img img{
    height:220px;
}

}

@media(max-width:576px){

.about-content h2{
    font-size:26px;
}

.small-gallery{
    grid-template-columns:1fr;
}

.small-gallery .img-box:last-child{
    grid-column:auto;
}

.big-img img{
    height:200px;
}

.img-box img{
    height:180px;
}

.discover-btn{
    width:100%;
    justify-content:center;
}

}

/* ---------------------------------------------------WHO ARE YOU PART 2 *--------------------------------------------------------/

/*=================================
        Mission Vision
=================================*/

.mv-section{

    width:100%;
    padding:50px 0;
    background:#fff;

}

.mv-wrapper{

    width:90%;
    max-width:1200px;
    margin:auto;

}


/*=========================
      Counter
=========================*/

.mv-counter-box{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    background:#0d2e63;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:60px;

}

.mv-counter-item{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:22px 15px;
    border-right:1px solid rgba(255,255,255,.15);

}

.mv-counter-item:last-child{

    border-right:none;

}

.mv-counter-item img{

    width:34px;

}

.mv-counter-item h3{

    color:#fff;
    font-size:24px;
    margin-bottom:4px;

}

.mv-counter-item span{

    color:#fff;
    font-size:13px;

}


/*=========================
      Bottom
=========================*/

.mv-content-box{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;

}

.mv-card{

    text-align:center;
    padding:0 20px;
    border-right:1px solid #ddd;

}

.mv-card:last-child{

    border-right:none;

}

.mv-title{

    display:block;
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;

}

.mv-title.blue{

    color:#173d7a;

}

.mv-title.orange{

    color:#ff7a00;

}

.mv-card img{

    width:70px;
    margin-bottom:20px;

}

.mv-card p{

    color:#666;
    font-size:15px;
    line-height:28px;

}

.mv-card ul{

    list-style:none;
    padding:0;
    margin:0;

}

.mv-card ul li{

    color:#555;
    margin-bottom:16px;
    position:relative;
    padding-left:22px;
    text-align:left;

}

.mv-card ul li::before{

    content:"●";
    position:absolute;
    left:0;
    color:#ff7a00;

}



/*=========================
      Responsive
=========================*/

@media(max-width:992px){

.mv-counter-box{

    grid-template-columns:repeat(2,1fr);

}

.mv-counter-item{

    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.15);

}

.mv-content-box{

    grid-template-columns:1fr;

}

.mv-card{

    border-right:none;
    border-bottom:1px solid #eee;
    padding-bottom:35px;

}

.mv-card:last-child{

    border-bottom:none;

}

}


@media(max-width:576px){

.mv-counter-box{

    grid-template-columns:1fr;

}

.mv-counter-item{

    justify-content:flex-start;
    padding:18px;

}

.mv-counter-item h3{

    font-size:22px;

}

.mv-card{

    padding:0;

}

.mv-card img{

    width:60px;

}

.mv-card p{

    font-size:14px;
    line-height:26px;

}

}


/* ----------------------------------OUR STRENGTH PAGE PART 1 --------------------------------------------- */

/*======================================
       PSH STRENGTH SECTION
======================================*/

.psh-strength-section{

    width:100%;
    padding:50px 0;
    background:#082243;

}

.psh-strength-container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/* Heading */

.psh-strength-heading{

    text-align:center;
    margin-bottom:50px;

}

.psh-strength-heading span{

    display:block;
    color:#ff8a00;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;

}

.psh-strength-heading h2{

    color:#ffffff;
    font-size:30px;
    font-weight:700;

}

.psh-strength-heading strong{

    color:#ff8a00;
    font-weight:700;

}

/* Grid */

.psh-strength-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;

}

.psh-strength-item{

    text-align:center;
    padding:10px;

}

.psh-strength-item i{

    font-size:42px;
    color:#ff8a00;
    margin-bottom:18px;
    display:inline-block;

}

.psh-strength-item h4{

    color:#ffffff;
    font-size:16px;
    margin-bottom:12px;
    line-height:24px;
    height:48px;

}

.psh-strength-item p{

    color:#d6dce6;
    font-size:14px;
    line-height:24px;

}


/*=========================
      Tablet
=========================*/

@media(max-width:1100px){

.psh-strength-grid{

    grid-template-columns:repeat(3,1fr);

}

}


/*=========================
      Mobile
=========================*/

@media(max-width:768px){

.psh-strength-section{

    padding:60px 0;

}

.psh-strength-heading h2{

    font-size:28px;

}

.psh-strength-grid{

    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.psh-strength-item i{

    font-size:38px;

}

}


@media(max-width:576px){

.psh-strength-grid{

    grid-template-columns:1fr;

}

.psh-strength-heading h2{

    font-size:24px;

}

.psh-strength-item{

    padding:15px 10px;

}

.psh-strength-item h4{

    font-size:18px;

}

.psh-strength-item p{

    font-size:14px;

}

}

/* --------------------------------------------------OUR STRENGTH PART 2 ---------------------------------------------------------*/
/*====================================
        INFRASTRUCTURE SECTION
====================================*/

.infra-section{

    width:100%;
    padding:50px 0;
    background:#ffffff;

}

.infra-container{

    width:90%;
    max-width:1250px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

}

/* Left */

.infra-content{

    width:40%;

}

.infra-subtitle{

    display:block;
    color:#f57c00;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;

}

.infra-content h2{

    font-size:30px;
    color:#183153;
    line-height:1.25;
    margin-bottom:20px;

}

.infra-content p{

    color:#666;
    font-size:16px;
    line-height:28px;
    margin-bottom:25px;

}

/* List */

.infra-list{

    list-style:none;
    padding:0;
    margin:0 0 30px;

}

.infra-list li{

    position:relative;
    padding-left:28px;
    margin-bottom:12px;

    color:#444;
    font-size:15px;

}

.infra-list li::before{

    content:"✔";

    position:absolute;
    left:0;
    color:#2b6ed3;
    font-weight:bold;

}

/* Button */

.infra-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:15px 28px;

    background:#0d4ca3;

    color:#fff;

    text-decoration:none;

    border-radius:5px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.infra-btn:hover{

    background:#f57c00;

}

/* Right */

.infra-gallery{

    width:60%;

}

.infra-big-image img{

    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:8px;

}

.infra-small-gallery{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:15px;

    margin-top:15px;

}

.infra-small-item img{

    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:8px;

}

/*=========================
      Tablet
=========================*/

@media(max-width:992px){

.infra-container{

    flex-direction:column;

}

.infra-content{

    width:100%;

}

.infra-gallery{

    width:100%;

}

.infra-content h2{

    font-size:34px;

}

}

/*=========================
      Mobile
=========================*/

@media(max-width:768px){

.infra-section{

    padding:70px 0;

}

.infra-content h2{

    font-size:30px;

}

.infra-small-gallery{

    grid-template-columns:repeat(2,1fr);

}

.infra-small-gallery .infra-small-item:last-child{

    grid-column:1/3;

}

}

@media(max-width:576px){

.infra-content h2{

    font-size:26px;

}

.infra-content p{

    font-size:14px;

    line-height:26px;

}

.infra-btn{

    width:100%;

    justify-content:center;

}

.infra-small-gallery{

    grid-template-columns:1fr;

}

.infra-small-gallery .infra-small-item:last-child{

    grid-column:auto;

}

.infra-big-image img{

    height:220px;

}

.infra-small-item img{

    height:180px;

}

}


/* -----------------------------OUR GLOBAL PAGE PART 1 ---------------------------- */
/*==================================
      GLOBAL PRESENCE
===================================*/

.global-section{

    width:100%;
    padding:40px 0;

    background:url("/Assests/word\ img.png") center center/cover no-repeat;

    position:relative;
    background-color: #082243;

}

.global-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(5,25,55,.45);

}

.global-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

}

.global-content{

    width:38%;

}

.global-subtitle{

    display:block;

    color:#ff8a00;

    font-size:14px;

    font-weight:700;

    margin-bottom:10px;

    text-transform:uppercase;

}

.global-content h2{

    color:#fff;

    font-size:30px;

    line-height:1.25;

    margin-bottom:20px;

}

.global-content p{

    color:#d8d8d8;

    font-size:16px;

    line-height:28px;

    margin-bottom:30px;

}

.global-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#1358c8;

    color:#fff;

    text-decoration:none;

    padding:15px 28px;

    border-radius:5px;

    transition:.3s;

    font-size:14px;

    font-weight:600;

}

.global-btn:hover{

    background:#ff8a00;

}

/*=====================
      Responsive
======================*/

@media(max-width:992px){

.global-content{

    width:55%;

}

.global-content h2{

    font-size:34px;

}

}

@media(max-width:768px){

.global-section{

    padding:70px 0;

}

.global-content{

    width:100%;

}

.global-content h2{

    font-size:30px;

}

}

@media(max-width:576px){

.global-content h2{

    font-size:25px;

}

.global-content p{

    font-size:14px;

    line-height:25px;

}

.global-btn{

    width:100%;

    justify-content:center;

}

}


/* -------------------------------OUR GLOBAL PART 2 *--------------------------------------------/
/*=================================
        TEAM SECTION
==================================*/

.team-section{

    width:100%;
    padding:40px 0;
    background:#ffffff;

}

.team-container{

    width:90%;
    max-width:1250px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;

}

/* Left */

.team-content{

    width:38%;

}

.team-subtitle{

    display:block;

    color:#f57c00;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:12px;

}

.team-content h2{

    color:#16294d;

    font-size:30px;

    line-height:1.2;

    margin-bottom:22px;

    font-weight:700;

}

.team-content p{

    color:#666;

    font-size:16px;

    line-height:30px;

    margin-bottom:30px;

}

.team-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    background:#0d4ca3;

    color:#fff;

    text-decoration:none;

    border-radius:5px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.team-btn:hover{

    background:#f57c00;

}

/* Right */

.team-image{

    width:62%;

}

.team-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:12px;

    display:block;

}

/*=========================
      Tablet
==========================*/

@media(max-width:992px){

.team-container{

    flex-direction:column;

}

.team-content{

    width:100%;

}

.team-image{

    width:100%;

}

.team-content h2{

    font-size:34px;

}

}

/*=========================
      Mobile
==========================*/

@media(max-width:768px){

.team-section{

    padding:70px 0;

}

.team-content h2{

    font-size:30px;

}

.team-image img{

    height:280px;

}

}

@media(max-width:576px){

.team-content h2{

    font-size:26px;

}

.team-content p{

    font-size:15px;

    line-height:28px;

}

.team-btn{

    width:100%;

    justify-content:center;

}

.team-image img{

    height:220px;

}

}
/* contact page  */
/*=====================================
CONTACT SECTION
======================================*/

.psh-contact-section{

    padding:100px 0;

    background:#f8f9fc;

}

.psh-contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:start;

}


/*=====================================
COMMON HEADING
======================================*/

.psh-contact-heading{

    font-size:30px;

    font-weight:700;

    color:var(--heading);

    margin-bottom:12px;

    /* text-transform:uppercase; */

    line-height:1.2;

}

.psh-contact-heading span{

    color:var(--secondary);

}

.psh-contact-line{

    width:70px;

    height:4px;

    background:var(--secondary);

    border-radius:20px;

    margin-bottom:22px;

}

.psh-contact-text{

    font-size:16px;

    color:var(--text);

    line-height:1.8;

    margin-bottom:35px;

}


/*=====================================
LEFT PANEL
======================================*/

.psh-contact-left{

    position:relative;

}


/*=====================================
CONTACT CARD
======================================*/

.psh-contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:var(--white);

    padding:22px;

    margin-bottom:18px;

    border-radius:12px;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.psh-contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}


/*=====================================
ICON
======================================*/

.psh-contact-icon{

    width:68px;

    height:68px;

    min-width:68px;

    border-radius:12px;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.psh-contact-icon i{

    font-size:30px;

    color:var(--white);

    transition:.35s;

}

.psh-contact-card:hover .psh-contact-icon{

    background:var(--secondary);

}

.psh-contact-card:hover .psh-contact-icon i{

    transform:scale(1.1);

}


/*=====================================
CARD CONTENT
======================================*/

.psh-contact-content{

    flex:1;

}

.psh-contact-content h4{

    font-size:22px;

    color:var(--heading);

    margin-bottom:8px;

    font-weight:700;

}

.psh-contact-content p{

    font-size:15px;

    color:var(--text);

    line-height:1.8;

}


/*=====================================
RIGHT PANEL
======================================*/

.psh-contact-right{

    background:var(--white);

    padding:35px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}
/*=====================================
CONTACT SECTION
======================================*/

.psh-contact-section{

    padding:100px 0;

    background:#f8f9fc;

}

.psh-contact-wrapper{

    display:grid;

    grid-template-columns:600px 1fr;

    gap:50px;

    align-items:start;

}


/*=====================================
COMMON HEADING
======================================*/

.psh-contact-heading{

    font-size:30px;

    font-weight:700;

    color:var(--heading);

    margin-bottom:12px;

    text-transform:uppercase;

    line-height:1.2;

}

.psh-contact-heading span{

    color:var(--secondary);

}

.psh-contact-line{

    width:70px;

    height:4px;

    background:var(--secondary);

    border-radius:20px;

    margin-bottom:22px;

}

.psh-contact-text{

    font-size:16px;

    color:var(--text);

    line-height:1.8;

    margin-bottom:35px;

}


/*=====================================
LEFT PANEL
======================================*/

.psh-contact-left{

    position:relative;

}


/*=====================================
CONTACT CARD
======================================*/

.psh-contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:var(--white);

    padding:22px;

    margin-bottom:18px;

    border-radius:12px;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.psh-contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}


/*=====================================
ICON
======================================*/

.psh-contact-icon{

    width:68px;

    height:68px;

    min-width:68px;

    border-radius:12px;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.psh-contact-icon i{

    font-size:30px;

    color:var(--white);

    transition:.35s;

}

.psh-contact-card:hover .psh-contact-icon{

    background:var(--secondary);

}

.psh-contact-card:hover .psh-contact-icon i{

    transform:scale(1.1);

}


/*=====================================
CARD CONTENT
======================================*/

.psh-contact-content{

    flex:1;

}

.psh-contact-content h4{

    font-size:18px;

    color:var(--heading);

    margin-bottom:12px;

    font-weight:700;

}

.psh-contact-content p{

    font-size:14px;

    color:var(--text);

    line-height:1.8;

}


/*=====================================
RIGHT PANEL
======================================*/

.psh-contact-right{

    background:var(--white);

    padding:35px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}
/*=====================================
CONTACT SECTION RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-contact-section{

        padding:80px 0;

    }

    .psh-contact-wrapper{

        grid-template-columns:1fr;

        gap:40px;

    }

    .psh-contact-left,
    .psh-contact-right{

        width:100%;

    }

    .psh-contact-heading{

        font-size:36px;

    }

    .psh-contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .psh-contact-extra{

        grid-template-columns:repeat(2,1fr);

    }

    .psh-submit-btn{

        width:260px;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-contact-section{

        padding:60px 0;

    }

    .psh-contact-heading{

        font-size:28px;

        line-height:1.3;

    }

    .psh-contact-text{

        font-size:15px;

        margin-bottom:25px;

    }

    .psh-contact-right{

        padding:25px 20px;

    }

    .psh-contact-card{

        flex-direction:column;

        align-items:flex-start;

        padding:20px;

        gap:15px;

    }

    .psh-contact-icon{

        width:60px;

        height:60px;

        min-width:60px;

    }

    .psh-contact-icon i{

        font-size:26px;

    }

    .psh-contact-content h4{

        font-size:18px;

    }

    .psh-contact-content p{

        font-size:14px;

        line-height:1.7;

    }

    .psh-contact-grid{

        grid-template-columns:1fr;

        gap:0;

    }

    .psh-form-group{

        margin-bottom:18px;

    }

    .psh-form-group input,
    .psh-form-group textarea{

        font-size:14px;

    }

    .psh-captcha-wrapper{

        flex-wrap:wrap;

        gap:12px;

    }

    #captchaText{

        width:100%;

    }

    #refreshCaptcha{

        width:100%;

    }

    .psh-submit-btn{

        width:100%;

        height:56px;

        font-size:15px;

    }

    .psh-contact-extra{

        grid-template-columns:1fr;

        gap:15px;

    }

    .psh-extra-card{

        padding:18px;

    }

    .psh-extra-icon{

        width:55px;

        height:55px;

        font-size:22px;

    }

    .psh-extra-content h4{

        font-size:18px;

    }

    .psh-extra-content p{

        font-size:14px;

    }

}

/*=====================================
STATS SECTION
======================================*/

.psh-stats-section{

    padding:70px 0;

    background:var(--white);

}

.psh-stats-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    border:1px solid #e9edf5;

}


/*=====================================
STATS ITEM
======================================*/

.psh-stats-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    padding:25px 20px;

    position:relative;

    transition:.35s ease;

}

.psh-stats-item:not(:last-child){

    border-right:1px solid #ececec;

}

.psh-stats-item:hover{

    background:#f8fbff;

}


/*=====================================
ICON
======================================*/

.psh-stats-icon{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef4ff;

    transition:.35s ease;

}

.psh-stats-icon i{

    font-size:30px;

    color:var(--primary);

    transition:.35s ease;

}

.psh-stats-item:hover .psh-stats-icon{

    background:var(--primary);

}

.psh-stats-item:hover .psh-stats-icon i{

    color:#ffffff;

    transform:scale(1.08);

}


/*=====================================
CONTENT
======================================*/

.psh-stats-content{

    flex:1;

}

.psh-stats-content h3{

    font-size:30px;

    font-weight:700;

    color:var(--primary);

    line-height:1;

    margin-bottom:8px;

    font-family:var(--heading-font);

}

.psh-stats-content p{

    font-size:14px;

    color:var(--text);

    line-height:1.6;

    font-weight:500;

}


/*=====================================
HOVER
======================================*/

.psh-stats-item,
.psh-stats-icon,
.psh-stats-icon i{

    transition:all .35s ease;

}
/*=====================================
STATS SECTION RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-stats-section{

        padding:60px 0;

    }

    .psh-stats-wrapper{

        grid-template-columns:repeat(3,1fr);

    }

    .psh-stats-item{

        padding:25px 15px;

        border-right:1px solid #ececec;

        border-bottom:1px solid #ececec;

    }

    .psh-stats-item:nth-child(3){

        border-right:none;

    }

    .psh-stats-item:nth-child(4){

        border-left:none;

    }

    .psh-stats-item:last-child{

        border-right:none;

    }

    .psh-stats-content h3{

        font-size:34px;

    }

    .psh-stats-content p{

        font-size:14px;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-stats-section{

        padding:50px 0;

    }

    .psh-stats-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

    .psh-stats-item{

        flex-direction:column;

        text-align:center;

        justify-content:center;

        gap:15px;

        padding:22px 15px;

        border-right:none;

        border-bottom:1px solid #ececec;

    }

    .psh-stats-item:last-child{

        grid-column:1 / -1;

    }

    .psh-stats-icon{

        width:55px;

        height:55px;

        min-width:55px;

    }

    .psh-stats-icon i{

        font-size:24px;

    }

    .psh-stats-content h3{

        font-size:30px;

        margin-bottom:6px;

    }

    .psh-stats-content p{

        font-size:14px;

        line-height:1.5;

    }

}
/*=====================================
FIND US SECTION
======================================*/

.psh-findus-section{

    padding:80px 0;

    background:var(--white);

}

.psh-findus-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    overflow:hidden;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


/*=====================================
GOOGLE MAP
======================================*/

.psh-findus-map{

    width:100%;

    height:420px;

}

.psh-findus-map iframe{

    width:100%;

    height:100%;

    border:none;

    display:block;

}


/*=====================================
FIND US CONTENT
======================================*/

.psh-findus-content{

    background:var(--primary);

    color:#ffffff;

    padding:45px 35px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.psh-findus-subtitle{

    display:block;

    font-size:18px;

    font-weight:600;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:10px;

}

.psh-findus-content h2{

    font-size:52px;

    color:#ffffff;

    font-weight:700;

    line-height:1;

    margin-bottom:18px;

}

.psh-findus-line{

    width:70px;

    height:4px;

    background:var(--secondary);

    border-radius:30px;

    margin-bottom:25px;

}

.psh-findus-content p{

    font-size:17px;

    color:rgba(255,255,255,.92);

    line-height:1.9;

    margin-bottom:35px;

}


/*=====================================
BUTTON
======================================*/

.psh-findus-btn{

    width:250px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:var(--secondary);

    color:#ffffff;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    transition:.35s ease;

}

.psh-findus-btn:hover{

    background:#ff8b12;

    transform:translateY(-4px);

}

.psh-findus-btn i{

    font-size:18px;

    transition:.35s ease;

}

.psh-findus-btn:hover i{

    transform:translateX(5px);

}


/*=====================================
IMAGE
======================================*/

.psh-findus-image{

    overflow:hidden;

    position:relative;

}

.psh-findus-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}

.psh-findus-image:hover img{

    transform:scale(1.08);

}


/*=====================================
SMOOTH TRANSITION
======================================*/

.psh-findus-content,
.psh-findus-btn,
.psh-findus-btn i,
.psh-findus-image img{

    transition:all .35s ease;

}
/*=====================================
FIND US RESPONSIVE
======================================*/


/*=====================================
TABLET
======================================*/

@media (max-width:991px){

    .psh-findus-section{

        padding:70px 0;

    }

    .psh-findus-wrapper{

        grid-template-columns:1fr;

    }

    .psh-findus-map{

        height:380px;

    }

    .psh-findus-content{

        padding:45px 35px;

        text-align:center;

        align-items:center;

    }

    .psh-findus-content h2{

        font-size:44px;

    }

    .psh-findus-line{

        margin:0 auto 25px;

    }

    .psh-findus-image{

        height:380px;

    }

}


/*=====================================
MOBILE
======================================*/

@media (max-width:767px){

    .psh-findus-section{

        padding:60px 0;

    }

    .psh-findus-map{

        height:260px;

    }

    .psh-findus-content{

        padding:35px 20px;

        text-align:center;

        align-items:center;

    }

    .psh-findus-subtitle{

        font-size:16px;

    }

    .psh-findus-content h2{

        font-size:36px;

        margin-bottom:15px;

    }

    .psh-findus-line{

        width:60px;

        margin:0 auto 20px;

    }

    .psh-findus-content p{

        font-size:15px;

        line-height:1.8;

        margin-bottom:25px;

    }

    .psh-findus-btn{

        width:100%;

        height:54px;

        font-size:14px;

    }

    .psh-findus-btn span{

        white-space:nowrap;

    }

    .psh-findus-image{

        height:260px;

    }

}
/*=============================
IMPORT EXPORT SECTION
=============================*/

.psh-import-export-banner{
    position:relative;
    width:100%;
    min-height:560px;
    display:flex;
    align-items:center;
    overflow:hidden;

  
}

/* Overlay */

.psh-import-export-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(5,28,61,.92) 0%,
        rgba(5,28,61,.88) 30%,
        rgba(5,28,61,.55) 55%,
        rgba(5,28,61,.05) 100%
    );
}

.psh-import-export-container{
    width:100%;
    max-width:var(--container);
    margin:auto;
    padding:80px 15px;
    position:relative;
    z-index:2;
}

.psh-import-export-content{
    max-width:620px;
    color:var(--white);
}

.psh-import-export-label{

    display:block;
    font-size:20px;
    line-height:1;
    font-weight:800;
    color:var(--white);

    font-family:var(--heading-font);
    margin-bottom:18px;
}

.psh-import-export-content h2{

    font-size:35px;
    color:var(--secondary);
    font-family:var(--heading-font);
    line-height:1.2;
    font-weight:700;

    margin-bottom:22px;
}

.psh-import-export-content p{

    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,.92);

    font-family:var(--body-font);
    margin-bottom:45px;
}

.psh-import-export-features{

    display:flex;
    /* flex-wrap:wrap;
    gap:25px; */
}

.psh-import-feature-box{

    display:flex;
    align-items:center;
    gap:15px;

    min-width:208px;
}

.psh-import-feature-icon{

    width:50px;
    height:50px;

    border:2px solid rgba(255,255,255,.25);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--secondary);
    font-size:20px;

    background:rgba(255,255,255,.05);

    transition:var(--transition);
}
.psh-import-feature-icon{
    width:50px;
    height:50px;
    border:2px solid rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    transition:var(--transition);
}

.psh-import-feature-icon i{
    font-size:20px;
    color:var(--secondary);
    transition:var(--transition);
}

.psh-import-feature-box:hover .psh-import-feature-icon{
    background:var(--secondary);
    transform:translateY(-4px);
}

.psh-import-feature-box:hover .psh-import-feature-icon i{
    color:var(--white);
}
.psh-import-feature-box:hover .psh-import-feature-icon{

    background:var(--secondary);
    color:var(--white);
    transform:translateY(-4px);
}

.psh-import-feature-box h4{

    font-size:17px;
    color:var(--white);
    font-weight:700;
    font-family:var(--heading-font);
    margin-bottom:4px;
}

.psh-import-feature-box span{

    color:rgba(255,255,255,.85);
    font-size:14px;
    font-family:var(--body-font);
}


/*=========================
Large Tablet
=========================*/

@media(max-width:1199px){

.psh-import-export-banner{

    min-height:520px;
}

.psh-import-export-label{

    font-size:58px;
}

.psh-import-export-content h2{

    font-size:34px;
}

}


/*=========================
Tablet
=========================*/

@media(max-width:991px){

.psh-import-export-banner{

    min-height:auto;
}

.psh-import-export-container{

    padding:70px 20px;
}

.psh-import-export-label{

    font-size:48px;
}

.psh-import-export-content h2{

    font-size:30px;
}

.psh-import-export-content p{

    font-size:16px;
}

.psh-import-export-features{

    gap:20px;
}

.psh-import-feature-box{

    width:calc(50% - 10px);
    min-width:unset;
}

}


/*=========================
Mobile
=========================*/

@media(max-width:767px){

.psh-import-export-banner{

    background-position:70% center;
}

.psh-import-export-overlay{

    background:rgba(5,28,61,.85);
}

.psh-import-export-label{

    font-size:38px;
}

.psh-import-export-content h2{

    font-size:24px;
}

.psh-import-export-content p{

    font-size:15px;
    line-height:1.8;
}

.psh-import-export-features{

    flex-direction:column;
}

.psh-import-feature-box{

    width:100%;
}

.psh-import-feature-icon{

    width:58px;
    height:58px;
    font-size:24px;
}

.psh-import-feature-box h4{

    font-size:24px;
}

}


/*=========================
Small Mobile
=========================*/

@media(max-width:480px){

.psh-import-export-container{

    padding:60px 15px;
}

.psh-import-export-label{

    font-size:30px;
}

.psh-import-export-content h2{

    font-size:20px;
}

.psh-import-export-content p{

    font-size:14px;
}

}
/*=========================================
EXPORT SERVICES SECTION
=========================================*/

.psh-export-services-section{
    padding:90px 0;
    background:var(--white);
    overflow:hidden;
}
.psh-export-services-section .psh-container{
   
    width:100%;

    /* max-width:1260px; */

    margin:auto;

    padding:0 15px;

}

.psh-export-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:flex-start;
}

/*=========================================
LEFT & RIGHT COLUMN
=========================================*/

.psh-export-left,
.psh-export-right{
    position:relative;
}

.psh-export-left{
    padding-right:35px;
    border-right:1px solid var(--border);
}

.psh-export-right{
    padding-left:10px;
}


/*=========================================
SECTION HEADING
=========================================*/

.psh-export-heading{
    margin-bottom:40px;
}

.psh-export-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:24px;
    font-weight:700;
    color:var(--heading);

    font-family:var(--heading-font);
    line-height:1.2;
    margin-bottom:18px;
}

.psh-export-subtitle::before{
    content:"";
    width:28px;
    height:3px;
    background:var(--secondary);
    border-radius:30px;
}

.psh-export-subtitle span{
    color:var(--primary);
}

.psh-export-heading p{
    max-width:420px;
    font-size:14px;
    line-height:1.8;
    color:var(--text);
    font-family:var(--body-font);
}


/*=========================================
SERVICE GRID
=========================================*/

.psh-export-service-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;

}


/*=========================================
SERVICE CARD
=========================================*/

.psh-export-service-card{

    display:flex;
    align-items:flex-start;
    gap:18px;

    background:var(--white);

    padding:24px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    transition:var(--transition);

    box-shadow:0 0 0 rgba(0,0,0,0);

}

.psh-export-service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(10,77,163,.25);

    box-shadow:var(--shadow);

}


/*=========================================
SERVICE ICON
=========================================*/

.psh-export-service-icon{

    width:50px;
    min-width:50px;
    height:50px;

    border-radius:12px;

    border:1px solid var(--border);

    background:#f8fbff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:var(--transition);

}

.psh-export-service-icon i{

    font-size:20px;

    color:var(--primary);

    transition:var(--transition);

}

.psh-export-service-card:hover .psh-export-service-icon{

    background:var(--primary);

    border-color:var(--primary);

}

.psh-export-service-card:hover .psh-export-service-icon i{

    color:var(--white);

}


/*=========================================
SERVICE CONTENT
=========================================*/

.psh-export-service-content{
    flex:1;
}

.psh-export-service-content h4{

    font-size:14px;

    font-weight:700;

    color:var(--heading);

    font-family:var(--heading-font);

    margin-bottom:12px;

    transition:var(--transition);
    max-width: max-content;

}

.psh-export-service-card:hover h4{

    color:var(--primary);

}

.psh-export-service-content p{

    font-size:15px;

    line-height:1.8;

    color:var(--text);

    font-family:var(--body-font);

    margin:0;

}


/*=========================================
SMALL ANIMATION
=========================================*/

.psh-export-service-card,
.psh-export-service-icon,
.psh-export-service-content h4{

    transition:all .35s ease;

}
/*=========================================
EXPORT PROCESS WRAPPER
=========================================*/

.psh-export-process-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:8px;
    margin-bottom:45px;
    position:relative;
}

/*=========================================
PROCESS ITEM
=========================================*/

.psh-export-process-item{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    position:relative;
}

/*=========================================
PROCESS ICON
=========================================*/

.psh-export-process-icon{

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--white);

    border:2px solid var(--border);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:var(--transition);

    margin-bottom:18px;

}

.psh-export-process-icon i{

    font-size:20px;

    color:var(--primary);

    transition:var(--transition);

}

.psh-export-process-item:hover .psh-export-process-icon{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.psh-export-process-item:hover .psh-export-process-icon i{

    color:var(--white);

}

/*=========================================
PROCESS NUMBER
=========================================*/

.psh-process-number{

    display:block;

    font-size:18px;

    font-weight:700;

    color:var(--heading);

    font-family:var(--heading-font);

    margin-bottom:10px;

}

/*=========================================
PROCESS TITLE
=========================================*/

.psh-export-process-item h5{

    font-size:14px;

    line-height:1.5;

    color:var(--heading);

    font-weight:600;

    font-family:var(--heading-font);

    margin:0;

    transition:var(--transition);

}

.psh-export-process-item:hover h5{

    color:var(--primary);

}

/*=========================================
ARROW
=========================================*/

.psh-export-arrow{

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    color:var(--primary);

    margin-top:13px;

    flex-shrink:0;

}

.psh-export-arrow i{

    transition:var(--transition);

}

.psh-export-process-item:hover + .psh-export-arrow i{

    transform:translateX(5px);

}

/*=========================================
LAST ARROW HIDE
=========================================*/

.psh-export-process-wrapper .psh-export-arrow:last-child{

    display:none;

}

/*=========================================
PROCESS ANIMATION
=========================================*/

.psh-export-process-item,
.psh-export-process-icon,
.psh-export-process-icon i,
.psh-export-process-item h5,
.psh-export-arrow i{

    transition:all .35s ease;

}

/*=========================================
LARGE SCREEN IMPROVEMENT
=========================================*/

@media (min-width:1200px){

    .psh-export-process-item{
        max-width:100px;
    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

    .psh-export-process-wrapper{

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:30px;

    }

    .psh-export-arrow{

        display:none;

    }

    .psh-export-process-item{

        padding:0 10px;

    }

    .psh-export-process-icon{

        width:80px;
        height:80px;

    }

    .psh-export-process-icon i{

        font-size:32px;

    }

    .psh-process-number{

        font-size:24px;

    }

    .psh-export-process-item h5{

        font-size:15px;

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

    .psh-export-process-wrapper{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .psh-export-process-wrapper{

        grid-template-columns:1fr;

    }

    .psh-export-process-icon{

        width:75px;
        height:75px;

    }

    .psh-export-process-icon i{

        font-size:30px;

    }

    .psh-process-number{

        font-size:22px;

    }

}
/*=====================================
WHY CHOOSE US
=====================================*/

.psh-export-why-box{

    position:relative;

    overflow:hidden;

    background:#081C39;

    border-radius:18px;

    padding:55px;

    min-height:430px;

    display:flex;

    align-items:flex-start;

    box-shadow:var(--shadow);

}

/* Background Image */

.psh-export-why-box::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    /* background:url("./assests/img/map-img.png") right center/contain no-repeat; */
    width:100%;

    height:200%;


    opacity:1.95;

    pointer-events:none;

}

/* Dark Overlay */

.psh-export-why-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,28,57,.1),
        rgba(8,28,57,.02)
    );

}

/* Content */

.psh-export-why-content{

    position:relative;

    z-index:5;

    max-width:480px;

}

.psh-export-why-content h3{

    color:#fff;

    font-size:20px;

    font-weight:700;

    margin-bottom:38px;

    font-family:var(--heading-font);

}
/*=========================================
CHECK LIST
=========================================*/
.psh-export-why-content ul{

    list-style:none;

    margin:0;

    padding:0;

}
.psh-export-why-content ul li{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:14px;

    color:#fff;

    font-size:16px;

    font-weight:500;

    line-height:1.5;

    font-family:var(--body-font);

}
.psh-export-why-content ul li i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#ff6b00;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}
@media(max-width:991px){

.psh-export-why-box{

    padding:40px 30px;

    min-height:auto;

}

.psh-export-why-box::after{

    position:relative;

    display:block;

    width:100%;

    height:240px;

    transform:none;

    right:auto;

    top:auto;

    margin-top:40px;

}

.psh-export-why-content{

    max-width:100%;

}

}


/*=========================================
HOVER EFFECT
=========================================*/

.psh-export-why-box{

    transition:var(--transition);

}

.psh-export-why-box:hover{

    transform:translateY(-6px);

}

.psh-export-why-content ul li{

    transition:var(--transition);

}

.psh-export-why-content ul li:hover{

    transform:translateX(8px);

    color:var(--white);

}

.psh-export-why-content ul li:hover i{

    color:#ffd54f;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px){

.psh-export-why-content{

    padding:40px;

}

.psh-export-why-content h3{

    font-size:28px;

}

}


@media(max-width:991px){

.psh-export-wrapper{

    grid-template-columns:1fr;

    gap:70px;

}

.psh-export-left{

    border-right:none;

    padding-right:0;

}

.psh-export-right{

    padding-left:0;

}

.psh-export-service-grid{

    grid-template-columns:repeat(2,1fr);

}

.psh-export-why-box{

    grid-template-columns:1fr;

}

.psh-export-world-map{

    min-height:260px;

    order:-1;

}

}


@media(max-width:767px){

.psh-export-services-section{

    padding:70px 0;

}

.psh-export-subtitle{

    font-size:28px;

}

.psh-export-heading p{

    font-size:15px;

}

.psh-export-service-grid{

    grid-template-columns:1fr;

}

.psh-export-service-card{

    padding:20px;

}

.psh-export-service-icon{

    width:65px;

    min-width:65px;

    height:65px;

}

.psh-export-service-icon i{

    font-size:28px;

}

.psh-export-service-content h4{

    font-size:19px;

}

.psh-export-why-content{

    padding:30px;

}

.psh-export-why-content h3{

    font-size:24px;

}

.psh-export-why-content ul{

    grid-template-columns:1fr;

    gap:15px;

}

.psh-export-world-map{

    min-height:220px;

}

}


@media(max-width:480px){

.psh-export-services-section{

    padding:55px 0;

}

.psh-export-subtitle{

    font-size:24px;

}

.psh-export-heading{

    margin-bottom:30px;

}

.psh-export-service-card{

    gap:15px;

    padding:18px;

}

.psh-export-service-content h4{

    font-size:18px;

}

.psh-export-service-content p{

    font-size:14px;

}

.psh-export-why-content{

    padding:25px 20px;

}

.psh-export-why-content h3{

    font-size:22px;

}

.psh-export-why-content ul li{

    font-size:14px;

}

.psh-export-world-map{

    min-height:180px;

}

}
/*=========================================
PACKAGING & LOGISTICS
=========================================*/

.psh-package-logistics-section{
    padding:20px 0;
    background:var(--white);
}

.psh-package-heading{
    margin-bottom:30px;
}

.psh-package-heading h2{

    font-size:30px;
    font-weight:700;
    line-height:1.2;
    color:var(--heading);
    font-family:var(--heading-font);
    margin-bottom:12px;

}

.psh-package-heading h2 span{

    color:var(--secondary);

}

.psh-package-heading p{

    font-size:16px;
    color:var(--text);
    line-height:1.8;
    max-width:650px;
    font-family:var(--body-font);

}


/*=========================================
CARD GRID
=========================================*/

.psh-package-card-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}


/*=========================================
CARD
=========================================*/

.psh-package-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:12px;

    overflow:hidden;

    transition:var(--transition);

    display:flex;

    flex-direction:column;

    height:100%;

    box-shadow:0 5px 18px rgba(0,0,0,.04);

}

.psh-package-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}


/*=========================================
IMAGE
=========================================*/

.psh-package-image{

    height:180px;

    overflow:hidden;

}

.psh-package-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.psh-package-card:hover img{

    transform:scale(1.08);

}


/*=========================================
CONTENT
=========================================*/

.psh-package-content{

    padding:20px 18px 24px;

    text-align:center;

    flex:1;

}

.psh-package-content h3{

    font-size:18px;

    color:var(--primary);

    font-weight:700;

    line-height:1.35;

    margin-bottom:12px;

    font-family:var(--heading-font);

}

.psh-package-content p{

    font-size:14px;

    color:var(--text);

    line-height:1.8;

    font-family:var(--body-font);

    margin:0;

}


/*=========================================
TABLET
=========================================*/

@media(max-width:1199px){

.psh-package-card-wrapper{

grid-template-columns:repeat(3,1fr);

}

}


@media(max-width:991px){

.psh-package-logistics-section{

padding:70px 0;

}

.psh-package-heading h2{

font-size:34px;

}

.psh-package-card-wrapper{

grid-template-columns:repeat(2,1fr);

}

}


/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

.psh-package-heading{

text-align:center;

}

.psh-package-heading h2{

font-size:28px;

}

.psh-package-heading p{

font-size:15px;

margin:auto;

}

.psh-package-card-wrapper{

grid-template-columns:1fr;

}

.psh-package-image{

height:220px;

}

}


@media(max-width:480px){

.psh-package-logistics-section{

padding:60px 0;

}

.psh-package-heading h2{

font-size:24px;

}

.psh-package-content h3{

font-size:20px;

}

.psh-package-content{

padding:18px;

}

}
.psh-package-logistics-section .container{

    display:block !important;

}

.psh-package-heading{

    width:100%;

    display:block;

    margin-bottom:35px;

}

.psh-package-card-wrapper{

    width:100%;

    display:grid;

    grid-template-columns:repeat(5,minmax(0,1fr));

    gap:20px;

}
/*=========================================
COUNTRIES WE SERVE SECTION
=========================================*/

.psh-country-section{
    padding:90px 0;
    background:var(--white);
    overflow:hidden;
}

.psh-country-wrapper{

    display:grid;
    grid-template-columns:48% 52%;
    gap:40px;
    align-items:center;

}


/*=========================================
LEFT SIDE
=========================================*/

.psh-country-left{
    position:relative;
}

.psh-country-heading{
    margin-bottom:30px;
}

.psh-country-heading h2{

    font-size:30px;
    font-weight:700;
    line-height:1.2;
    color:var(--primary);
    font-family:var(--heading-font);
    margin-bottom:10px;

}

.psh-country-heading h2 span{

    color:var(--heading);

}

.psh-country-heading p{

    font-size:17px;
    line-height:1.7;
    color:var(--text);
    font-family:var(--body-font);

}


/*=========================================
WORLD MAP
=========================================*/

.psh-country-map{

    width:100%;
    overflow:hidden;

}

.psh-country-map img{

    width:100%;
    display:block;
    object-fit:contain;
    border-radius:12px;

}


/*=========================================
RIGHT SIDE GRID
=========================================*/

.psh-country-right{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;

}


/*=========================================
COUNTRY CARD
=========================================*/

.psh-country-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:12px;

    min-height:105px;

    padding:16px 12px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    transition:var(--transition);

    box-shadow:0 4px 15px rgba(0,0,0,.04);

}

.psh-country-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

    border-color:rgba(10,77,163,.20);

}


/*=========================================
FLAG
=========================================*/

.psh-country-card img{

    width:56px;
    height:38px;

    object-fit:cover;

    border-radius:4px;

    margin-bottom:12px;

}


/*=========================================
COUNTRY NAME
=========================================*/

.psh-country-card h4{

    font-size:15px;
    font-weight:600;
    line-height:1.4;

    color:var(--heading);

    font-family:var(--body-font);

    margin:0;

}


/*=========================================
AND MANY MORE
=========================================*/

.psh-country-more i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:12px;

}

.psh-country-more h4{

    color:var(--primary);

}


/*=========================================
HOVER EFFECT
=========================================*/

.psh-country-card img,
.psh-country-card,
.psh-country-card h4,
.psh-country-more i{

    transition:all .35s ease;

}

.psh-country-card:hover img{

    transform:scale(1.08);

}

.psh-country-card:hover h4{

    color:var(--primary);

}
/*=========================================
RESPONSIVE CSS
=========================================*/

/* Large Laptop */

@media (max-width:1400px){

    .psh-country-wrapper{
        grid-template-columns:45% 55%;
        gap:30px;
    }

    .psh-country-right{
        grid-template-columns:repeat(6,1fr);
        gap:12px;
    }

}

/* Laptop */

@media (max-width:1199px){

    .psh-country-section{
        padding:80px 0;
    }

    .psh-country-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .psh-country-left{
        text-align:center;
    }

    .psh-country-heading p{
        margin:auto;
    }

    .psh-country-map{
        max-width:700px;
        margin:auto;
    }

    .psh-country-right{
        grid-template-columns:repeat(4,1fr);
    }

}


/* Tablet */

@media (max-width:991px){

    .psh-country-heading h2{
        font-size:34px;
    }

    .psh-country-heading p{
        font-size:16px;
    }

    .psh-country-right{

        grid-template-columns:repeat(3,1fr);

    }

}


/* Mobile */

@media (max-width:767px){

    .psh-country-section{
        padding:70px 0;
    }

    .psh-country-heading{
        text-align:center;
    }

    .psh-country-heading h2{
        font-size:28px;
    }

    .psh-country-heading p{
        font-size:15px;
    }

    .psh-country-map{

        margin-top:20px;

        margin-bottom:25px;

    }

    .psh-country-right{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .psh-country-card{

        min-height:95px;

    }

}


/* Small Mobile */

@media (max-width:480px){

    .psh-country-section{
        padding:60px 0;
    }

    .psh-country-heading h2{
        font-size:24px;
    }

    .psh-country-heading p{
        font-size:14px;
    }

    .psh-country-right{

        grid-template-columns:repeat(2,1fr);

        gap:10px;

    }

    .psh-country-card{

        padding:12px 8px;

        min-height:90px;

    }

    .psh-country-card img{

        width:42px;

        height:28px;

    }

    .psh-country-card h4{

        font-size:13px;

    }

}


/* Very Small Mobile */

@media (max-width:360px){

    .psh-country-right{

        grid-template-columns:1fr;

    }

}
/* global trust */
/*=========================================
CERTIFICATION SECTION
=========================================*/

.psh-certification-section{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}

.psh-certification-heading{
    text-align:center;
    margin-bottom:50px;
    position:relative;
}

.psh-certification-heading h2{

    font-size:30px;
    font-weight:700;
    color:var(--heading);
    font-family:var(--heading-font);
    line-height:1.2;
    margin-bottom:10px;

}

.psh-certification-heading h2 span{

    color:var(--secondary);

}

.psh-certification-heading p{

    font-size:17px;
    color:var(--text);
    font-family:var(--body-font);
    margin:0;

}


/*=========================================
SWIPER
=========================================*/

.psh-certification-swiper{

    padding:15px 8px 20px;

}

.psh-certification-swiper .swiper-slide{

    height:auto;

}


/*=========================================
CARD
=========================================*/

.psh-certification-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:14px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

    display:flex;

    flex-direction:column;

    height:100%;

}

.psh-certification-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}


/*=========================================
IMAGE
=========================================*/

.psh-certification-image{

    height:260px;

    overflow:hidden;

    background:#f8fafc;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:15px;

}

.psh-certification-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.5s;

}

.psh-certification-card:hover
.psh-certification-image img{

    transform:scale(1.05);

}


/*=========================================
CONTENT
=========================================*/

.psh-certification-content{

    padding:22px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.psh-certification-content h3{

    font-size:18px;

    font-weight:700;

    color:var(--primary);

    text-align:center;

    margin-bottom:12px;

    line-height:1.3;

    font-family:var(--heading-font);

}

.psh-certification-content p{

    font-size:14px;

    line-height:1.8;

    color:var(--text);

    text-align:center;

    margin-bottom:22px;

    font-family:var(--body-font);

    flex:1;

}


/*=========================================
BUTTON AREA
=========================================*/

.psh-certification-btns{

    display:flex;

    gap:10px;

    justify-content:center;

    align-items:center;

}


/*=========================================
VIEW BUTTON
=========================================*/

.psh-certification-view-btn{

    flex:1;

    height:48px;

    border:none;

    border-radius:var(--radius);

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    transition:var(--transition);

    font-family:var(--body-font);

}

.psh-certification-view-btn:hover{

    background:var(--primary-dark);

}


/*=========================================
DOWNLOAD BUTTON
=========================================*/

.psh-certification-download-btn{

    width:48px;

    height:48px;

    border-radius:var(--radius);

    background:var(--secondary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    transition:var(--transition);

}

.psh-certification-download-btn:hover{

    background:var(--secondary-hover);

    color:#fff;

}


/*=========================================
SMOOTH TRANSITION
=========================================*/

.psh-certification-card,
.psh-certification-image img,
.psh-certification-view-btn,
.psh-certification-download-btn{

    transition:all .35s ease;

}


.psh-certification-swiper .swiper-button-next,
.psh-certification-swiper .swiper-button-prev{

    width:48px;
    height:48px;

    background:var(--white);

    border-radius:50%;

    box-shadow:var(--shadow);

    color:var(--primary);

    transition:var(--transition);

}

.psh-certification-swiper .swiper-button-next::after,
.psh-certification-swiper .swiper-button-prev::after{

    font-size:18px;
    font-weight:700;

}

.psh-certification-swiper .swiper-button-next:hover,
.psh-certification-swiper .swiper-button-prev:hover{

    background:var(--primary);

    color:var(--white);

}


/*=========================================
PAGINATION
=========================================*/

.psh-certification-swiper .swiper-pagination{

    position:relative;

    margin-top:35px;

}

.psh-certification-swiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#cbd5e1;

    opacity:1;

}

.psh-certification-swiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:30px;

    background:var(--secondary);

}


/*=========================================
CARD HOVER
=========================================*/

.psh-certification-card{

    position:relative;

}

.psh-certification-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--secondary);

    transform:scaleX(0);

    transform-origin:left;

    transition:var(--transition);

}

.psh-certification-card:hover::before{

    transform:scaleX(1);

}

.psh-certification-card:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


/*=========================================
MODAL
=========================================*/

.psh-certification-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.psh-certification-modal.active{

    opacity:1;

    visibility:visible;

}

.psh-certification-modal-box{

    width:min(1000px,95%);

    height:85vh;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    position:relative;

}

.psh-certification-frame{

    width:100%;

    height:100%;

    border:none;

}

.psh-certification-close{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    cursor:pointer;

    z-index:10;

    transition:var(--transition);

}

.psh-certification-close:hover{

    background:var(--secondary-hover);

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1400px){

    .psh-certification-image{

        height:240px;

    }

}


@media(max-width:1200px){

    .psh-certification-section{

        padding:80px 0;

    }

    .psh-certification-heading h2{

        font-size:38px;

    }

}


@media(max-width:991px){

    .psh-certification-section{

        padding:70px 0;

    }

    .psh-certification-heading{

        margin-bottom:40px;

    }

    .psh-certification-heading h2{

        font-size:34px;

    }

    .psh-certification-heading p{

        font-size:16px;

    }

    .psh-certification-image{

        height:220px;

    }

    .psh-certification-content{

        padding:20px;

    }

}


@media(max-width:767px){

    .psh-certification-heading h2{

        font-size:28px;

    }

    .psh-certification-heading p{

        font-size:15px;

    }

    .psh-certification-image{

        height:200px;

    }

    .psh-certification-content h3{

        font-size:20px;

    }

    .psh-certification-content p{

        font-size:14px;

    }

    .psh-certification-btns{

        flex-direction:column;

    }

    .psh-certification-view-btn{

        width:100%;
        padding:12px;

    }

    .psh-certification-download-btn{

        width:100%;

        height:45px;

    }

    .psh-certification-modal-box{

        width:96%;

        height:80vh;

    }

}


@media(max-width:480px){

    .psh-certification-section{

        padding:60px 0;

    }

    .psh-certification-heading h2{

        font-size:24px;

    }

    .psh-certification-image{

        height:180px;

    }

    .psh-certification-content{

        padding:18px;

    }

    .psh-certification-content h3{

        font-size:18px;

    }

}
.psh-certification-section .container{
    display:block !important;
}
/*=========================================
COMPLIANCE SECTION
=========================================*/

.psh-compliance-section{

    /* padding:90px 0; */

    background:var(--white);

}
.psh-compliance-section .container{

    width:100% !important;
    min-width:100% !important;

}
.psh-compliance-wrapper{

    background:var(--footer);

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}


/*=========================================
HEADING
=========================================*/

.psh-compliance-heading{

    text-align:center;

    padding:28px 20px 20px;

}

.psh-compliance-heading h2{

    font-size:30px;

    font-weight:700;

    color:var(--white);

    font-family:var(--heading-font);

    margin:0;

    text-transform:uppercase;

}


/*=========================================
GRID
=========================================*/

.psh-compliance-grid{

    display:grid;

    grid-template-columns:repeat(8,1fr);

    align-items:stretch;

}


/*=========================================
ITEM
=========================================*/

.psh-compliance-item{

    padding:35px 18px;

    text-align:center;

    position:relative;

    transition:var(--transition);

}


/* Vertical Divider */

.psh-compliance-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:20px;

    right:0;

    width:1px;

    height:calc(100% - 40px);

    background:rgba(255,255,255,.10);

}


/*=========================================
ICON
=========================================*/

.psh-compliance-icon{

    width:60px;

    height:60px;

    margin:auto auto 22px;

    border:2px solid rgba(255,107,0,.25);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:var(--transition);

}

.psh-compliance-icon i{

    font-size:25px;

    color:var(--secondary);

    transition:var(--transition);

}


/*=========================================
TITLE
=========================================*/

.psh-compliance-item h3{

    font-size:18px;

    font-weight:700;

    line-height:1.4;

    color:var(--white);

    font-family:var(--heading-font);

    margin-bottom:14px;

    min-height:58px;

}


/*=========================================
DESCRIPTION
=========================================*/

.psh-compliance-item p{

    font-size:14px;

    line-height:1.8;

    color:rgba(255,255,255,.75);

    font-family:var(--body-font);

    margin:0;

}


/*=========================================
HOVER EFFECT
=========================================*/

.psh-compliance-item:hover{

    background:rgba(255,255,255,.03);

}

.psh-compliance-item:hover .psh-compliance-icon{

    background:var(--secondary);

    border-color:var(--secondary);

    transform:translateY(-6px);

}

.psh-compliance-item:hover .psh-compliance-icon i{

    color:var(--white);

}

.psh-compliance-item:hover h3{

    color:var(--secondary);

}
/*=========================================
RESPONSIVE CSS
=========================================*/

/* Large Desktop */

@media (max-width:1400px){

    .psh-compliance-grid{

        grid-template-columns:repeat(4,1fr);

    }

    .psh-compliance-item{

        padding:35px 22px;

    }

    .psh-compliance-item:nth-child(4)::after{

        display:none;

    }

}


/* Laptop */

@media (max-width:1199px){

    .psh-compliance-section{

        padding:80px 0;

    }

    .psh-compliance-heading h2{

        font-size:32px;

    }

    .psh-compliance-grid{

        grid-template-columns:repeat(4,1fr);

    }

}


/* Tablet */

@media (max-width:991px){

    .psh-compliance-section{

        padding:70px 0;

    }

    .psh-compliance-heading{

        padding:25px 15px 20px;

    }

    .psh-compliance-heading h2{

        font-size:28px;

    }

    .psh-compliance-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .psh-compliance-item{

        padding:30px 20px;

    }

    .psh-compliance-item:nth-child(even)::after{

        display:none;

    }

}


/* Mobile */

@media (max-width:767px){

    .psh-compliance-wrapper{

        border-radius:14px;

    }

    .psh-compliance-heading h2{

        font-size:24px;

        line-height:1.4;

    }

    .psh-compliance-grid{

        grid-template-columns:1fr;

    }

    .psh-compliance-item{

        padding:28px 22px;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .psh-compliance-item:last-child{

        border-bottom:none;

    }

    .psh-compliance-item::after{

        display:none !important;

    }

}


/* Small Mobile */

@media (max-width:480px){

    .psh-compliance-section{

        padding:60px 0;

    }

    .psh-compliance-heading{

        padding:22px 15px 18px;

    }

    .psh-compliance-heading h2{

        font-size:21px;

    }

    .psh-compliance-icon{

        width:64px;

        height:64px;

        margin-bottom:18px;

    }

    .psh-compliance-icon i{

        font-size:30px;

    }

    .psh-compliance-item h3{

        font-size:18px;

        min-height:auto;

    }

    .psh-compliance-item p{

        font-size:14px;

        line-height:1.7;

    }

}


/*=========================================
SMOOTH ANIMATION
=========================================*/

.psh-compliance-item,
.psh-compliance-icon,
.psh-compliance-icon i,
.psh-compliance-item h3{

    transition:all .35s ease;

}


/*=========================================
EXTRA HOVER
=========================================*/

.psh-compliance-item{

    overflow:hidden;

}

.psh-compliance-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:var(--secondary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s ease;

}

.psh-compliance-item:hover::before{

    transform:scaleX(1);

}
/*=========================================
BUYER TRUST SECTION
=========================================*/

.psh-buyer-trust-section{

    padding:50px 0;

    background:var(--white);

}
.psh-buyer-trust-section .container{

  display:block !important;

}

.psh-buyer-trust-heading{

    text-align:center;

    margin-bottom:45px;

}

.psh-buyer-trust-heading h2{

    font-size:30px;

    font-weight:700;

    color:var(--heading);

    font-family:var(--heading-font);

    line-height:1.3;

}

.psh-buyer-trust-heading span{

    color:var(--primary);

}


/*=========================================
GRID
=========================================*/

.psh-buyer-trust-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px 45px;

}


/*=========================================
ITEM
=========================================*/

.psh-buyer-trust-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px 20px;

    border:1px solid var(--border);

    border-radius:10px;

    transition:var(--transition);

    background:var(--white);

}

.psh-buyer-trust-item i{

    font-size:20px;

    color:var(--secondary);

    flex-shrink:0;

}

.psh-buyer-trust-item span{

    font-size:16px;

    font-weight:600;

    color:var(--heading);

    line-height:1.6;

    font-family:var(--body-font);

}


/*=========================================
HOVER
=========================================*/

.psh-buyer-trust-item:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow);

    border-color:var(--secondary);
    

}

.psh-buyer-trust-item:hover i{

    transform:scale(1.15);

}

.psh-buyer-trust-item i{

    transition:.35s;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.psh-buyer-trust-heading h2{

font-size:32px;

}

.psh-buyer-trust-grid{

grid-template-columns:1fr;

gap:20px;

}

}


@media(max-width:767px){

.psh-buyer-trust-section{

padding:70px 0;

}

.psh-buyer-trust-heading{

margin-bottom:35px;

}

.psh-buyer-trust-heading h2{

font-size:28px;

}

.psh-buyer-trust-item{

padding:15px;

}

.psh-buyer-trust-item span{

font-size:16px;

}

}


@media(max-width:480px){

.psh-buyer-trust-heading h2{

font-size:24px;

}

.psh-buyer-trust-item{

gap:12px;

}

.psh-buyer-trust-item i{

font-size:22px;

}

.psh-buyer-trust-item span{

font-size:15px;

}

}
/*=========================================
INDUSTRIES WE SERVE SECTION
=========================================*/

.psh-industries-section{

    padding:50px 0;

    background:var(--white);

}
.psh-industries-section .container{

    display:block !important;

}

.psh-industries-heading{

    text-align:center;

    margin-bottom:55px;

}

.psh-industries-heading h2{

    font-size:30px;

    font-weight:700;

    color:var(--heading);

    font-family:var(--heading-font);

    text-transform:uppercase;

    line-height:1.3;

    margin:0;

}

.psh-industries-heading span{

    color:var(--primary);

}


/*=========================================
GRID
=========================================*/

.psh-industries-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}


/*=========================================
CARD
=========================================*/

.psh-industries-item{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:14px;

    padding:30px 20px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow);

    cursor:pointer;

}


/*=========================================
ICON
=========================================*/

.psh-industries-icon{

    width:65px;

    height:65px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#f8fbff;

    border:2px solid rgba(10,77,163,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:var(--transition);

}

.psh-industries-icon i{

    font-size:25px;

    color:var(--primary);

    transition:var(--transition);

}


/*=========================================
TITLE
=========================================*/

.psh-industries-item h3{

    font-size:18px;

    font-weight:600;

    color:var(--heading);

    font-family:var(--heading-font);

    line-height:1.5;

    margin:0;

    min-height:55px;

}


/*=========================================
HOVER
=========================================*/

.psh-industries-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.psh-industries-item:hover .psh-industries-icon{

    background:var(--secondary);

    border-color:var(--secondary);

    transform:rotateY(180deg);

}

.psh-industries-item:hover .psh-industries-icon i{

    color:var(--white);

    transform:rotateY(-180deg);

}

.psh-industries-item:hover h3{

    color:var(--primary);

}


/*=========================================
SMOOTH
=========================================*/

.psh-industries-item,
.psh-industries-icon,
.psh-industries-icon i{

    transition:all .35s ease;

}
/*=========================================
RESPONSIVE CSS
=========================================*/

/* Large Laptop */

@media (max-width:1400px){

    .psh-industries-grid{

        grid-template-columns:repeat(4,1fr);

    }

}


/* Laptop */

@media (max-width:1199px){

    .psh-industries-section{

        padding:80px 0;

    }

    .psh-industries-heading h2{

        font-size:36px;

    }

    .psh-industries-grid{

        grid-template-columns:repeat(4,1fr);

        gap:24px;

    }

    .psh-industries-item{

        padding:28px 18px;

    }

}


/* Tablet */

@media (max-width:991px){

    .psh-industries-section{

        padding:70px 0;

    }

    .psh-industries-heading{

        margin-bottom:40px;

    }

    .psh-industries-heading h2{

        font-size:32px;

    }

    .psh-industries-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .psh-industries-icon{

        width:78px;

        height:78px;

    }

    .psh-industries-icon i{

        font-size:34px;

    }

}


/* Mobile */

@media (max-width:767px){

    .psh-industries-section{

        padding:60px 0;

    }

    .psh-industries-heading h2{

        font-size:28px;

        line-height:1.4;

    }

    .psh-industries-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .psh-industries-item{

        display:flex;

        align-items:center;

        gap:18px;

        text-align:left;

        padding:18px;

    }

    .psh-industries-icon{

        margin:0;

        width:68px;

        height:68px;

        flex-shrink:0;

    }

    .psh-industries-icon i{

        font-size:30px;

    }

    .psh-industries-item h3{

        min-height:auto;

        font-size:17px;

        margin:0;

    }

}


/* Small Mobile */

@media (max-width:480px){

    .psh-industries-heading h2{

        font-size:24px;

    }

    .psh-industries-item{

        gap:15px;

        padding:16px;

    }

    .psh-industries-icon{

        width:60px;

        height:60px;

    }

    .psh-industries-icon i{

        font-size:26px;

    }

    .psh-industries-item h3{

        font-size:16px;

    }

}


/*=========================================
EXTRA HOVER EFFECT
=========================================*/

.psh-industries-item{

    position:relative;

    overflow:hidden;

}

.psh-industries-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:var(--secondary);

    transform:scaleY(0);

    transform-origin:top;

    transition:var(--transition);

}

.psh-industries-item:hover::before{

    transform:scaleY(1);

}

.psh-industries-item:hover{

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}


/*=========================================
SMOOTH
=========================================*/

.psh-industries-item,
.psh-industries-icon,
.psh-industries-icon i,
.psh-industries-item h3{

    transition:all .35s ease;

}
/*=========================================
GLOBAL TESTIMONIAL SECTION
=========================================*/

.psh-global-testimonial-section{

    padding:50px 0;

    background:var(--white);

}
.psh-global-testimonial-section .container{

    display:block !important;

}

.psh-global-testimonial-heading{

    text-align:center;

    margin-bottom:55px;

}

.psh-global-testimonial-heading h2{

    font-size:30px;

    font-weight:700;

    color:var(--heading);

    font-family:var(--heading-font);

    text-transform:uppercase;

    line-height:1.3;

    margin:0;

}

.psh-global-testimonial-heading span{

    color:var(--primary);

}


/*=========================================
SWIPER
=========================================*/

.psh-global-testimonial-slider{

    padding:15px 8px 60px;

}

.psh-global-testimonial-slider .swiper-slide{

    height:auto;

    display:flex;

}


/*=========================================
CARD
=========================================*/

.psh-global-testimonial-card{

    width:100%;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:14px;

    padding:25px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    display:flex;

    flex-direction:column;

}

.psh-global-testimonial-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}


/*=========================================
TOP AREA
=========================================*/

.psh-global-testimonial-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.psh-global-testimonial-top img{

    width:48px;

    height:34px;

    object-fit:cover;

    border-radius:4px;

    border:1px solid var(--border);

}


/*=========================================
STARS
=========================================*/

.psh-global-testimonial-stars{

    display:flex;

    gap:4px;

}

.psh-global-testimonial-stars i{

    color:#FDBA12;

    font-size:15px;

}


/*=========================================
TEXT
=========================================*/

.psh-global-testimonial-card p{

    font-size:15px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:22px;

    font-family:var(--body-font);

    flex:1;

    font-style:italic;

}


/*=========================================
CLIENT NAME
=========================================*/

.psh-global-testimonial-card h4{

    font-size:18px;

    color:var(--heading);

    font-weight:700;

    margin-bottom:5px;

    font-family:var(--heading-font);

}

.psh-global-testimonial-card span{

    color:var(--primary);

    font-size:15px;

    font-weight:600;

}


/*=========================================
HOVER EFFECT
=========================================*/

.psh-global-testimonial-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--secondary);

    transform:scaleX(0);

    transform-origin:left;

    transition:var(--transition);

}

.psh-global-testimonial-card{

    position:relative;

    overflow:hidden;

}

.psh-global-testimonial-card:hover::before{

    transform:scaleX(1);

}


/*=========================================
NAVIGATION
=========================================*/

.psh-global-testimonial-slider .swiper-button-next,
.psh-global-testimonial-slider .swiper-button-prev{

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--white);

    color:var(--primary);

    box-shadow:var(--shadow);

}

.psh-global-testimonial-slider .swiper-button-next::after,
.psh-global-testimonial-slider .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.psh-global-testimonial-slider .swiper-button-next:hover,
.psh-global-testimonial-slider .swiper-button-prev:hover{

    background:var(--primary);

    color:var(--white);

}


/*=========================================
PAGINATION
=========================================*/

.psh-global-testimonial-slider .swiper-pagination-bullet{

    width:11px;

    height:11px;

    opacity:1;

    background:#cbd5e1;

}

.psh-global-testimonial-slider .swiper-pagination-bullet-active{

    width:28px;

    border-radius:50px;

    background:var(--secondary);

}


/*=========================================
SMOOTH
=========================================*/

.psh-global-testimonial-card,
.psh-global-testimonial-top img,
.psh-global-testimonial-stars i{

    transition:all .35s ease;

}
/*=========================================
RESPONSIVE
=========================================*/

/* Large Laptop */

@media (max-width:1400px){

    .psh-global-testimonial-heading h2{

        font-size:38px;

    }

}


/* Laptop */

@media (max-width:1199px){

    .psh-global-testimonial-section{

        padding:80px 0;

    }

    .psh-global-testimonial-heading{

        margin-bottom:45px;

    }

    .psh-global-testimonial-heading h2{

        font-size:34px;

    }

    .psh-global-testimonial-card{

        padding:22px;

    }

}


/* Tablet */

@media (max-width:991px){

    .psh-global-testimonial-section{

        padding:70px 0;

    }

    .psh-global-testimonial-heading h2{

        font-size:30px;

    }

    .psh-global-testimonial-card{

        padding:20px;

    }

    .psh-global-testimonial-card p{

        font-size:14px;

        line-height:1.8;

    }

}


/* Mobile */

@media (max-width:767px){

    .psh-global-testimonial-section{

        padding:60px 0;

    }

    .psh-global-testimonial-heading{

        margin-bottom:35px;

    }

    .psh-global-testimonial-heading h2{

        font-size:26px;

        line-height:1.4;

    }

    .psh-global-testimonial-card{

        padding:18px;

    }

    .psh-global-testimonial-top{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

    .psh-global-testimonial-top img{

        width:55px;

        height:38px;

    }

    .psh-global-testimonial-card h4{

        font-size:17px;

    }

    .psh-global-testimonial-card span{

        font-size:14px;

    }

    .psh-global-testimonial-slider{

        padding-bottom:55px;

    }

}


/* Small Mobile */

@media (max-width:480px){

    .psh-global-testimonial-heading h2{

        font-size:22px;

    }

    .psh-global-testimonial-card{

        padding:16px;

        border-radius:12px;

    }

    .psh-global-testimonial-card p{

        font-size:13px;

    }

    .psh-global-testimonial-top img{

        width:48px;

        height:32px;

    }

    .psh-global-testimonial-stars i{

        font-size:13px;

    }

    .psh-global-testimonial-card h4{

        font-size:16px;

    }

}


/*=========================================
HOVER EFFECT
=========================================*/

.psh-global-testimonial-card:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.psh-global-testimonial-card:hover .psh-global-testimonial-top img{

    transform:scale(1.08);

}

.psh-global-testimonial-card:hover .psh-global-testimonial-stars i{

    transform:translateY(-2px);

}

.psh-global-testimonial-card:hover h4{

    color:var(--primary);

}


/*=========================================
SMOOTH
=========================================*/

.psh-global-testimonial-card,
.psh-global-testimonial-top img,
.psh-global-testimonial-stars i,
.psh-global-testimonial-card h4{

    transition:all .35s ease;

}
.psh-hero-stats-h3-123{
    font-size: 18px !;
    font-weight: 600;
    color: var(--heading) !important;
    line-height: 1.4;
    font-family: var(--body-font);
    margin-bottom: 0px;
}
.psh-hero-stats-p-123{
    font-size: 14px;
    color: var(--text) !important;
    line-height: 1.6;
    font-family: var(--body-font);
    margin-bottom: 0px;
}