/* header css */
/* Dropdown Menu Styling */
#pq-main-menu .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

#pq-main-menu .sub-menu li {
    position: relative;
}

#pq-main-menu li:hover>.sub-menu {
    display: block;
}

#pq-main-menu .sub-menu a {
    color: #333;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
}

#pq-main-menu .sub-menu a:hover {
    background-color: #f0f0f0;
}

/* For nested submenus (3rd level) */
#pq-main-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

/* Responsive dropdown toggle for mobile */
@media (max-width: 991px) {
    #pq-main-menu .sub-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding-left: 15px;
    }

    #pq-main-menu li.active>.sub-menu {
        display: block;
    }
}

/* header css */

/* index css */

.banner-slider {
    position: relative;
    width: 100%;
    height: 700px !important;
    overflow: hidden;
    font-family: 'Red Hat Display', sans-serif;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-text {
    position: absolute;
    bottom: 157px;
    left: 40px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-text h3 {
    color: #f56800;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
}

.slide-text h1 {
    font-weight: 700;
    font-size: 48px;
    margin: 0;
    text-transform: capitalize;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 32px;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    user-select: none;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.service-images {
    display: flex;
    flex-wrap: wrap;
    /* allows wrapping on smaller screens */
    justify-content: center;
    /* centers images */
    gap: 20px;
    /* space between images */
    margin-top: 30px;
}

.service-images a {
    flex: 1 1 18%;
    /* each takes ~18% width on large screens */
    max-width: 18%;
    /* prevents stretching too wide */
    display: flex;
    justify-content: center;
}

.service-images img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s;
}

.service-images img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
    .service-images a {
        flex: 1 1 30%;
        max-width: 30%;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 55%;
        width: 30px;
        height: 30px;
        margin-top: 0px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        border: none;
        background-color: rgba(0, 0, 0, 0.6);
        user-select: none;
        border-radius: 50%;
        transition: background-color 0.3s;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .service-images a {
        flex: 1 1 45%;
        max-width: 45%;
    }
}


.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-text {
    position: relative;
    height: 160%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.video-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.video-text h1 {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
}

/* Responsive text sizes */
@media (max-width: 768px) {
    .video-text h3 {
        font-size: 1.2rem;
    }

    .video-text h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .video-text h3 {
        font-size: 1rem;
    }

    .video-text h1 {
        font-size: 1.5rem;
    }
}

.certificate-slider img {
    width: 100px;
    height: 100px;
    max-width: 150px;
    margin: auto;
    display: block;
}

.slick-slide {
    text-align: center;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-prev:before,
.slick-next:before {
    color: #2d62ae;
}

header#pq-header .pq-bottom-header .navbar-toggler {
    font-size: 20px;
    padding: 12px 18px;
    line-height: normal;
    float: right;
    outline: none;
    margin: 0 0 0 15px;
    color: var(--white-color);
    box-shadow: none;
    background: var(--dark-color);
    border-radius: 11px;

}

@media (max-width: 1100px) {
    .slick-prev {
        left: 0px !important;
    }

    .slick-next {
        right: 0px !important;
    }
}

/* index css */

/* blog css */



.pq-pagination .page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pq-pagination .page-numbers li {
    margin: 0 5px;
}

.pq-pagination .page-numbers a,
.pq-pagination .page-numbers span {
    display: block;
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
}

.pq-pagination .page-numbers .current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.pq-blog-post .pq-blog-contain {
    padding: 30px;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 320px;
}

@media (max-width: 768px) {
    .pq-blog .pq-blog-post {
        margin-bottom: 30px;
    }
}

/* blog css */

/* contact css */
.pq-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.pq-button:hover {
    background-color: #0056b3;
}

textarea {
    resize: none;
}

/* Preloader spinner style */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.pq-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* contact css */

/* footer css */

/* WhatsApp Floating Button */
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-chat a {
       background: #25D366;
    color: #fff;
    padding: 0px 14px;
    border-radius: 50%;
    display: inline-block;
    font-size: 27px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    animation: blink 1s infinite;
    /* 🔥 Add blinking animation */
}

/* Blinking effect */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
        /* slight pop effect */
    }
}

#whatsapp-chat a:hover {
    transform: scale(1.1);
}

/* Responsive check */
@media (max-width: 768px) {


    #whatsapp-chat a {
        padding: 0px 13px 0px 13px;
        font-size: 25px;
    }
}

/* footer css */

/* gallery css */
/* Popup Background */
.image-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Popup Image Container */
.popup-content {
    position: relative;
    max-width: 100%;
    max-height: 430px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.popup-content img {
    width: 100%;
    height: auto;
    max-height: 380px;
    display: block;
    border-radius: 5px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: -35px;
    right: -35px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* Nav Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #2d62ae;
    border-color: #2d62ae;
}

.page-link {
    color: #2d62ae;
}

@media (max-width: 768px) {
    .popup-content {
        max-width: 90%;
        max-height: 80%;
    }

    .prev-btn,
    .next-btn {
        left: 10px;
        right: 10px;
    }
}

/* gallery css */

product