/*
Template: Buildar - Construction HTML Template
Author: peacefulqode.com
Version: 1.0
Design and Developed by: Peacefulqode
*/

/*==============================================
[  Table of contents  ]
================================================
==> Moz Selection
==> General
==> Loading
==> Back To Top
==> Button Core
==> Button Rounded
==> Section Title
==> OWL Carousel
==> Header
==> Service
==> Service Single
==> Isotope Portfolio
==> Portfolio
==> Popup Video
==> Team
==> Background SVG
==> Counter
==> Process Steps
==> Text Border
==> Testimonial
==> Clients
==> Fancy Box
==> Pricing Box
==> Contact Form
==> Breadcrumb
==> Blog
==> Recent Post
==> Blog Sidebar
==> Pagination
==> Single Post Navigation
==> single project css
==> Footer
==> Wow Image effects
==> Award
==> Accordion-Box
==> Tooltip
==> Tab
==> Form
==> Coustom CSS
=======================================
[ End table content ]
======================================*/


@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&amp;family=Unbounded:wght@200..900&amp;display=swap');


/* ################################# */

/* Moz Selection */

/* ################################# */
:root {
    --primary-color: #FF761B;
    --dark-color: #15141C;
    --secondary-color: #525256;
    --grey-color: #F3F3F3;
    --white-color: #ffffff;
    --body-fonts: "Titillium Web", sans-serif;
    --title-fonts: "Unbounded", sans-serif;
    --font-weight: 500;
    --border-radius: 20px;
    --big--border-radius: 900px;
    --transition-duration: 0.5s;
    --transition-timing-function: ease-in-out;
    --transition: all 0.5s ease-in-out;
    --box-shadow: -4px -4px 1px 2px var(--primary-color);
}

/* ################################# */

/* General */

/* ################################# */

/* before footer */
/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Wrapper column */
.right-column {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    /* CENTER the items */
    padding: 40px 20px;
    background-color: #fff;
    /* optional */
}

/* Each feature box */
.single-item {
    background-color: #5f5f5f;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(33.333% - 30px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
}

.single-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Icon style */
.icon-box {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff761b;
}

/* Title */
.single-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: rgba(255, 209, 0, 255);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Description */
.single-item p {
    font-size: 14px;
    color: #fbfbfb;
    line-height: 1.6;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .single-item {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .single-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* after footer */
body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.8;
    color: #201a1a;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: var(--font-weight);
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;

}

h3 {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;

}


h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*============ HTML Tags=================*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;

    /* Clear text enhancements */
    font-weight: 500;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    /* Optional: clean, modern font */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


a:focus,
a:hover {
    color: var(--primary-color);
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 65px;
    text-align: center;
    font-size: 22px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 600;
}

/*============  Lists (Nested)=================*/
ol,
ul {
    padding-left: 250px;
    margin-bottom: 0;
    padding-top: 60px;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: none;
}

/*============Definition Lists=================*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*============ Table =================*/
table {
    border: 2px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid var(--grey-color);
    padding: 8px;
    text-align: center;
}

/*============ Input Textarea =================*/
input,
textarea,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    margin-bottom: 30px;
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border-radius: var(--border-radius);
}

input::placeholder {
    color: var(--dark-color);
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

textarea {
    margin-bottom: 30px;
    height: 150px;
    border-radius: var(--border-radius);
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

textarea::placeholder {
    color: var(--dark-color);
}

/*============  Select ==============*/
select,
select.form-control {
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill=!string!height=!string!viewBox=!string!width=!string!xmlns=!string!><path d=!string!/><path d=!string!fill=!string!/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
    border-radius: 3px;
}

/*===== Container =====*/
.container {
    max-width: 1400px;
}

section {
    padding: 60px 0;
    position: relative;
    margin-bottom: 2px;
}

@media(max-width: 1199px) {
    section {
        padding: 0 0;
    }
}

@media(max-width: 767px) {
    section {
        padding: 23px 0;
    }
}

/* ################################# */
/* Loading */
/* ################################# */

#pq-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pq-loading img {
    height: 60px;
}

/*================================================
    OWL Carousel
================================================*/

/*===== Nav =====*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    cursor: inherit;
    justify-content: center;
}

.owl-carousel .owl-nav {
    margin-top: 30px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--dark-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg) translate(0px, 0px);
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}


/*===== prev-next =====*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    cursor: inherit;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 70px;
    height: 70px;
    line-height: 75px;
    background: var(--dark-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg) translate(0px, 0px);
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}

/*++++++++++++++++ Dots +++++++++++*/

.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    line-height: normal;
    position: relative;
    width: 100%;
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background-color: var(--dark-color);
    border: 0 solid var(--grey-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 12px;
    width: 12px;
    transition: var(--transition-duration);
    -webkit-transition: var(--transition-duration);
    -o-transition: var(--transition-duration);
    -moz-transition: var(--transition-duration);
    -ms-transition: var(--transition-duration);
    cursor: pointer;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

/* ################################# */
/* Header Top */
/* ################################# */

.pq-header-style-1 {
    width: 100%;
    z-index: 99;
}

.pq-top-header.top-style-1 {
    background: var(--dark-color);
    font-size: 16px;
    font-family: var(--title-fonts);
    padding: 0 45px;
}

.pq-top-header.top-style-1 .top-header-row {
    display: flex;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

.pq-header-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pq-header-contact ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pq-header-contact ul li,
.pq-header-contact ul li a,
.pq-header-contact ul li i {
    color: white;
    /* original orange */
    transition: color 0.3s ease;
}

.pq-header-contact ul li:hover a,
.pq-header-contact ul li:hover i {
    color: #fd7e14;
    /* on hover */

}


.pq-header-contact ul li a i,
.pq-header-contact ul li i {
    margin-right: 8px;
}

.pq-header-contact ul li a i::before,
.pq-header-contact ul li i::before {
    vertical-align: middle;
}

.pq-header-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pq-header-social ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pq-header-social ul li a {
    color: var(--white-color);
}

.pq-header-social ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 1399px) {
    .pq-top-header.top-style-1 {
        padding: 0;
    }
}

@media (max-width: 1299px) {
    .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }
}

@media (max-width: 767px) {
    .pq-top-header.top-style-1 {
        display: none;
    }
}

@media (max-width: 768px) {
    .pq-top-header.top-style-1 {
        display: none;
    }

    .pq-top-header.top-style-1 .top-header-row {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .pq-top-header.top-style-1 {
        display: none;
    }
}

/* ################################# */
/* Header Logo */
/* ################################# */

#pq-header .pq-bottom-header .pq-header-logo {
    line-height: 90px;
}

.pq-header-logo .navbar-brand .header-logo {
    width: 204px;
}

#pq-header .navbar-brand img {
    height: 100%;
}

@media (max-width: 379px) {
    #pq-header .navbar-brand img {
        height: 45px;
    }
}

/* ################################# */
/*  Header bottom style-1 */
/* ################################# */

#pq-header {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 99;
}

#pq-header.pq-header-style-1 .pq-bottom-header.pq-has-sticky {
    position: fixed;
    display: inline-block;
    width: 100%;
    z-index: 99;
    top: -100%;
    transition: var(--transition);
    transition-duration: 0.8s;
}

#pq-header.pq-header-style-1 .pq-bottom-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: #ffffffb5;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

#pq-header.pq-header-style-2 .pq-bottom-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background-color: var(--white-color);
    ;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

.pq-header-style-1 .pq-bottom-header {
    padding: 0 45px;
    background: #ffffffd1;
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    transition: 0s;
}

.pq-bottom-header .navbar {
    padding: 0;
    justify-content: space-between !important;
}

