:root {
    --pn-blue: #0055A5;
    --pn-orange: #FF8C00;
    --pn-green: #4CAF50;
    --pn-brown: #795548;
    --pn-bg: #F9FBFD;
    --pn-dark: #1E293B;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--pn-bg);
    color: var(--pn-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ================================
   LENIS SMOOTH SCROLL
================================ */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* =====================================================
   REVEAL BASE
===================================================== */

.reveal {
    --reveal-x: 0px;
    --reveal-y: 45px;
    --reveal-blur: 12px;
    --reveal-duration: 1.35s;

    opacity: 0;
    transform: translate3d(var(--reveal-x),
            var(--reveal-y),
            0);

    filter: blur(var(--reveal-blur));

    transition:
        opacity var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1),
        transform var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1),
        filter var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1);

    will-change:
        opacity,
        transform,
        filter;
}


/* =====================================================
   VISIBLE
===================================================== */

.reveal.reveal-visible {
    opacity: 1;

    transform: translate3d(0,
            0,
            0);

    filter: blur(0);
}


/* =====================================================
   DIRECTIONS
===================================================== */

.reveal-top {
    --reveal-y: -60px;
}

.reveal-bottom {
    --reveal-y: 60px;
}

.reveal-left {
    --reveal-x: -70px;
    --reveal-y: 0;
}

.reveal-right {
    --reveal-x: 70px;
    --reveal-y: 0;
}


/* =====================================================
   SLOW
===================================================== */

.reveal-slow {
    --reveal-duration: 1.7s;
    --reveal-blur: 15px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .reveal {
        --reveal-y: 35px;
        --reveal-x: 0px;
        --reveal-blur: 9px;
        --reveal-duration: 1.25s;
    }

    .reveal-left,
    .reveal-right {
        --reveal-x: 0;
        --reveal-y: 35px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

}

.pn-marquee-wrapper {
    background: linear-gradient(90deg, var(--pn-blue), var(--pn-orange), var(--pn-green));
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.pn-marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.pn-marquee-track:hover {
    animation-play-state: paused;
}

.pn-marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 3rem;
}

.pn-marquee-item i {
    margin-right: 8px;
    color: #FFF176;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.pn-topbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
    color: #64748b;
    padding: 6px 0;
}

.pn-topbar a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.pn-topbar a:hover {
    color: var(--pn-blue);
}

.pn-header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 85, 165, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.pn-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--pn-dark) !important;
    padding: 0.75rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--pn-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--pn-blue);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu.pn-megamenu {
    width: 100vw;
    max-width: 900px;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px);
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    background: #ffffff;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item.dropdown:hover .dropdown-menu.pn-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pn-mega-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--pn-dark);
    transition: all 0.25s ease;
    display: block;
    border: 1px solid #edf2f7;
}

.pn-mega-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 85, 165, 0.08);
    border-color: var(--pn-blue);
    color: var(--pn-blue);
}

.pn-mega-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.dropdown-menu.pn-multilevel {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    background: #ffffff;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
}

.nav-item.dropdown:hover>.dropdown-menu.pn-multilevel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 4px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
}

.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(0, 85, 165, 0.08);
    color: var(--pn-blue);
}

.blur-reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blur-reveal.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.pn-hero-section {
    /* padding: 5rem 0; */
    background: linear-gradient(135deg, rgba(0, 85, 165, 0.04) 0%, rgba(255, 140, 0, 0.04) 100%);
    border-bottom: 1px solid #e2e8f0;
}

.btn-partner {
    background-color: var(--pn-orange);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    border: none;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-partner:hover {
    background-color: #e07b00;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Responsive adjustments & Right Slide-in Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 1050 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        padding: 1.5rem !important;
        overflow-y: auto !important;
        display: block !important;
    }

    .navbar-collapse.show {
        right: 0 !important;
    }

    .dropdown-menu.pn-megamenu {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8fafc !important;
        padding: 0.5rem !important;
        position: static !important;
        display: none;
    }

    .dropdown-menu.pn-megamenu.show {
        display: block !important;
    }

    .dropdown-menu.pn-multilevel,
    .dropdown-submenu .dropdown-menu {
        box-shadow: none !important;
        background: #f8fafc !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        display: none;
    }

    .dropdown-menu.pn-multilevel.show,
    .dropdown-submenu .dropdown-menu.show {
        display: block !important;
    }
}

.dropdown-toggle::after {
    content: none;
}

