/*
Theme Name: PickleBugs
Author: Instep Technologies
Version: 1.0
Description: A custom WordPress theme for PickleBugs, strictly following temp_styles.
*/

/* Imports from Fonts.css */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.cdnfonts.com/css/garet');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* Theme Variables (Exactly from theme.css) */
:root {
    --font-size: 16px;
    --background: #ffffff;
    --foreground: oklch(0.145 0 0);
    --card: #ffffff;
    --card-foreground: oklch(0.145 0 0);
    --popover: oklch(1 0 0);
    --popover-foreground: oklch(0.145 0 0);
    --primary: #030213;
    --primary-foreground: oklch(1 0 0);
    --secondary: oklch(0.95 0.0058 264.53);
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --destructive: #d4183d;
    --destructive-foreground: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --input: transparent;
    --input-background: #f3f3f5;
    --switch-background: #cbced4;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --ring: oklch(0.708 0 0);
    --chart-1: oklch(0.646 0.222 41.116);
    --chart-2: oklch(0.6 0.118 184.704);
    --chart-3: oklch(0.398 0.07 227.392);
    --chart-4: oklch(0.828 0.189 84.429);
    --chart-5: oklch(0.769 0.188 70.08);
    --radius: 0.625rem;
    --sidebar: oklch(0.985 0 0);
    --sidebar-foreground: oklch(0.145 0 0);
    --sidebar-primary: #030213;
    --sidebar-primary-foreground: oklch(0.985 0 0);
    --sidebar-accent: oklch(0.97 0 0);
    --sidebar-accent-foreground: oklch(0.205 0 0);
    --sidebar-border: oklch(0.922 0 0);
    --sidebar-ring: oklch(0.708 0 0);

    /* PickleBugs Brand Colors */
    --pb-yellow: #FFC107;
    --pb-blue: #1565C0;
    --pb-dark: #0A0A0A;
    --pb-light: #FAFAFA;
    --pb-gray: #666666;
    --pb-gray-light: #E0E0E0;
}

.dark {
    --background: oklch(0.145 0 0);
    --foreground: oklch(0.985 0 0);
    --card: oklch(0.145 0 0);
    --card-foreground: oklch(0.985 0 0);
    --popover: oklch(0.145 0 0);
    --popover-foreground: oklch(0.985 0 0);
    --primary: oklch(0.985 0 0);
    --primary-foreground: oklch(0.205 0 0);
    --secondary: oklch(0.269 0 0);
    --secondary-foreground: oklch(0.985 0 0);
    --muted: oklch(0.269 0 0);
    --muted-foreground: oklch(0.708 0 0);
    --accent: oklch(0.269 0 0);
    --accent-foreground: oklch(0.985 0 0);
    --destructive: oklch(0.396 0.141 25.723);
    --destructive-foreground: oklch(0.637 0.237 25.331);
    --border: oklch(0.269 0 0);
    --input: oklch(0.269 0 0);
    --ring: oklch(0.439 0 0);
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --chart-1: oklch(0.488 0.243 264.376);
    --chart-2: oklch(0.696 0.17 162.48);
    --chart-3: oklch(0.769 0.188 70.08);
    --chart-4: oklch(0.627 0.265 303.9);
    --chart-5: oklch(0.645 0.246 16.439);
    --sidebar: oklch(0.205 0 0);
    --sidebar-foreground: oklch(0.985 0 0);
    --sidebar-primary: oklch(0.488 0.243 264.376);
    --sidebar-primary-foreground: oklch(0.985 0 0);
    --sidebar-accent: oklch(0.269 0 0);
    --sidebar-accent-foreground: oklch(0.985 0 0);
    --sidebar-border: oklch(0.269 0 0);
    --sidebar-ring: oklch(0.439 0 0);
}

/* @theme inline from theme.css mapped to Root where possible */
:root {
    --radius-sm: calc(var(--radius) - 4px);
    --radius-md: calc(var(--radius) - 2px);
    --radius-lg: var(--radius);
    --radius-xl: calc(var(--radius) + 4px);
}

/* Base Styles from theme.css */
* {
    border-color: var(--border);
    outline-color: oklch(from var(--ring) l c h / 0.5);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', system-ui, sans-serif;
    /* Updated to match index.html body font */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    /* Updated to match index.html heading font */
}