.pq-bottom-header .navbar .navbar-collapse {
    justify-content: center;
    flex-grow: inherit;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu {
    display: flex;
    padding: 0;
    margin: 0;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item {
    list-style: none;
    margin-right: 30px;
    position: relative;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:last-child {
    padding-right: 0;
}

/* .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a {
    text-transform: capitalize;
    transition: var(--transition-duration);
    line-height: 90px;
    display: inline-block;
    color: var(--white-color);

} */

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item>a {
    color: #132e6b;
    font-weight: bold;
    font-size: 22px;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:hover>a {
    color: #fd7e14;
    font-weight: normal;
}

/* .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>a {
    color: var(--primary-color);
} */

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
    font-size: 14px;
    line-height: 22px;
    transition: var(--transition-duration);
    color: #132e6b;
    margin-left: 6px;
    font-weight: bold;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:hover>i {
    color: var(--primary-color);
    font-weight: normal;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>i {
    color: var(--primary-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu {
    display: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: whitesmoke;
    z-index: 11;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(28, 46, 22, 0.2);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu {
    display: none;
    width: 300px;
    background-color: white;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item {
    line-height: 0;
    display: block;
    margin-right: 0;

}

/* Hide all sub-menus by default */
.pq-main-menu .sub-menu {
    display: none;
}

/* Show when parent has "open" */
.pq-main-menu .menu-item.open>.sub-menu {
    display: block;
}


.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 32px;
    line-height: 18px;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: var(--transition-duration);
    position: relative;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:first-child>a {
    border-radius: 10px 10px 0 0;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:last-child>a {
    border-radius: 0 0 10px 10px;
}

/* .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover a {
    color: var(--white-color);
    background-color: var(--primary-color);
} */

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item a {
    color: var(--dark-color);

}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item.current-menu-item a {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item.current-menu-item i {
    color: var(--white-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 14px;
    line-height: 34px;
    transform: rotate(270deg);
    transition: var(--transition-duration);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover i {
    color: var(--white-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu {
    display: none;
    position: relative;
}

.sub-menu {
    position: fixed;
    top: 80px;
    /* adjust based on your header height */
    left: 200px;
    /* adjust based on menu position */
    max-height: calc(100vh - 100px);
    /* full screen height minus header */
    overflow-y: auto;
}


/* .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a {
    background-color: var(--white-color);
    color: var(--dark-color);
} */

/* .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item a {
    background-color: var(--primary-color);
    color: var(--white-color);
} */

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:hover a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:first-child>a {
    border-radius: 10px 10px 0 0;
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:last-child>a {
    border-radius: 0 0 10px 10px;
}

.pq-bottom-header .navbar .navbar-toggler {
    width: 56px;
    height: 56px;
    padding: 0;

    border-radius: 100%;
    background-color: var(--primary-color);
    box-shadow: none;

}

.pq-bottom-header .navbar .navbar-toggler i {
    color: var(--white-color);
}

@media (max-width: 1499px) {
    header#pq-header .pq-bottom-header {
        padding: 0;
    }

    header#pq-header .pq-bottom-header .pq-menu-contain {
        font-size: 14px;
    }
}

@media (max-width: 1365px) {
    header#pq-header .pq-bottom-header .navbar-collapse .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .pq-header-right .pq-header-icon {
        gap: 5px;
    }

    header#pq-header .pq-bottom-header .pq-menu-contain {
        font-size: 14px;
    }


}

@media (max-width:1365px) {

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

}

@media (max-width:1279px) {

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

    .pq-header-right {
        margin-left: auto;
    }


}

@media (max-width:1099px) {

    .pq-header-right {
        margin-left: auto;
    }

}

@media (max-width: 1199px) {
    header#pq-header .pq-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: white;
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        z-index: 12;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu {
        flex-direction: column;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu>.menu-item {
        margin-right: 0;
        padding: 7px;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a {
        width: 100%;
        line-height: 0;
        color: var(--dark-color);
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
        position: absolute;
        right: 20px;
        top: 26px;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu {
        position: relative;
        box-shadow: none;
        width: 100%;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item i {
        transform: rotate(0deg);
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover .sub-menu {
        position: relative;
        left: 0;
        top: 0;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:first-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:first-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .pq-header-right {
        margin-left: auto;
        margin-right: 15px;
    }
}


@media (max-width:767px) {
    .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

}

@media (max-width: 479px) {
    .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

}

@media (max-width: 397px) {
    .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

    .pq-bottom-header .navbar .navbar-toggler {
        padding: 7px 10px;
    }
}

/* ################################# */
/*  Header Bottom style-2 */
/* ################################# */

.pq-header-style-2 .pq-bottom-header {
    padding: 0 45px;
    background-color: var(--white-color);
    transition: 0s;
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a {
    color: var(--dark-color);
}

.pq-header-style-2 .pq-bottom-header .pq-header-right .pq-header-contact span {
    color: var(--dark-color);
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
    color: var(--dark-color);
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item .pq-inner-icon {
    color: var(--primary-color);
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a:hover {
    color: var(--primary-color);
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>a {
    color: var(--primary-color);
}

@media (max-width: 379px) {
    #pq-header .navbar-brand img {
        height: 100%;
    }
}

/* ################################# */
/*  Header Right*/
/* ################################# */

.pq-header-right .pq-header-icon {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.pq-header-right .pq-header-icon .pq-header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    /* color: var(--white-color); */
    color: #132e6b;
}

.pq-header-right .pq-header-icon .pq-header-contact a :hover {
    color: #fd7e14;
}

.pq-header-right .pq-header-icon .pq-header-contact .pq-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    /* background: var(--grey-color); */
    color: white;
    background-color: #132e6b;
    /* color: var(--primary-color); */
    border-radius: var(--big--border-radius);
    display: inline-block;
}

/* ################################# */
/*  Search*/
/* ################################# */

.pq-header-right .pq-header-icon .pq-search-button {
    width: 56px;
    height: 56px;
    font-size: 20px;
    line-height: 58px;
    text-align: center;
    background: var(--grey-color);
    color: var(--primary-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

.pq-header-right .pq-header-icon .pq-search-button svg {
    fill: var(--primary-color);
    width: 20px;
}

.pq-header-right .pq-header-icon .pq-search-button svg path {
    fill: var(--primary-color);
}

/* ################################# */
/*  Header Search*/
/* ################################# */

.pq-search-button .offcanvas {
    position: fixed;
    z-index: 1050;
    background-color: var(--white-color) !important;
    padding: 45px;
    height: auto;
    bottom: inherit;
    transform: translateY(-100%) !important;
    transition: all 0.5s ease;
    overflow: hidden;
}

.pq-search-button .offcanvas.show {
    display: block;
    transform: translateY(0%) !important;
}

.pq-search-button .offcanvas .btn-close-icon {
    display: inline-block;
    position: absolute;
    right: -60px;
    padding: 0;
    margin-left: 30px;
    box-shadow: none;
    width: 55px;
    height: 55px;
    font-weight: 400;
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 100%;
    color: var(--white-color);
    border: none;
}

.pq-search-button .offcanvas .btn-close-icon:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-search-button .offcanvas .btn-close-icon:before {
    font-size: 20px;
    content: "\e646";
    font-family: "themify";
}

.pq-search-button .offcanvas .search-form {
    margin: 0 auto;
    width: 60%;
    position: relative;
}

.pq-search-button .offcanvas .search-form label {
    display: block;
}

.pq-search-button .offcanvas .search-form .search-field {
    border: none;
    color: var(--secondary-color);
    background: var(--grey-color);
    padding-left: 30px;
    margin: 0;
    border-radius: var(--border-radius);
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color);
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-search-button .offcanvas .search-form .search-submit:before {
    content: "\e610";
    font-family: "themify";
    font-weight: 500;
}

.pq-search-button .offcanvas .search-form #search-clear {
    display: none;
}

.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.pq-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--dark-color) !important;
}

.pq-search-button .offcanvas .search-form .search-submit:hover {
    color: var(--primary-color) !important;
}

/*+++++ SideBar - Search +++++*/
.widget {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
}

.widget.widget_search {
    background: var(--primary-color);
}

.widget.widget_search .widgettitle {
    display: none;
}

.widget.widget_search .widget-title {
    display: none;
}

.wp-block-search {
    position: relative;
}

.wp-block-search label {
    display: none;
}

.wp-block-search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
}

.wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    font-size: 0px;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.wp-block-search .wp-block-search__button:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-form label input.search-field {
    margin: 0;
}

.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.widget input[type="search"]::-webkit-search-decoration,
.widget input[type="search"]::-webkit-search-cancel-button,
.widget input[type="search"]::-webkit-search-results-button,
.widget input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}


.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
    border-radius: var(--border-radius);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
}

.search-submit:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

/* ################################# */
/*  section-title*/
/* ################################# */


.pq-section-title.text-center {
    padding: 0 5em;
    margin-bottom: 60px;
}

.pq-title-left {
    color: var(--white-color);
}

.pq-section-title .pq-title-subtitle {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    margin: 20px 0 10px;
    display: inline-block;
    letter-spacing: 1px;
    align-items: center;
}

/* First word: dark blue */
.pq-title-subtitle .text-blue {
    color: #132e6b;
}

/* Rest of the text: orange */
.pq-title-subtitle .text-orange {
    color: #fd7e14;
}

/* border */
.pq-section-title .pq-title-subtitle::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 270px;
    width: 15%;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
}

/* css classname */
.pq-section-title.custom-subtitle-line .pq-title-subtitle {
    position: relative;
}

.pq-section-title.custom-subtitle-line .pq-title-subtitle::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 270px;
    /* Adjust as needed for center alignment */
    width: 15%;
    height: 2px;
    background: var(--primary-color);
    /* or use a specific color like #FF761B */
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);

}

.pq-section-title.text-left .pt-title-subtitle {
    padding: 0;
    justify-content: center;
}

.pq-section-title .pq-title-heading {
    font-size: 24px;
    line-height: 40px;
    z-index: 9;
    color: var(--dark-color);
    margin: 0;
    position: relative;
    display: block;
    margin-bottom: 35px;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
}

.pq-section-title .pq-title-heading.pq-heading-1 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.pq-section-title .pq-title-heading-1 {
    font-size: 45px;
    line-height: 53px;
    z-index: 9;
    color: var(--white-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.pq-section-title .pq-title-description {
    font-family: var(--body-fonts);
    font-size: 18px;
    font-weight: 400;
    z-index: 9;
    position: relative;
    margin: 0 0 0 0;

}

.pq-section-title .pq-title-subtitle {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-transform: capitalize;
    margin: 20px auto 10px;
    /* Center horizontally */
    letter-spacing: 1px;
    display: block;
    text-align: center;
    /* Center text */
    position: relative;
}

.recent-creations-section .pq-title-subtitle::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 45%;
    transform: translateX(-50%);
    width: 135px;
    height: 2px;
    background: var(--primary-color);
}

/* about us border */

.about-subtitle .pq-title-subtitle {
    position: relative;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.about-subtitle .pq-title-subtitle::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 15%;
    transform: translateX(-50%);
    width: 138px;
    /* Adjust as needed */
    height: 2px;
    background: var(--primary-color);
}


/* end */

@media(max-width:1399px) {
    .pq-section-title.text-center {
        padding: 0 8em;
    }
}

@media(max-width:1299px) {
    .pq-section-title.text-center {
        padding: 0 4em;
    }

    .pq-section-title .pq-title-heading {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:1099px) {
    .pq-section-title .pq-title-heading {
        font-size: 34px;
        line-height: 42px;
    }
}

@media(max-width:1023px) {
    .pq-section-title .pq-title-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-section-title.text-center {
        padding: 0;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .about-us .row {
        flex-direction: column;
        align-items: center;
    }

    .about-us .col-lg-5,
    .about-us .col-lg-7 {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .pq-about-images {
        text-align: center;
        margin-bottom: 25px;
    }

    .pq-about-images img {
        max-width: 100%;
        height: auto;
    }

    .pq-section-title.left-title,
    .pq-section-title.text-left {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 24px;
        line-height: 32px;
        margin: 0 auto 10px;
        display: inline-block;
        position: relative;
    }

    .pq-section-title .pq-title-subtitle::before {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--primary-color);
    }

    .pq-section-title .pq-title-heading {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
        margin: 0 auto 15px;
    }

    .pq-section-title .pq-description {
        font-size: 16px;
        line-height: 28px;
        text-align: justify;
        padding: 0 10px;
        max-width: 700px;
        /* 👈 Increase paragraph width */
        margin: 0 auto;
        /* center the paragraph */
    }

    .pq-button {
        text-align: center;
        margin-top: 30px;
        width: 100%;
    }

    .pq-button .pq-button-flat {
        display: inline-block;
        padding: 10px 25px;
        font-size: 15px;
    }
}



@media (min-width: 398px) and (max-width: 799px) {
    .pq-section-title {
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 23px;
        line-height: 31px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pq-section-title .pq-title-heading {
        font-size: 28px;
        line-height: 36px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}


@media(max-width:397px) {
    .pq-section-title .pq-title-subtitle {
        font-size: 23px;
        line-height: 31px;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 23px;
        line-height: 31px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pq-section-title .pq-title-subtitle::before {
        display: none;
    }

    .pq-title-heading {
        font-size: 27px;
        line-height: 35px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pq-icon-box-main .pq-icon-box-wrapper .pq-icon-box-description {
        font-size: 14px;
    }
}

/* ################################# */
/*  about-us-style-1*/
/* ################################# */

.pq-about-bg-img {
    width: 19%;
    margin: 55px;
    position: absolute;
    left: 10%;
    z-index: 9;
    border-radius: 20px;
}

.pq-about-image {
    margin-top: 45px;
}

.pq-about-image img {
    width: 100%;
    border-radius: 20px 20px 20px 20px;
    z-index: 1;
}

@media(max-width:1099px) {
    .pq-about-bg-img {
        display: none;
    }
}

@media(max-width:1499px) {
    .pq-about-bg-img {
        display: none;
    }
}

@media(max-width:799px) {
    .pq-about-bg-img {
        display: none;
    }

    .pq-button {
        text-align: center;
        margin-top: 25px;
        margin-bottom: -25px;
        left: -35px;
    }
}

@media(max-width:479px) {
    .pq-about-bg-img {
        display: none;
    }

    .pq-about-image img {
        margin-top: 20px;
    }

    .pq-img-cut:before {
        display: none;
    }
}

@media(max-width:397px) {
    .pq-about-bg-img {
        display: none;
    }

    .pq-about-image img {
        height: 350px;
        object-fit: cover;
        border-radius: 20px 20px 20px 20px;
        margin-top: 20px;
    }

    .pq-img-cut:before {
        display: none;
    }


}

/* ################################# */
/*  about-us style-2*/
/* ################################# */

.pq-section-decription {
    color: var(--dark-color);
}

.pq-section-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pq-right-img img {
    position: absolute;
    right: -3%;
    width: 421px;
    bottom: -4%;
    z-index: 1;
}

.pq-image-style-2 {
    position: relative;
}

.pq-tooltip-box-image .pq-tolimage {
    position: relative;
}

@media(max-width:1699px) {
    .pq-right-img {
        display: none;
    }
}

@media(max-width:767px) {

    .pq-tooltip-box .pq-tooltip-contain {
        display: none;

    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
        font-size: 12px;
        line-height: 10px;
    }

}

@media(max-width:479px) {
    .pq-counter .pq-cust-title {
        font-size: 12px;
    }

    .pq-counter .pq-count.pq-ct-1 {
        font-size: 40px;
    }

    .pq-icons {
        font-size: 40px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
        font-size: 12px;
        line-height: 10px;
    }

    .pq-section-main {
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/*  about-us style-3*/
/* ################################# */

.pq-about-us-main-style-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    position: relative;
}

.pq-about-counter-block {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: absolute;
    bottom: 20%;
    right: 55%;
    width: 20%;
}

/* .pq-about-us-main-style-3 .pq-about-img-style-3 img{
    width: 640px;
    
} */
.pq-about-us-main-style-3 .pq-about-customer-counter img {
    width: 138px;

}

.pq-about-us-main-style-3 .pq-inner-space {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 0px 0px 20px 20px;
    text-align: center;
    padding: 3px 0px 5px 0px;
    display: block;
}

.pq-about-customer-counter {
    position: relative;
    background-color: #F3F3F3;
    border-radius: 20px 20px 0 0;
    padding: 20px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.pq-inner-about-main {
    display: grid;
    grid-template-columns: 0.1fr auto;
    border-bottom: 1px solid #0000001F;
    padding-bottom: 24px;
    padding-top: 16px;
}

.pq-inner-about-main .pq-inner-description .pq-icon-list-items li {
    padding-top: 0;
}

.pq-icon-list-icon i {
    color: var(--primary-color);
    margin-right: 5px;
}

.pq-inner-about-img img {
    width: 168px;
    border-radius: 10px 10px 10px 10px;
}

.pq-right-block-img img {
    width: 440px;
    position: absolute;
    right: -4%;
    margin-top: -8%;
}

.pq-about-style-3-upimg img {
    width: 110px;
    position: absolute;
    left: 7%;
    top: 0%;
    z-index: 1;
}

@media(max-width:1499px) {
    .pq-about-style-3-upimg img {
        display: none;
    }

}

@media(max-width:1365px) {
    .pq-about-style-3-upimg img {
        display: none;
    }

    .pq-right-block-img img {
        display: none;
    }

    .pq-about-counter-block {
        width: 26%;
    }
}

@media(max-width:1099px) {
    .pq-about-counter-block {
        width: 347px;
    }

    .pq-right-block-img img {
        display: none;
    }

    .pq-about-style-3-upimg {
        display: none;
    }

}

@media(max-width:1023px) {
    .pq-about-counter-block {
        width: 288px;
        margin-bottom: 76px;
    }


}

@media(max-width:979px) {
    .pq-about-us-main-style-3 {
        grid-template-columns: 1fr;
    }

    .pq-about-counter-block {
        margin-bottom: 51%;
    }


}

@media(max-width:799px) {
    .pq-about-us-main-style-3 {
        grid-template-columns: 1fr;
    }

    .pq-about-counter-block {
        margin-bottom: 68%;
        margin-right: -34%;

    }

}

@media(max-width:767px) {

    .pq-inner-about-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pq-inner-about-img img {
        width: 100%;
    }

    .pq-about-counter-block {
        margin-bottom: 152%;
        margin-right: -46%;
        width: 67%;

    }

}

@media(max-width:479px) {
    .pq-about-counter-block {
        margin-bottom: 168%;
        margin-right: -42%;
        width: 81%;
    }

    .pq-about-us-main-style-3 .pq-about-customer-counter img {
        width: 125px;
    }
}

@media(max-width:397px) {
    .pq-about-counter-block {
        margin-bottom: 203%;
        margin-right: -42%;
        width: 84%;
    }

}

/* ################################# */
/*  about-us-inner*/
/* ################################# */
.pq-inner-about-effect img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.pq-inner-effect {
    width: 100%;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.pq-icon-list-items li {
    padding-top: 10px;
    padding-bottom: 3px;
}

.pq-inner-icon .pq-button {
    padding-top: 10px;
    margin-left: 14px;
}

.pq-inner-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 30px;
}

.pq-inner-list-box {
    width: 100%;
    background-color: #132e6b;
    /* 🔵 Replaced var(--primary-color) */
    color: var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 30px;
}


.pq-inner-list-box .pq-heading-title {
    color: var(--white-color);
    font-family: var(--title-fonts);
    padding-bottom: 10px;
}

.pq-inner-list-box .pq-review {
    font-size: 15px;
    padding-bottom: 10px;
}

.pq-icon-wrapper {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.pq-icon-wrapper .pq-icon-box-icon i {
    font-size: 24px;
}

.pq-icon-box-content .pq-icon-box-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

.pq-about-box-star i {
    color: #FFCC00;
    font-size: 16px;
    padding-bottom: 13px;
}

@media(max-width:767px) {
    .pq-inner-main {
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/*  tab*/
/* ################################# */

.pq-tab-box-style-1 .nav-tabs .nav-link {
    font-size: 18px;
    line-height: 26px;
    background: var(--grey-color);
    margin-right: 30px;
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--body-fonts);
    letter-spacing: 1px;
    border: none;
    transition: var(--transition-duration);
    border-radius: var(--big--border-radius);

}

.pq-tab-box-style-1 .nav-tabs .nav-link.active {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-tab-box-style-1 .nav-tabs {
    border-bottom: 0px solid #0000001f;
}

.pq-tab-box.pq-style-1 .pq-tab-box-description {
    margin-top: 15px;
    margin-bottom: 20px;

}

.pq-tab-box.pq-style-1 .pq-tab-box-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pq-tab-box.pq-style-1 .pq-tab-box-list .pq-tab-box-list-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pq-tab-box.pq-style-1 .pq-tab-box-list .pq-tab-box-list-item i {
    font-size: 14px;
}

.pq-about-btn {
    margin-top: 20px;
}

.pq-tab-img {
    position: absolute;
}

.pq-tab-img1 {
    width: 40%;
    border-radius: 30px;
    padding: 15px;
    margin-top: 39px;
}

.pq-tab-img2 {
    width: 32%;
    border-radius: 20px;
    margin-left: 10px;
    margin-bottom: 15px;
}

.pq-tab-img3 {
    width: 67%;
    border-radius: 30px;
    padding-top: 15px;
    margin-left: 85px;
}

.pq-vactor-logo {
    background-color: var(--primary-color);
    width: 23%;
    padding: 30px 30px 30px 30px;
    border-radius: 900px 900px 900px 900px;
    position: relative;
    top: 44%;
    left: 42%;
}

@media(max-width:1279px) {
    .pq-tab-img1 {
        width: 347px;
    }

    .pq-tab-img2 {
        width: 39%;
    }

    .pq-tab-img3 {
        width: 73%;
    }

}

@media(max-width:1099px) {
    .pq-tab-img1 {
        width: 257px;
    }

    .pq-tab-img2 {
        width: 232px;
    }

    .pq-tab-img3 {
        width: 354px;
    }

    .pq-vactor-logo {
        width: 24%;
        top: 27%;
        left: 42%;
    }

}

@media(max-width:979px) {

    .pq-tab-img1 {
        display: none;
    }
}

@media(max-width:980px) {
    .pq-tab-img {
        display: none;
    }

    .pq-vactor-logo {
        display: none;
    }
}

@media(max-width:979px) {

    .pq-vactor-logo {
        width: 21%;
        top: 130%;
        left: 32%;
    }

}

@media(max-width:799px) {

    .pq-vactor-logo {
        display: none;
    }

    .pq-tab-img img {
        display: none;
    }
}

/* ################################# */
/* Button Flat */
/* ################################# */

.pq-button .pq-button-flat {
    overflow: hidden;
    font-family: var(--body-fonts);
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 22px 60px;
    position: relative;
    width: auto;
    height: auto;
    color: white;
    vertical-align: middle;
    display: inline-flex;
    /* ✅ Use flex */
    align-items: center;
    /* ✅ Vertically center */
    justify-content: center;
    /* ✅ Horizontally center */
    text-decoration: none;
    border-radius: var(--big--border-radius);
    transition: var(--transition-duration);
    background-color: #fd7e14;
    background-size: 202% 100%;
    background-position: right bottom;
    margin-left: 107px;
}


.pq-service-box-style-2 .pq-button .pq-bg-white {
    color: var(--white-color);
}

.pq-service-box-style-2 .pq-button .pq-bg-white:hover {
    color: var(--primary-color);
}

.pq-form-box-style-1.style-1 .pq-button .pq-button-flat {
    background: linear-gradient(to right, var(--white-color) 50%, var(--dark-color) 50%);
    background-size: 202% 100%;
    background-position: right bottom;
    color: var(--white-color);
}

.pq-form-box-style-1.pq-style-2.pq-btn-bg .pq-button .pq-button-flat {
    /* background: linear-gradient(to right, var(--primary-color) 50%, var(--dark-color) 50%); */
    background-size: 202% 100%;
    background-position: right bottom;
    color: var(--white-color);
}

.pq-form-box-style-1.style-1 .pq-button .pq-button-flat:hover {
    background-position: left bottom;
    color: var(--dark-color);
}

.pq-blog-main .pq-button {
    padding-top: 5px;
}

.pq-button.pq-about-style-3 {
    padding-top: 20px;
}

.pq-button .pq-button-flat:hover,
.pq-button.pq-button-flat:focus {
    background-position: left bottom;
    color: var(--white-color);
}

.pq-button .pq-button-flat i {
    /* color: var(--white-color); */
    color: white;
    font-size: 20px;
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.pq-button .pq-button-link {
    text-transform: capitalize;

}

.pq-icon-box-style-1 .pq-button:hover {
    color: var(--dark-color);
}

.pq-button .pq-button-flat:hover i,
.pq-button .pq-button-flat:focus i {
    animation: pheasantBounce 1s infinite linear;
}

/*===== Button link =====*/

.pq-button .pq-button-link {
    display: flex;
    gap: 5px;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 18px;
}

.pq-button .pq-button-link i {
    margin-top: 2px;
}

.pq-button .pq-button-link:hover i,
.pq-button .pq-button-link:focus i {
    animation: pheasantBounce 1s infinite linear;
}

@keyframes pheasantBounce {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(5px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-5px) scale(0.9);
    }

    55% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* ################################# */
/* Button Rounded */
/* ################################# */

.button-rounded {
    display: flex;
}

.button-rounded a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    border-radius: var(--big--border-radius);
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    transition: var(--transition-duration);
}

.button-rounded a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ################################# */
/* service-box style-1 */
/* ################################# */

.pq-service-box .pq-bg-gray::before {
    content: "";
    background-image: url(../image/aboutus/s1.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 9;
}

.pq-service-box-style-1 {
    position: relative;
    overflow: hidden;
}

.img-owl img {
    width: 100%;
    height: auto;
}

.pq-service-box-style-1 .pq-service-box-img {
    position: relative;
    overflow: hidden;

}

.pq-service-box-style-1 .pq-service-box-img img {
    width: 100%;
    transition: var(--transition-duration);
    border-radius: var(--border-radius);
}

.pq-service-box-style-1:hover .pq-service-box-img img {
    transform: scale(1.1);
}


.pq-service-box-style-1 .pq-service-box-info .pq-service-box-title {
    font-size: 24px;
    line-height: 32px;
}


.pq-service-box-info {
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pq-service-box-style-1 .pq-service-box-info::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    transition: var(--transition-duration);
    background-color: #15141C4D;
}

.pq-service-box-style-1:hover .pq-service-box-info::before {
    background-color: var(--primary-color);
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a {
    width: 60px;
    height: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 25px;
    font-weight: 700;
    transition: var(--transition-duration);
    text-decoration: none;
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a i {
    line-height: 66px;
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ################################# */
/* service-box style-2 */
/* ################################# */

.pq-service-box-style-2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-service-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.pq-service-box-style-2 .pq-service-box-img {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pq-service-box-style-2 .pq-service-box-img img {
    object-fit: cover;
    transition: var(--transition-duration);
    height: 100%;
    width: 100%;
}

.pq-service-box-style-2:hover .pq-service-box-img img {
    transform: scale(1.1);
}

.pq-service-box-style-2 .pq-service-box-info {
    display: inline-block;
    max-width: 70%;
    padding-top: 21px;
    position: relative;
    margin: 190px 30px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.pq-service-box-style-2 .pq-service-box-info .pq-service-box-title {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-color);
    margin-bottom: 10px;
}

@media(max-width:1024px) {
    .pq-service-main {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:800px) {

    /* .navbar-toggler.collapsed{
        margin-right: 10px;
    } */
    .pq-service-main {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:767px) {
    .pq-service-main {
        grid-template-columns: 1fr;
    }

}

/* ################################# */
/* service-box style-3 */
/* ################################# */
.pq-service-box-style-3-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pq-service-box-style-3 {
    display: flex;
    gap: 50px;
    background-color: var(--white-color);
    align-items: center;
    border-radius: var(--border-radius);
}

.pq-service-box-style-3 .pq-service-box-image {
    width: 50%;
    border-radius: var(--border-radius);
}

.pq-service-box-style-3 .pq-service-box-image img {
    border-radius: 10px;
    text-align: center;
}

.pq-service-box-style-3 .pq-service-box-information {
    padding: 30px;
}

.pq-service-box-style-3 .pq-service-box-information .pq-service-box-icons {
    background-color: var(--primary-color);
    font-size: 40px;
    line-height: 92px;
    width: 84px;
    height: 84px;
    text-align: center;
    color: var(--white-color);
    border-radius: var(--big--border-radius);
}

.pq-service-box-style-3 .pq-service-box-information .pq-service-box-titles {
    font-size: 22px;
    line-height: 30px;
    margin-top: 15px;
}

.pq-service-box-style-3 .pq-service-box-information .pq-service-box-description {
    border-top: 1px solid #0000001f;
    margin-top: 15px;
    padding-top: 15px;
    margin-bottom: 0px;
}

@media(max-width:1279px) {
    .pq-service-box-style-3 {
        display: block;
    }
}

@media(max-width:767px) {
    .pq-service-box-style-3-main {
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/* service-box style-4 */
/* ################################# */

.pq-service-box-main.pq-style-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pq-service-box-style-1.pq-style-4 .pq-service-box-info::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 100%;
    height: 1px;
    width: 100%;
    transition: var(--transition-duration);
    background: var(--primary-color);
}

.pq-service-box-style-1.pq-style-4:hover .pq-service-box-info::before {
    right: 0%;
}

@media(max-width:1099px) {
    .pq-service-box-main.pq-style-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pq-service-box-main.pq-style-4 {
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/* service-flooring */
/* ################################# */
.pq-link {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-link.pq-link-1 {
    margin-top: 30px;
}

.pq-link .pq-blog-img img {
    border-radius: var(--border-radius);
}

.pq-service-menu-container .pq-service-item .pq-service-inner a::before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 16px;
    right: 20px;
    left: auto;
    top: 26px;
    position: absolute;
    color: inherit;
    line-height: normal;
}

.pq-service-menu-container .pq-service-item .pq-service-inner a {
    background-color: var(--white-color);
    color: var(--dark-color);
    padding: 20px;
    display: inline-block;
    width: 100%;
    position: relative;
    border: none;
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 30px;
}

.pq-service-menu-container .pq-service-item .pq-service-inner {
    margin: 0px 0px 10px;
}

.pq-service-menu-container .pq-service-item .pq-service-inner.current-menu a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-service-menu-container .pq-service-item .pq-service-inner a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-service-menu-container .pq-service-item .pq-service-inner.current-menu a:before {
    color: var(--white-color);
}

.pq-flooring-plan {
    margin-bottom: 45px;
}

.pq-description.pq-style-1 {
    margin-top: 16px;
    margin-bottom: 15px;
}

.pq-title-heading.pq-heading-style-1 {
    margin-left: 27px;
}

.pq-title-heading.pq-heading-style-2 {
    margin-left: 20px;
}

.pq-single-inner-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.pq-floor-design {
    border-radius: 10px;
}

.pq-icon-box-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}

.pq-icon-box-wrapper {
    display: flex;
    gap: 30px;
    background-color: #F5F9FC;
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.pq-icon-style-1 i {
    font-size: 64px;
    color: var(--primary-color);
    line-height: 1;
}

@media(max-width:1099px) {
    .pq-icon-box-main.pq-style-1 {
        grid-template-columns: 1fr 1fr;
    }

    .pq-blog-img img {
        width: 100%;
    }
}

@media(max-width:767px) {
    .pq-icon-box-main.pq-style-1 {
        grid-template-columns: 1fr;
    }

    .pq-single-inner-main {
        grid-template-columns: 1fr;
    }

    .pq-icon-box-main {
        display: block;
    }
}

@media(max-width:479px) {
    .pq-link.pq-link-1 {
        padding: 0;
    }
}

@media (max-width: 397px) {
    .pq-service-menu-container .pq-service-item .pq-service-inner a {
        font-size: 14px;
    }
}

/* ################################# */
/* portfolio-style-1 */
/* ################################# *
 
 
/* xdgdfgdfh */

.pq-portfolio-box-style-1 {
    overflow: hidden;
    position: relative;

}

.pq-portfolio-main .owl-carousel .owl-dots {
    text-align: left;
}

.pq-portfolio-main.pq-main-style-1 .owl-carousel .owl-nav {
    position: absolute;
    top: 0%;
    transform: translateX(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: inherit;
    justify-content: center;
    bottom: 0;
    left: 0%;
    gap: 5px;


}

.pq-portfolio-main {
    margin: 60px -700px 0px 0px;
    margin: 60px 0 0 0;
    width: 100vw;
    padding: 0;
    position: relative;

}

.pq-portfolio-box-style-1 .pq-portfolio-box-img img {
    transition: var(--transition-duration);
}

.pq-portfolio-box-style-1:hover .pq-portfolio-box-img img {
    transform: scale(1.1);

}

.pq-portfolio-box-style-1 .pq-portfolio-box-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-portfolio-box-categorie a {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: capitalize;
    margin: 30px 0 10px;
    display: inline-block;
    letter-spacing: 1px;
    align-items: center;
    text-decoration: none;
}

.pq-portfolio-box-title a {
    text-decoration: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: #0056b3;
    color: #fff;
    font-size: 24px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
}

.owl-nav button.owl-prev::before {
    content: '\2039';
    /* Unicode for ‹ (left arrow) */
}

.owl-nav button.owl-next::before {
    content: '\203A';
    /* Unicode for › (right arrow) */
}


@media (max-width: 1680px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .pq-portfolio-main .owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 1600px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .owl-nav {
        display: none;
    }
}


@media (max-width: 1499px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .pq-portfolio-main.pq-main-style-1 .owl-carousel .owl-nav {
        display: none;

    }
}

@media(max-width:1099px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

}

@media (max-width:799px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }

}


@media (max-width:479px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }

}

@media (max-width:369px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }
}


/*================================================
portfolio   Inner-page
================================================*/
.pq-portfolio-slider.pq-style-1 {
    margin-bottom: 15px;
}

.pq-portfolio-slider.pq-style-1 .owl-carousel .owl-nav {
    display: none;
}


.pq-portfolio-img-slider.pq-style-1 .pq-img {
    border-radius: 10px;
}

.pq-portfolio-project .pq-project-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 15px;
}

.pq-portfolio-project .pq-project-requiremnt .pq-project-requiremnt-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
}

.pq-requiremnt-project-lists {
    margin-bottom: 30px;
}

.pq-requiremnt-project-lists .pq-requiremnt-project-list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pq-requiremnt-project-lists .pq-requiremnt-project-list .pq-icon i {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);

}

.pq-challenge-img img {
    border-radius: 10px;

}

.pq-challenges-lists {
    margin-top: -69px;
}

.pq-challenges-lists .pq-challenges-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pq-challenges-lists .pq-challenges-item .pq-icon i {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
}

.pq-portfolio-icon-box.style-1 {
    padding: 45px;
    background-color: var(--grey-color);
    border-radius: 10px;
    position: sticky;
    top: 150px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content {
    border-bottom: 1px solid #0000001A;
    margin: 10px 0px 20px 0px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-icon-box-title {
    font-size: 20px;
    line-height: 28px;
}


.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-icon-box-description {
    font-size: 18px;
    line-height: 26px;
}


.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin-left: -17px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon {
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 100%;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-facebook {
    background-color: #3b5998;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-twitter {
    background-color: #1da1f2;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-youtube {
    background-color: #cd201f;
}

.pq-single-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: 30px;
    margin-bottom: 0;
    background: var(--grey-color);
    border-radius: var(--big--border-radius);
    transition: var(--transition-duration);
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-single-post-nav-label {
    color: var(--dark-color);
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--title-fonts);
    letter-spacing: 1px;
}

.pq-single-post-navigation {
    position: relative;
    margin-top: 30px;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon {
    font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    color: var(--white-color);
    background: var(--dark-color);
    text-align: center;
    transition: var(--transition);
    border-radius: 100%;
    position: relative;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon::before {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f053";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;

}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon.pq-next::before {
    content: "\f054";
}


.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content:hover .pq-nav-icon {
    background: var(--primary-color)
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content:hover .pq-single-post-nav-label {
    color: var(--primary-color);
}

@media(max-width:1099px) {
    .pq-challenges-lists {
        margin-top: 10px;
    }
}

@media(max-width:767px) {
    .pq-portfolio-project .pq-project-title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media(max-width:479px) {
    .pq-single-post-navigation {
        padding: 30px 15px;
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .pq-portfolio-project .pq-project-title {
        font-size: 25px;
        line-height: 33px;
    }

    .pq-project-requiremnt-title {
        font-size: 15px;
        line-height: 23px;
    }
}

/* ################################# */
/* award */
/* ################################# */
.pq-service-award-img {
    width: 54%;
    border-radius: 10px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: float3DEnhanced 8s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 20px auto;
}

.pq-service-award-img:hover {
    transform: scale(1.1) rotateY(15deg) rotateX(8deg) rotateZ(5deg) translateZ(20px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.5);
}

@keyframes float3DEnhanced {

    0%,
    100% {
        transform: scale(1) rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0);
    }

    25% {
        transform: scale(1.05) rotateY(8deg) rotateX(5deg) rotateZ(3deg) translateZ(10px);
    }

    50% {
        transform: scale(1.02) rotateY(-8deg) rotateX(-5deg) rotateZ(-3deg) translateZ(5px);
    }

    75% {
        transform: scale(1.05) rotateY(8deg) rotateX(5deg) rotateZ(3deg) translateZ(10px);
    }
}


.pq-award-1-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pq-award.pq-style-1 {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover,
.pq-award.pq-style-1.pq-active {
    background-color: var(--primary-color);
}

.pq-award.pq-style-1 .pq-award-title {
    font-size: 22px;
    line-height: 30px;
    transition: var(--transition-duration);
    text-align: center;
}

.pq-award.pq-style-1:hover .pq-award-title,
.pq-award.pq-style-1.pq-active .pq-award-title {
    color: var(--white-color);
}

.pq-award.pq-style-1 .pq-award-description {
    margin-bottom: 0;
    margin-top: 5px;
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover .pq-award-description,
.pq-award.pq-style-1.pq-active .pq-award-description {
    color: var(--white-color);
}

.pq-award.pq-style-1 .pq-award-img {
    position: relative;
}

.pq-award.pq-style-1 .pq-award-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0) scale(0);
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover .pq-award-img img,
.pq-award.pq-style-1.pq-active .pq-award-img img {
    transform: translate(-50%, -50%) rotate(20deg) scale(1);
}

.pq-award.pq-style-1 .pq-award-year {
    transition: var(--transition-duration);
    color: var(--primary-color);
}

.pq-award.pq-style-1:hover .pq-award-year,
.pq-award.pq-style-1.pq-active .pq-award-year {
    color: var(--white-color);
}

@media(max-width:767px) {
    .pq-service-award-img {
        width: 80%;
    }

    .pq-award.pq-style-1 {
        grid-template-columns: 1fr;
    }

    .pq-award.pq-style-1 .pq-award-img img,
    .pq-award.pq-style-1:hover .pq-award-img img,
    .pq-award.pt-style-1.pq-active .pq-award-img img {
        transform: none;
        position: relative;
        top: 0;
        left: 0;
    }

    .pq-award-img {
        width: 60%;
    }
}

/* ################################# */
/* client-box */
/* ################################# */
.pq-client-box {
    margin-top: 60px;
}

.pq-client-box-slider.pq-style-1 .owl-nav {
    display: none;
}

.pq-client-box.pq-style-1 a img {
    width: 200px;
    margin: 0 auto;
}

.pq-client-box-slider.pq-style-1 .pq-client-box-title {
    position: relative;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    word-spacing: 4px;
    margin-bottom: 45px;
    padding: 0 10px;
    display: inline-block;
    background-color: var(--white-color);
    color: #FF6F00;
}

.pq-client-box-slider.pq-style-1 .pq-clint-box-border {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    /* margin-bottom: 30px; */
}

.my-title {
    transform: translateY(-20px);
    /* or any desired value */
}

.owl-carousel .owl-nav {
    transform: translateY(20px);
    /* pushes it down */
}


.pq-client-box-slider.pq-style-1 .pq-clint-box-border::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.pq-clients-box-1 {
    position: relative;
    background: var(--grey-color);
    padding: 45px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pq-clients-box-1 .client-img {
    height: 70px;
    width: auto !important;
    transition: var(--transition-duration);
}

.pq-clients-box-1:hover .client-img {
    opacity: 0;
}

.pq-clients-box-1 .client-hover-img {
    height: 70px;
    width: auto !important;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-duration);
    opacity: 0;
}

.pq-clients-box-1:hover .client-hover-img {
    opacity: 1;
}

.pq-client-box-img {
    position: absolute;
    left: -85px;
    width: 320px;
    bottom: -39px;
    z-index: 9;
}


@media (max-width:1499px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:1099px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:1023px) {
    .pq-client-box-img img {
        display: none;

    }
}

@media (max-width:979px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:767px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:479px) {
    .pq-client-box-img img {
        display: none;
    }
}

@media (max-width:369px) {
    .pq-client-box-img img {
        display: none;
    }
}

/* ################################# */
/* fancy-box-style-1 */
/* ################################# */
.pq-fancybox-item {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr 1fr;
}

.pq-fancybox-box-style-1 {
    position: relative;
}

.pq-fancybox-box-style-1::before {
    content: "";
    position: absolute;
    right: -27px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #0000001f;
}

.pq-fancybox-box-style-1:nth-child(3n)::before {
    display: none;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-main {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-main .pq-fancybox-box-icon {
    font-size: 56px;
    line-height: 64px;
    color: var(--primary-color);
}

.pq-fancybox-box-style-1 .pq-fancybox-box-description {
    margin-bottom: 0;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-img {
    position: absolute;
    width: 170px;
    top: 50%;
    left: 50%;
    border-radius: var(--border-radius);
    transform: translate(-50%, -45%) scale(0) rotate(20deg);
    transition: var(--transition-duration);
    overflow: hidden;
}

.pq-fancybox-box-style-1.pq-active .pq-fancybox-box-img,
.pq-fancybox-box-style-1:hover .pq-fancybox-box-img {
    transform: translate(-50%, -45%) scale(1) rotate(20deg);
}

@media (max-width:799px) {
    .pq-fancybox-item {
        grid-template-columns: 1fr 1fr;
    }

    .pq-fancybox-box-style-1 .pq-fancybox-box-img {
        width: auto;
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        margin-top: 20px;
    }

    .pq-fancybox-box-style-1.pq-active .pq-fancybox-box-img,
    .pq-fancybox-box-style-1:hover .pq-fancybox-box-img {
        transform: none;

    }
}

@media (max-width:767px) {
    .pq-fancybox-item {
        grid-template-columns: 1fr;
    }

}


/* ################################# */
/* Fancy Box style-2 */
/* ################################# */
.pq-fancybox-box-style-2 {
    padding: 45px 28px;
    position: relative;
    border: 2px solid var(--grey-color);
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
}

.pq-fancybox-box-style-2 .pq-fancybox-box-number {
    position: absolute;
    padding: 8px 10px;
    font-size: 16px;
    top: -24px;
    right: 30px;
    background: var(--grey-color);
    font-family: var(--title-fonts);
    font-weight: var(--font-weight);
    border-radius: 6px;
    color: var(--dark-color);
    transition: var(--transition-duration);
}

.pq-fancybox-box-style-2 .pq-fancybox-box-icon {
    font-size: 64px;
    line-height: 72px;
    margin-bottom: 45px;
    color: var(--primary-color);
}

.pq-fancybox-box-style-2 .pq-fancybox-box-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
    font-weight: var(--font-weight);
}

.pq-fancybox-box-style-2:hover {
    border: 2px solid var(--primary-color);
}

.pq-fancybox-box-style-2:hover .pq-fancybox-box-number {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-fancy-img .pq-fancy-box-img {
    width: 360px;
    position: absolute;
    left: -6%;
    top: 61%;
}

.pq-fancybox-box-style-2:nth-child(even) {
    margin-top: 60px;
}

.pq-fancybox-box-style-2:nth-child(odd) {
    margin-bottom: 60px;
}

.pq-fancy-box-style-2-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;


}

@media (max-width: 1699px) {
    .pq-fancy-img .pq-fancy-box-img {
        display: none;
    }

}

@media (max-width: 1499px) {
    .pq-fancy-img .pq-fancy-box-img {
        display: none;
    }

}

@media (max-width: 1099px) {

    .pq-fancy-box-style-2-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .pq-fancybox-box-style-2 h6 {
        font-size: 24px;
        line-height: 32px;
    }

    .pq-fancybox-box-style-2 .pq-fancybox-box-icon {
        margin-bottom: 30px;
    }

    .pq-fancy-box-style-2-main {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .pq-fancybox-box-style-2 {
        padding: 30px 15px;
    }

    .pq-fancy-box-style-2-main {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/* working-process */
/* ################################# */

.pq-work-process-img-box-style-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    position: relative;
    align-items: baseline;
    margin-top: 30px;

}

.pq-work-process-img-box-style-1 img {
    /* width:437px; */
    border-radius: 20px;
    /* height:513px; */
}

.pq-work-process-img-box-style-1 .pq-work-process-img-2 {
    width: 436px;
    height: 572px;
    object-fit: cover;
}

.pq-work-process-img-box-style-1 img:nth-child(even) {
    margin-top: -54px;
}

.pq-work-process-img .pq-work-process-box-img {
    width: 363px;
    position: absolute;
    right: -2%;
    top: 67%;
    z-index: 1;
}

@media (max-width: 1499px) {
    .pq-work-process-box-img {
        display: none;
    }

    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width: 1279px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pq-work-process-img-box-style-1 img {
        width: 100%;
    }

    .pq-work-process-img-box-style-1 .pq-work-process-img-2 {
        width: 100%;
    }
}

@media (max-width: 1099px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 979px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 799px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr 1fr;
    }

    .pq-work-process-img-box-style-1 img {
        width: 354px;
    }
}

@media (max-width: 767px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr;
    }

    .pq-work-process-img-box-style-1 .pq-work-process-img-1 {
        width: 100%;
        margin-bottom: 45px;
    }

    .pq-work-process-img-box-style-1 .pq-work-process-img-2 {
        width: 100%;
    }

    .pq-work-process-img-box-style-1 .pq-work-process-img-3 {
        width: 100%;
    }

    .pq-img-cut:before {
        display: none;
    }

    .pq-img-cut-1::after {
        display: none;
    }
}

@media (max-width: 479px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 397px) {
    .pq-work-process-img-box-style-1 {
        grid-template-columns: 1fr;
    }

}



/* ################################# */
/* work-box */
/* ################################# */

.pq-work-box-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

}

.pq-work-box-style-1.pq-work-style-1 {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: left;
    padding: 45px 30px 45px 30px;
    margin: 0px 15px 0px 15px;
}

.pq-work-box-style-1 img {
    height: 464px;
    object-fit: cover;
}

.pq-work-box-style-1 {
    border-radius: var(--border-radius);
}

.pq-work-box-style-1 .pq-work-box-wrapper {
    padding-top: 45px;

}

.pq-work-box-style-1 .pq-work-box-icon {
    line-height: 4;
}

/* .pq-work-box-style-1 .pq-work-box-content{
   width:315px;
} */

.pq-work-box-style-1 .pq-box-icon i {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
}

.pq-work-box-style-1 h4 {
    color: var(--white-color);
    font-weight: 500;
}

.pq-work-box-style-1 .pq-button {
    color: var(--white-color);
    margin-left: 1px;
}

.pq-work-box-style-1 .pq-button:hover {
    color: var(--dark-color);
}

.pq-work-box-style-1 img {
    border-radius: var(--border-radius);
}

.pq-work-box-style-1.pq-work-counter-1 {
    padding: 45px 30px;
}

.pq-work-box-style-1 .pq-work-counter-2 {
    padding-top: 14px;
}

.pq-work-box-style-1 .pq-work-counter-3 {
    padding-top: 14px;
}

@media (max-width: 1099px) {
    .pq-work-box-main {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 767px) {
    .pq-work-box-main {
        grid-template-columns: 1fr;

    }
}

/* ################################# */
/* Isotope Portfolio */
/* ################################# */

.pq-grid-item.visible_item,
.pq-masonry-item.visible_item {
    display: none;
}

.pq-filters .pq-filter-button-group ul {
    margin: 0 0 45px;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pq-filters .pq-filter-button-group ul li {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 12px 20px;
    transition: var(--transition-duration);
    -moz-transition: var(--transition-duration);
    -ms-transition: var(--transition-duration);
    -o-transition: var(--transition-duration);
    -webkit-transition: var(--transition-duration);
    -webkit-border-radius: var(--big--border-radius);
    -moz-border-radius: var(--big--border-radius);
    border-radius: var(--big--border-radius);
}

.pq-filters .pq-filter-button-group ul li:last-child {
    margin-right: 0;
}

.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-filters .pq-filter-button-group ul li:hover {
    color: var(--dark-color);
}

.pq-portfolio-box-style-1 .pq-portfolio-img {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pq-portfolio-box-style-1 .pq-portfolio-img img {
    width: 100%;
    transition: var(--transition-duration);
    transition: var(--transition-duration);
    -moz-transition: var(--transition-duration);
    -ms-transition: var(--transition-duration);
    -o-transition: var(--transition-duration);
    -webkit-transition: var(--transition-duration);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.pq-portfolio-box-style-1:hover .pq-portfolio-img img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-portfolio-box-style-1 .pq-portfolio-img span.pq-portfolio-tag {
    display: none;
}

.pq-portfolio-box-style-1 .pq-portfolio-box-info .pq-portfolio-style-1-tag {
    line-height: 1;
    margin-bottom: 5px;
}

.pq-portfolio-box-style-1 .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.pq-grid {
    display: inline-block;
    width: 100%;
    float: left;
}

.pq-grid:after {
    content: '';
    display: block;
    clear: both;
}

.pq-col-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pq-col-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pq-col-4 {
    width: 33.33%;
    padding: 0 15px 30px;
}

.pq-grid.no-padding .pq-grid-item,
.pq-masonry.no-padding .pq-masonry-item {
    padding: 0;
}

.pq-btn-load-container {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

.pq-btn-load-container a.pq-button {
    cursor: pointer;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-img {
    overflow: hidden;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-box-info {
    position: relative;
    bottom: 0;
    left: 0;
    background: transparent;
    padding-left: 0;
    padding-bottom: 0;
    opacity: 1;
}

.pq-grid.style-2 .pq-portfoliobox-1 a.pq-portfolio-icon-bg {
    display: none;
}

.pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
    margin-top: 60px;
}

.pq-grid.style-2 .pq-col-6 {
    padding: 0 30px 45px;
    padding-bottom: 45px;
}

/*=========  Masonry ========= */
.pq-masonry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pq-masonry .ipt-lg-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pq-masonry.no-padding .ipt-lg-6,
.pq-masonry.no-padding .ipt-lg-3 {
    padding: 0;
}

.pq-masonry.no-padding .pq-portfoliobox-1,
.pq-masonry.no-padding .pq-portfoliobox-1 .pq-portfolio-img img {
    border-radius: 0;
}

/* ========= layout 2 ========= */
.pq-masonry .ipt-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-8 {
    width: 66.666%;
    padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-12 {
    width: 100%;
    padding: 0 15px 30px;
}

@media(max-width:1365px) {
    .pq-col-3 {
        width: 33.33%;
    }

    .pq-masonry .ipt-lg-6 {
        width: 50%;
    }

    .pq-masonry .ipt-lg-3 {
        width: 33.33%;
    }

    .pq-masonry .ipt-lg-4 {
        width: 50%;
    }

    .pq-masonry .ipt-lg-8 {
        width: 50%;
    }

    .pq-filters .pq-filter-button-group ul li {
        margin-right: 10px;
    }

    .pq-col-3,
    .pq-col-4,
    .pq-masonry .ipt-lg-3 {
        width: 50%;
    }
}

@media(max-width:767px) {
    .pq-filters .pq-filter-button-group ul {
        margin: 0 0 30px;
    }

    .pq-filters .pq-filter-button-group ul li {
        margin-right: 0;
        font-size: 16px;
        padding: 10px 20px;
    }

    .pq-col-6,
    .pq-col-4,
    .pq-col-3,
    .pq-masonry .ipt-lg-3,
    .pq-masonry .ipt-lg-6 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pq-masonry .ipt-lg-4 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pq-masonry .ipt-lg-8 {
        width: 100%;
    }

    .pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
        margin-top: 0;
    }

    .pq-grid.style-2 .pq-col-6 {
        padding: 0 0 30px;
    }

}

@media(max-width:479px) {
    .pq-filters .pq-filter-button-group ul li {
        margin-bottom: 15px;
    }

}

.pq-grid-item {
    float: left;
}



/*===== Portfoliobox Hover Slide  =====*/

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 1;
    -moz-transform: translate(-100%, 0px);
    -webkit-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
    -webkit-transition: transform 0.4s 0s ease-in-out;
    -moz-transition: transform 0.4s 0s ease-in-out;
    -o-transition: transform 0.4s 0s ease-in-out;
    transition: transform 0.4s 0s ease-in-out;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    text-align: left;
}

.pq-portfolio-box-style-1.pq-hover-slide:hover .pq-portfolio-box-info {
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    left: 30px;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info h5 a {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 32px;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-categorie a {
    margin-top: 0;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info h5 a:hover {
    color: var(--primary-color);
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-tag {
    margin-bottom: 0;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 10px;
}

/*===== Portfoliobox Hover fade  =====*/

.pq-portfolio-box-style-1.pq-hover-fade {
    text-align: center;
}

.pq-portfolio-box-style-1.pq-hover-fade:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    z-index: 1;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pq-portfolio-box-style-1.pq-hover-fade:hover:before {
    opacity: 0.9;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    opacity: 0;
    -moz-transform: translate(0px, 30px);
    -webkit-transform: translate(0px, 30px);
    -o-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info h5 {
    margin-bottom: 5px;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info h5 a,
.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-portfolio-style-1-title a {
    color: var(--white-color);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
    color: var(--primary-color);
}

.pq-portfolio-box-style-1.pq-hover-fade:hover .pq-portfolio-box-info {
    opacity: 1;
    -moz-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-e-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-btn-container a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: capitalize;
}

@media (max-width:479px) {
    .pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info {
        padding: 15px;
        margin-right: 15px;
    }

    .pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-title a {
        font-size: 28px;
        line-height: 36px;
    }

    .pq-portfolio-box-style-1.pq-hover-slide:hover .pq-portfolio-box-info {
        left: 15px;
    }
}

/* ################################# */
/* counter-site */
/* ################################# */
.pq-bg-black {
    background-color: var(--dark-color);
}


.pq-decription {
    color: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 35px;
}

.pq-image-1 img {
    height: auto;
    border-radius: 30px;
}

.pq-image-2 {
    padding-right: 30px;
}

.pq-image-2 img {
    height: auto;
    border-radius: 30px;

}


.pq-title-1 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-fonts);
    letter-spacing: 1px;
    /* margin-top: 20px; */
    text-transform: capitalize;
    /* margin-bottom: 40px; */
}

.pq-increment {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* padding-top: 15px; */
}

.pq-indicator {
    display: flex;
    position: relative;
    margin-bottom: 5px;
}

@media(max-width:1499px) {
    .pq-section-main-title {
        font-size: 40px;
        line-height: 48px;
    }


}

@media(max-width:1365px) {
    .pq-section-title .pq-section-main-title {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-decription {
        padding-left: 30px;
    }

    .pq-counter {
        padding-left: 30px;
    }



    .pq-decription {
        font-size: 17px;
        line-height: 25px;
    }

    .pq-counter .pq-count {
        font-size: 48px;
        line-height: 56px;
    }

    .pq-counter .pq-title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width:1279px) {
    /* .pq-image-1 img {
        width: 250px;
        height: auto;
    }

    .pq-image-2 img {
        width: 270px;
        height: auto;
    } */

    .pq-decription {
        font-size: 18px;
        line-height: 24px;
    }

    .pq-counter .pq-count {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-counter .pq-title {
        font-size: 15px;
        line-height: 23px;
        margin-top: 35px;
    }
}

@media(max-width:1099px) {
    /* .pq-image-1 img {
        width: 230px;
        height: auto;
    }

    .pq-image-2 img {
        width: 250px;
        height: auto;
    } */

    .pq-counter .pq-count {
        font-size: 30px;
        line-height: 48px;
    }

    .pq-counter .pq-title {
        font-size: 14px;
        line-height: 23px;
        margin-top: 35px;
    }
}

@media(max-width:1023px) {
    .pq-decription {
        font-size: 17px;
        line-height: 25px;
        padding-left: 0px;
    }

    .pq-decription {
        font-size: 18px;
        line-height: 25px;
    }

    .pq-image-1 img {
        width: 420px;
        height: auto;
    }

    .pq-image-2 img {
        width: 445px;
        height: auto;
    }

    .pq-counter .pq-count {
        font-size: 42px;
        line-height: 50px;
    }

    .pq-counter .pq-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:979px) {
    .pq-image-1 img {
        width: 330px;
        height: auto;
    }

    .pq-image-2 img {
        width: 350px;
        height: auto;
    }

    .pq-decription {
        padding-left: 0px;
    }

    .pq-counter {
        padding-left: 0px;
    }
}

@media(max-width: 767px) {

    .pq-image-1 img,
    .pq-image-2 img {
        width: 100%;
        height: auto;
    }

    .pq-counter .pq-count,
    .pq-counter .pq-title {
        text-align: center;
    }

    .pq-counter.pq-increment {
        padding-left: 85px;
    }

    .pq-title-1 {
        padding-left: 85px;
    }



}


@media(max-width:479px) {
    .pq-section-title .pq-section-main-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pq-decription {
        font-size: 20px;
        line-height: 28px;
    }

    .pq-image-1 img {
        max-width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .pq-image-2 img {
        max-width: 100%;
        height: auto;
    }
}

@media(max-width:397px) {
    .pq-image-1 img {
        max-width: 100%;
        height: auto;
    }

    .pq-image-2 img {
        max-width: 100%;
        height: auto;
    }
}

/* ################################# */
/* process-box */
/* ################################# */

.pq-process-box-grid {
    background-image: url("../image/process/vector/1.webp");
    background-position: 50% 10%;
    background-repeat: no-repeat;
    background-size: 70% auto;
    margin-bottom: 60px;
}

.process-box-style-1.text-center.pq-even {
    margin-top: 60px;
}

.process-vector {
    width: 337px;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -137px;
    z-index: 9;
}

.pq-process-box {
    position: relative;
}


.process-box-style-1.text-center {
    padding: 0 30px;
    position: relative;
}

.process-box-style-1 .process-box-icon {
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 40px;
    line-height: 96px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

.process-box-style-1 .process-box-big-title {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    color: var(--grey-color);
    font-size: 80px;
    line-height: 88px;
    font-family: var(--title-fonts);
    font-weight: var(--font-weight);
}

.process-box-style-1 .process-box-info {
    margin-top: 30px;
    position: relative;
}

.process-box-style-1 .process-box-info .process-box-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.process-box-style-1 .process-box-info .process-box-description {
    margin-bottom: 0;
}



/* ################################# */
/* video-part */
/* ################################# */

.pq-video-popup-block {
    position: relative;
    border-radius: var(--border-radius);
}

.pq-video-popup-block img {
    border-radius: var(--border-radius);
}

.popup-video-box-style-1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.popup-video-box-style-1.pq-custom-video {
    top: 50%;
    left: 46%;
}

.pq-video {
    width: 120px;
    display: inline-block;
    text-align: center;
    height: 120px;
    line-height: 120px;
    font-size: 24px;
    border-radius: var(--big--border-radius);
    background: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition-duration);
}

.pq-videohover,
.pq-video:focus {
    color: var(--white-color);
}

.pq-video:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.mfp-wrap .mfp-close {
    padding: 0;
    top: -50px;
    right: 0;
    font-size: 26px;
    opacity: 1;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-family: var(--title-fonts);
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    letter-spacing: 0;
    font-weight: 200;
    border-radius: var(--big--border-radius);
}

.mfp-wrap .mfp-close:hover {
    background: var(--primary-color);
}

.mfp-wrap .mfp-close:focus {
    outline: none;
}

.popup-video-box-style-2 {
    background-image: url(../image/aboutus/aboutmore.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0;
    background-attachment: fixed;
}

.popup-video-box-style-2 .popup-video-box-icon {
    text-align: center;
    position: relative;
}

@media (max-width:1499px) {

    .process-vector {
        display: none;
    }
}

@media (max-width:799px) {
    .process-box-style-1.text-center.pq-even {
        margin-top: 5px;
    }

    .process-vector {
        display: none;
    }
}

@media (max-width:767px) {
    .pq-video {
        width: 94px;
        height: 94px;
        line-height: 101px;
    }
}


@media (max-width:479px) {
    .pq-video-popup-block img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }

    .popup-video-box-style-1 {
        height: 10px;
        margin-bottom: 60px;
    }

}



@media (max-width:369px) {
    .pq-video-popup-block img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }

    .popup-video-box-style-1 {
        height: 10px;
        margin-bottom: 60px;
    }

}

/* ################################# */
/* process-box style-2 */
/* ################################# */

.pq-process-main-style-2 {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.pq-process-img img {
    width: 80%;
}

.pq-process-box-style-2 {
    display: flex;
    gap: 30px;
}

.pq-process-box-style-2:nth-child(even) {
    padding-left: 60px;
}

.pq-process-box-style-2 {
    margin-bottom: 45px;
}

.pq-process-box-style-2:last-child {
    margin-bottom: 0;
}

.pq-process-box-style-2 .pq-process-box-big-title {
    color: var(--grey-color);
    font-size: 56px;
    line-height: 64px;
    font-family: var(--title-fonts);
    font-weight: var(--font-weight);
}

.pq-process-box-style-2 .pq-process-box-info .pq-process-box-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.pq-process-box-style-2 .pq-process-box-info .pq-process-box-description {
    margin-bottom: 0;
}

.pq-mask-img {
    width: 268px;
    position: absolute;
    right: 0;
    margin-top: -38%;
}

.process-box-style-2 .process-box-icon {
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 40px;
    line-height: 96px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

@media (max-width: 1499px) {
    .pq-mask-img {
        display: none;
    }
}

@media (max-width: 479px) {
    .pq-process-box-style-2 {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 799px) {
    .pq-process-img img {
        width: 412px;
    }

    .pq-process-box-style-2 .pq-process-box-title {
        font-size: 31px;
        line-height: 38px;
    }

    .pq-process-box-style-2 .pq-process-box-info {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .pq-process-img img {
        width: 412px;
    }

    .pq-process-box-style-2 .pq-process-box-title {
        font-size: 31px;
        line-height: 38px;
    }

    .pq-process-box-style-2 .pq-process-box-info {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 397px) {
    .pq-process-main-style-2 {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pq-process-img img {
        width: 282px;
    }
}

/* ################################# */
/* detail-box */
/* ################################# */
.pq-custom-detail-box-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.pq-custom-stye-1 {
    padding: 30px;
    margin: 15px 0px 0px 0px;
    background-color: var(--grey-color);
    border-radius: 10px;
}

.pq-cust-style-1 .pq-icon-list-items .pq-icon-list-item {
    padding-bottom: 7px;
}

.pq-custom-design-img {
    position: absolute;
    width: 541px;
    bottom: 16%;
    right: 38%;
}

.pq-custom-stye-1.pq-active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-custom-stye-1.pq-active .pq-custom-heading-title {
    border-bottom: 1px solid #FFFFFF2F;
    color: var(--white-color);
}

.pq-custom-stye-1 .pq-custom-heading-title {
    padding-bottom: 12px;
    margin-left: 25px;
}

.pq-custom-stye-1 .pq-cust-description {
    border-top: 1px solid #0000001F;
    border-width: 90%;
    margin-left: 25px;
    padding-top: 11px;
    margin-bottom: 0px;
}

.pq-custom-design-style-1 {
    margin-top: 30px;
}

.pq-custom-design-style-1 .pq-custom-description {
    margin-bottom: 0px;
}

.pq-custom-design-style-1 .pq-icon-list-items {
    margin-top: 15px;
}

@media (max-width: 1279px) {
    .pq-custom-design-img img {
        width: 346px;
    }

}

@media(max-width:1199px) {
    .pq-custom-design-img {
        position: static;
        width: 60%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 1099px) {
    .pq-custom-detail-box-main {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 979px) {
    .pq-custom-detail-box-main {
        grid-template-columns: 1fr;
    }

    .pq-custom-design-img img {
        display: none;
    }

    .pq-custom-stye-1 {
        width: 100%;
    }

    .pq-custom-design-detail-box {
        padding-left: 5%;
    }
}

@media (max-width: 767px) {
    .pq-custom-detail-box-main {
        grid-template-columns: 1fr;
    }

}

/*################################# */
/* pricing-box */
/* ################################# */

.pq-pricing-box-style-1 {
    display: grid;
    grid-template-columns: auto 1fr 4fr auto;
    gap: 30px;
    position: relative;
    background: var(--grey-color);
    border-radius: var(--border-radius);
    padding: 45px 30px;
    align-items: center;
    justify-items: center;
    overflow: inherit;
    margin-bottom: 30px;
}

.pq-pricing-box-style-1 .pq-pricing-box-icon {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.pq-pricing-box-style-1 .pq-pricing-box-price .pq-pricing-box-price-designation {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    display: block;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 5px;

}

.pq-pricing-box-style-1 .pq-pricing-box-price-title {
    font-size: 44px;
    line-height: 52px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 0;
    padding: 0;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li {
    display: flex;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li p {
    margin-bottom: 0;
}

.pq-pricing-box-style-1.pq-active {
    background: var(--primary-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-icon {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-designation {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-title {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-title {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-title {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-info {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-info li i {
    color: var(--white-color);
}

.pq-pricing-box-style-1.pq-active .button-rounded a {
    background: var(--white-color);
    color: var(--dark-color);
}

.pq-pricing-box-style-1.pq-active .button-rounded a:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

@media (max-width: 1199px) {
    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 1499px) {
    .pq-pricing-box-style-1 {
        padding: 66px;
    }
}


@media (max-width: 1099px) {
    .pq-pricing-box-style-1 {
        padding: 30px 50px;
    }
}

@media (max-width: 1023px) {
    .pq-pricing-box-style-1 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
        font-size: 28px;
        line-height: 36px;
    }

    .pq-pricing-box-style-1 .pq-pricing-box-price-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 479px) {
    .pq-pricing-box-style-1 {
        padding: 30px 22px;
    }

    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*################################# */
/* team-style-1 */
/* ################################# */

.pq-team-box-style-1 {
    background: var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
    /* margin-bottom: 25px; */
    /* padding: 10px 10px 0; */
    transform: var(--transition);
    position: relative;
}

.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 {
    background-color: var(--primary-color);
}

.pq-team-style-1 .pq-team-box-style-1.pq-team-bg::before {
    background-image: url(../image/team/pic-3.svg);
}

.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-title a {
    color: var(--white-color);
}

.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-info .team-box-categorie a {
    color: var(--white-color);
}

.pq-team-box-style-1 .team-box-info {
    margin-bottom: 5px;
}

.pq-team-box-style-1 .team-box-info .team-box-title {
    font-size: 24px;
    line-height: 32px;
    transition: none;
}

.pq-team-box-style-1 .team-box-info .team-box-categorie {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.pq-team-box-style-1 .team-box-img {
    /* position: relative; */
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-bottom: -30px;
    border-radius: var(--border-radius);
}

.pq-team-box-style-1 .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/pic1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}

.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}

.pq-team-box-style-1.pq-team-bg .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-svg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}

.pq-team-box-style-1.pq-team-bg:hover .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}

.pq-team-box-style-1 .team-box-img img {
    transition: var(--transition-duration);
}

.pq-team-box-style-1:hover .team-box-img img {
    transform: scale(1.1);
}

.pq-team-box-slider-1 .owl-nav {
    display: none;
}

/*################################# */
/* team-style-2 */
/* ################################# */

.pq-team-box-style-2 {
    text-align: center;
}

.pq-team-box-style-2 .pq-team-box-meta {
    overflow: hidden;
}

.pq-team-box-style-2 .pq-team-box-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-duration);
    position: absolute;
    left: 0;
    bottom: 110px;
    visibility: visible;
    gap: 15px;
    width: 100%;
    z-index: 1;
}

.pq-team-box-style-2 .pq-team-box-social a {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    border-radius: 100%;
    color: var(--dark-color);
    background: var(--white-color);
    transition: var(--transition-duration);
    transform: translateY(30px);
    opacity: 0;
}

.pq-team-box-style-2:hover .pq-team-box-social a {
    transform: translateY(0px);
    opacity: 1;
}

.pq-team-box-style-2 .pq-team-box-social a:hover {
    background: var(--primary-color);
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(4) {
    transition-delay: 0.4s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(5) {
    transition-delay: 0.5s;
}

.pq-team-box-style-2:hover .team-box-social a:nth-child(6) {
    transition-delay: 0.6s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(7) {
    transition-delay: 0.7s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(8) {
    transition-delay: 0.8s;
}

.pq-team-box-style-2 .pq-team-box-info {
    margin-top: 20px;
}

.pq-team-box-style-2 .pq-team-box-info .pq-team-box-title {
    font-size: 24px;
    line-height: 32px;
}

.pq-team-box-style-2 .pq-team-box-info .pq-team-box-categorie {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.pq-team-box-style-2 .pq-team-box-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-team-box-style-2 .pq-team-box-img img {
    transition: var(--transition-duration);
}

.pq-team-box-style-2:hover .pq-team-box-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.pq-team-box-style-2 .owl-carousel .owl-nav {
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    cursor: inherit;
    justify-content: center;
    margin-top: 26px;
}



/*################################# */
/* team-share-icon */
/* ################################# */

.pq-team-box-style-1 .menu {
    position: fixed;
    margin: 0;
    bottom: 0;
    list-style-type: none;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.pq-team-box-style-1 .menu .share>i {
    width: 60px;
    text-align: center;
    line-height: 60px;
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    cursor: pointer;
}

.pq-team-box-style-1 .menu .submenu {
    padding: 8px 20px;
    margin: 0;
    background: var(--white-color);
    position: absolute;
    top: -30px;
    opacity: 0;
    display: flex;
    gap: 15px;
    border-radius: var(--big--border-radius);
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-duration);
}

.pq-team-box-style-1 .menu .submenu li a {
    color: var(--dark-color);
}

.pq-team-box-style-1 .menu .submenu li a:hover {
    color: var(--primary-color);
}

.pq-team-box-style-1 .menu .share:hover .submenu {
    top: -60px;
    opacity: 1;
}

/*################################# */
/* team-carousal*/
/* ################################# */
.pq-team-box-slider-1 .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pq-team-box-slider-1 .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -8%;

    transform: rotate(180deg) translate(0px, 0px);
}

.pq-team-box-slider-1 .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -8%;
}

/*################################# */
/* team-details */
/* ################################# */
.pq-team-detail-box-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    gap: 15px;
}

.pq-team-main-img img {
    width: 390px;
    border-radius: var(--border-radius);
}

.pq-team-detail .pq-title-subtitle-1 {
    color: var(--primary-color);
    margin-top: 10px;
    font-family: var(--title-fonts);
    font-weight: 400;
    margin-left: 43px;
}

.pq-team-detail .pq-heading-title {
    margin-left: 36px;
}

.pq-contact-list {
    padding: 0px 15px 0px 45px;
    margin-top: 15px;
}

.pq-contact-list .pq-left-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Manrope", Sans-serif;
    color: var(--secondary-color);
    padding-bottom: 20px;

}

.pq-contact-list .pq-right-title {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    color: #525256;
    margin-left: 10px;
}

.pq-detail-info-main {
    display: grid;
    gap: 15px;
    grid-template-columns: 2fr 1fr;
    margin-top: 45px;
}

.pq-footer-social-style-1.pq-style-2 ul li a {
    background-color: black;
    color: white;
}

.pq-footer-social-style-1.pq-style-2 ul li a {
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 40px;

}

.pq-footer-social-style-1.pq-style-2 .pq-social-icon {
    margin-top: -33px;
    margin-left: 43px;
}

.pq-team-detail .pq-bullet-list .pq-icon-list-items li {
    padding-top: 3px;
    padding-bottom: 0;
}

@media(max-width:1099px) {
    .pq-team-detail-box-main {
        grid-template-columns: 1fr 1fr;
    }

    .pq-detail-info-main {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .pq-team-detail-box-main {
        grid-template-columns: 1fr;
    }
}

@media(max-width:479px) {
    .pq-contact-list {
        padding: 0px 10px 0px 10px;
    }

    .pq-team-main-img img {
        width: 100%;
    }
}

@media(max-width:379px) {
    .pq-contact-list .pq-left-title {
        font-size: 16px;
    }
}

/*################################# */
/* team-style-3 */
/* ################################# */

.pq-team-style-1.pq-team-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.pq-team-box-style-1.pq-team-bg {
    background-color: var(--grey-color);
}

.pq-team-box-style-1.pq-team-bg:hover {
    background-color: var(--primary-color);
}

.pq-team-box-style-1.pq-team-bg:hover .team-box-title {
    color: var(--white-color);
}

.pq-team-box-style-1.pq-team-bg:hover .team-box-categorie a {
    color: var(--white-color);
}

.pq-team-style-1.pq-team-main .pq-team-box-style-1.pq-team-bg .menu {
    position: absolute;
    padding: 0;
    margin: 0;
    z-index: 9;
    bottom: -50px;
}

.pq-team-style-1.pq-team-main .pq-team-box-style-1.pq-team-bg .team-box-info:hover {
    color: var(--white-color);
}

@media(max-width:799px) {
    .pq-team-style-1.pq-team-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pq-team-style-1.pq-team-main {
        grid-template-columns: 1fr;
    }
}


/*################################# */
/* testimonial-style-1 */
/* ################################# */

.pq-testimonial {
    position: relative;

}

.pq-testimonial-box-slider-1 {
    padding: 120px;
    margin-top: 80px;
    padding: 90px 30px 90px 30px;
    border-radius: 20px 20px 20px 20px;
}

.pq-testimonial-img {
    width: 100px;
    top: 0;
    position: absolute;
    left: 100px;
}

.pq-img-team {
    width: 180px;
    height: auto;
}

.pq-image-box-wrapper {
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

.pq-image-box-content .pq-image-box-title {
    color: var(--white-color);
}

.pq-image-box-content .pq-image-box-description {
    color: var(--white-color);
}

.pq-testimonial-1 {
    display: flex;
    gap: 20px;
}

.pq-testimonial-box-style-1 {
    color: white;
    position: relative;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-star {
    margin-bottom: 15px;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-quote {
    position: absolute;
    bottom: -15px;
    right: 0;
    color: var(--white-color);
    font-size: 72px;
    line-height: 80px;
    opacity: 0.4;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-description {
    font-size: 20px;
    line-height: 1.8;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-info .pq-testimonial-box-title {
    color: var(--white-color);
}

.pq-testimonial-box-style-1 .pq-testimonial-box-info .pq-testimonial-box-designation {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    color: var(--white-color);
    letter-spacing: 1px;
}

.pq-testimonial-box-slider-1 .owl-dots {
    display: flex;
    justify-content: flex-end;
}

.pq-testimonial-box-main .owl-dots .owl-dot {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
}

.pq-testimonial-box-main .owl-dots .owl-dot.active {
    background-color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

@media (max-width: 1499px) {
    .pq-testimonial-box-quote {
        display: none;
    }

    .pq-testimonial-img {
        display: none;
    }

    .pq-img-team {
        width: 90px;
    }

    .pq-image-box-content {
        text-align: left;
    }
}

/*################################# */
/* testimonial-style-2 */
/* ################################# */

.pq-testimonial-box-style-2 {
    position: relative;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 60px 30px 45px;
}

.pq-testimonial-box-style-2 .pq-testimonial-box-star {
    color: var(--primary-color);
}

.pq-testimonial-box-style-2 .pq-testimonial-box-detail .pq-testimonial-box-title {
    font-size: 20px;
    line-height: 28px;
}

.pq-testimonial-box-style-2 .pq-testimonial-box-detail .pq-testimonial-box-designations {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: 1;
    font-weight: 400;
}

.pq-testimonial-box-style-2 .pq-testimonial-box-quote {
    font-size: 72px;
    line-height: 80px;
    opacity: 0.4;
    position: absolute;
    bottom: 45px;
    right: 30px;
    color: var(--primary-color);

}

.pq-testimonial-box-style-2 .pq-testimonial-box-info {
    display: flex;
    gap: 20px;
    align-items: center;
    border-top: 1px solid rgb(21 20 28 / 10%);
    padding-top: 30px;
}

.pq-testimonial-box-img img {
    width: 90px;
    height: 90px;
    border-radius: 100%;
}

.pq-testimonial-box-style-2::before {
    content: "";
    position: absolute;
    top: -1px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url('../image/testimonial/small-cut.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 9;
}

.pq-testimonial-box-slider-2 .owl-carousel .owl-nav {
    position: relative;
    top: 0%;
    transform: translateX(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    cursor: inherit;
    justify-content: center;
    margin-top: 26px;
}

/*################################# */
/* testimonial-style-3 */
/* ################################# */
.pq-testimonial-box-style-2.pq-style-2 {
    background-color: var(--white-color);
}

/*################################# */
/* blog-style-1 */
/* ################################# */
.pq-blog-post {
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    padding: 15px 15px 30px;
    border-radius: var(--border-radius);
}

.pq-blog-post .pq-blog-image {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.pq-blog-post .pq-blog-image img {
    width: 100;
    transition: var(--transition-duration);
}

.pq-blog-post:hover .pq-blog-image img {
    transform: scale(1.1);
}

.pq-blog-post .pq-blog-title {
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
}

.pq-blog-post .pq-blog-contain {
    padding: 0 15px;
}

.pq-blog-post .pq-blog-contain .pq-post-meta {
    margin-left: -26px;
}

.pq-blog-contain .pq-post-category {
    text-transform: capitalize;
}

.pq-blog-title a {
    margin-bottom: 10px;
}

.pq-blog-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.pq-blog-post .pq-post-meta ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 3px;


}

@media(max-width:1023px) {
    .pq-blog-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pq-blog-main {
        grid-template-columns: 1fr;
    }
}

@media(max-width:397px) {
    .pq-blog-main {
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* blog-style-2 */
/* ################################# */

.pq-blog-style-2-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pt-blog-post.pq-list:last-child {
    margin-bottom: 0;
}

.pq-blog-post.pq-list {
    padding: 0;
    background-color: transparent;
    padding-bottom: 30px;
    border-bottom: 1px solid #0000001f;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.pq-blog-post.pq-list .pq-blog-area {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.pq-bg-gray .pq-blog-post.pq-list .pq-blog-area {
    background-color: var(--white-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta ul .pq-post-category a {
    color: var(--primary-color);
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-post-meta ul .pq-post-category a {
    color: var(--primary-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta ul a i {
    margin-right: 8px;
}

.pq-blog-post.pq-list .pq-blog-area .pq-blog-contain {
    position: relative;
    z-index: 1;
}

.pq-blog-post.pq-list .pq-blog-area .pq-blog-contain .pq-blog-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 600px;
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-blog-contain .pq-blog-title {
    color: var(--primary-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-date {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-duration);
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-post-date {
    z-index: 0;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-date a {
    display: block;
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
}

.pq-blog-post.pq-list .pq-blog-area .button-rounded a {
    color: var(--dark-color);
    background-color: transparent;
    border: 1px solid transparent;
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .button-rounded a {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid transparent;
}

.pq-blog-post.pq-list .pq-blog-area .button-rounded a:hover {
    color: var(--dark-color);
    background-color: transparent;
    border: 1px solid transparent;
}

@media (max-width: 1099px) {
    .pq-blog-style-2-main {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {
    .pq-blog-post.pq-list .pq-blog-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pq-blog-post.pq-list .pq-blog-area .pq-blog-contain .pq-blog-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*################################# */
/* blog-style-3 */
/* ################################# */
.pq-blog-main .pq-blog-post.pq-style-1 {
    background-color: var(--grey-color);
}

/*################################# */
/* contact-form */
/* ################################# */
.pq-form-box-style-1 {
    background-color: var(--white-color);
    padding: 45px 30px 45px 30px;
    border-radius: 20px;
}

.pq-form-box.pq-style-1 {
    margin-top: 20px;
}

.pq-form-box-style-1 .pq-form .name {
    border-radius: 20px;
}

.pq-form-box-style-1 .pq-form .email {
    border-radius: 20px;
}

.pq-form-box-style-1 .pq-form .phone {
    border-radius: 20px;
}

.pq-form-box-style-1 .pq-form .subject {
    border-radius: 20px;
}

.pq-form-box-style-1 .pq-form .your-name {
    border-radius: 20px;
}

.pq-form-box-style-1 .pq-form input::placeholder {
    color: #020101;
    opacity: 0.5;
}

.pq-form-box-style-1 .pq-form textarea::placeholder {
    color: #020101;
    opacity: 0.5;
}

.pq-contct-img {
    margin-bottom: -90px;
    border-radius: 20px;
}

@media(max-width:799px) {
    .pq-contct-img {
        width: 80%;
        margin-bottom: 3px;
    }

}

/*################################# */
/* contact-form-style-2 */
/* ################################# */
.pq-form-box-style-1.pq-style-2 {
    background-color: #F3F3F3;
}

.pq-form-box-style-1.pq-style-2 .pq-form input {
    background-color: #FFFFFF;
    color: var(--dark-color);
}

.pq-form-box-style-1.pq-style-2 .pq-form textarea {
    background-color: #FFFFFF;
    color: var(--dark-color);
}

.pq-form-box.pq-style-2 {
    margin-top: 20px;
}

/*################################# */
/* blog-sidebar */
/* ################################# */
.pq-blog-details-main {
    display: flex;
    gap: 30px;
}

.pq-blog-post.pq-style-3 {
    background-color: var(--grey-color);
    margin-bottom: 20px;
}

.pq-blog-group-style-1 {
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.pq-blog-group-style-1 .pq-blog-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pq-blog-group-style-1 .pq-blog-small-img {
    border-radius: var(--border-radius);
}

.pq-blog-group-style-1 .pq-blog-social .pq-footer-social-style-1.pq-style-4 ul li a {
    background: none;
}

.pq-tag-blog.pq-style-1 {
    background-color: var(--grey-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.pq-blog-group .pq-blog-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pq-blog-group .pq-blog-small-img {
    border-radius: 20px;
}

.pq-blog-group .pq-blog-description {
    margin-top: 15px;
}

.pq-social-icon ul li {
    list-style: none;
}

.pq-blog-social .pq-blog-social-style-1 .pq-social-icons {
    display: flex;
    gap: 30px;
}

.pq-blog-social-style-1 ul li a {
    background: none;
    margin: 2px;
    font-size: 18px;
    line-height: 50px;
    color: var(--dark-color);
    text-align: center;
    display: inline-block;
    padding: 0;
}

.pq-blog-social-style-1 .pq-social-icons .pq-facebook i {
    width: 21px;
    height: 21px;
    background-color: black;
    color: white;
    line-height: 29px;
    border-radius: 100%;
    font-size: 14px;

}

.pq-recent-main {
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.pq-recent-main .pq-blog-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pq-blog-main-style-1 .pq-recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 27px;
}

.pq-recent-post .pq-recent-post-media img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.pq-recent-post .pq-recent-post-info a {
    font-size: 16px;
    line-height: 24px;

}

.pq-recent-post .pq-recent-post-info .pq-recent-link {
    font-size: 16px;
    line-height: 24px;
}

.pq-recent-post .pq-recent-post-info i {
    margin-right: 10px;
}

.pq-recent-post .pq-recent-post-info h6 a:hover {
    color: var(--dark-color);
}

.pq-blog-group .pq-tag-blog {
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.pq-tag-blog .pq-tag-links {
    margin-top: 20px;
    padding: 16px;
}

.pq-tag-blog .pq-tag-links a {
    font-size: 16px;
    padding: 4px 16px;
    background-color: var(--white-color);
    color: var(--secondary-color);
    text-transform: capitalize;
    margin: 0px 10px 10px 0px;
    display: inline-block;
    border-radius: 10px;
}

.pq-tag-blog .pq-tag-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-blog-group .pq-tag-blog.pq-style-1 {
    padding: 14px;
}

@media(max-width:1023px) {
    .pq-blog-details-main {
        display: block;
    }
}

@media(max-width:767px) {
    .pq-right-blog.pq-style-1 {
        grid-template-columns: 1fr;
    }

}

@media(max-width:479px) {
    .pq-blog-main-style-1 .pq-recent-post {
        display: block;
    }
}

@media(max-width:397px) {
    .pq-blog-main-style-1 .pq-recent-post {
        display: block;
    }

    .pq-blog-group .pq-tag-blog {
        padding: 10px;
    }

    .pq-tag-blog .pq-tag-links {
        padding: 10px;
    }
}

/*################################# */
/* blog-left-sidebar */
/* ################################# */
.pq-right-blog.pq-style-1 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

@media(max-width:1099px) {
    .pq-right-blog.pq-style-1 {
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* blog-right-sidebar */
/* ################################# */
.pq-right-blog.pq-style-2 {
    display: grid;
    grid-template-columns: 15fr 1fr;
    gap: 30px;
}

@media(max-width:1099px) {
    .pq-right-blog.pq-style-2 {
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* blog-details */
/* ################################# */
.pq-blockquote blockquote {
    padding: 30px;
    background-color: var(--grey-color);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    position: relative;
}

.pq-blockquote blockquote strong {
    color: var(--primary-color);
    font-weight: 400;
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-family: var(--title-fonts);
}

.pq-blog-sidebar .pq-blockquote blockquote:before {
    content: "\f10e";
    font-weight: 900;
    font-size: 76px;
    line-height: 84px;
    opacity: 0.1;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 23px;
    bottom: 10px;
    color: var(--primary-color);
}

.pq-blog-sidebar .pq-blog-list {
    margin-top: 30px;
}

.pq-blog-sidebar .pq-blog-list .pq-blog-heading {
    margin-bottom: 10px;
}

.pq-blog-list-main {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.pq-blog-list-main .pq-list-image-1 img {
    border-radius: 20px;
}

.pq-blog-list-main .pq-list-image-2 img {
    border-radius: 20px;
}

.pq-blog-list-description .pq-list-description {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .pq-blog-list-main {
        display: block;
    }

    .pq-blockquote blockquote {
        font-size: 14px;
    }

    .pq-blog-heading {
        font-size: 14px;
    }

    .pq-icon-list-items {
        font-size: 14px;
    }

    .pq-list-image-2 {
        margin-top: 15px;
    }

    .pq-comment-reply-title {
        font-size: 28px;
    }

    .widget.widget_search {
        margin-top: 15px;
    }

}

/*################################# */
/* single-page navigation */
/* ################################# */
.pq-page-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-page-post-navigation .pq-page-post-nav {
    position: relative;
    padding-left: 75px;
    display: inline-block;
    cursor: pointer;
}

.pq-page-post-navigation .pq-page-post-nav:hover::before {
    background-color: var(--primary-color);

}

.pq-page-post-navigation .pq-page-post-nav .pq-post-nav-content:hover .pq-post-nav-label {
    color: var(--primary-color);
}

.pq-page-post-navigation .pq-page-post-nav:before {
    content: "\e64a";
    width: 60px;
    height: 60px;
    position: absolute;
    font-weight: 600;
    line-height: 68px;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    font-size: 20px;
    line-height: 60px;
    font-family: 'themify';
    color: var(--white-color);
    background: var(--dark-color);
    text-align: center;
    border-radius: var(--big--border-radius);
    transition: var(--transition-duration);
}

.pq-page-post-navigation .pq-page-post-nav:before:hover {
    background-color: var(--primary-color);
}

.pq-page-post-navigation .pq-page-post-nav.pq-next:before {
    content: "\e649";
    right: 0;
}

.pq-page-post-navigation .pq-page-post-nav .pq-post-nav-content .pq-post-nav-label {
    color: var(--dark-color);
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--title-fonts);
    letter-spacing: 1px;
}

.pq-single-post-social-icon-box {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    align-items: center;
    padding: 15px 0;
    margin: 45px 0;
}

.pq-single-post-social-icon-box .pq-share-link-list {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    align-items: center;
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link .pq-single-post-social-title {
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link a {
    font-size: 18px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--grey-color);
    color: var(--dark-color);
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    border-radius: var(--big--border-radius);
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pq-single-post-social-icon-box .pq-single-post-tags {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-single-post-tags-title {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 700;
    font-family: var(--title-fonts);
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-tags-share {
    font-size: 16px;
    text-transform: capitalize;
    background: var(--grey-color);
    display: inline-block;
    color: var(--dark-color);
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--title-fonts);
    border: 1px solid var(--white-color);
    transition: var(--transition);
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-tags-share:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pq-single-post-usernav {
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: 10px;
}

.pq-single-post-usernav .pq-user {
    display: flex;
    gap: 30px;
}

.pq-single-post-usernav .pq-user .pq-user-media .pq-img {
    width: 132px;
    border-radius: var(--big--border-radius);
}

.pq-single-post-usernav .pq-user .pq-user-info .pq-user-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
}

.pq-single-post-usernav .pq-user .pq-user-info .pq-user-sub-title {
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pq-comment-area {
    margin-top: 30px;
}

.pq-comment-area .pq-comments-title {
    padding-top: 30px;
    margin-bottom: 30px;

}

.pq-comment-area .pq-commentlist .pq-comment-item {
    padding: 30px;
    background-color: var(--grey-color);

}

.pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box {
    display: flex;
    gap: 30px;
}

.pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-user-media img {
    width: 120px;
    border-radius: 10px;
}

.pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-top {
    display: flex;
    justify-content: space-between;

}

.pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-top .pq-comment-repy {
    color: var(--primary-color);
    text-transform: capitalize;
}

.pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-description {
    margin-bottom: 0;
}

.pq-form.pq-style-2 .pq-input-box .form-control {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    font-size: 16px;
    line-height: 24px;
}

.pq-form.pq-style-2 textarea {
    background-color: var(--grey-color);
    padding: 10px 15px;
    height: 200px;

}

.pq-form.pq-style-2 .pq-button-text {
    display: contents;
}


@media(max-width:767px) {
    .pq-single-post-social-icon-box {
        display: block;
    }

    .pq-single-post-tags {
        margin-left: 23px;
        margin-top: 14px;
    }

    .pq-single-post-usernav .pq-user {
        display: block;
    }
}

@media(max-width:479px) {
    .pq-page-post-navigation {
        padding: 30px 15px;
        flex-direction: column;
        border-radius: var(--border-radius);
        gap: 30px;
    }

    .pq-single-post-social-icon-box .pq-share-link-list.pq-share-link-list {
        margin-top: 5px;
        gap: 0;
    }

    .widget {
        margin-top: 10px;
    }

}


/*################################# */
/* accordian-box */
/* ################################# */
.pq-accordian-box-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pq-form-box-style-1.style-1 {
    background-color: var(--primary-color);
}

.pq-accordion-block {
    background-color: var(--white-color);
    padding: 30px 30px 30px 30px;
    border-radius: 10px 10px 10px 10px;
}

.pq-accordion-box.pq-style-1 {
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);
    margin-bottom: 24px;
    padding-bottom: 24px;
    position: relative;
}

.pq-accordion-box.pq-style-1:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.pq-accordion-box.pq-style-1 .pq-accordion-info .pq-accordion-title {
    font-size: 20px;
    line-height: 28px;
    padding-right: 30px;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 .pq-accordion-info .pq-accordion-title {
    color: var(--white-color);
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info .pq-accordion-title {
    color: var(--primary-color);
}

.pq-bg-dark .pq-accordion-box.pq-style-1.pq-active .pq-accordion-info .pq-accordion-title {
    color: var(--primary-color);
}

.pq-accordion-box.pq-style-1 .pq-accordion-info i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 26px;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 .pq-accordion-info i {
    color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 26px;
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info i.active {
    opacity: 0;
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info i.inactive {
    opacity: 1;
}

.pq-accordion-box.pq-style-1 .pq-accordion-details p {
    margin-top: 10px;
    margin-bottom: 0;
}

.pq-accordian-img {
    border-radius: 10px;
}

@media (max-width: 1279px) {
    .pq-accordian-box-main {
        grid-template-columns: 1fr;
    }

    .pq-bg-accordian {
        background-image: none;
    }
}

/*################################# */
/* breadcrumb */
/* ################################# */



.pq-breadcrumb-style-1 {
    background-image: url('../image/Clientimg/images for front page/bgab.png') !important;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: left;
    position: relative;
    padding: 150px 0;
    min-height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    height: 690px;

}

.pq-breadcrumb-style-1 nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.pq-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    color: var(--dark-color);
    background-color: rgba(255, 255, 255, 0.6);
    /* semi-transparent white */
    padding: 10px 20px;
    display: inline-block;
    backdrop-filter: blur(5px);
    /* optional: blur background behind text */
    border-radius: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 430px;
}


.pq-breadcrumb-container .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pq-breadcrumb-container .breadcrumb li {
    list-style: none;
    margin-right: 10px;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: bold;
}

.pq-breadcrumb-container .breadcrumb li a {
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
}

.pq-breadcrumb-container .breadcrumb li a i {
    margin-right: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    line-height: 29px;
    text-align: center;
    border-radius: var(--border-radius);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "-";
    font-size: 16px;
    padding-right: 10px;
    color: var(--dark-color);
}

/* ========== Responsive Styles ========== */

@media (max-width: 1199px) {
    .pq-breadcrumb-style-1 {
        padding: 120px 0;
    }

    .pq-breadcrumb-style-1 nav {
        width: 75%;
    }

    .pq-breadcrumb-title h1 {
        font-size: 52px;
        line-height: 60px;
    }
}

@media (max-width: 1023px) {
    .pq-breadcrumb-style-1 {
        padding: 100px 0;
    }

    .pq-breadcrumb-style-1 nav {
        width: 100%;
    }

    .pq-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .pq-breadcrumb-style-1 nav {
        grid-template-columns: 1fr;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container {
        display: block;
    }

    .pq-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
        text-align: center;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .pq-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}


/*################################# */
/* Error */
/* ################################# */
.pq-error-box {
    text-align: center;
}

.pq-error-box .pq-error-text {
    font-size: 420px;
    line-height: 0.8;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .pq-error-box .pq-error-text {
        font-size: 183px;
    }

    .pq-error-box .pq-error-content {
        font-size: 30px;
    }
}

/*################################# */
/* contact-us */
/* ################################# */
.pq-contact-us-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.pq-contact-us-main .pq-contact-image img {
    border-radius: 20px;
}

.pq-icon-box-style-1 {
    display: inline-flex;
    gap: 30px;
    align-items: center;
}

.pq-icon-box-style-1 .pq-icon-box-icon {
    font-size: 40px;
}

.pq-icon-box-style-1 .pq-icon-box-icon i {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    display: block;
    border-radius: 100%;
    line-height: 92px;
    text-align: center;
    color: var(--white-color);
}

.pq-icon-box-main.pq-style-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.pq-icon-box-main.pq-style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.pq-icon-box-main .pq-contact-icon-box {
    border-right: 1px solid #0000001F;
}

.pq-icon-box-main .pq-icon-box-wrapper .pq-icon-box-description {
    margin-top: 10px;
}

.pq-contact-icon-box .pq-contact-description {
    margin-bottom: 20px;
    margin-top: 50px;
    text-align: center;
}

.pq-icon-box-main .pq-contact-icon-box:last-child {
    border-right: none;
}

.pq-contact-icon-box .pq-contact-icon i {
    font-size: 60px;
    color: var(--primary-color);
}

/* komal conatct icon center */
.icon-center-box {
    display: flex;
    justify-content: center;
    /* Center icon horizontally inside */
    align-items: center;
    /* Center icon vertically inside */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    /* THIS centers the box on the screen */
}

.icon-center-box i {
    font-size: 24px;
    color: var(--primary-color);
}

/* end  */
@media(max-width:1099px) {
    .pq-contact-us-main {
        grid-template-columns: 1fr;
    }

    .pq-icon-box-main.pq-style-1 {
        grid-template-columns: 1fr 1fr;
    }

    .pq-icon-box-main .pq-contact-icon-box {
        border: none;
    }

    .pq-contct-img {
        margin-top: 20px;
    }
}

@media(max-width:979px) {

    .pq-icon-box-main.pq-style-2 {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width:767px) {
    .pq-contact-us-main {
        grid-template-columns: 1fr;
    }

    .pq-icon-box-main.pq-style-2 {
        grid-template-columns: 1fr;
    }

    .pq-icon-box-main.pq-style-1 {
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* footer */
/* ################################# */

.pq-footer {
    background-color: var(--grey-color);
    display: inline-block;
    width: 100%;
}

.pq-footer .pq-img-logo {
    height: 60px;
    width: auto;
}

.pq-top-footer-main {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 3fr;
    /* gap:30px; */
}

.pq-contact-detail-style-1 {
    margin-left: -32px;
    margin-top: 20px;
}

.pq-contact-detail-style-1 ul.pq-contact li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pq-contact-detail-style-1 ul.pq-contact li:last-child {
    margin-bottom: 0;
}

.pq-contact-detail-style-1 ul.pq-contact li span {
    position: relative;
    border: none;
    display: block;
    color: var(--white-color);
}

.pq-contact-detail-style-1 ul.pq-contact li,
.pq-contact-detail-style-1 ul.pq-contact li a {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* padding: 0; */
    margin-bottom: 10px;
}

.pq-contact-detail-style-1 ul.pq-contact li a {
    padding: 0;
}

.pq-contact-detail-style-1 ul.pq-contact li .pt-icon {
    height: 26px;
}

.pq-contact-detail-style-1 ul.pq-contact li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    line-height: 51px;
    border-radius: var(--big--border-radius);
    text-align: center;
}

.pq-contact-detail-style-1 ul.pq-contact li svg {
    width: 22px;
    height: 20px;
}

.pq-contact-detail-style-1 ul.pq-contact li svg path {
    fill: var(--white-color);
}

.pq-footer-social-style-1 ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* margin-top: 20px; */

}

.pq-footer-social-style-1 ul li {
    list-style: none;
    margin-bottom: 0;
}

.pq-footer-social-style-1 ul li a {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    background: var(--white-color);
    color: var(--dark-color);
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    padding: 0;
}

.pq-footer-social-style-1 ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-menu-info {
    border-right: 1px solid var(--light-white);
    position: relative;

}

.pq-menu-info {
    min-height: 100%;
}

.pq-menu-info .pq-footer-title {
    font-size: 24px;
    line-height: 32px;
    position: relative;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 13px;
    color: var(--white-color);
}

.pq-footer .pq-menu-link {
    margin-bottom: 0;
}

.pq-menu-container .pq-menu-link .pq-menu-item {
    position: relative;
}

.pq-menu-container ul.pq-menu-link {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a {
    color: var(--white-color);
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a {
    padding: 0 0 0 20px;
    display: inline-block;
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a:hover {
    padding: 0 0 0 25px;
}

.pq-menu-container .pq-menu-link .pq-menu-item a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 2px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
}

.pq-subscribe-details .pq-subscribe-title {
    font-size: 24px;
    line-height: 32px;
    position: relative;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 16px;
    color: var(--white-color);
}

.pq-subscribe-details p {
    color: var(--white-color);
    max-width: 320px;
}

.pq-footer.form-field {
    display: inline-block;
    position: relative;
    width: 100%;
    color: var(--white-color);
}

.form-field .email {
    color: var(--white-color);
    border-radius: 100px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    background-color: var(--white-color);

}

.pq-form-detail .form-field input.submit {
    background-color: transparent;
    font-size: 0;
    padding: 0;
    width: 53px;
    height: 53px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    border-radius: 100px;
    background-position: center;
    background-size: 28px auto;
    background-repeat: no-repeat;
    border: none;
}

.pq-form-detail .form-field {
    display: inline-block;
    width: 100%;
    position: relative;
    max-width: 320px;

}

.pq-form-detail .form-field svg {
    position: absolute;
    right: 15px;
    top: 12px;
}

.pq-term-condition {
    display: block;
    gap: 20px;
    margin-bottom: 5px;
    float: none;

}

.pq-term-condition label {
    color: var(--white-color);
}


@media (max-width: 1399px) {
    .pq-term-condition label {
        font-size: 15px;

    }
}

@media (max-width: 1279px) {
    .pq-term-condition label {
        font-size: 15px;

    }
}

/*===== Footer Copyright =====*/

.pq-bottom-footer .pq-copyright-footer {
    background: var(--dark-color);
    padding: 0;
    border-radius: var(--border-radius);
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #ffffff1f;
    gap: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul li {
    border-right: 1px solid #ffffff1f;
    padding-right: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul li:last-child {
    border-right: none;
    padding-right: 0;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul li a {
    color: var(--white-color);
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright {
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 15px 0;
    border-top: 2px solid var(--light-white);
    color: var(--white-color);
}

@media (max-width: 1699px) {
    .pq-form-detail .form-field input.submit {
        right: 11%;
    }
}

@media (max-width: 1499px) {
    .pq-form-detail .form-field input.submit {
        right: 6%;
    }
}

@media (max-width: 1365px) {
    .pq-form-detail .form-field input.submit {
        right: 2%;
    }
}

@media (max-width: 1099px) {
    .pq-top-footer-main {

        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 979px) {
    .pq-top-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
}

@media (max-width: 767px) {
    .pq-top-footer-main {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 979px) {
    .pq-copyright-footer .pq-copyright-footer-inner {
        flex-direction: column;
        justify-content: center;
    }
}



/*################################# */
/* back-to-top */
/* ################################# */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 55px;
    box-shadow: inset 0 0 0 2px var(--dark-color);
    background: var(--grey-color);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: "\e660";
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    color: var(--dark-color);
    /* color: #FAFAFA; */
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: #5cb6ff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #FB923C;

}

.progress-wrap:hover::after {
    color: var(--primary-color);


}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*################################# */
/* slider-counter*/
/* ################################# */
.pq-slider-counter {
    position: absolute;
    padding: 30px 30px 30px 30px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    right: 60px;
    z-index: 9;
    bottom: 60px;
    z-index: 1001;
}

.pq-banner-slider {
    position: relative;
}

.pq-slider-counter .pq-counter .pq-counter-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--body-fonts);
    color: var(--white-color);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.pq-slider-counter .pq-counter .pq-counter-number-wrapper .pq-count {
    font-size: 64px;
    line-height: 72px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: var(--white-color);
}

.pq-slider-counter .pq-counter .pq-counter-number-wrapper .pq-counter-number-suffix {
    font-size: 64px;
    line-height: 72px;
    font-weight: 700;
    font-family: var(--title-fonts);
    color: var(--white-color);
}

@media (max-width: 1099px) {
    .pq-slider-counter {
        display: none;
    }
}

/*################################# */
/* counter*/
/* ################################# */

.pq-counter-style-1 .pq-counter .pq-count {
    font-size: 56px;
    line-height: 64px;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    position: relative;
}

.pq-counter-style-1 .pq-counter .pq-counter-suffix {
    font-size: 56px;
    line-height: 64px;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    position: relative;
}

.pq-counter-style-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pq-counter-style-1 .pq-cust-title {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    text-transform: capitalize;
}

.pq-counter .pq-cust-title {
    border-bottom: 1px solid var(--grey-color);
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-bottom: 15px;
}

.pq-counter .pq-count.pq-ct-1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 64px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}

.pq-counter .pq-icons {
    font-size: 56px;
    font-weight: 500;
    line-height: 64px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}

.pq-counter .pq-count.pq-ct-1.pq-ct-3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    font-family: var(--title-fonts);
}

.pq-counter-suffix {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    font-family: var(--title-fonts);
    color: black;
}

.pq-counter-style-2 .pq-counter .pq-count.pq-ct-1 {
    margin-top: 20px;
    display: inline-block;
}


@media(max-width:767px) {
    .pq-counter-style-1 {
        text-align: center;
    }
}

@media (max-width: 799px) {

    .pq-count.pq-ct-1 {
        font-size: 45px;
        line-height: 53px;
    }

}

/* ################################# */
/* Tooltip */
/* ################################# */

.pq-tooltip-box {
    --box-width: 235px;
    --icon-width: 44px;
    --icon-height: 50px;
    position: absolute;
    display: grid;
    gap: 15px;
    grid-template-columns: var(--icon-width) 0;
    transform: translate(calc(var(--icon-width) / -2), calc(var(--icon-width) / -2));
    transition: var(--transition-duration);
}

.pq-tooltip-box.pq-active {
    z-index: 1;
    grid-template-columns: var(--icon-width) var(--box-width);
}

.pq-tooltip-main {
    position: relative;
}

.pq-tooltip-box .pq-tooltip-icon {
    width: var(--icon-width);
    height: var(--icon-width);
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    line-height: var(--icon-height);
    -webkit-border-radius: var(--big--border-radius);
    -moz-border-radius: var(--big--border-radius);
    border-radius: var(--big--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-duration);
    transform: rotate(0deg);
}

.pq-tooltip-box.pq-active .pq-tooltip-icon {
    transform: rotate(90deg);
}

.pq-tooltip-box .pq-tooltip-contain {
    overflow: hidden;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    width: 0;
    transition: var(--transition-duration);
}

.pq-tooltip-box.pq-active .pq-tooltip-contain {
    width: var(--box-width);
}

.pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner {
    padding: 15px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    width: var(--box-width);
}

.pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
    margin-bottom: 0;
}

@media (max-width: 799px) {
    .pq-tooltip-box {
        --box-width: 125px;
        --icon-width: 36px;
        gap: 10px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner {
        padding: 10px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-title {
        font-size: 16px;
        line-height: 24px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
        display: none;
    }
}

/* ################################# */
/* Pagination */
/* ################################# */

.pq-pagination {
    margin-top: 50px;
}

.pq-pagination.pq-style-1 {
    margin-left: 185px;
}

.pq-pagination .page-numbers {
    display: flex;
    list-style: none;
    margin: 0;
}

.pq-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.pq-pagination.pq-left-grid {
    margin-left: 10%;
}

.pq-pagination .page-numbers li .page-numbers {
    position: relative;
    letter-spacing: 1px;
    display: block;
    padding: 0px 23px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    margin: 0 5px;
    text-transform: capitalize;
    color: var(--white-color);
    background-color: var(--dark-color);
    border: 0px solid var(--dark-color);
    border-radius: var(--big--border-radius);
}

.pq-pagination .page-numbers li .page-numbers:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:focus {
    box-shadow: none;
    outline: 0;
    z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}

.pq-pagination .page-numbers li .page-numbers.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
    transition: var(--transition-duration);
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
    width: auto;
}

.pq-pagination.pq-style-1 .page-numbers {
    margin-left: 0;
}

@media(max-width:479px) {
    .pq-pagination .page-numbers .next.page-numbers {
        display: none;
    }
}

/* ################################# */
/* map */
/* ################################# */
.pq-map-1 iframe {
    width: 100%;
    height: 600px;
}

/* ################################# */
/* custom-css */
/* ################################# */

.pq-bg-gray {
    background-color: var(--grey-color);
}

.pq-bg-black {
    background-color: var(--dark-color);
}

.pq-bg-orange {
    background-color: var(--primary-color);
}

.pq-bg-dark {
    background-color: var(--dark-color);
}

.pq-bg-lightblue {
    background-color: #F3F3F3
}

.pq-bg-contact {
    background-color: var(--primary-color);
}

.pq-img-cut {
    position: relative;
}

.pq-img-cut-1 {
    position: relative;
}

.pq-img-cut::before {
    content: "";
    background-image: url(../image/aboutus/s1.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -1px;
    left: 0;
}

.pq-img-cut-1::after {
    content: "";
    background-image: url(../image/site/svg2.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    left: 0;
}


.pq-bg-img {
    background-image: url(../image/testimonial/background.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: background-color 0.3s, border-radius 0.3s, opacity 0.3s;
}

.pq-bg-accordian {
    background-image: url(../image/accordian/builderpic.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
}

@media(max-width: 1279px) {
    .pq-bg-accordian {
        background-image: none;
    }
}

/*===== Image Effect Left =====*/

.img-pqkey-left {
    animation: img-pqkey-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-pqkey-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.animated {
    animation-duration: 1.25s;
}


/*.whatsapp-chat-wrapper {
    position: fixed;
    bottom: 80px;
     Pushed up above back-to-top button 
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-chat-message {
    background-color: #e0f7e9;
    color: #075e54;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    max-width: 240px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.whatsapp-chat-button {
    display: inline-block;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
}

.whatsapp-chat-button img {
    width: 40px;
    height: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Overwrapping Machines Styles */
#overwrapping-machines {
    background-color: #f8f9fa;
    /* light gray section background */
    border-radius: 12px;
}

#overwrapping-machines h2 {
    font-size: 2rem;
    color: #132e6b;
    /* Your brand's dark blue */
}

#overwrapping-machines .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    background-color: #fff;
}

#overwrapping-machines .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Baner*/

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
    display: block;
    transform: scale(1.2);
    opacity: 0;
    filter: brightness(0.85);
    animation: bannerZoomFade 2s ease-in-out forwards;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    opacity: 0;
    animation: overlayFadeIn 1.5s ease forwards;
    animation-delay: 0.8s;
    z-index: 1;
    transition: background 0.5s ease;
}

.banner .text-overlay {
    position: absolute;
    z-index: 2;
    color: #fff;
    bottom: 10%;
    left: 5%;
    opacity: 0;
    transform: translateY(30px);
    animation: textFloatUp 1.2s ease-out forwards;
    animation-delay: 1.2s;
    transition: transform 0.4s ease, text-shadow 0.3s ease;
}

/* Hover Effects */
.banner:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.banner:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.15));
}

.banner:hover .text-overlay {
    transform: translateY(20px);
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Keyframe Animations */
@keyframes bannerZoomFade {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes textFloatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll icon */
/* Move navigation arrows below the carousel */
.owl-carousel .owl-nav {
    position: relative !important;
    margin-top: 20px;
    /* space below images */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Optional: Style arrows */
/* Move navigation arrows below the carousel */
.owl-carousel .owl-nav {
    position: relative !important;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* space between arrows */
}

/* Style navigation buttons */
/* Move navigation arrows below the carousel */
.owl-carousel .owl-nav {
    position: relative !important;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* spacing between arrows */
}

/* Style navigation arrows */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    color: #FF761B;
    background: none;
    border: none;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 15px;
}

/* Hover effect */
/* === Owl Carousel Navigation Styling === */
.owl-carousel .owl-nav {
    display: flex !important;
    /* Ensures side-by-side layout */
    justify-content: center;
    /* Center the arrows */
    align-items: center;
    /* Vertically center if needed */
    flex-direction: row !important;
    /* Prevent stacked buttons */
    margin-top: 25px;
    padding: 50px;
    /* Space between carousel and arrows */
    gap: 25px;
    /* Space between left/right arrows */
}

/* Arrow buttons (Previous & Next) */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: transparent;
    /* No background */
    border: 2px solid #FF761B;
    /* Orange border */
    border-radius: 50%;
    /* Circle shape */
    width: 48px;
    height: 48px;
    font-size: 22px;
    line-height: 1;
    color: #FF761B;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #FF761B;
    color: #fff;
    border-color: #e85f00;
    transform: scale(1.1);
}


/* center */

/* Make .pq-portfolio-main full width and center its inner carousel items */
.pq-portfolio-main {
    width: 100%;
}

/* Center each carousel item content */
.owl-carousel .item {
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Optional: Add padding if needed */
.pq-portfolio-main {
    padding-left: 15px;
    padding-right: 15px;
}


.container {
    /* max-width: 100% !important; */
    width: 75% !important;
}


/* /list code */


.industries-we-serve {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.industries-list li {
    background: #fff;
    padding: 17px 10px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    color: #333;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
    overflow: hidden;
}

.industries-list li::before {
    content: "\f0da";
    /* Font Awesome angle-double-right icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 16px;
    color: #132e6b;
    transition: 0.4s;
}

.industries-list li:hover {
    background: linear-gradient(135deg, #132e6b 0%, #fd7e14 70%);
    color: #fff;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.industries-list li:hover::before {
    color: #fff;
    transform: translateX(5px);
}



/* heading */

/* Container Section */
.pq-portfolio-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Center & Max Width */
.scroll-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Scrollable Row */
.pq-portfolio-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0;
    scrollbar-width: none;
}

.pq-portfolio-grid::-webkit-scrollbar {
    display: none;
}

/* Card Styles */
.pq-portfolio-box-style {
    flex: 0 0 270px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.pq-portfolio-box-style:hover img {
    transform: scale(1.05) rotateY(3deg);
}

.pq-portfolio-box-style img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

/* Text Below Image */
.pq-portfolio-box-info {
    margin-top: 8px;
    margin-left: 35px;
}

.pq-portfolio-box-categorie {
    color: #f57c00;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.pq-portfolio-box-title {
    font-size: 16px;
    font-weight: 600;
    color: #132e6b;
    margin-top: 4px;
    margin-left: -5px;
}

/* Scroll Buttons */
.scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.scroll-btn-icon {
    background-color: #fff;
    border: 2px solid #f57c00;
    color: #f57c00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn-icon:hover {
    background-color: #f57c00;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}



/* Scroll Buttons */
/* .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 2px solid #f57c00;
  color: #f57c00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
} */

/* .scroll-btn:hover {
  background-color: #f57c00;
  color: #fff;
}

.scroll-btn.left {
  left: -20px;
}

.scroll-btn.right {
  right: -20px;
} */


/* Only animate image on hover */
.pq-portfolio-box-style img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pq-portfolio-box-style img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* back to top */
/* WhatsApp Chat Widget */
.whatsapp-chat-wrapper {
    position: fixed;
    bottom: 100px;
    /* Space above back-to-top */
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-chat-message {
    background-color: #e0f7e9;
    color: #075e54;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    max-width: 240px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.whatsapp-chat-button {
    display: inline-block;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
}

.whatsapp-chat-button img {
    width: 40px;
    height: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background: #222;
    transform: scale(1.05);
}

.back-to-top .arrow {
    position: absolute;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    z-index: 1;
    pointer-events: none;
}

/* Progress Circle */
.progress-circle {
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle circle {
    fill: none;
    stroke-width: 4;
}

.progress-circle .bg {
    stroke: rgba(255, 255, 255, 0.15);
}

.progress-circle .progress {
    stroke: #fff;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.1s linear;
}


/* Contact img */

/* Logo Entrance Animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pq-contct-img {
    animation: fadeSlideUp 1.2s ease-out forwards;
    opacity: 0;
    /* Required for animation to trigger */
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover Bounce Effect */
.pq-contct-img:hover {
    transform: scale(1.05) translateY(-5px);
}


/* Footer conatct */

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffffc4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ff761b;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #ff761b;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: #ff761b;
}

/* footer hover infotech */
.footer-hover-orange {
    color: #ffffffc4;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-hover-orange:hover {
    color: #ff761b;
    text-decoration: underline;
}

/* social icon hover */

.btn.btn-square {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0;
    font-size: 16px;
    line-height: 40px;
    transition: 0.3s ease-in-out;
}

.btn.btn-square i {
    color: #212529;
    /* default dark text */
    transition: 0.3s;
}

.btn.btn-square:hover i.fa-twitter {
    color: #ff761b;
}

.btn.btn-square:hover i.fa-facebook-f {
    color: #ff761b;
}

.btn.btn-square:hover i.fa-youtube {
    color: #ff761b;
}

.btn.btn-square:hover i.fa-instagram {
    color: #ff761b;
}

/* send msg  */

.col-lg-3.col-md-6 p {
    color: rgba(255, 255, 255, 0.8);
    /* White with 80% opacity */
}



/* index img pdf link */

.button-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.button-row a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    /* 🔽 reduced padding */
    font-size: 13px;
    /* optional: slightly smaller text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s ease;
    min-width: 80px;
    /* optional: keeps consistent width */
}

/* Button Colors */
.video-btn {
    background-color: #132e6b;
    /* Coral */
    color: #fff;
}

.pdf-btn {
    background-color: #132e6b;
    /* Soft Blue */
    color: #fff;
}


/* Icon Size */
.button-row i {
    font-size: 18px;
    line-height: 1;
}

/* Hover Effects */
.button-row a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    /* 🔽 slightly gentler effect */
}

/* adjust padding section */
.pq-portfolio {
    margin-top: 25px;
    /* Adjust as needed */
}


/* box -wraping mc heading code */

/* Title Heading with Underline */
/*-------------------------*/
/* Section: Titles */
/*-------------------------*/

.custom-title-heading {
    padding: 10px 0 5px;
    color: #15141c;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.3;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    cursor: pointer;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.custom-title-heading::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #FF761B;
    transition: width 0.3s ease;
}

.custom-title-heading:hover {
    color: #FF761B;
}

.custom-title-heading:hover::after {
    width: 40%;
}

.section-title {
    text-align: center;
    margin-top: -6px;
    max-width: 800px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -25px;
}

.simple-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    display: inline-block;
    text-align: center;
}

/*-------------------------*/
/* Section: Key Features Box */
/*-------------------------*/

.key-feature-box {
    max-width: 600px;
    width: 100%;
    /* ensure it scales on smaller devices */
    margin: 40px auto;
    /* centers the box horizontally */
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}



/*-------------------------*/
/* Section: Image Slider */
/*-------------------------*/

.image-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 300px;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    backdrop-filter: blur(4px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.slider-img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 10px;
}

.slider-img:hover {
    transform: scale(1.01);
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

/*-------------------------*/
/* Section: Responsive Breakpoints */
/*-------------------------*/

@media (max-width: 992px) {
    .image-slider-wrapper {
        height: 350px;
    }

    .custom-title-heading {
        font-size: 24px;
    }

    .simple-subtitle {
        font-size: 16px;
    }

    .key-feature-box {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .image-slider-wrapper {
        height: 280px;
    }

    .slider-arrow {
        font-size: 20px;
        padding: 8px;
    }

    .custom-title-heading {
        font-size: 22px;
    }

    .simple-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .image-slider-wrapper {
        height: 200px;
    }

    .slider-arrow {
        font-size: 18px;
        padding: 6px;
    }

    .custom-title-heading {
        font-size: 20px;
    }

    .simple-subtitle {
        font-size: 14px;
    }

    .key-feature-box {
        padding: 16px;
    }
}

/*-------------------------*/
/* Section: Header Responsive */
/*-------------------------*/

@media (max-width: 992px) {
    .pq-header-logo {
        width: auto;
        max-width: 160px;
        text-align: left !important;
    }

    .pq-header-logo img {
        width: 100%;
        height: auto;
    }

    .pq-header-right {
        display: none !important;
    }

    .pq-top-header {
        display: none;
    }

    .navbar-toggler {
        font-size: 24px;
        margin-left: auto;
        border: none;
    }

    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .pq-main-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .pq-main-menu li {
        width: 100%;
        margin: 5px 0;
    }

    .pq-main-menu a {
        padding: 10px 15px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .pq-submenu-icon {
        float: right;
        margin-top: 5px;
    }
}

/* para responsive */

/* Main Blog Description */
.pq-blog-description {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    margin-bottom: 30px;
}

/* Key Feature Box Styling */
.key-feature-box {
    max-width: 100%;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Feature Box Heading */
.key-feature-box h5 {
    font-size: 20px;
    font-weight: 600;
}

/* Feature List */
.key-feature-box ul {
    padding-left: 0;
}

.key-feature-box li {
    font-size: 18px;
    color: #444;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Buttons */
.key-feature-box .btn {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 5px;
    white-space: nowrap;
}

/* why we choose us start */
.section-heading-underline {
    position: relative;
    display: inline-block;
}

.section-heading-underline::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 135px;
    height: 3px;
    background: var(--primary-color);
    /* Do not use text color here */
}

/* img */
.feature-img-custom {
    width: 80%;
    /* smaller width */
    height: auto;
    border-radius: 20px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
}

.feature-img-custom:hover {
    transform: scale(1.05) rotateY(8deg) rotateX(2deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


/* img end */

/* Media Queries for Responsiveness */

/* Tablets and small desktops */
@media (max-width: 992px) {
    .key-feature-box {
        padding: 24px;
    }

    .key-feature-box h5 {
        font-size: 18px;
    }

    .key-feature-box li {
        font-size: 15px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .pq-blog-description {
        font-size: 15px;
    }

    .key-feature-box {
        padding: 20px;
    }

    .key-feature-box h5 {
        font-size: 17px;
    }

    .key-feature-box li {
        font-size: 14.5px;
    }

    .key-feature-box .btn {
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* Smallest screens like 320px */
@media (max-width: 480px) {
    .pq-blog-description {
        font-size: 14px;
    }

    .key-feature-box {
        padding: 16px;
    }

    .key-feature-box h5 {
        font-size: 16px;
    }

    .key-feature-box li {
        font-size: 14px;
    }

    .key-feature-box .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .key-feature-box .btn:last-child {
        margin-bottom: 0;
    }

    .key-feature-box .mt-3.mb-3.text-center {
        text-align: center;
        display: block;
    }
}


/* remove header underline */

/* Remove underline from main nav menu items only */
.pq-main-menu a {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit;
}

/* Optional: Hover effect */
.pq-main-menu a:hover {
    color: #f90;
    /* or your desired hover color */
}


/* footer infotech  */

/* footer .copyright-text a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer .copyright-text a:hover {
    color: #ffc107 !important;
    text-decoration: underline;
} */


/* color */

.text-orange {
    color: #ff7f00 !important;
    /* your brand orange */
}

.text-orange:hover {
    color: #000 !important;
    text-decoration: underline;
}

/* heading about  */

.pq-about-box-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #132e6b;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
    cursor: default;
    font-weight: bold;
    /* text-align: center !important; */
}

.pq-about-box-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 2px;
    background-color: #f57c00;
    transition: width 0.3s ease;
}

.pq-about-box-title:hover::after {
    width: 100%;
}


/* footer  */

.footer {
    font-size: 14px;
    /* Smaller font for compact feel */
    line-height: 1.6;
    /* Adjust line spacing */
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer p,
.footer a,
.footer .btn {
    margin-bottom: 6px !important;
    font-size: 18px;
    line-height: 1.5;
}

.footer .btn-link {
    padding: 0;
    margin-bottom: 5px !important;
    font-weight: 400;
}

.footer .row.g-5 {
    --bs-gutter-x: 1rem;
    /* Reduce gutter spacing between columns */
    --bs-gutter-y: 1rem;
}

.footer .img-fluid {
    border-radius: 4px;
}

/* Optional: tighten social icon spacing */
.footer .btn-square {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 14px;
    line-height: 32px;
}

.footer-link {
    color: #ffffffc4 !important;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-link:hover {
    color: #ff761b !important;
}

/* footer end */


.section-title-custom {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px double #fd7e14;
}

.text-blue-custom {
    color: #132e6b;
}

.text-orange-custom {
    color: #fd7e14;
}

/* Table hover effect */
.spec-table-hover {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    border: 1px solid #ccc;
}

.spec-table-hover th,
.spec-table-hover td {
    padding: 10px 12px;
    border: 1px solid #ccc;
    text-align: left;
}

.spec-table-hover th {
    background-color: #f8f9fa;
    color: #132e6b;
    font-weight: 600;
    width: 40%;
}

.spec-table-hover tr:hover td {
    background-color: #fff8f1;
    transition: background-color 0.3s ease;
}

.section-title-custom {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    /* reduced from 30px to 10px */
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px double #fd7e14;
}

.key-feature-box {
    margin-top: 0 !important;
    /* remove unnecessary top spacing */
}

.spec-table-hover tr:hover td {
    background: linear-gradient(to right, #e6f7ff, #ffffff);
    color: #132e6b;
    box-shadow: inset 0 0 6px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

/* paste manual */

@media (max-width: 768px) {
    .slider-img {
        max-height: 250px;
    }

    .slider-arrow {
        font-size: 14px;
        padding: 6px;
    }

    .custom-title-heading,
    .simple-subtitle {
        text-align: justify;
    }

    .pq-blog-description {
        text-align: justify !important;
        padding: 0;
    }

    @media (max-width: 576px) {
        .slider-img {
            max-height: 200px;
        }

        .custom-title-heading {
            font-size: 1.5rem;
        }

        .simple-subtitle {
            font-size: 1.1rem;
        }

        .pq-blog-description {
            font-size: 1rem;
            text-align: justify;
        }

        .slider-arrow {
            font-size: 12px;
            padding: 5px;
        }
    }
}

/* navbar media start  */
/* Base menu list styles */
ul.sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    background: #f4f7fb;
    border: 1px solid #e1e1e1;
    width: 100%;
    max-width: 300px;
    font-family: 'Segoe UI', sans-serif;
}

/* Top-level menu item */
ul.sub-menu>li.menu-item {
    position: relative;
    border-bottom: 1px solid #ddd;
}

/* Main menu link */
ul.sub-menu>li.menu-item>a {
    display: block;
    padding: 10px 15px;
    color: #132e6b;
    background-color: #fefefe;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;
}

ul.sub-menu>li.menu-item>a:hover {
    background-color: #e6ecf9;
    color: #0f2454;
}

/* Sub-sub-menu styles */
ul.sub-menu li ul.sub-menu {
    padding-left: 15px;
    background: #ffffff;
    border-left: 3px solid #132e6b33;
    margin-top: 5px;
}

ul.sub-menu li ul.sub-menu li {
    border: none;
}

ul.sub-menu li ul.sub-menu li a {
    padding: 8px 15px;
    font-size: 14px;
    color: #3d3d3d;
    background: transparent;
    text-transform: capitalize;
    display: block;
    transition: background 0.3s;
}

ul.sub-menu li ul.sub-menu li a:hover {
    background-color: #eef2ff;
    color: #132e6b;
}


/* Responsive tweak */
@media (max-width: 768px) {
    ul.sub-menu {
        max-width: 100%;
    }
}

ul.sub-menu li a {
    text-transform: none !important;
}

ul.sub-menu li a {
    text-transform: capitalize !important;
}

ul.sub-menu li a {
    text-transform: none !important;
    text-transform: capitalize !important;
}


ul.sub-menu li a {
    text-transform: none !important;
}

ul.sub-menu li a {
    text-transform: capitalize !important;
}

ul.sub-menu li a {
    text-transform: none !important;
    text-transform: capitalize !important;
}

/* client css */

/* Global Reset */
.reviews-section * {
    box-sizing: border-box;
}

.reviews-section {
    background-color: #f4f7fb;
    padding: 50px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Section Heading */
.reviews-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 5px;
    color: #1c1c1c;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Overall Rating Box */
.overall-rating-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto 30px auto;
    max-width: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.rating-score {
    font-size: 36px;
    font-weight: bold;
    color: #ff9900;
}

.stars {
    font-size: 25px;
    color: #ffcc00;
    margin: 0px 0;
    letter-spacing: 3px;
}

.total-reviews {
    font-size: 14px;
    color: #888;
}

/* Rating Breakdown */
.rating-breakdown {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.rating-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 10px 20px;
    font-size: 22px;
    color: #444;
}

.rating-breakdown li {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Review List */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.review-box {
    background-color: #fff;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
}

.review-box h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.review-box h4 span {
    color: #777;
    font-weight: normal;
    font-size: 14px;
}

.review-meta {
    font-size: 17px;
    color: #999;
    margin: 5px 0;
}

.tags {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.tags li {
    background-color: #e3f2fd;
    color: #132e6b;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 15px;
}

/* Review Text */
.review-box p {
    margin: 10px 0 5px;
    font-size: 14px;
    color: #333;
}

/* Helpful Button */
.helpful-btn {
    background-color: #1976d2;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.helpful-btn:hover {
    background-color: #125aa1;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 30px auto 0;
    padding: 10px 30px;
    background-color: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.load-more-btn:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overall-rating-box {
        padding: 20px;
    }

    .rating-breakdown {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 24px;
    }

    .rating-score {
        font-size: 28px;
    }

    .stars {
        font-size: 16px;
    }
}

/* navbar media end  */


/* mediaquery for mxc packing  */

@media (min-width: 768px) and (max-width: 991.98px) {
    .pq-portfolio .owl-carousel .item {
        width: calc(100% / 3 - 20px);
        /* 3 items with margin */
        margin-right: 30px;
        /* match your owl margin */
        float: left;
    }

    .pq-portfolio .owl-carousel {
        display: block;
    }

    .pq-portfolio .owl-stage {
        display: flex !important;
        flex-wrap: wrap;
    }

    .pq-portfolio .owl-stage-outer {
        overflow: visible !important;
    }

    .pq-portfolio .pq-portfolio-box-style-1 {
        height: 100%;
    }

    .pq-portfolio .pq-image-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .pq-portfolio .pq-portfolio-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


/* mediaquery for mxc packing end  */

/* 1. we who are  */
@media (min-width: 1400px) {
    .col-lg-5 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px;
    }

    .pq-about-images {
        order: -1;
        width: 100%;
        max-width: 600px;
        /* Keep it sharp and brand-style */
        text-align: center;
        margin-bottom: 20px;
    }

    .pq-about-bg-img {
        width: 30%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        /* optional: smooth edges */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        /* optional: soft shadow for premium look */
        margin-top: 85px;
    }

    .pq-section-title.left-title {
        order: 1;
        text-align: center;
        max-width: 800px;
    }

    .pq-section-title.left-title .pq-title-subtitle,
    .pq-section-title.left-title .pq-title-heading,
    .pq-section-title.left-title .pq-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .pq-section-title .pq-title-heading {
        font-size: 20px !important;
        line-height: 32px !important;
        margin-bottom: 20px !important;
    }

    .pq-section-title .pq-description {
        font-size: 20px !important;
        line-height: 24px !important;
        max-width: 800px;
        margin-top: 0 auto;
        text-align: justify;
    }

    .pq-section-title .pq-title-heading {
        color: #132e6b !important;
        font-weight: bold;
        font-family: 'Titillium Web', sans-serif !important;
    }

    .pq-about-bg-img {
        display: block;
        width: 27%;
        height: auto;
        object-fit: contain;
        margin: 3px auto 0;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 107px;
    }

    .pq-section-title .pq-title-subtitle::before {
        display: none !important;
    }
}

/* --------------------------------- */

@media (min-width: 768px) and (max-width: 991.98px) {
    .pq-section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 100%;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 18px;
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle::before {
        display: none !important;
    }

    .pq-section-title .pq-title-heading {
        font-size: 18px !important;
        line-height: 30px !important;
        margin-bottom: 20px !important;
        color: #132e6b !important;
        font-weight: bold;
        font-family: 'Titillium Web', sans-serif !important;
        text-align: center;
    }

    .pq-section-title .pq-description {
        font-size: 18px !important;
        line-height: 24px !important;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        text-align: center;
    }

    .pq-button {
        display: flex;
        justify-content: center;
        margin-top: 25px;
        width: 100%;
        margin-left: -60px;
    }

    .pq-button .pq-button-flat {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* -------------------------------------------- */

@media (min-width: 567px) and (max-width: 767.98px) {
    .pq-section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 100%;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 16px;
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle::before {
        display: none !important;
    }

    .pq-section-title .pq-title-heading {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 18px !important;
        color: #132e6b !important;
        font-weight: bold;
        font-family: 'Titillium Web', sans-serif !important;
        text-align: center;
    }

    .pq-section-title .pq-description {
        font-size: 20px !important;
        line-height: 25px !important;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
        text-align: justify;
    }

    .pq-button {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
    }

    .pq-button .pq-button-flat {
        padding: 9px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pq-section-title {
        width: 100%;
        max-width: 1440px;
        /* wider than default Bootstrap (1140px) */
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 15px;
        display: block;
        margin-bottom: 6px;
        text-align: center;
        max-width: 500px;

    }

    /* .pq-section-title .pq-title-subtitle::before {
    display: none !important;
  } */
    .pq-section-title .pq-title-subtitle::after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%);
        width: 135px;
        height: 3px;
        background: var(--primary-color);
        /* or replace with #047bc4 or your color */
    }

    .pq-section-title .pq-title-heading {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 16px !important;
        color: #132e6b !important;
        font-weight: bold;
        font-family: 'Titillium Web', sans-serif !important;
        text-align: center;
    }

    .pq-section-title .pq-description {
        font-size: 18px !important;
        line-height: 30px !important;
        width: 100%;
        width: 350px;
        padding: 0 12px;
        margin: 0 auto;
        text-align: center;
    }

    .pq-button {
        display: flex;
        justify-content: center;
        max-width: fit-content;
        /* margin: 18px auto 0; */
    }

    .pq-button .pq-button-flat {
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* --------------------------- */

@media (max-width: 320px) {
    .pq-section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto !important;
        width: 100%;
        max-width: 100%;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle::before {
        display: none !important;
    }

    .pq-section-title .pq-title-heading {
        font-size: 18px !important;
        line-height: 26px !important;
        margin-bottom: 14px !important;
        color: #132e6b !important;
        font-weight: bold;
        font-family: 'Titillium Web', sans-serif !important;
        text-align: center;
    }

    .pq-section-title .pq-description {
        font-size: 14px !important;
        line-height: 25px !important;
        width: 335px;
        /* padding: 0 10px; */
        margin: 0 auto;
        text-align: center !important;
        word-spacing: -0.3px !important;
        /* Slightly reduced */
        letter-spacing: 0px !important;
        /* Reset any stretched letters */
        hyphens: auto;
        /* Enable smart hyphenation */
    }

    .pq-button {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }

    .pq-button .pq-button-flat {
        padding: 7px 16px;
        font-size: 12px;
    }
}

/* ----------------------------------------------- */

/* Place this at the END of your CSS file */
@media (min-width: 1400px) {
    .pq-section-title {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 !important;
        text-align: center;
    }

    .pq-section-title .pq-title-subtitle {
        font-size: 18px !important;
        margin-bottom: 10px;
        display: block;
    }

    .pq-section-title .pq-title-heading {
        font-size: 30px !important;
        line-height: 42px !important;
        font-weight: 600;
        color: #132e6b !important;
        font-family: 'Titillium Web', sans-serif !important;
        margin-bottom: 20px !important;
    }

    .pq-section-title .pq-description {
        font-size: 24px !important;
        line-height: 32px !important;
        max-width: 860px;
        margin: 0 auto;
        text-align: justify;
        word-spacing: 0 !important;
        padding: 0 !important;
        font-weight: 400;
        color: #333;
    }

    .pq-button {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .pq-button .pq-button-flat {
        font-size: 18px !important;
        right: 100px;
        padding: 10px 22px !important;
        border-radius: 10px !important;
        /* Ensure no border radius */
    }
}


/* 2. media query for What Sets Us Apart :start */



@media (min-width: 320px) and (max-width: 375px) {

    /* === Base Styles === */
    .feature-text p {
        font-size: 18px !important;
        line-height: 28px !important;
        width: 306px;
        padding: 0 10px;
        margin: 15px auto;
        text-align: center !important;
        word-spacing: -0.3px !important;
        /* Slightly reduced */
        letter-spacing: 0px !important;
        /* Reset any stretched letters */
        hyphens: auto;
        margin-left: 2px;
    }

    .pq-title-subtitle {
        font-size: 20px;
        line-height: 24px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .feature .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 16px;
        text-align: left;
    }

    .feature .col-6 p {
        font-size: 12px;
        margin: 5px 0;
    }

    .feature .col-6 h5 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
  } */
}

/* img */


@media (min-width: 320px) and (max-width: 375px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 86vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 107px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* ==================================== */

@media (min-width: 376px) and (max-width: 480px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 92vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 15px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* ========================================= */


@media (min-width: 481px) and (max-width: 575.98px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 70vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 75px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* ========================================= */

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 57vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 130px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* ======================================== */

@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 46vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 180px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* =========================================== */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .feature-img-custom {
        width: 100vw !important;
        max-width: 57vw !important;
        height: auto !important;
        display: block !important;
        margin-left: 130px;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .col-lg-6.pe-lg-0,
    .position-relative,
    .h-100,
    .d-flex.align-items-center.justify-content-center.overflow-hidden {
        width: 100vw !important;
        max-width: 88vw !important;
        padding-left: -10px !important;
        padding-right: 10px !important;
        /* margin: 0 auto !important; */
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        margin-left: -55px;

    }

    .col-lg-6[style] {
        min-height: 0px !important;
    }
}

/* ====================================== */

/* @media (min-width: 1200px) {
    .feature-img-custom {
    width: 100vw !important;
    max-width: 57vw !important;
    height: auto !important;
    display: block !important;
    margin-left: 225px;
    padding: 0 !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .col-lg-6.pe-lg-0,
  .position-relative,
  .h-100,
  .d-flex.align-items-center.justify-content-center.overflow-hidden {
    width: 100vw !important;
    max-width: 88vw !important;
    padding-left: -10px !important;
    padding-right: 10px !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    margin-left: -55px;
    
  }

  .col-lg-6[style] {    
    min-height: 0px !important;
  }
} */
/* ========================================== */

/* @media (min-width: 1400px) and (max-width: 1599.98px) {
     .feature-img-custom {
    width: 100vw !important;
    max-width: 31vw !important;
    height: auto !important;
    display: block !important;
    margin-left: 455px;
    padding: 0 !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .col-lg-6.pe-lg-0,
  .position-relative,
  .h-100,
  .d-flex.align-items-center.justify-content-center.overflow-hidden {
    width: 100vw !important;
    max-width: 88vw !important;
    padding-left: -10px !important;
    padding-right: 10px !important;

    height: auto !important;
    display: block !important;
    overflow: visible !important;
    margin-left: -55px;
    
  }

  .col-lg-6[style] {    
    min-height: 0px !important;
  }
} */
/* ====================================== */
/* @media (min-width: 1600px) and (max-width: 1919.98px) {
    .feature-img-custom {
    width: 100vw !important;
    max-width: 31vw !important;
    height: auto !important;
    display: block !important;
    margin-left: 455px;
    padding: 0 !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .col-lg-6.pe-lg-0,
  .position-relative,
  .h-100,
  .d-flex.align-items-center.justify-content-center.overflow-hidden {
    width: 100vw !important;
    max-width: 88vw !important;
    padding-left: -10px !important;
    padding-right: 10px !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    margin-left: -55px;
    
  }

  .col-lg-6[style] {    
    min-height: 0px !important;
  }
} */
/* ====================================== */

/* === Responsive: Tablet (≥ 768px) === */
@media (min-width: 768px) {
    .feature .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: center;
    }

    .feature-text p {
        font-size: 14px;
        line-height: 22px;
    }

    .feature .col-6 p {
        font-size: 13px;
    }

    .feature .col-6 h5 {
        font-size: 15px;
    }
}

/* === Responsive: Desktop (≥ 992px) === */
@media (min-width: 992px) {
    .feature-text p {
        font-size: 15px;
        line-height: 24px;
    }

    .pq-title-subtitle {
        font-size: 20px;
        line-height: 26px;
    }
}

/* === Dark Mode (based on user's system preference) === */
@media (prefers-color-scheme: dark) {

    .feature-text p,
    .feature .col-6 p,
    .feature .col-6 h5,
    .pq-title-subtitle {
        color: #f0f0f0;
    }

    .feature {
        background-color: #1e1e1e;
    }
}




/* ==================== */
/* Extra Small Devices (≤ 575.98px) */
/* ==================== */


@media (max-width: 575.98px) {
    .feature-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
        /* Just in case */
        text-align: center !important;
        margin-top: 25px !important;
    }

    .feature-text p {
        font-size: 20px;
        line-height: 32px;
        max-width: 1000px;
        /* ✅ Increased from 860px to 1000px */
        margin-bottom: 20px;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
    }

    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;

    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;

    }

    .feature .col-6 p {
        font-size: 15px;
        margin-bottom: 4px;
        margin-top: 10px;
    }

    /* .feature-img-custom {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: -100px;
        border-radius: 10%;
        margin-bottom: 0 !important;

    } */
}


/* ==================== */
/* Small Devices (576px – 767.98px) */
/* ==================== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
        /* Just in case */
        text-align: center !important;
        margin-top: 25px !important;
    }

    .feature-text p {
        font-size: 20px;
        line-height: 32px;
        max-width: 1000px;
        /* ✅ Increased from 860px to 1000px */
        margin-bottom: 20px;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
    }

    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;

    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;

    }

    .feature .col-6 p {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: -105px;
        border-radius: 10%;
      
    } */
}


/* ==================== */
/* Medium Devices (768px – 991.98px) */
/* ==================== */


@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
        /* Just in case */
        text-align: center !important;
    }

    .feature-text p {
        font-size: 18px;
        line-height: 32px;
        max-width: 1000px;
        /* ✅ Increased from 860px to 1000px */
        margin-bottom: 20px;
        text-align: center;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
    }

    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;
    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .feature .col-6 p {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: -125px;
  } */
}


/* ==================== */
/* Large Devices (992px – 1199.98px) */
/* ==================== */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .feature-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
        /* Just in case */
    }

    .feature-text p {
        font-size: 20px;
        line-height: 32px;
        max-width: 1000px;
        /* ✅ Increased from 860px to 1000px */
        margin-bottom: 20px;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
    }

    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;
    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .feature .col-6 p {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: -125px;
  } */
}


/* ==================== */
/* Extra Large Devices (≥ 1200px) */
/* ==================== */

@media (min-width: 1200px) {
    .feature-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
        /* Just in case */
    }

    .feature-text p {
        font-size: 20px;
        line-height: 32px;
        max-width: 1000px;
        /* ✅ Increased from 860px to 1000px */
        margin-bottom: 20px;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
    }

    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;
    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .feature .col-6 p {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: -55px;
  } */
}


/* ==================== */
/* Extra Extra Large Devices (≥ 1400px) */
/* ==================== */

@media (min-width: 1400px) {
    .feature-text {
        padding: 50px 60px;
    }

    .feature-text .pq-title-subtitle {
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .feature-text p {
        font-size: 20px;
        line-height: 32px;
        max-width: 860px;
        margin-bottom: 20px;
    }


    .feature .col-6 .btn-square {
        width: 56px;
        height: 56px;
    }

    .feature .col-6 i.fa-2x {
        font-size: 1.8rem;
    }

    .feature .col-6 h5 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .feature .col-6 p {
        font-size: 20px;
        margin-bottom: 4px;
    }

    /* .feature-img-custom {
        width: 100%;
        max-height: 400px;       
        object-fit: cover;
        border-radius: 8px;
        margin-top: 30px;      
    } */
}


/* media query for What Sets Us Apart end */


/* media query for copyright start */

/* Medium screens (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-copyright {
        text-align: center !important;
        justify-content: center !important;
    }

    .footer-designed-by {
        text-align: center !important;
        margin-top: 5px;
    }
}

/* Small screens (320px to 567.98px) */
@media (min-width: 320px) and (max-width: 567.98px) {
    .footer-copyright p {
        font-size: 13px !important;
        letter-spacing: normal !important;
        word-spacing: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
        padding: 0 5px !important;
    }

    .footer-copyright p a {
        white-space: nowrap;
        /* Prevents wrapping like "MXC" on one line and "Packaging" on another */
    }

    .footer-designed-by {
        display: block !important;
        text-align: center !important;
        margin-top: 3px !important;
        letter-spacing: normal;
        word-spacing: normal;
    }
}

/* media query for copyright end */


/* media query for mxc packaing  */

/* Base style */

@media (max-width: 1199.98px) {
    .pq-portfolio-box-img img {
        max-height: 260px;
    }

    .button-row {
        justify-content: center;
    }

    .button-row a {
        font-size: 14px;
        padding: 7px 12px;
    }
}

/* @media (min-width: 768px) and (max-width: 800px) {
  .pq-portfolio-box-style-1 {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pq-portfolio-box-img {
    width: 100%;
    margin-bottom: 10px;
  }

  .pq-portfolio-box-img img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
  }

  .pq-portfolio-box-info {
    width: 100%;
    padding: 0 10px;
  }

.pq-portfolio-box-categorie {
  width: 100%;
  text-align: center;
}

  .pq-portfolio-box-categorie a {
    font-size: 14px;
    display: block;
    text-align: center !important;
    word-wrap: break-word;
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .button-row a {
    padding: 6px 57px;
    font-size: 13px;
    width: auto;
    max-width: 100%;
    flex: 1 1 130px;
    text-align: center;
    white-space: nowrap;
    margin-right: 56px;
  }
} */

@media (min-width: 768px) and (max-width: 991.98px) {
    .pq-image-wrapper img.pq-portfolio-img {
        width: 100%;
        /* Make image full width */
        height: auto;
        /* Maintain aspect ratio */
        max-width: 100%;
        /* Prevent overflow */
        display: block;
        /* Ensure block display */
        margin: 0 auto;
        /* Center the image */
        object-fit: cover;
        /* Optional: crop image to fit box */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .pq-portfolio-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0;
        margin: 0;
    }

    .pq-portfolio-slider .item {
        flex: 0 0 100vw;
        /* Take full screen width */
        max-width: 100vw;
        scroll-snap-align: start;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        /* Center image horizontally */
        align-items: center;
        /* Center image vertically */
    }

    .pq-portfolio-box-style-1 {
        width: 100%;
    }

    .pq-portfolio-box-img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        /* Fill height of the container */
        overflow: hidden;
    }

    .pq-portfolio-box-img img.pq-portfolio-img {
        max-width: 100%;
        max-height: 100vh;
        /* Prevent overflow vertically */
        object-fit: contain;
        /* Keep image fully visible */
        display: block;
    }

    .button-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .video-btn,
    .pdf-btn {
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;
    }
}

/* ========================= */
@media (min-width: 576px) and (max-width: 767.98px) {

    .pq-portfolio-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0;
        margin: 0;
    }

    .pq-portfolio-slider .item {
        flex: 0 0 100vw;
        /* Take full screen width */
        max-width: 100vw;
        scroll-snap-align: start;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        /* Center image horizontally */
        align-items: center;
        /* Center image vertically */
    }

    .pq-portfolio-box-style-1 {
        width: 100%;
    }

    .pq-portfolio-box-img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        /* Fill height of the container */
        overflow: hidden;
    }

    .pq-portfolio-box-img img.pq-portfolio-img {
        max-width: 100%;
        max-height: 100vh;
        /* Prevent overflow vertically */
        object-fit: contain;
        /* Keep image fully visible */
        display: block;
    }

    .button-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .video-btn,
    .pdf-btn {
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;
    }
}

/* ============================== */
@media (min-width: 320px) {
    .pq-portfolio-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0;
        margin: 0;
    }

    .pq-portfolio-slider .item {
        flex: 0 0 100vw;
        /* Take full screen width */
        max-width: 100vw;
        scroll-snap-align: start;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        /* Center image horizontally */
        align-items: center;
        /* Center image vertically */
    }

    .pq-portfolio-box-style-1 {
        width: 100%;
    }

    .pq-portfolio-box-img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        /* Fill height of the container */
        overflow: hidden;
    }

    .pq-portfolio-box-img img.pq-portfolio-img {
        max-width: 100%;
        max-height: 100vh;
        /* Prevent overflow vertically */
        object-fit: contain;
        /* Keep image fully visible */
        display: block;
    }

    .button-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .video-btn,
    .pdf-btn {
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;


    }
}

/* industries we strat */
/* Flex layout: 4 columns in one row */
.industry-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* Image card styling */
.industry-image-box {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 24px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

/* Image styling with hover zoom + brightness */
.industry-image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Caption styling */
.industry-caption {
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    padding: 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

/* Hover effects */
.industry-image-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-image-box:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.industry-image-box:hover .industry-caption {
    background-color: #003d80;
}


/* Extra Large (≥1200px) – 4 cards per row */
@media (min-width: 1200px) {
    .industry-image-box {
        flex: 1 1 calc(25% - 24px);
        max-width: calc(25% - 24px);
    }
}

/* Large (992px to 1199.98px) – 3 cards per row */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .industry-image-box {
        flex: 1 1 calc(33.333% - 24px);
        max-width: calc(33.333% - 24px);
    }
}

/* Medium (768px to 991.98px) – 2 cards per row */
@media (max-width: 991.98px) and (min-width: 768px) {
    .industry-image-box {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 24px);
    }
}

/* Small (576px to 767.98px) – 2 stacked but narrower */
@media (max-width: 767.98px) and (min-width: 576px) {
    .industry-image-box {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 24px);
    }
}

/* Extra Small (<576px) – full width */
@media (max-width: 575.98px) {
    .industry-image-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Extra Extra Small (≤320px) – Full width with possible padding/margin fix */

@media (min-width: 320px) and (max-width: 375px) {
    .industry-image-box {
        width: 100vw !important;
        max-width: 92vw !important;
        margin-left: 15px !important;
        padding: 0 !important;
        display: block !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .industry-image-box img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .industry-caption {
        font-size: 15px;
        padding: 10px 0;
        text-align: center;
    }
}



/* industry end */


/* about page media start */
@media (min-width: 1200px) {
    .pq-inner-icon {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        /* Align the whole block to the right */
        padding-right: 60px;
        /* Add right padding */
    }

    .pq-icon-list-items {
        width: 195%;
        max-width: 550px;
        text-align: left;
    }

    .pq-icon-list-text {
        display: inline-block;
        width: 100%;
        font-size: 20px;
    }

    .pq-button.mt-3 {
        margin-left: 0 !important;
        /* Remove the manual left margin */
    }

    .pq-button {
        justify-content: flex-end;
        /* Align button to the right */
        width: 77%;
    }

    .pq-icon-list-item {
        display: flex;
        align-items: center;
        gap: 10px;
        /* space between icon and text */
        margin-bottom: 12px;
    }

    .pq-icon-list-icon {
        flex-shrink: 0;
        /* Prevent icon from shrinking */
        font-size: 20px;
        /* Adjust if needed */
    }

    .pq-icon-list-text {
        display: inline-block;
        font-size: 20px;
        white-space: nowrap;
        /* Prevent wrapping if desired */
    }

}

/* ============================================ */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pq-inner-icon {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 40px;
    }

    .pq-icon-list-item {
        display: flex;
        align-items: center;
        gap: 10px;
        /* Comfortable space between icon and text */
        margin-bottom: 10px;
    }

    .pq-icon-list-icon {
        flex-shrink: 0;
        font-size: 18px;
    }

    .pq-icon-list-text {
        flex: 1;
        /* Let it take remaining space */
        font-size: 18px;
        white-space: nowrap;
        /* Keep in one line */
        overflow: hidden;
        text-overflow: ellipsis;
        /* Optional: add "..." if overflowing */
    }

    .pq-button.mt-3 {
        margin-left: 0 !important;
    }

    .pq-button {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        max-width: 420px;
    }
}


/* ================================================ */

@media (min-width: 767px) and (max-width: 991.98px) {
    .pq-inner-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        margin: 0 auto;
        gap: 15px;
    }

    .pq-icon-list-items {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .pq-icon-list-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
        text-align: center;
    }

    .pq-icon-list-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .pq-icon-list-text {
        font-size: 16px;
        text-align: left;
        white-space: normal;
    }

    .pq-button.mt-3 {
        margin-top: 15px;
        justify-content: center;
        display: flex;
        width: 100%;
    }
}

/* =================================== */

@media (min-width: 576px) and (max-width: 767.98px) {
    .pq-inner-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        margin: 0 auto;
        gap: 15px;
    }

    .pq-icon-list-items {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .pq-icon-list-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
        text-align: center;
    }

    .pq-icon-list-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .pq-icon-list-text {
        font-size: 15px;
        text-align: left;
        white-space: normal;
    }

    .pq-button.mt-3 {
        margin-top: 15px;
        justify-content: center;
        display: flex;
        width: 100%;
        margin-bottom: 50px;
    }
}

/* =================================== */


@media (min-width: 320px) and (max-width: 575.98px) {
    .pq-inner-icon {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 10px !important;
    }

    .pq-icon-list-items {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .pq-icon-list-item {
        flex-direction: row !important;
        /* icon + text in row */
        justify-content: center !important;
        /* center horizontally */
        align-items: center !important;
        /* center vertically */
        gap: 8px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .pq-icon-list-text {
        text-align: center !important;
        /* make text center */
        left: 10;
        right: 10;
    }

    .pq-icon-list-icon {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .pq-button.mt-3 {
        justify-content: center !important;
        width: 100% !important;
        margin-top: 15px !important;
    }


    /* ==================================== */

    /* technical  start */

    @media (min-width: 320px) and (max-width: 575.98px) {
        .btn-square {
            display: none !important;
        }

        .ms-4 {
            margin-left: -55px !important;
        }
    }

    @media (min-width: 320px) and (max-width: 575.98px) {
        .row.g-4 .col-6 {
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
        }

        .row.g-4 .col-6 .d-flex {
            flex-direction: column;
            align-items: center !important;
            text-align: center;
        }

        .row.g-4 .col-6 .ms-4 {
            margin-left: 0 !important;
            margin-top: 10px;
        }

        .row.g-4 .col-6 p,
        .row.g-4 .col-6 h5 {
            text-align: center !important;
            font-size: 18px;
        }
    }


    /* technical end */

    /* heading  */

    @media (min-width: 320px) and (max-width: 575.98px) {
        .pq-section-title.about-subtitle {
            margin-bottom: 0 !important;
            padding: 0 !important;
        }

        .pq-title-subtitle {
            font-size: 14px !important;
            line-height: 1.4;
            margin-bottom: 10px !important;
        }

        .pq-title-heading {
            font-size: 18px !important;
            line-height: 1.5;
            margin: 0 auto !important;
            padding: 0 10px !important;
        }

        .row.mb-5 {
            margin-bottom: 20px !important;
        }

        .col-lg-10 {
            padding: 0 !important;
        }
    }

    /* ============================= */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        .pq-section-title.about-subtitle {
            margin-bottom: 0 !important;
            padding: 0 !important;
        }

        .pq-title-subtitle {
            font-size: 14px !important;
            line-height: 1.4;
            margin-bottom: 10px !important;
            color: #132e6b;
        }

        .pq-title-heading {
            font-size: 18px !important;
            line-height: 1.5;
            margin: 0 auto !important;
            padding: 0 10px !important;
            color: #132e6b !important;
            font-weight: bold;
        }

        .row.mb-5 {
            margin-bottom: 20px !important;
        }

        .col-lg-10 {
            padding: 0 !important;
        }
    }

    /* ========================================== */

    @media (min-width: 1900px) and (max-width: 1925px) {
        .pq-button.mt-3.d-flex.justify-content-start {
            margin-left: 0 !important;
            justify-content: center !important;
        }
    }

    @media (min-width: 1600px) and (max-width: 1919.98px) {
        .pq-button.mt-3.d-flex.justify-content-start {
            margin-left: 0 !important;
            justify-content: center !important;
        }
    }

    @media (min-width: 1400px) and (max-width: 1599.98px) {
        .pq-button.mt-3.d-flex.justify-content-start {
            margin-left: 0 !important;
            justify-content: center !important;
        }
    }

    @media (min-width: 1200px) and (max-width: 1399.98px) {
        .pq-responsive-button {
            margin-left: 0 !important;
            justify-content: center !important;
        }

        .pq-button {
            padding: 10px 16px !important;
            border-radius: 6px !important;
            font-size: 15px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .pq-button {
            padding: 12px 10px !important;
            border-radius: 6px !important;
            font-size: 15px;
            display: inline-flex;
            /* Ensure content stays in a row */
            align-items: center;
            /* Vertically center text and icon */
            /* gap: 8px;                         Space between text and icon */
        }

        .pq-button .pq-button-label,
        .pq-button i {
            white-space: nowrap;
            /* Prevent line break inside button */
            display: inline-block;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .pq-button.mt-3 {
            margin-top: 10px !important;
            /* reduce top space */
            margin-left: 150px !important;
            /* margin-bottom: 50px !important;    override the inline 125px */
        }

        .pq-button.d-flex {
            justify-content: flex-start !important;
            /* keep it aligned left */
        }

        /* Optional: slightly tweak the button size for this range */
        .pq-button.pq-button-flat {
            padding: 6px 18px;
            font-size: 15px;
        }
    }

    @media (max-width: 575.98px) {
        .pq-button.mt-3 {
            margin-top: 10px !important;
            /* reduce top space */
            margin-left: 170px !important;
            margin-bottom: 50px !important;
            /* override the inline 125px */
        }

        .pq-button.d-flex {
            justify-content: flex-start !important;
            /* keep it aligned left */
        }

        /* Optional: slightly tweak the button size for this range */
        .pq-button.pq-button-flat {
            padding: 6px 18px;
            font-size: 15px;
        }
    }

    @media (max-width: 575.98px) {
        .pq-button.mt-3 {
            margin-top: 10px !important;
            /* reduce top space */
            /* margin-left: 170px !important;  */
            margin-bottom: 50px !important;
            /* override the inline 125px */
        }

        .pq-button.d-flex {
            justify-content: flex-start !important;
            /* keep it aligned left */
        }

        /* Optional: slightly tweak the button size for this range */
        .pq-button.pq-button-flat {
            padding: 6px 18px;
            font-size: 15px;
        }

        @media (max-width: 320px) {

            /* Center the outer button wrapper */
            .pq-button.mt-3 {
                margin-top: 12px !important;
                margin-left: auto !important;
                margin-right: auto !important;
                margin-bottom: 40px !important;
                display: flex !important;
                justify-content: center !important;
            }

            /* Ensure inner flex aligns content to center */
            .pq-button.d-flex {
                justify-content: center !important;
            }

            /* Adjust button styling */
            .pq-button.pq-button-flat {
                padding: 10px 15px !important;
                font-size: 16px !important;
                border-radius: 8px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 8px !important;
                /* space between text and icon */
                text-align: center !important;
                width: auto !important;
            }

            /* Style the icon inside button */
            .pq-button.pq-button-flat i {
                font-size: 16px !important;
                line-height: 1 !important;
                display: inline-block !important;
            }

            /* Optional: Adjust button label spacing */
            .pq-button-label {
                display: inline-block !important;
                vertical-align: middle !important;
            }
        }
    }

    /* ========================== */
    /* para  about us*/

    @media (min-width: 1400px) {
        .pq-inner-list-box p {
            max-width: 500px;
            /* Or any suitable width like 600px */
            font-size: 17px;
            line-height: 1.7;
            margin-left: auto;
            margin-right: auto;
        }

        .pq-inner-list-box {
            text-align: center;
            /* Optional if you want it centered */
        }
    }

    @media (min-width: 1200px) and (max-width: 1399.98px) {
        .pq-inner-list-box p {
            max-width: 500px;
            /* Or any suitable width like 600px */
            font-size: 17px;
            line-height: 1.7;
            margin-left: auto;
            margin-right: auto;
        }

        .pq-inner-list-box {
            text-align: center;
            /* Optional if you want it centered */
        }
    }

    /* ==================== */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        .pq-inner-list-box p {
            max-width: 650px;
            /* Increased width */
            font-size: 15px;
            /* Slightly larger text */
            line-height: 1.7;
            word-spacing: normal !important;
            /* Ensures normal word spacing */
            margin-left: auto;
            margin-right: auto;
        }

        .pq-inner-list-box {
            text-align: center;
        }
    }

    /* =========================== */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .pq-inner-list-box {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .pq-inner-list-box p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 10px 0;
        }

        .pq-button.mt-3 {
            margin-left: 0 !important;
            margin-top: 10px !important;
            align-self: flex-start;
        }

        .pq-button.pq-button-flat {
            font-size: 14px;
            padding: 6px 18px;
        }
    }

    /* ==================== */
    @media (min-width: 768px) and (max-width: 799.98px) {
        .pq-inner-list-box {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            text-align: left;
        }

        .pq-inner-list-box p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 10px 0;
            max-width: 100%;
            word-spacing: normal;
        }

        .pq-icon-wrapper {
            justify-content: flex-start;
        }

        .pq-button.mt-3 {
            margin-top: 10px !important;
            margin-left: 0 !important;
            margin-bottom: 30px !important;
            align-self: flex-start !important;
        }

        .pq-button.pq-button-flat {
            padding: 6px 18px;
            font-size: 14px;
        }
    }

    /* ========================================== */

    @media (min-width: 576px) and (max-width: 767.98px) {
        .pq-inner-list-box {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            text-align: left;
        }

        .pq-inner-list-box p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 10px 0;
            max-width: 100%;
            word-spacing: normal;
        }

        .pq-icon-wrapper {
            justify-content: flex-start;
        }

        .pq-button.mt-3 {
            margin-top: 10px !important;
            margin-left: 0 !important;
            margin-bottom: 30px !important;
            align-self: flex-start !important;
        }

        .pq-button.pq-button-flat {
            padding: 6px 18px;
            font-size: 14px;
        }
    }

    @media (max-width: 575.98px) {
        .pq-inner-list-box {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
            padding-left: 10px;
            padding-right: 10px;
        }

        .pq-inner-list-box p {
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 10px 0;
            width: 100%;
            max-width: 100%;
            word-spacing: 1px;
            letter-spacing: 0.3px;
        }

        .pq-icon-wrapper {
            justify-content: flex-start;
            width: 100%;
        }

        .pq-button.mt-3 {
            margin-top: 12px !important;
            margin-left: 0 !important;
            margin-bottom: 30px !important;
            align-self: flex-start !important;
        }

        .pq-button.pq-button-flat {
            padding: 8px 20px;
            font-size: 15px;
        }
    }

    @media (max-width: 450px) {
        .pq-inner-list-box {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 10px;
            padding: 0 12px;
        }

        .pq-inner-list-box p {
            font-size: 13.5px;
            line-height: 1.5;
            margin: 0 0 10px 0;
            max-width: 100%;
            word-spacing: 3px !important;
            /* ✅ no extra space */
            letter-spacing: normal !important;
            text-align: center !important;
            /* ✅ prevent justify */
            padding: 10px;
        }

        .pq-icon-wrapper {
            justify-content: flex-start;
            width: 100%;
        }

        .pq-button.mt-3 {
            margin-top: 12px !important;
            margin-left: 0 !important;
            margin-bottom: 25px !important;
            align-self: flex-start !important;
        }

        .pq-button.pq-button-flat {
            padding: 8px 20px;
            font-size: 13.5px;
        }

        .pq-icon-box-title span {
            font-size: 14px !important;
            /* 🔽 Smaller number text */
            line-height: 1.4 !important;
        }
    }

    /* ===================== */

    /* mission and vision para about us  */

    @media (min-width: 1400px) {
        .pq-about-box-title {
            font-size: 18px;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
        }

        .pq-service-box-description {
            font-size: 16px;
            line-height: 1.6;
            word-spacing: normal;
        }
    }

    @media (min-width: 1200px) and (max-width: 1399.98px) {
        .pq-about-box-title {
            font-size: 18px;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
        }

        .pq-service-box-description {
            font-size: 16px;
            line-height: 1.6;
            word-spacing: normal;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .pq-about-box-title {
            font-size: 18px !important;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;

        }

        .pq-service-box-description {
            /* width: 400px; */
            font-size: 16px !important;
            line-height: 1.6;
            word-spacing: 0.3px;
            letter-spacing: normal;
            /* text-align: center; */
        }

    }


    @media (min-width: 768px) and (max-width: 991.98px) {
        .pq-about-box-title {
            font-size: 17px !important;
            line-height: 1.4;
            margin-bottom: 8px;
            text-align: center;
            width: 100%;
        }

        .pq-service-box-description {
            font-size: 14px !important;
            line-height: 1.5;
            word-spacing: normal !important;
            letter-spacing: normal !important;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 !important;
            text-align: center;
        }
    }


    @media (min-width: 576px) and (max-width: 767.98px) {
        .pq-about-box-title {
            font-size: 18px !important;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
        }

        .pq-service-box-description {
            /* width: 400px; */
            font-size: 16px !important;
            line-height: 1.6;
            word-spacing: 0.3px;
            letter-spacing: normal;
        }

    }

    @media (min-width: 480px) and (max-width: 575.98px) {
        .pq-about-box-title {
            font-size: 18px !important;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
        }

        .pq-service-box-description {
            /* width: 400px; */
            font-size: 16px !important;
            line-height: 1.6;
            word-spacing: 0.3px;
            letter-spacing: normal;
        }

    }

    @media (max-width: 479.98px) {
        .pq-about-box-title {
            font-size: 18px !important;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
            text-align: center !important;
        }

        .pq-service-box-description {
            /* width: 400px; */
            font-size: 16px !important;
            line-height: 1.6;
            word-spacing: 0.3px;
            letter-spacing: normal;
            text-align: center !important;
        }

    }

    @media (max-width: 320px) {
        .pq-about-box-title {
            font-size: 18px !important;
            /* Smaller heading size */
            line-height: 1.4;
            /* Optional: tighter line spacing */
            margin-bottom: 10px;
            /* Optional: adjust spacing below heading */
        }

        .pq-service-box-description {
            /* width: 400px; */
            font-size: 16px !important;
            line-height: 1.6;
            word-spacing: 0.3px;
            letter-spacing: normal;
            text-align: center;
        }

    }

    /* =========================== */
    /* diven by dedication  */


    @media (min-width: 1900px) and (max-width: 1925px) {
        .award .pq-title-subtitle span {
            font-size: 22px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 21px !important;
            line-height: 1.5 !important;
            max-width: 1000px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }

        .award .pq-award-title {
            font-size: 20px !important;
        }

        .award .pq-award-description {
            font-size: 18px !important;
            line-height: 1.5 !important;
        }

        .award .pq-award-img i {
            font-size: 2.8rem;
            /* Adjust icon size */
        }

        .award .pq-award {
            padding: 20px 25px;
            /* margin-bottom: 20px; */
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 30px;
        }
    }

    @media (min-width: 1800px) and (max-width: 1899.98px) {
        .award .pq-title-subtitle span {
            font-size: 20px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 19px !important;
            line-height: 1.5 !important;
            max-width: 950px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }

        .award .pq-award-title {
            font-size: 18px !important;
        }

        .award .pq-award-description {
            font-size: 16px !important;
            line-height: 1.5 !important;
        }

        .award .pq-award-img i {
            font-size: 2.6rem;
        }

        .award .pq-award {
            padding: 20px 24px;
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 28px;
        }
    }

    @media (min-width: 1600px) and (max-width: 1799.98px) {
        .award .pq-title-subtitle span {
            font-size: 20px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 19px !important;
            line-height: 1.5 !important;
            max-width: 950px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }

        .award .pq-award-title {
            font-size: 18px !important;
        }

        .award .pq-award-description {
            font-size: 16px !important;
            line-height: 1.5 !important;
        }

        .award .pq-award-img i {
            font-size: 2.6rem;
        }

        .award .pq-award {
            padding: 20px 24px;
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 28px;
        }
    }


    @media (min-width: 1200px) and (max-width: 1499.98px) {
        .award .pq-title-subtitle span {
            font-size: 17px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 17px !important;
            line-height: 1.5 !important;
            max-width: 850px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }

        .award .pq-award-title {
            font-size: 16px !important;
            text-align: center;
        }

        .award .pq-award-description {
            font-size: 14px !important;
            line-height: 1.5 !important;
            text-align: center;

        }


        .award .pq-award-img i {
            font-size: 2.2rem;
        }

        .award .pq-award {
            padding: 16px 20px;
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 24px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .award .pq-title-subtitle span {
            font-size: 17px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 17px !important;
            line-height: 1.5 !important;
            max-width: 850px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .award .pq-award-title {
            font-size: 16px !important;
            text-align: center;
        }

        .award .pq-award-description {
            font-size: 16px !important;
            line-height: 1.5 !important;
            text-align: center;

        }

        .award .pq-award-img i {
            font-size: 2.2rem;
        }

        .award .pq-award {
            padding: 16px 20px;
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 24px;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .award .pq-title-subtitle span {
            font-size: 17px !important;
            line-height: 1.4;
        }

        .award .pq-title-heading {
            font-size: 17px !important;
            line-height: 1.5 !important;
            max-width: 850px;
        }

        .award .pq-service-award-img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            margin-bottom: 50px;
        }

        .award .pq-award-title {
            font-size: 16px !important;
            text-align: center;
        }

        .award .pq-award-description {
            font-size: 16px !important;
            line-height: 1.5 !important;
            text-align: center;

        }

        .award .pq-award-img i {
            font-size: 2.2rem;
        }

        .award .pq-award {
            padding: 16px 20px;
        }

        .award .pq-section-title.about-subtitle {
            margin-bottom: 24px;
        }
    }

    @media (min-width: 576px) and (max-width: 767.98px) {
        .award .pq-award {
            padding: 12px 14px;
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center all inner content horizontally */
            text-align: center;
        }

        .award .pq-award-img {
            margin-bottom: 8px;
        }

        .award .pq-award-img i {
            font-size: 2rem;
            display: inline-block;
        }

        .award .pq-award-title {
            font-size: 13.5px !important;
            line-height: 1.2 !important;
            margin-bottom: 4px;
            max-width: 260px;
        }

        .award .pq-award-description {
            font-size: 13px !important;
            line-height: 1.3 !important;
            margin-bottom: 6px;
            max-width: 280px;
        }
    }

    @media (max-width: 575.98px) {
        .award .pq-award {
            padding: 12px 14px;
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center all inner content horizontally */
            text-align: center;
        }

        .award .pq-award-img {
            margin-bottom: 8px;
        }

        .award .pq-award-img i {
            font-size: 2rem;
            display: inline-block;
        }

        .award .pq-award-title {
            font-size: 13.5px !important;
            line-height: 1.2 !important;
            margin-bottom: 4px;
            max-width: 260px;
        }

        .award .pq-award-description {
            font-size: 13px !important;
            line-height: 1.3 !important;
            margin-bottom: 6px;
            max-width: 280px;
        }
    }

    @media (max-width: 320px) {
        .award .pq-award {
            padding: 12px 14px;
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center all inner content horizontally */
            text-align: center;
        }

        .award .pq-award-img {
            margin-bottom: 8px;
        }

        .award .pq-award-img i {
            font-size: 2rem;
            display: inline-block;
        }

        .award .pq-award-title {
            font-size: 13.5px !important;
            line-height: 1.2 !important;
            margin-bottom: 4px;
            max-width: 260px;
        }

        .award .pq-award-description {
            font-size: 13px !important;
            line-height: 1.3 !important;
            margin-bottom: 6px;
            max-width: 280px;
        }
    }

    /* ============================ */

    /* heading code my */
    @media (max-width: 1200px) {
        .single-item h3 {
            font-size: 14px;
        }
    }

    .footer-address {
        text-align: center;
    }

    .no-break {
        white-space: nowrap;
    }

    /* underline yellow */

    .section-heading-underline {
        position: relative;
        display: inline-block;
        /* Ensure element wraps its content */
        padding-bottom: 15px;
        /* Space below text for the underline */
        text-align: center;
    }

    .section-heading-underline::before {
        content: "";
        position: absolute;
        bottom: 0;
        /* Now inside the padding area */
        left: 50%;
        transform: translateX(-50%);
        width: 135px;
        height: 3px;
        background: var(--primary-color);
        /* Make sure this variable is defined */
    }
}

#pq-header.pq-has-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html,
body {
    height: auto;
    overflow-x: hidden;
}

.products-menu {
    position: relative;
}

.products-menu>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    background-color: #fff;
    padding: 15px;
    min-width: 260px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products-menu:hover>.sub-menu {
    display: block;
}

.sub-menu li {
    position: relative;
}

.sub-menu li .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background-color: #fff;
    min-width: 250px;
    padding: 15px;
    z-index: 1000;
}

.sub-menu li:hover>.sub-menu {
    display: block;
}

/* Mobile view (320px and smaller screens) */
@media (max-width: 320px) {
    .pq-breadcrumb-style-1 {
        background-size: cover;
        /* Makes sure background fills */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
    }

    .pq-breadcrumb-style-1 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* Ensures no stretching */
        transform: scale(1.1);
        /* Zoom effect */
    }

    .pq-breadcrumb-title h1 {
        font-size: 20px;
        /* Adjust heading size for mobile */
    }
}

/* ++++++++++++++++++++++++ */
@media (max-width: 320px) {
    .pq-breadcrumb-style-1 {
        background-size: contain !important;
        /* Keep full image visible */
        background-position: left center !important;
        /* Align image to left */
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        min-height: 160px;
        /* adjust if section looks too small */
    }
}

/* headting home client */
@media (max-width: 480px) {
    .pq-breadcrumb-container {
        background-color: rgba(255, 255, 255, 0.6) !important;
        /* White background */
        padding: 10px;
        /* optional: give some spacing */
        border-radius: 5px;
        /* optional: make it look neat */
    }

    .pq-breadcrumb-container .breadcrumb-item a,
    .pq-breadcrumb-container .breadcrumb-item.active {
        color: #000 !important;
        /* Dark text so it's visible on white */
    }
}

@media (max-width: 576px) {
    .footer p.mb-2 {
        margin-bottom: 10px !important;
        font-size: 14px !important;
        /* add !important here */
        text-align: center !important;
        /* optional: reduce space between lines */
    }
}

@media (max-width: 576px) {
    .footer p.mb-2 {
        display: inline-flex !important;
        /* flex to keep icon + text in one line */
        align-items: center !important;
        /* vertical alignment center */
        justify-content: center !important;
        /* center horizontally */
        gap: 8px !important;
        /* space between icon and text */
        margin-bottom: 10px !important;
        /* spacing between lines */
        font-size: 14px !important;
        /* optional: smaller text */
    }

    .footer p.mb-2 i.fa,
    .footer p.mb-2 i.fas {
        margin: 0 !important;
        /* remove Bootstrap me-3 spacing */
    }
}

@media (max-width: 576px) {

    /* Make each footer column full width and stack vertically */
    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100% !important;
        /* full width */
        max-width: 100% !important;
        text-align: center !important;
        /* center text */
        margin-bottom: 20px !important;
        /* spacing between sections */
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Paragraph spacing and font size (for contact info) */
    .footer p.mb-2 {
        margin-bottom: 10px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    /* Links stacked and centered */
    .footer .btn-link,
    .footer .footer-link {
        display: block !important;
        /* each link on new line */
        text-align: center !important;
        /* center link text */
        margin: 5px 0 !important;
        /* spacing between links */
    }

    /* Optional: make headings smaller */
    .footer h5 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    /* Social icons centered */
    .footer .d-flex {
        justify-content: center !important;
    }
}

/* ======================== */

@media (max-width: 576px) {

    /* Icon + content in a row */
    .pq-contact-icon-box {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Icon sizing */
    .pq-contact-icon i {
        font-size: 24px !important;
        width: 30px !important;
        height: 30px !important;
        margin: 0 !important;
    }

    /* Contact content text */
    .pq-contact-box-content {
        text-align: center !important;
        width: 100%;
        /* full width for mobile */
    }

    /* Title centered */
    .pq-contact-box-title {
        text-align: center !important;
        margin-bottom: 5px !important;
        /* spacing below title */
    }

    .pq-contact-box-title span {
        display: inline-flex !important;
        /* inline flex to align icon + text if any */
        justify-content: center !important;
        align-items: center !important;
        font-size: 16px !important;
    }

    /* Description centered */
    .pq-contact-description {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    /* Button centered */
    .pq-button {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 10px auto 0 auto !important;
        width: 100%;
        /* optional: make button container full width */
        left: 0px;
    }

    .pq-button a.pq-button-link {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .pq-button-label {
        margin-right: 5px;
    }
}

/* =================== */

/* form  */

@media (max-width: 576px) {


    /* Columns stack and full width */
    .pq-form-box .row>[class*="col-"] {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin: 0 !important;

    }

    /* Inputs and textarea full width & smaller height */
    .pq-form-box input,
    .pq-form-box textarea {
        width: 100% !important;
        box-sizing: border-box;
        height: 40px !important;
        /* smaller height for mobile */
        padding: 5px 10px !important;
        /* reduce padding inside input */
        font-size: 14px !important;
        /* smaller text */
    }

    .pq-form-box textarea {
        height: 80px !important;
        /* smaller textarea */
        /* padding: 8px 10px !important; */
    }

    /* Button center and slightly smaller */
    .pq-form-box .pq-button {
        display: flex !important;
        justify-content: center !important;
        margin-left: 0 !important;
        width: 100%;
    }

    .pq-form-box .pq-button a.pq-button-flat {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 8px 15px !important;
        /* smaller button padding */
        font-size: 14px !important;
        /* smaller button text */
    }

    .contact-us .pq-button {
        display: flex !important;
        justify-content: center !important;
        margin-left: 0 !important;
        width: 100%;
        left: 30px;
    }

    .pq-form-box-style-1 {
        padding: 0 !important;
    }
}


/* +++++++++++++++++++++++ */
/* Mobile view: 320px to 576px */
@media (max-width: 576px) and (min-width: 320px) {
    .container {
        width: 100% !important;
        /* Full width */
        padding-left: 10px;
        /* optional padding */
        padding-right: 10px;
        /* optional padding */
    }

    .right-column {
        display: flex;
        flex-direction: column;
        /* Stack boxes vertically */
        gap: 15px;
        /* Space between boxes */
    }

    .single-item {
        text-align: center;
        /* Center content */
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* optional shadow */
        border-radius: 8px;
    }

    .icon-box {
        font-size: 36px;
        /* Slightly smaller icon */
        margin-bottom: 8px;
    }

    h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    p {
        font-size: 13px;
    }
}

.sub-menu {
    display: none;
}

.menu-item.active>.sub-menu {
    display: block;
}

@media (max-width: 991px) {
    .products-menu>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pq-submenu-icon {
        margin-left: 8px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    /* rotate arrow when submenu open */
    .products-menu.active .pq-submenu-icon {
        transform: rotate(180deg);
    }
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 991px) {
    .pq-submenu-icon {
        display: none !important;
    }
}

@media (max-width: 991px) {

    /* Hide only sub-sub-menus (2nd level and deeper) */
    .menu .sub-menu .sub-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {

    /* Target all dropdowns in mobile */
    .menu .sub-menu {
        position: relative !important;
        /* avoid absolute cut-off */
        max-height: 70vh !important;
        /* visible height */
        overflow-y: auto !important;
        /* enable vertical scrolling */
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll on iOS */
    }
}

@media (max-width: 991px) {
    .sub-menu {
        display: none;
    }

    .sub-menu.open {
        display: block;
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Force banner to full width */
.pq-banner {
    width: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Banner images full responsive */
.pq-banner img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* On mobile, make it cover screen */
@media (max-width: 768px) {
    .pq-banner {
        height: 100vh !important; /* full screen */
        position: relative;
    }

    .pq-banner img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover; /* fills screen without stretching */
    }
}
/* Banner text positioning */
.pq-bannner .pq-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* white text for contrast */
    width: 90%;
}

/* Responsive text sizes */
.pq-bannner .pq-banner-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.pq-bannner .pq-banner-text p {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 10px;
}

/* On mobile screens */
@media (max-width: 768px) {
    .pq-bannner .pq-banner-text h1 {
        font-size: 28px;  /* smaller heading */
    }

    .pq-bannner .pq-banner-text p {
        font-size: 16px;
    }
}