/* Smooth container height transition when active slide changes */
.hero-slider-wrapper {
    transition: height 0.4s ease-in-out;
    background-color: #0d1117;
    overflow: hidden;
}

/* Slide item cross-fade transitions */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Slide image fluid display */
.slide-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Nav Arrows Overlay Styling */
.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
}

.nav-arrow:hover {
    background: rgba(15, 23, 42, 0.85);
    transform: scale(1.1);
    color: #fff;
}

/* Indicator Dots Styling */
.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-indicator.active {
    width: 28px;
    border-radius: 12px;
    background: #0d6efd;
}

/* Thumbnails Styling */
.thumb-btn {
    width: 64px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: transparent;
}

.thumb-btn.active {
    opacity: 1;
    border-color: #0d6efd;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glassmorphism control bar backgrounds */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pn-product-section {
    padding: 5rem 0;
    background: #e4edfc;
    position: relative;
    overflow-x: hidden;
}

.floating-image {
    position: absolute;
    bottom: 5%;
    right: 2%;
    z-index: -1;
}

.pn-section-title {
    font-weight: 700;
    color: var(--pn-dark);
    letter-spacing: -0.5px;
}

/* Product Card Layout */
.pn-product-card {
    background: #ffffff;
    border-radius: 12px;
    padding:0 1rem;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.pn-product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 85, 165, 0.08);
    border-color: #e2e8f0;
    transform: translateY(-4px);
}

.pn-product-img-wrap {
    position: relative;
    width: 100%;
    /*height: 240px;*/
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    /*margin-bottom: 1rem;*/
}

.pn-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pn-product-card:hover .pn-product-img {
    transform: scale(1.05);
}

/* Quick View Hover Button */
.pn-quick-view-btn {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    color: var(--pn-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pn-product-card:hover .pn-quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pn-quick-view-btn:hover {
    background: var(--pn-blue);
    color: #fff;
}

/* Product Info */
.pn-product-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
    line-height: 1.4;
        padding: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    min-height: 2.4rem;
}

.pn-product-card:hover .pn-product-title {
    color: var(--pn-blue);
}

.pn-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pn-red);
    text-align: left;
    margin-bottom: 0;
}

/* Custom Owl Carousel Navigation Arrows */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff !important;
    color: var(--pn-dark) !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1rem !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.2s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--pn-blue) !important;
    color: #ffffff !important;
    border-color: var(--pn-blue) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

/* View All Button */
.btn-view-all {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 2.2rem;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s, transform 0.2s;
    text-transform: uppercase;
}

.btn-view-all:hover {
    background-color: #d01e29;
    color: #fff;
    transform: translateY(-2px);
}

.banner-container {
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Style the Owl Carousel Navigation Buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    color: var(--pn-dark) !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #8b8b8b !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s ease;
    z-index: 10;
}

/* Hover effects matching your brand */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--pn-blue) !important;
    color: #ffffff !important;
    border-color: var(--pn-blue) !important;
    box-shadow: 0 6px 16px rgba(0, 85, 165, 0.2);
}

/* Position arrows slightly outside or on the edges of the carousel */
.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

.pn-about-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    isolation: isolate;
}

.floating-image2 {
    position: absolute;
    bottom: 5%;
    left: 2%;
    z-index: -1;
}

/* 2-Image Grid Styles */
.pn-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: center;
}

.pn-img-main {
    grid-column: 1 / 9;
    grid-row: 1;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 85, 165, 0.1);
    z-index: 1;
}

.pn-img-secondary {
    grid-column: 6 / 13;
    grid-row: 1;
    margin-top: 140px;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 6px solid #ffffff;
    z-index: 2;
}

/* Floating Badge */
.pn-floating-badge {
    position: absolute;
    top: 40px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--pn-orange);
}

.pn-floating-badge i {
    font-size: 1.8rem;
    color: var(--pn-orange);
}

/* Content Styles */
.pn-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: #ffffff;
    color: var(--pn-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.25rem;
}

.pn-about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--pn-dark);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.pn-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 1.5rem;
}