/* Bootstrap 5 Overrides */
:root {
    --bs-primary: #1565C0;
    /* pb-blue */
    --bs-secondary: #666666;
    /* pb-gray */
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #FFC107;
    /* pb-yellow */
    --bs-danger: #dc3545;
    --bs-light: #FAFAFA;
    /* pb-light */
    --bs-dark: #0A0A0A;
    /* pb-dark */
    --bs-body-font-family: 'Inter', system-ui, sans-serif;
    --bs-heading-font-family: 'Outfit', sans-serif;
}

/* Elementor Global Variable Mapping (To ensure variables work in Elementor) */
:root {
    --e-global-color-primary: var(--bs-primary);
    --e-global-color-secondary: var(--bs-secondary);
    --e-global-color-text: var(--bs-dark);
    --e-global-color-accent: var(--bs-warning);
}

.pb-image-hover-effect {
    overflow: hidden !important;
    position: relative;
}

.pb-image-hover-effect::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.pb-image-hover-effect:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}


.our-testimonials-sec .elementor-swiper-button-prev svg,
.our-testimonials-sec .elementor-swiper-button-next svg {
    width: 24px !important;
    height: 24px !important;
}



.our-blogs-card-right .right-blog-img {
    overflow: hidden !important;
    position: relative;
}

.our-blogs-card-right .right-blog-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.our-blogs-card-right:hover .right-blog-img::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

/* ============================================================
   PICKLEPRO — HEADER STYLES
   ============================================================ */

.pb-navbar {
    background-color: #0d1b2a !important;
    padding: 12px 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.pb-logo-icon {
    width: 38px;
    height: 38px;
    background-color: #FFC107;
    color: #0d1b2a;
    font-size: 16px;
    transition: transform 0.5s ease;
}

.pb-navbar .navbar-brand:hover .pb-logo-icon {
    transform: rotate(180deg);
}

.pb-brand-name {
    font-family: 'Garet', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Theme Logo Images */
.pb-header-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.pb-footer-logo {
    height: auto;
    width: 100%;
    max-width: 180px;
    object-fit: contain;
}

/* Nav Links */
.pb-navbar .navbar-nav .nav-item {
    margin: 0 4px;
}

.pb-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.pb-navbar .navbar-nav .nav-link:hover,
.pb-navbar .navbar-nav .nav-link:focus {
    color: #FFC107 !important;
}

.pb-navbar .navbar-nav .nav-item.active>.nav-link,
.pb-navbar .navbar-nav .nav-link.active {
    color: #0d1b2a !important;
    background-color: #FFC107;
    border-radius: 50px;
}

/* Dropdown */
.pb-navbar .dropdown-menu {
    background-color: #0d1b2a !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
}

.pb-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px;
    padding: 8px 20px;
    transition: all 0.2s;
}

.pb-navbar .dropdown-item:hover,
.pb-navbar .dropdown-item:focus {
    color: #FFC107 !important;
    background-color: rgba(255, 193, 7, 0.08);
}

.pb-navbar .dropdown-item.active {
    color: #FFC107 !important;
    background-color: rgba(255, 193, 7, 0.1);
}

/* CTA Button */
.pb-btn-cta {
    background-color: #FFC107 !important;
    color: #0d1b2a !important;
    border: none !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.25);
}

.pb-btn-cta:hover {
    background-color: #ffcd39 !important;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
    color: #0d1b2a !important;
    transform: translateY(-1px);
}

/* Mobile Toggler */
.pb-navbar .navbar-toggler-icon {
    filter: invert(1);
}

/* ============================================================
   PICKLEPRO — NEWSLETTER SECTION
   ============================================================ */

.pb-newsletter-section {
    background-color: #0d1b2a;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pb-newsletter-heading {
    font-family: 'Garet', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #fff;
    line-height: 1.3;
}

.pb-newsletter-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 8px;
}

.pb-newsletter-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pb-newsletter-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.pb-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 16px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    min-width: 0;
}

.pb-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pb-newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.03);
}

.pb-btn-subscribe {
    background-color: #FFC107;
    color: #0d1b2a !important;
    border: none;
    padding: 16px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb-btn-subscribe:hover {
    background-color: #ffcd39;
    color: #0d1b2a !important;
}

/* ============================================================
   PICKLEPRO — MAIN FOOTER
   ============================================================ */

.pb-footer {
    background-color: #0d1b2a;
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.pb-footer-heading {
    font-family: 'Garet', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pb-footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

/* Social Icons */
.pb-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pb-social-icon:hover {
    background-color: #FFC107;
    color: #0d1b2a;
}

/* Footer Links */
.pb-footer-links {
    padding: 0;
}

.pb-footer-links li {
    margin-bottom: 10px;
}

.pb-footer-links li a,
.pb-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.pb-footer-links li a:hover,
.pb-footer-links a:hover {
    color: #FFC107;
}

/* Contact Info */
.pb-footer-contact {
    padding: 0;
}

.pb-footer-contact li {
    margin-bottom: 16px;
}

.pb-footer-contact a,
.pb-footer-contact span {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.pb-footer-contact a:hover {
    color: #c5f31d;
}

.pb-contact-icon {
    color: #FFC107;
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

/* Bottom Bar */
.pb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pb-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.pb-footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.pb-footer-bottom a:hover {
    color: #FFC107;
}

/* Watermark Marquee */
.pb-watermark-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    line-height: 1;
    padding-bottom: 10px;
}

.pb-watermark-marquee {
    display: flex;
    animation: pb-marquee 20s linear infinite;
    width: max-content;
}

.pb-watermark-text {
    font-family: 'Anton', sans-serif;
    font-size: 8vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    letter-spacing: 12px;
    text-transform: uppercase;
    padding-right: 80px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
}

@keyframes pb-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   BLOG PAGES
   ============================================================ */

.pb-blog-page,
.pb-single-page {
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.06) 0%, rgba(255, 193, 7, 0.08) 24%, #ffffff 42%);
}

.pb-blog-hero {
    padding: 88px 0 40px;
}

.pb-blog-hero__content,
.pb-single-post {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(13, 27, 42, 0.1);
}

.pb-blog-hero__content {
    max-width: 820px;
    padding: 44px;
}

.pb-blog-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--pb-yellow);
    color: var(--pb-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pb-blog-hero__title,
.pb-single-post__title {
    color: #0d1b2a;
    letter-spacing: -0.03em;
}

.pb-blog-hero__title {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
}

.pb-blog-hero__text {
    max-width: 60ch;
    margin: 0;
    color: #526070;
    font-size: 1.05rem;
    line-height: 1.75;
}

.pb-blog-listing,
.pb-single-shell {
    padding: 0 0 88px;
}

.pb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pb-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pb-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(21, 101, 192, 0.16);
}

.pb-blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pb-dark), var(--pb-blue));
}

.pb-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
}

.pb-blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.pb-blog-card__meta,
.pb-single-post__meta,
.pb-single-post__byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--pb-gray);
    font-size: 0.9rem;
}

.pb-blog-card__category,
.pb-single-post__category {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: var(--pb-dark);
    font-weight: 700;
    text-decoration: none;
}

.pb-blog-card__dot,
.pb-single-post__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pb-yellow);
}

.pb-blog-card__title {
    margin: 16px 0 14px;
    font-size: 1.45rem;
    line-height: 1.25;
}

.pb-blog-card__title a,
.pb-post-nav__item a,
.pb-single-post__tags a {
    color: #0d1b2a;
    text-decoration: none;
}

.pb-blog-card__excerpt {
    flex: 1;
    color: var(--pb-gray);
    line-height: 1.8;
}

.pb-blog-card__excerpt p:last-child {
    margin-bottom: 0;
}

.pb-blog-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: var(--pb-blue);
    font-weight: 700;
    text-decoration: none;
}

.pb-blog-card__link:hover,
.pb-blog-card__title a:hover,
.pb-post-nav__item a:hover,
.pb-single-post__tags a:hover,
.pb-single-post__category:hover {
    color: var(--pb-blue);
}

.pb-blog-empty {
    padding: 48px 32px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 24px;
    text-align: center;
}