.pn-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 85, 165, 0.08);
    color: var(--pn-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pn-feature-box:hover .pn-feature-icon {
    background-color: var(--pn-blue);
    color: #ffffff;
    transform: scale(1.05);
}

.floating-image, .floating-image2 img{
    width:250px;
}

/* Continuous Floating Keyframes */
        @keyframes floatLeftRight {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-15px, -25px) rotate(5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        @keyframes floatRightLeft {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(15px, -25px) rotate(-5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        .pn-catalog-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--pn-bg);
    overflow: hidden;
    isolation: isolate;
}

.pn-catalog-bg-left,
.pn-catalog-bg-right {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-catalog-bg-left {
    left: 40px;
    top: 10%;
    font-size: 8rem;
    color: var(--pn-green);
}

.pn-catalog-bg-right {
    right: 40px;
    bottom: 5%;
    font-size: 8rem;
    color: var(--pn-orange);
}

.pn-catalog-section > .container {
    position: relative;
    z-index: 2;
}

.pn-catalog-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: #ffffff;
    color: var(--pn-orange);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.pn-catalog-title-div {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--pn-dark);
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Filter Buttons */
.pn-catalog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.pn-catalog-filter-btn {
    background-color: #ffffff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 9px 20px;
    font-size: 0.825rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.pn-catalog-filter-btn:hover {
    border-color: var(--pn-orange);
    color: var(--pn-orange);
    background-color: #fff;
}

.pn-catalog-filter-btn.active {
    background-color: var(--pn-orange);
    color: #ffffff;
    border-color: var(--pn-orange);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
}

/* Product Cards Grid */
.pn-catalog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.pn-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 85, 165, 0.1);
    border-color: var(--pn-blue);
}

.pn-catalog-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.pn-catalog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pn-catalog-card:hover .pn-catalog-img {
    transform: scale(1.06);
}

.pn-catalog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pn-catalog-content {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.pn-catalog-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pn-dark);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}

.pn-catalog-card:hover .pn-catalog-item-title {
    color: var(--pn-blue);
}

.pn-catalog-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fluid Filter Transition Classes */
.pn-catalog-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.pn-catalog-item.hide-item {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    display: none !important;
}

.pn-catalog-item.show-item {
    opacity: 1;
    transform: scale(1);
    display: block !important;
}

/* Responsive Overrides for Mobile & Tablets */
@media (max-width: 768px) {
    .pn-catalog-section {
        padding: 4rem 0;
    }
    .pn-catalog-filters {
        gap: 8px;
    }
    .pn-catalog-filter-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    .pn-catalog-img-box {
        height: 190px;
    }
}

        .pn-fan-scroll-section {
            position: relative;
            height: 180vh;
            background-color: var(--pn-bg);
        }

        .pn-sticky-container {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding: 1.5rem 1rem;
        }

        /* Header Info */
        .pn-header-wrap {
            z-index: 10;
            position: relative;
            margin-bottom: 2rem;
        }

        .pn-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--pn-orange);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .pn-section-title-div {
            font-size: clamp(1.3rem, 4vw, 2.3rem);
            font-weight: 700;
            color: #000;
            letter-spacing: -0.5px;
            line-height: 1.2;
            text-transform: uppercase;
            text-align: center;
            padding: 0 10px;
            margin: 0;
        }

        /* Fan Deck Container */
        .pn-cards-deck {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 420px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Individual Fan Card Styling */
        .pn-fan-card {
            position: absolute;
            width: clamp(220px, 22vw, 270px);
            /*height: clamp(330px, 34vw, 410px);*/
            background: var(--pn-card-bg);
            border-radius: 18px;
            padding: 14px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: #1E293B;
            transform-origin: center center;
            will-change: transform, z-index, box-shadow;
            border: 1px solid rgba(255,255,255,0.2);
            cursor: pointer;
            transition: box-shadow 0.3s ease;
        }

        /* Hover elevation effect */
        .pn-fan-card.is-hovered {
            z-index: 999 !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .pn-card-1 { background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%); border-top: 5px solid var(--pn-orange); }
        .pn-card-2 { background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%); border-top: 5px solid var(--pn-blue); }
        .pn-card-3 { background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%); border-top: 5px solid var(--pn-green); }
        .pn-card-4 { background: linear-gradient(135deg, #ffffff 0%, #efebe9 100%); border-top: 5px solid var(--pn-brown); }

        .pn-card-img-wrap {
            width: 100%;
            height: 55%;
            border-radius: 10px;
            overflow: hidden;
            background: #e2e8f0;
        }

        .pn-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .pn-fan-card.is-hovered .pn-card-img {
            transform: scale(1.05);
        }

        .pn-card-icon-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(0.85rem, 1.2vw, 1.05rem);
            font-weight: 700;
            text-transform: uppercase;
            color: #1E293B;
            margin-top: 8px;
            margin-bottom: 0.2rem;
        }

        .pn-card-icon-title i {
            color: var(--pn-orange);
            font-size: 1.1rem;
        }

        .pn-card-desc {
            font-size: clamp(0.72rem, 0.9vw, 0.8rem);
            color: #64748b;
            line-height: 1.35;
            margin: 0;
        }

        /* Mobile specific positioning to prevent top overlay */
        @media (max-width: 575px) {
            .pn-sticky-container {
                justify-content: flex-start;
                padding-top: 2.5rem;
            }
            .pn-header-wrap {
                margin-bottom: 1rem;
            }
            .pn-cards-deck {
                height: 360px;
                margin-top: 1rem;
            }
            .pn-fan-card {
                width: 230px;
                height: 320px;
            }
        }

        

        .pn-testimonials-section {
    position: relative;
    padding: 4rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

 
.pn-testimonial-card {
    background: #F9FBFD;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pn-testimonial-card:hover {
    /* transform: translateY(-8px); */
    border-color: #FF8C00;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.08);
    background: #ffffff;
}

.pn-quote-icon {
    font-size: 2rem;
    color: rgba(255, 140, 0, 0.2);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.pn-testimonial-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pn-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pn-client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF8C00;
}

.pn-client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    text-transform: uppercase;
}

.pn-client-role {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.pn-rating-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* Custom bullet colors for swiper pagination */
.swiper-pagination-bullet-active {
    background: #FF8C00 !important;
}


.pn-modern-faq-section {
    position: relative;
    padding: 3rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Abstract Background with Light Gradient */
.pn-faq-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, #ffffff38 0%, #faf6f623 40%), radial-gradient(circle at 90% 80%, #ffffff48 0%, #ffffff49 40%), 
        url(../images/faq-bg.png);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Accordion Design Overrides */
.pn-modern-accordion .accordion-item {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.pn-modern-accordion .accordion-item:hover {
    border-color: #FF8C00 !important;
    transform: translateY(-2px);
}

.pn-faq-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pn-faq-icon-title i {
    color: #FF8C00;
}

.pn-modern-accordion .accordion-button {
    background-color: transparent !important;
    color: #1E293B !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
    letter-spacing: 0.2px;
}

.pn-modern-accordion .accordion-button:not(.collapsed) {
    color: #FF8C00 !important;
    background-color: rgba(255, 140, 0, 0.04) !important;
}

.pn-modern-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231E293B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708 z'/%3e%3c/svg%3e") !important;
}

.pn-modern-accordion .accordion-body {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
}

/* CTA Card (Col-4) */
.pn-faq-cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pn-faq-cta-card:hover {
    transform: translateY(-5px);
    border-color: #FF8C00;
}

.pn-faq-card-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.pn-faq-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pn-faq-cta-card:hover .pn-faq-card-img {
    transform: scale(1.05);
}

.pn-faq-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.pn-card-support-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pn-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E293B;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pn-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    /* margin-bottom: 1.5rem; */
}

.pn-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0055A5;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pn-faq-cta-btn:hover {
    background: #FF8C00;
    color: #ffffff;
    transform: translateY(-2px);
}

.pn-aesthetic-footer {
    position: relative;
    background-color: #0F172A; /* Deep slate luxury dark tone */
    color: #94a3b8;
    padding: 2rem 0 2.5rem 0;
    overflow: hidden;
    font-size: 0.9rem;
}

/* Ambient Background Glowing Orbs */
.pn-footer-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.pn-footer-glow-2 {
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 85, 165, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Newsletter Floating Banner Box */
.pn-footer-newsletter-banner {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 0rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pn-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 6px 14px;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.pn-footer-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.pn-footer-news-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

/* Newsletter Input Form */
.pn-input-group {
    display: flex;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50rem;
    padding: 6px;
    transition: border-color 0.3s ease;
}

.pn-input-group:focus-within {
    border-color: #FF8C00;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.15);
}

.pn-footer-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.pn-footer-input::placeholder {
    color: #64748b;
}

.pn-footer-submit-btn {
    background: #FF8C00;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pn-footer-submit-btn:hover {
    background: #e07b00;
    transform: translateY(-1px);
}

/* Brand Column */
.pn-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.pn-footer-logo i {
    color: #FF8C00;
}

.pn-footer-brand-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pn-footer-socials {
    display: flex;
    gap: 12px;
}

.pn-footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pn-footer-socials a:hover {
    background: #FF8C00;
    color: #ffffff;
    border-color: #FF8C00;
    transform: translateY(-3px);
}

/* Links Columns */
.pn-footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.pn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pn-footer-links li {
    margin-bottom: 0.75rem;
}

.pn-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.pn-footer-links a:hover {
    color: #FF8C00;
    padding-left: 5px;
}

/* Contact Info Column */
.pn-footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pn-footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.pn-footer-contact-info i {
    color: #FF8C00;
    margin-top: 4px;
}

/* Bottom Bar */
.pn-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 2.5rem;
    font-size: 0.82rem;
    color: #64748b;
}

.pn-copyright-text {
    margin: 0;
}

.pn-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pn-footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pn-footer-legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .pn-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Floating Widgets Container (Bottom-Left) --- */
.pn-floating-widgets-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Universal Float Action Button Style */
.pn-float-action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

.pn-float-action-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Call Now Action Button Styles */
.pn-call-action-btn {
    background-color: var(--pn-blue, #0055A5);
}

.pn-call-action-btn .pn-tooltip {
    position: absolute;
    left: 70px;
    background: #1e293b;
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pn-call-action-btn:hover .pn-tooltip {
    opacity: 1;
}

/* WhatsApp Button Styles */
.pn-whatsapp-action-btn {
    background-color: #25D366;
}

.pn-notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* --- WhatsApp Chat Popup Box --- */
.pn-whatsapp-widget-container {
    position: relative;
}

.pn-chat-popup-box {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom left;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
}

.pn-chat-popup-box.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.pn-chat-header {
    background-color: #075E54;
    color: #ffffff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pn-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pn-chat-avatar-wrap {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #075E54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
}

.pn-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid #075E54;
}

.pn-chat-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.pn-chat-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pn-chat-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.pn-chat-close-btn:hover {
    opacity: 1;
}

/* Chat Body */
.pn-chat-body {
    background-color: #efeae2;
    background-image: radial-gradient(#cbd5e1 0.75px, transparent 0.75px);
    background-size: 16px 16px;
    padding: 20px 15px;
    min-height: 150px;
}

.pn-chat-bubble {
    background: #ffffff;
    padding: 14px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 90%;
    position: relative;
}

.pn-chat-bubble-text {
    font-size: 0.85rem;
    color: #1e293b;
    margin-bottom: 6px;
}

.pn-chat-question {
    font-size: 0.85rem;
    color: #475569;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.pn-chat-time {
    font-size: 0.65rem;
    color: #94a3b8;
    display: block;
    text-align: right;
}

/* Chat Footer */
.pn-chat-footer {
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.pn-start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pn-start-chat-btn:hover {
    background-color: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
}


/* --- Aesthetic Go To Top Button (Bottom-Right) --- */
.pn-gototop-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: var(--pn-dark, #1E293B);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pn-gototop-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pn-gototop-btn:hover {
    background: var(--pn-orange, #FF8C00);
    color: #ffffff;
    border-color: var(--pn-orange, #FF8C00);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.25);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .pn-floating-widgets-wrapper {
        bottom: 20px;
        left: 20px;
    }
    .pn-gototop-btn {
        bottom: 20px;
        right: 20px;
    }
    .pn-chat-popup-box {
        width: 300px;
    }
}

.pn-header-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF8C00; /* Your brand orange */
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    z-index: 1;
}

/* Sliding Background Shimmer/Glow Layer */
.pn-cta-bg-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffa733 0%, #e67e00 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pn-cta-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Icon Animation Wrapper */
.pn-cta-icon-wrap {
    position: relative;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.pn-cta-icon-wrap i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Hover Effects --- */
.pn-header-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.45);
    color: #ffffff;
}

.pn-header-cta-btn:hover .pn-cta-bg-layer {
    opacity: 1;
}

.pn-header-cta-btn:hover .pn-cta-icon-wrap {
    background: #ffffff;
    color: #FF8C00;
    transform: scale(1.1);
}

.pn-header-cta-btn:hover .pn-cta-icon-wrap i {
    transform: translateX(3px);
}

/* Active Click Effect */
.pn-header-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}













@media screen and (max-width: 768px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
    .pn-product-img-wrap {
        position: relative;
        width: 100%;
        height: 240px;
    }
    .btn-partner {
        display: none;
    }
    #dotsContainer, #thumbsContainer{
        display: none !important;
    }

    .nav-arrow {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }

    .h1, .h2, .h3, .h4, .h5, .h6{
        font-size: 15px;
    }
    .btn{
        padding: 5px 10px !important;
        font-size: 11px;
    }
    .pn-footer-submit-btn{
        padding: 5px 10px !important;
        font-size: 11px;
    }

    .pn-footer-input { 
        font-size: 0.8rem; 
        padding: 10px;
    }
}