.navigation.pagination,
.pb-blog-pagination {
    margin-top: 40px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(21, 101, 192, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: var(--pb-dark);
    font-weight: 700;
    text-decoration: none;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: var(--pb-blue);
    border-color: var(--pb-blue);
    color: #ffffff;
}

.pb-single-shell {
    padding-top: 72px;
}

.pb-single-post {
    padding: 42px;
}

.pb-single-post__header {
    max-width: 840px;
    margin: 0 auto 34px;
}

.pb-single-post__title {
    margin: 18px 0 16px;
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    line-height: 1.02;
}

.pb-single-post__featured {
    margin-bottom: 36px;
}

.pb-single-post__image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.pb-single-post__content {
    max-width: 840px;
    margin: 0 auto;
    color: var(--pb-gray);
    font-size: 1.05rem;
    line-height: 1.9;
}

.pb-single-post__content h2,
.pb-single-post__content h3,
.pb-single-post__content h4 {
    margin-top: 2.2em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.pb-single-post__content p,
.pb-single-post__content ul,
.pb-single-post__content ol,
.pb-single-post__content blockquote {
    margin-bottom: 1.35em;
}

.pb-single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.pb-single-post__content a {
    color: var(--pb-blue);
}

.pb-single-post__content blockquote {
    padding: 20px 24px;
    border-left: 4px solid var(--pb-yellow);
    background: rgba(255, 193, 7, 0.08);
    border-radius: 0 16px 16px 0;
}

.pb-single-post__footer {
    max-width: 840px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.pb-single-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pb-single-post__tags a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(21, 101, 192, 0.08);
    font-size: 0.92rem;
}

.pb-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1160px;
    margin: 28px auto 0;
}

.pb-post-nav__item a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.pb-post-nav__item--next {
    text-align: right;
}

.pb-post-nav__label {
    color: var(--pb-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pb-post-nav__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.45;
}

/* ============================================================
   STATIC PAGES
   ============================================================ */

.pb-static-page {
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.06) 0%, rgba(255, 193, 7, 0.08) 24%, #ffffff 42%);
}

.pb-static-hero {
    padding: 88px 0 40px;
}

.pb-static-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.pb-static-hero__content,
.pb-static-card,
.pb-static-editor {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(13, 27, 42, 0.08);
}

.pb-static-hero__content {
    max-width: 860px;
    padding: 44px;
}

.pb-static-hero__title {
    margin: 0 0 12px;
    color: var(--pb-dark);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.pb-static-hero__text {
    max-width: 62ch;
    margin: 0;
    color: var(--pb-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.pb-static-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pb-static-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(21, 101, 192, 0.08);
    color: var(--pb-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.pb-static-visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #0d1b2a, #1a3a5f 68%, #1565C0);
    box-shadow: 0 22px 70px rgba(13, 27, 42, 0.14);
}

.pb-static-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.15) 0%, rgba(13, 27, 42, 0.4) 100%),
        radial-gradient(circle at top right, rgba(255, 193, 7, 0.2), transparent 40%);
    pointer-events: none;
}

.pb-static-visual__image-wrap,
.pb-static-visual__mock {
    position: relative;
    z-index: 1;
    height: 100%;
}

.pb-static-visual__image-wrap {
    min-height: 100%;
    display: flex;
}

.pb-static-visual__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    transition: transform 0.6s ease;
}

.pb-static-visual:hover .pb-static-visual__image {
    transform: scale(1.04);
}

/* Overlay for contact info panels on top of image */
.pb-static-visual__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(13, 27, 42, 0.85) 0%, transparent 100%);
}

.pb-static-visual__mock {
    display: grid;
    align-content: center;
    gap: 18px;
    min-height: 100%;
    padding: 32px;
}

.pb-static-visual__mock--compact {
    justify-items: stretch;
}

.pb-static-visual__panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    color: #ffffff;
}

.pb-static-visual__panel strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.35;
}

.pb-static-visual__panel--secondary {
    margin-left: 28px;
}

.pb-static-visual__panel--accent {
    margin-right: 24px;
    background: rgba(255, 193, 7, 0.14);
}

.pb-static-visual__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pb-static-section {
    padding: 70px 0;
}

.pb-static-section--muted {
    background: linear-gradient(180deg, rgba(21, 101, 192, 0.04), rgba(255, 255, 255, 0));
}

.pb-static-grid {
    display: grid;
    gap: 28px;
}

.pb-static-grid--intro {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
}

.pb-static-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pb-static-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pb-static-grid--contact {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.pb-static-stack {
    display: grid;
    gap: 28px;
}

.pb-static-card {
    padding: 30px;
}

.pb-static-card--feature,
.pb-static-card--accent {
    min-height: 100%;
}

.pb-static-card--accent {
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.12), #ffffff 72%);
}

.pb-static-card--visual {
    overflow: hidden;
    padding-top: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pb-static-card--visual:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(13, 27, 42, 0.16);
}

.pb-static-card__media {
    height: 220px;
    margin: -30px -30px 24px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(135deg, #0d1b2a, #1565C0);
}

.pb-static-card__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pb-static-card--visual:hover .pb-static-card__media-img {
    transform: scale(1.08);
}

/* Icon emoji styles for feature cards */
.pb-static-card__icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}

/* Portrait card (Sehwag card on About page) */
.pb-static-card--sehwag {
    padding-top: 0;
    overflow: hidden;
}

.pb-static-card__portrait {
    margin: -30px -30px 20px;
    height: 200px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.pb-static-card__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.pb-static-card--sehwag:hover .pb-static-card__portrait-img {
    transform: scale(1.05);
}

/* Contact card icon */
.pb-contact-card__icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1;
}

.pb-static-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: var(--pb-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pb-static-heading {
    max-width: 680px;
    margin-bottom: 28px;
}

.pb-static-heading h2,
.pb-static-card h2,
.pb-static-card h3 {
    color: var(--pb-dark);
}

.pb-static-heading h2,
.pb-static-card h2 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
}

.pb-static-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.pb-static-card p,
.pb-static-card li,
.pb-static-editor {
    color: var(--pb-gray);
    line-height: 1.8;
}

.pb-static-card p:last-child {
    margin-bottom: 0;
}

.pb-static-list {
    margin: 0;
    padding-left: 1.2rem;
}

.pb-static-list li+li {
    margin-top: 10px;
}

.pb-contact-card a,
.pb-static-editor a {
    color: var(--pb-blue);
    text-decoration: none;
}

.pb-contact-card a:hover,
.pb-static-editor a:hover {
    color: var(--pb-dark);
}

.pb-contact-form-card {
    padding-bottom: 34px;
}

.pb-contact-form-wrap {
    margin-top: 20px;
}

.pb-contact-form-wrap .ct-form-title,
.pb-contact-form-wrap .ct-form-desc {
    display: none;
}

.pb-static-editor {
    padding: 34px;
}

.pb-static-editor h2,
.pb-static-editor h3,
.pb-static-editor h4 {
    color: var(--pb-dark);
}

.pb-static-editor img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.pb-static-editor blockquote {
    padding: 20px 24px;
    border-left: 4px solid var(--pb-yellow);
    background: rgba(255, 193, 7, 0.08);
    border-radius: 0 16px 16px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {
    .pb-navbar .navbar-collapse {
        background-color: #0d1b2a;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pb-navbar .navbar-nav .nav-item.active>.nav-link,
    .pb-navbar .navbar-nav .nav-link.active {
        display: inline-block;
    }

    .pb-btn-cta {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .pb-newsletter-heading {
        font-size: 1.4rem;
    }

    .pb-newsletter-input-group {
        flex-direction: column;
    }

    .pb-newsletter-input,
    .pb-btn-subscribe {
        width: 100%;
    }

    .pb-watermark-text {
        font-size: 14vw;
    }

    .pb-footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .pb-blog-grid,
    .pb-post-nav {
        grid-template-columns: 1fr;
    }

    .pb-blog-hero {
        padding-top: 64px;
    }

    .pb-blog-hero__content,
    .pb-single-post {
        padding: 30px;
        border-radius: 22px;
    }

    .pb-static-grid--intro,
    .pb-static-grid--three,
    .pb-static-grid--two,
    .pb-static-grid--contact {
        grid-template-columns: 1fr;
    }

    .pb-static-hero__layout {
        grid-template-columns: 1fr;
    }

    .pb-static-hero {
        padding-top: 64px;
    }

    .pb-static-hero__content,
    .pb-static-card,
    .pb-static-editor {
        padding: 30px;
        border-radius: 22px;
    }
}

.pb-space-remover {
    height: 33px;
}

@media (max-width: 767.98px) {

    .pb-blog-card__body,
    .pb-single-post {
        padding: 22px;
    }

    .pb-single-shell {
        padding-top: 48px;
    }

    .pb-post-nav__item--next {
        text-align: left;
    }

    .pb-static-card,
    .pb-static-editor {
        padding: 22px;
    }

    .pb-static-card__media {
        margin: -22px -22px 20px;
        height: 190px;
        border-radius: 22px 22px 0 0;
    }

    .pb-static-card__portrait {
        margin: -22px -22px 16px;
        height: 170px;
        border-radius: 22px 22px 0 0;
    }

    .pb-static-visual__mock {
        padding: 22px;
    }

    .pb-static-visual__panel--secondary,
    .pb-static-visual__panel--accent {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ============================================================
   SERVICES PAGE — pb_service CPT front-end
   ============================================================ */

/* ── Services Grid ── */
.pb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 4px;
}

/* ── Service Card ── */
.pb-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pb-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(21, 101, 192, 0.16);
}

/* Highlighted/Popular card */
.pb-service-card--highlight {
    border: 2px solid #FFC107;
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.18);
}

.pb-service-card--highlight:hover {
    box-shadow: 0 28px 60px rgba(255, 193, 7, 0.28);
}

/* Popular ribbon */
.pb-service-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: #FFC107;
    color: #0d1b2a;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

/* Card media (image) */
.pb-service-card__media {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a, #1565C0);
    flex-shrink: 0;
}

.pb-service-card__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pb-service-card:hover .pb-service-card__media-img {
    transform: scale(1.06);
}

/* Card body */
.pb-service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

/* Icon */
.pb-service-card__icon {
    margin-bottom: 14px;
    line-height: 1;
}

/* Badge */
.pb-service-card__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: #0d1b2a;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pb-service-card--highlight .pb-service-card__badge {
    background: rgba(255, 193, 7, 0.3);
}

/* Title */
.pb-service-card__title {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.3;
}

/* Excerpt */
.pb-service-card__excerpt {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Features list */
.pb-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pb-service-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pb-service-card__features li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFC107' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* CTA link */
.pb-service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #1565C0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.pb-service-card__cta:hover {
    color: #0d1b2a;
    gap: 10px;
}

.pb-service-card--highlight .pb-service-card__cta {
    color: #0d1b2a;
}

/* ── Bottom CTA Section ── */
.pb-services-cta-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.03) 0%, rgba(255, 193, 7, 0.07) 100%);
}

.pb-services-cta-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(13, 27, 42, 0.08);
    padding: 60px 52px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.pb-services-cta-card h2 {
    margin: 8px 0 16px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.15;
}

.pb-services-cta-card p {
    max-width: 54ch;
    margin: 0 auto 32px;
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pb-services-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pb-services-cta-link {
    color: #1565C0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pb-services-cta-link:hover {
    color: #0d1b2a;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pb-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pb-services-cta-card {
        padding: 40px 30px;
    }
}

/* ── Services Hero Visual (image bg + overlay panels) ── */
.pb-static-visual--services {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Inherit border-radius, overflow, box-shadow from .pb-static-visual */
    min-height: 340px;
}

/* Rich brand overlay: navy bottom → yellow hint top-right */
.pb-static-visual--services::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(13, 27, 42, 0.30) 0%, rgba(13, 27, 42, 0.78) 100%),
        radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.28) 0%, transparent 55%);
    pointer-events: none;
    border-radius: inherit;
}

/* Stat overlay panel row — pinned to the bottom */
.pb-services-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
}

/* Individual stat card */
.pb-services-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(13, 27, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Accent stat (yellow tint) */
.pb-services-stat--accent {
    background: rgba(255, 193, 7, 0.18);
    border-color: rgba(255, 193, 7, 0.35);
}

.pb-services-stat__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.pb-services-stat--accent .pb-services-stat__label {
    color: rgba(255, 193, 7, 0.85);
}

.pb-services-stat__value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .pb-static-visual--services {
        min-height: 280px;
    }
    .pb-services-visual-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .pb-services-stat {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 767.98px) {
    .pb-services-grid {
        grid-template-columns: 1fr;
    }

    .pb-service-card__media {
        height: 180px;
    }

    .pb-service-card__body {
        padding: 22px;
    }

    .pb-services-cta-card {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .pb-services-visual-overlay {
        flex-direction: column;
    }

    .pb-services-stat {
        flex: unset;
    }
}