:root {
    --bg-color: #f3f1ed;
    --dark-maroon: #4a0d0d;
    --text-main: #1a1a1a;
}
/* ================================================================= */
/* START: SPOOF TRIAL CUSTOM FONT SETUP (image_ffe57d.jpg MATCH)     */
/* ================================================================= */

/* ================================================================= */
/* END: SPOOF TRIAL CUSTOM FONT SETUP                               */
/* ================================================================= */

/* --- Global Elements & Packaging Blueprint Animation --- */
h1, h2, h3, h4, h5, h6, .mv-main-heading, .pm-section-main-title {
    font-family: 'Playfair Display', serif!important;
    font-weight: 400!important;
}

p, span, li, a, .pm-process-card-desc, .pm-create-desc {
    font-family: 'Montserrat', sans-serif!important;
    font-weight: 500!important;
}

button, .btn, .pm-carousel-arrow {
    font-family: 'Montserrat', sans-serif!important;
    font-weight: 600!important;
}

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(to right, rgba(74, 13, 13, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(74, 13, 13, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    padding-top: 110px;
}

/* --- Default Header State (Floating with Margins) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #ffffff;
    margin: 25px 40px 0px 40px;
    border: 1px solid #42060675;
    /* border-bottom: 1px solid rgba(0,0,0,0.06); */
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Scrolled Header State (Full Width Flat Look) --- */
.site-header.scrolled {
    margin: 0px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled .navbar-nav .nav-link {
    padding: 24px 16px !important;
}

.site-header.scrolled .navbar-nav .nav-link::after {
    bottom: 14px;
}

/* --- Navbar Navigation Setup --- */
.navbar-brand img {
    max-height: 48px;
}

.navbar-nav .nav-link {
    color: var(--text-main);
    font-weight: 400;
    font-size: 14px;
    padding: 28px 14px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--dark-maroon);
}

/* --- Navigation Link Underline Effect --- */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 22px; 
    left: 18px;   
    right: 18px;  
    height: 2px;  
    background-color: var(--dark-maroon); 
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.3s ease-in-out; 
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* --- Dropdown Menu System --- */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    padding-top: 0px;
    transform: translateY(0);
    padding-bottom: 0px;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    border-bottom: 1px solid #42060638;
    color: var(--text-main);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    color: var(--dark-maroon);
    padding-left: 28px;
}

.pm-dropdown-caret {
    font-size: 11px;
    margin-left: 4px;
    vertical-align: 1px;
    transition: transform 0.25s ease;
}

.pm-services-toggle[aria-expanded="true"] .pm-dropdown-caret,
.navbar-nav .nav-item.dropdown:hover .pm-dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    display: none;
}

/* --- Action Buttons --- */
.quote-btn-wrapper {
    padding: 0 24px;
}

.btn-quote {
    background-color: #420606;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 20px;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease, transform 0.2s;
    text-decoration: none;
}

.btn-quote:hover {
    background-color: #5c0b0b;
    color: #ffffff;
}

.btn-grid {
    background-color: #420606;
    width: 75px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 5px);
    gap: 7px;
    justify-content: center;
    align-content: center;
}

.btn-grid span {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.2s;
}

.btn-grid:hover span {
    background-color: rgba(255,255,255,0.7);
    transform: scale(1.25);
}

.hover-toggle-menu:hover {
    background-color: #000;
    color: #fff;
}

/* --- Sidebar Offcanvas --- */
.offcanvas {
    width: 400px !important;
    background-color: #ffffff;
}

.sidebar-links a {
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--dark-maroon) !important;
    padding-left: 10px;
}

/* --- Hero Section Structure --- */
.hero-section {
    padding: 50px 0;
    min-height: calc(100vh - 110px);
}

.main-heading {
    font-size: clamp(2.5rem, 4.8vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 47px;
}

.sub-content-box {
    max-width: 488px;
    margin-left: auto;
}

.sub-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 17px;
}

.desc-text {
    font-size: 16px;
    line-height: 1.7;
}

.hero-image-frame {
    border: 1px solid #1a1a1a85;
    aspect-ratio: 1 / 1;
    padding: 10px;
    width: 100%;
    max-width: 520px;
    background-color: transparent;
}

/* --- Responsive Media Queries --- */
@media (max-width: 991.98px) {
    body {
        padding-top: 85px;
    }
    .site-header {
        margin: 15px 15px 0px 15px;
    }
    .site-header.scrolled {
        margin: 0px;
    }
    .navbar-nav .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .site-header.scrolled .navbar-nav .nav-link {
        padding: 14px 0 !important;
    }
    .navbar-nav .nav-link::after {
        display: none !important;
    }
    .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none !important;
        padding-left: 15px;
        background-color: var(--bg-color);
        position: static !important;
        border: 0;
    }
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }
    .dropdown-menu.show {
        display: block;
    }
    .dropdown-item {
        font-size: 13px;
        padding: 8px 16px;
    }
    .pm-dropdown-caret {
        font-size: 10px;
    }
    .navbar-collapse {
        padding: 20px 0;
    }
    .quote-btn-wrapper {
        padding: 15px 0 0 0;
    }
    .btn-quote {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-section {
        padding: 60px 0;
    }
    .sub-content-box {
        margin-left: 0;
    }
    .main-heading {
        margin-bottom: 35px;
    }
}
/* ... Exisiting finalized CSS ... */

/* --- Journey Section Styles --- */
.journey-section {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.journey-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--text-main);
    /* letter-spacing: -0.5px; */
}

.timeline-wrapper {
    position: relative;
}

/* Connective Grid System for Columns */
.timeline-col {
    position: relative;
}

/* Generating line from one icon center to the next column icon center */
@media (min-width: 1200px) {
    .timeline-col::after {
        content: '';
        position: absolute;
        top: 20px; /* Icon ke exact half center height par */
        left: 50%; /* Icon ke center se start hoga */
        width: 100%; /* Next box ke center tak reach karega */
        height: 1px;
        background-color: var(--text-main);
        opacity: 0.8;
        z-index: 1;
    }
    
    /* Akhiri item ke aage koi line nahi jayegi */
    .elements-last::after {
        display: none !important;
    }
}

.timeline-marker {
    width: 40px; 
    height: 40px;
    background-color: var(--dark-maroon); 
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
    cursor: pointer;
    z-index: 3;
    position: relative; /* Line ke upar markers visible rakhne ke liye */
}

/* Marker Hover Effect */
.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(5deg);
    background-color: var(--text-main);
}

.timeline-marker i {
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-marker i {
    transform: scale(1.1);
}

.timeline-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #e9e9e9;
    padding: 5px;
    max-width: 280px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Image Frame Hover Effect */
.timeline-item:hover .timeline-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 13, 13, 0.08);
}

/* Desktop Grid sizing adjustment */
@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Tablet view connectivity line flow adjustment */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .timeline-col::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 1px;
        background-color: var(--text-main);
        opacity: 0.8;
        z-index: 1;
    }
    /* Third item and final items configuration for tablet row breaks */
    .timeline-col:nth-child(3)::after,
    .elements-last::after {
        display: none !important;
    }
    .timeline-image-frame {
        aspect-ratio: 16 / 9;
        margin-bottom: 25px;
    }
}

/* Mobile responsive fixes */
@media (max-width: 767.98px) {
    .journey-section {
        padding: 50px 0;
    }
    
    .timeline-wrapper {
        padding: 10px 15px;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .timeline-marker {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }
    
    .timeline-year {
        margin-top: 0 !important;
        margin-bottom: 5px !important;
        font-size: 14px !important;
    }
    
    .timeline-image-frame {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
}
/* --- Mission & Vision Section Styles --- */
.mission-vision-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.mv-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.mv-intro-text p {
    font-size: 16px;
    line-height: 1.7;
}

/* Custom Outlined Cards Structure */
.mv-card {
    border: 1px solid #1a1a1a;
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 13, 13, 0.05);
}

.mv-card-title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.mv-card-desc {
    font-size: 15px;
    line-height: 1.6;
}

/* Image Container with Inner Gray Block Background */
.mv-card-img-wrapper {
    background-color: #dcdcdc; 
    padding: 0px;
    display: d-flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

.mv-card-img-wrapper img {
    transition: transform 0.5s ease;
    max-height: 450px;
    object-fit: contain;
}

.mv-card:hover .mv-card-img-wrapper img {
    transform: scale(1.04);
}

/* --- Media Queries Responsive Handlers --- */
@media (max-width: 991.98px) {
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mv-card-title {
        font-size: 24px;
    }
    
    .mv-card-img-wrapper {
        padding: 20px;
    }
    
    .mv-card-img-wrapper img {
        max-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .mv-card-body {
        padding: 30px 20px !important;
    }
    
    .mv-card-desc {
        font-size: 14px;
    }
    
    .mv-card-img-wrapper img {
        max-height: 200px;
    }
}
/* --- Bottom Left Scroll Progress Indicator --- */
.scroll-progress-container {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    width: 60px;
    height: 60px;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 13, 13, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-progress-container:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(74, 13, 13, 0.15);
}

/* SVG Geometric Circle Setup */
.progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); 
}

.progress-background {
    fill: none;
    stroke: rgba(0, 0, 0, 0.04);
    stroke-width: 6;
}

.progress-bar {
    fill: none;
    stroke: var(--dark-maroon); 
    stroke-width: 6;
    stroke-linecap: round;
    /* Circumference value for radius 45 is ~282.7 */
    stroke-dasharray: 282.7;
    stroke-dashoffset: 282.7;
    transition: stroke-dashoffset 0.1s linear;
}

/* Central Text styling matching Syne/Urbanist geometry */
.progress-text {
    position: absolute;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.2px;
}

/* --- Responsive Media Queries for Mobile/Tablets --- */
@media (max-width: 991.98px) {
    .scroll-progress-container {
        bottom: 20px;
        left: 20px; 
        width: 50px;
        height: 50px;
    }
    
    .progress-text {
        font-size: 11px;
    }
}

.team-section {
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.team-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.team-minimal-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Hairline border outline bounding framework container matching drawing */
.team-outline-box {
    width: 100%;
    aspect-ratio: 5 / 4.7; /* Matches the vertical rectangular design profile from picture */
    border: 1px solid rgba(26, 26, 26, 0.4); /* Clean 1px outline stroke styling */
    background-color: #e9e9e9; /* Signature studio backdrop palette */
}

.team-meta-details {
    padding-top: 20px;
    text-align: left; /* Pure left alignment flush with the box edges */
}

.member-fullname {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.member-designation {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 0;
}


/* ================================================================= */
/* RESPONSIVE LAYOUT OPTIMIZATIONS                                   */
/* ================================================================= */
@media (max-width: 767.98px) {
    /* Mobile breakpoint optimization for seamless timeline viewing */
    .timeline-connecting-line {
        display: none; /* Stacking grid segments prevents horizontal vector layouts */
    }
    
    .node-marker-shape {
        margin: 0 auto !important;
    }
    
    .journey-node-item {
        margin-bottom: 25px;
    }
    
    .team-outline-box {
        aspect-ratio: 3 / 1; /* Standard box comfort optimization for compact devices */
    }
}
    /* --- Unique "Our Way of Working" Section Styles --- */
.pw-workspace-section {
    padding-top: 50px;
    padding-bottom: 40px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Typography Main Head */
.pw-section-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* Core Process Sequence Spacing */
.pw-steps-bullet-list {
    margin-bottom: 35px;
    padding-left: 5px;
}

.pw-steps-bullet-list p {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

/* Narrative Copy Layout Elements */
.pw-editorial-narrativetext {
    padding-left: 5px;
}

.pw-editorial-narrativetext p {
    font-size: 15px;
    line-height: 1.6;
}

.pw-editorial-narrativetext .pw-dark-bold-highlight {
    color: #1a1a1a;
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}

.pw-editorial-narrativetext .pw-sub-details-paragraph {
    color: #555555;
    line-height: 1.65;
}

/* Right Layout Column Fluid Seamless Box Container */
.pw-visual-solid-canvas {
    width: 100%;
    /*aspect-ratio: 16 / 10;*/
    border: 0;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 991.98px) {
    .pw-workspace-section {
        padding: 16px 0;
    }
    
    .pw-section-hero-title {
        margin-bottom: 35px;
    }
    
    .pw-visual-solid-canvas {
        margin-top: 30px;
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 767.98px) {
    .pw-visual-solid-canvas {
        aspect-ratio: 6 / 3;
    }
}
/* --- Unique Our Process Grid Framework Styles --- */
.pack-process-container {
    padding: 60px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Section Main Heading Layout */
.pack-process-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

/* Layout Framework Row Custom Adjustment */
.pack-process-grid-row {
    position: relative;
}

/* Minimal Solid Line-Card Box Component Setup */
.pack-process-card-box {
    background-color: #e9e9e9; /* Light grey backdrop matches the design layer */
    border: 0; /* Keeps layout clean and minimal */
    padding: 22px 20px;
    display: flex;
    transition: all ease 0.5s;
    border: 1px solid #42060645;
    flex-direction: column;
    justify-content: flex-start;
}

/* Inside Grid Box Custom Card Title */
.pack-process-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 32px; /* Exact deep spacing block as screenshot */
    /* letter-spacing: -0.3px; */
}

/* Inside Grid Box Secondary Descriptive Text Copy */
.pack-process-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 0;
}

/* --- Responsive Viewport Grid Controllers --- */

/* 5 Columns Custom Generator Rule for Large Desktop Interfaces */
@media (min-width: 1200px) {
    .pack-process-grid-row .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%; /* Generates exact 5 parallel components */
    }
}

/* Medium Responsive Screens Adjustments */
@media (max-width: 1199.98px) {
    .pack-process-container {
        padding: 47px 0;
    }
    .pack-process-main-title {
        margin-bottom: 40px;
    }
    .pack-process-card-box {
        min-height: auto;
        padding: 30px 20px;
    }
    .pack-process-card-title {
        margin-bottom: 25px;
        font-size: 18px;
    }
}

/* Small Device Optimizations */
@media (max-width: 575.98px) {
    .pack-process-card-box {
        padding: 25px 20px;
    }
    .pack-process-card-desc {
        font-size: 13.5px;
    }
}
.pack-process-card-box:hover{
    background-color: #fff;
    transition: all ease 0.5s;
}
/* --- Complete Why Packmaniya Section Styles --- */
.pm-why-us-section {
    padding: 40px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Headings and Lead Subtext */
.pm-why-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.pm-why-sub-lead {
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -0.2px;
}

/* Vertical grid partition spacer */
.pm-flow-container-spacing {
    margin-top: 46px;
    margin-bottom: 80px;
}

/* --- Horizontal Line Track Layout Component --- */
.pm-inline-flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pm-flow-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pm-flow-number {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}

.pm-flow-text {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.pm-flow-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(26, 26, 26, 0.15);
    margin: 0 40px;
}

/* --- Call To Action Block Layout Elements --- */
.pm-cta-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -1.2px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pm-cta-sub-pitch {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #555555 !important;
    margin-bottom: 30px;
    /* letter-spacing: -0.1px; */
}

/* Dark Premium Maroon Solid Button Configuration */
.pm-btn-action-holder {
    margin-top: 10px;
}

.pm-core-maroon-btn {
    background-color: #4a0e0e !important;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 36px;
    border-radius: 8px !important;
    border: 0 !important;
    letter-spacing: 0.3px;
    display: inline-block;
    transition: all 0.3s ease;
}

.pm-core-maroon-btn:hover {
    background-color: #360909 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 14, 14, 0.15);
}

/* --- Responsive Viewport Adaptation Handlers --- */
@media (max-width: 991.98px) {
    .pm-why-us-section {
        padding: 20px 0;
    }
    .pm-flow-container-spacing {
        margin-top: 40px;
        margin-bottom: 70px;
    }
    .pm-flow-divider-line {
        margin: 0 20px;
    }
    .pm-flow-number {
        font-size: 22px;
    }
    .pm-flow-text {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    /* Safe stack items into uniform layout flow on tablet/mobile views */
    .pm-inline-flow-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .pm-flow-divider-line {
        display: none; /* Smoothly collapse vector paths on mobile viewports */
    }
    .pm-flow-step-item {
        gap: 12px;
    }
    .pm-core-maroon-btn {
        width: 100%;
        padding: 13px 20px;
    }
}
/* --- Unique Our Latest Works Showcase Styles --- */
.pw-latest-works-section {
    padding: 50px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Heading Typography exactly mimicking the screenshot layout */
.pw-works-main-heading {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 55px; /* Deep uniform padding separation */
}

/* Individual Card Panel Box Core Setup */
.pw-work-display-card {
    width: 100%;
    border: 1px solid #42060640;
    aspect-ratio: 1 / 1; /* Perfect premium portrait bounding ratio as seen in image_ae5084.png */
    background-color: #e9e9e9; /* Placeholder base tone */
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Fluid styling for actual images when plugged into the blocks */
.pw-work-actual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Soft clean zoom micro-interaction on hovering items */
.pw-work-display-card:hover .pw-work-actual-img {
    transform: scale(1.04);
}

/* --- Responsive Viewport Handlers --- */
@media (max-width: 1199.98px) {
    .pw-latest-works-section {
        padding: 60px 0;
    }
    .pw-works-main-heading {
        margin-bottom: 35px;
    }
}

@media (max-width: 767.98px) {
    /* Shifts grid layout to clean 2 columns for smaller screen optimization */
    .pw-work-display-card {
        aspect-ratio: 1 / 1.35;
    }
}
/* --- Complete Let's Chat Section Styling Infrastructure --- */
.pm-chat-section {
    padding: 90px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Screen Title Display Rule Layout */
.pm-chat-main-heading {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 60px;
}

/* Left Canvas Outer Box Border Configuration */
.pm-chat-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: transparent;
    border: 1px solid #1a1a1a; /* Exact solid clean bounding dark line border outline from layout sketch */
    position: relative;
    overflow: hidden;
}

/* Right Text Editorial Pitch Typography Elements */
.pm-form-headline {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pm-form-sub-paragraph {
    font-size: 14.5px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 35px;
}

/* --- Clean Custom Form Component Restyling --- */
.pm-custom-input-field,
.pm-custom-textarea-field {
    background-color: transparent !important;
    border: 1px solid #b8a39d !important; /* Elegant earth-tone outline border wrapper tracks */
    border-radius: 0px !important; /* Pure minimal box geometry sharp corners */
    padding: 12px 16px;
    font-size: 14.5px;
    color: #1a1a1a !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

/* Clean Custom Form Field Focus States */
.pm-custom-input-field:focus,
.pm-custom-textarea-field:focus {
    border-color: #4a0e0e !important; /* Highlights to theme color on active entry interaction */
}

/* Dropdown Arrow Control Vector Alignment Styling */
select.pm-custom-input-field {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-size: 12px ease;
    cursor: pointer;
}

/* Native Field Placeholder Opacity Match Controls */
.pm-custom-input-field::placeholder,
.pm-custom-textarea-field::placeholder {
    color: #666666;
    opacity: 0.85;
}

/* Large Message Box Area Configuration */
.pm-custom-textarea-field {
    resize: none;
    padding-top: 14px;
}

/* --- Custom Geometric Checkbox Components --- */
.pm-checkbox-section-label {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
}

.pm-checkbox-container-item {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    gap: 10px;
}

/* Hide Default Webkit Browser Input Elements */
.pm-checkbox-container-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Shape Out the Rectangular Wireframe Box Container */
.pm-checkbox-custom-box {
    height: 18px;
    width: 18px;
    border: 1px solid #b8a39d;
    background-color: transparent;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

/* Checked Variant Layout Changes */
.pm-checkbox-container-item input:checked ~ .pm-checkbox-custom-box {
    background-color: #4a0e0e;
    border-color: #4a0e0e;
}

/* Little Internal Check Mark Pointer Vector Setup */
.pm-checkbox-custom-box:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pm-checkbox-container-item input:checked ~ .pm-checkbox-custom-box:after {
    display: block;
}

.pm-checkbox-item-text {
    font-size: 14px;
    color: #333333;
}

/* --- Core Solid Theme Submission Button --- */
.pm-chat-maroon-submit-btn {
    background-color: #4a0e0e !important; /* Solid Crimson Maroon tint matching design values */
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 28px;
    border-radius: 0px !important; /* Zero round edge radius settings */
    border: 0 !important;
    letter-spacing: 0.2px;
    transition: background-color 0.3s ease;
}

.pm-chat-maroon-submit-btn:hover {
    background-color: #2e0808 !important;
}

/* --- Responsive Layout Balancing Handlers --- */
@media (max-width: 991.98px) {
    .pm-chat-section {
        padding: 60px 0;
    }
    .pm-chat-main-heading {
        margin-bottom: 40px;
    }
    .pm-chat-image-frame {
        margin-bottom: 20px;
        aspect-ratio: 16 / 10; /* Better space distribution layout for tablets */
    }
    .pm-form-sub-paragraph {
        margin-bottom: 25px;
    }
}
/* --- Complete Meet Us Section Styling Structure --- */
.pm-meet-section {
    padding: 100px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Main Display Title Typography */
.pm-meet-main-heading {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* Editorial Sub-lead */
.pm-meet-sub-lead {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 33px;
    letter-spacing: -0.2px;
}

/* Individual Content Blocks Layout */
.pm-meet-detail-block {
    margin-bottom: 38px;
}

/* Bold Custom Labels matching screenshot */
.pm-meet-block-label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.1px;
}

/* Block Descriptive Text Meta Copy */
.pm-meet-block-text {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: -0.1px;
}

/* --- Right Map Frame Outer Boundary Outline --- */
.pm-meet-map-frame {
    width: 100%;
    aspect-ratio: 4 / 3.4; /* Perfect geometric ratio from screenshot layout wireframe */
    background-color: transparent;
    border: 1px solid #1a1a1a; /* Clean solid dark boundary outline frame */
    position: relative;
    overflow: hidden;
}

/* Force iframe map object to behave completely fluidly inside layout box */
.pm-meet-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Responsive Viewport Adaptation Rules --- */
@media (max-width: 991.98px) {
    .pm-meet-section {
        padding: 60px 0;
    }
    .pm-meet-main-heading {
        margin-bottom: 20px;
    }
    .pm-meet-sub-lead {
        margin-bottom: 40px;
    }
    .pm-meet-detail-block {
        margin-bottom: 30px;
    }
    .pm-meet-map-frame {
        margin-top: 20px;
        aspect-ratio: 16 / 11; /* Offers better space distribution scales on tablets */
    }
}

@media (max-width: 575.98px) {
    .pm-meet-map-frame {
        aspect-ratio: 4 / 3; /* Optimized bounds for handheld device screens */
    }
}
/* --- Complete FAQ Section Architecture Setup --- */
.pm-faq-global-wrapper {
    padding: 75px 0;
    background-color: #e5e3dc !important; /* Exact match earthy-beige background hue from image_aec841.png */
    position: relative;
    z-index: 1;
}

/* Left Sidebar Title Typography */
.pm-faq-section-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #1a1a1a;
    position: relative;
}

/* Accordion Outer Container Base Reset */
.pm-custom-faq-accordion {
    border-top: 1px solid #1a1a1a; /* Topmost divider track matching layout wireframe */
    background: transparent !important;
}

/* Core Structural Overrides for Flush Accordion Items */
.pm-faq-structural-item {
    background-color: transparent !important;
    border-bottom: 1px solid #1a1a1a !important; /* Consistent clean solid line between blocks */
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0px !important;
}

/* Interactive Trigger Panel Button Framework */
.pm-faq-trigger-btn {
    background-color: transparent !important;
    color: #1a1a1a !important;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    padding: 28px 0px;
    box-shadow: none !important;
    border: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    letter-spacing: -0.3px;
    transition: opacity 0.2s ease;
}

/* Eliminate native Bootstrap default arrow vector markers */
.pm-faq-trigger-btn::after {
    display: none !important;
}

.pm-faq-question-text {
    padding-right: 20px;
}

/* --- Clean Custom Plus/Minus Plus Sign Icon Element --- */
.pm-faq-toggle-vector {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    display: inline-block;
}

/* Horizontal Line Component */
.pm-faq-toggle-vector::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transform: translateY(-50%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vertical Line Component */
.pm-faq-toggle-vector::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #1a1a1a;
    transform: translateX(-50%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Turns vertical pointer into clean active morph state when collapse transitions open */
.pm-faq-trigger-btn:not(.collapsed) .pm-faq-toggle-vector::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0; /* Smoothly fades out vertical line to reveal a single flat horizontal bar */
}

.pm-faq-trigger-btn:not(.collapsed) .pm-faq-toggle-vector::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Hidden Collapsible Dropdown Description Paragraph */
.pm-faq-dropdown-content {
    padding: 0 0 30px 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: #333333;
    max-width: 92%;
    letter-spacing: -0.1px;
}

/* --- Responsive Viewport Framework Overrides --- */
@media (max-width: 991.98px) {
    .pm-faq-global-wrapper {
        padding: 70px 0;
    }
    .pm-faq-section-title {
        margin-bottom: 25px;
        br {
            display: none; /* Collapses linebreaks fluidly on compressed grids */
        }
    }
    .pm-faq-trigger-btn {
        padding: 22px 0;
    }
    .pm-faq-dropdown-content {
        padding-bottom: 22px;
        max-width: 100%;
        font-size: 14.5px;
    }
}
/* --- Complete Global Minimalist Footer Styling --- */
.pm-global-footer {
    padding: 54px 0 30px 0;
    background-color: #1a1a1a; /* Sleek Deep Off-Black for solid structural weight */
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Main Grid Layout Spacer Group */
.pm-footer-main-row {
    margin-bottom: 50px;
}

/* Brand Identity Block Typography */
.pm-footer-logo-text {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 18px;
}

.pm-footer-brand-pitch {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3; /* Soft readable muted grey text tint */
    max-width: 85%;
}

/* Widget Header Blocks formatting */
.pm-footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 22px;
}

/* Nav Link Element Tracks */
.pm-footer-links-list li {
    margin-bottom: 8px;
}

.pm-footer-links-list li a {
    font-size: 14.5px;
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
}

/* Smooth Interactive hover transition color update */
.pm-footer-links-list li a:hover {
    color: #e5e3dc; /* Matches your theme beige color shade slightly */
}

.pm-footer-static-text {
    font-size: 14.5px;
    color: #b3b3b3;
}

/* --- Bottom Bar Section and Thin Divider Line --- */
.pm-footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle wireframe border line layout separation */
    margin-bottom: 25px;
}

.pm-footer-copyright-text,
.pm-footer-credits-text {
    font-size: 13.5px;
    color: #888888;
    margin-bottom: 0;
}

.pm-footer-credits-text a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pm-footer-credits-text a:hover {
    color: #ffffff;
}

/* --- Responsive Adaptability Rules --- */
@media (max-width: 991.98px) {
    .pm-global-footer {
        padding: 60px 0 30px 0;
    }
    .pm-footer-main-row {
        margin-bottom: 35px;
    }
    .pm-footer-brand-pitch {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .pm-footer-widget-title {
        margin-bottom: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .pm-global-footer {
        padding: 50px 0 25px 0;
    }
    .pm-footer-bottom-row {
        gap: 8px;
    }
    .suggest-left
    {
        margin-left: 0px!important;
    }
}
/* --- Footer Connect Section Bootstrap Icons Styling --- */
.pm-footer-links-list li {
    margin-bottom: 15px; 
    display: flex;
    align-items: flex-start;
}

/* Icon Link Structure Setup */
.pm-footer-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px; 
    font-size: 14.5px;
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Bootstrap Icons Core Look & Alignment */
.pm-footer-icon-link i, 
.pm-footer-address-icon {
    font-size: 14px; /* Slightly adjusted scale for Bootstrap Icons font alignment */
    color: #b7b7b7;
    width: 20px;
    text-align: center;
    display: inline-block;
    line-height: 1;
    margin-top: 3px;
}

/* Hover State Transition */
.pm-footer-icon-link:hover {
    color: #ffffff;
}

.pm-footer-icon-link:hover i {
    color: #b8a39d; 
}

/* Plain static text adjustment */
.pm-footer-static-text {
    font-size: 14.5px;
    color: #b3b3b3;
    line-height: 1.4;
}

/* --- Meet Us Block Bootstrap Icons Integration --- */
.pm-meet-detail-block {
    margin-bottom: 35px;
}

/* Heading Label Structure with Icon Positioning */
.pm-meet-block-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and label text */
}

/* Base Style for Bootstrap Icons inside Headings */
.pm-meet-icon {
    font-size: 16px;
    color: #1a1a1a;
    display: inline-block;
    line-height: 1;
}

.pm-meet-block-text {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: -0.1px;
}

/* Padding utility patch fallback for non-bootstrap spaces */
.ps-4 {
    padding-left: 26px !important;
}
.team-outline-box img
{
    width: 100%;
    height: 323px;
    object-fit: cover;
}
.suggest-left
{
    margin-left: 120px;
}

.pm-breadcrumb-section {
    padding: 56px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'SpoofTrial', sans-serif;
}

.pm-breadcrumb-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.pm-custom-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.pm-custom-breadcrumbs .breadcrumb-item,
.pm-custom-breadcrumbs .breadcrumb-item a {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pm-custom-breadcrumbs .breadcrumb-item a:hover {
    color: #1a1a1a;
}

.pm-custom-breadcrumbs .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 500;
}

.pm-custom-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #cccccc;
    padding: 0 10px;
}

.pm-chat-section,
.pm-meet-section {
    padding: 80px 0;
    background-color: #faf9f6;
    font-family: 'SpoofTrial', sans-serif;
}

.pm-chat-image-frame {
    width: 100%;
    height: 520px;
    border: 1px solid #1a1a1a;
    overflow: hidden;
}

.pm-form-headline {
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pm-form-sub-paragraph {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 30px;
}

.pm-custom-input-field,
.pm-custom-textarea-field {
    background-color: transparent !important;
    border: 1px solid #1a1a1a !important;
    border-radius: 0 !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    color: #1a1a1a !important;
}

.pm-custom-input-field::placeholder,
.pm-custom-textarea-field::placeholder {
    color: #666666 !important;
}

.pm-custom-input-field:focus,
.pm-custom-textarea-field:focus {
    box-shadow: none !important;
    background-color: transparent !important;
}

.pm-checkbox-section-label {
    font-size: 15px;
    color: #1a1a1a;
}

.pm-checkbox-container-item {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.pm-checkbox-container-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.pm-checkbox-custom-box {
    height: 18px;
    width: 18px;
    border: 1px solid #1a1a1a;
    display: inline-block;
    position: relative;
}

.pm-checkbox-container-item input:checked ~ .pm-checkbox-custom-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #58111A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pm-checkbox-item-text {
    font-size: 14.5px;
    color: #1a1a1a;
}

.pm-chat-maroon-submit-btn {
    background-color: #58111A !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 !important;
    padding: 12px 35px !important;
    border: none !important;
    transition: background-color 0.2s ease !important;
}

.pm-chat-maroon-submit-btn:hover {
    background-color: #400c12 !important;
}

.pm-meet-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pm-meet-sub-lead {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.pm-meet-detail-block {
    margin-bottom: 30px;
}

.pm-meet-block-label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-meet-icon {
    font-size: 15px;
    color: #1a1a1a;
}

.pm-meet-block-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

.pm-meet-map-frame {
    width: 100%;
    height: 450px;
    border: 1px solid #1a1a1a;
}

@media (max-width: 991.98px) {
    .pm-breadcrumb-section { padding: 45px 0; }
    .pm-breadcrumb-title { font-size: 30px; }
    .pm-chat-section, .pm-meet-section { padding: 50px 0; }
    .pm-chat-image-frame { height: 350px; margin-bottom: 15px; }
    .pm-meet-map-frame { height: 350px; margin-top: 20px; }
}
.team-outline-box {
    width: 100%;
    height: 360px;
    border: 1px solid #1a1a1a;
    background-color: #e5e3dc;
    position: relative;
    overflow: hidden;
}

.team-outline-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-outline-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 17, 26, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-minimal-card:hover .team-outline-box img {
    transform: scale(1.06);
}

.team-minimal-card:hover .team-outline-box::after {
    opacity: 1;
}

.team-meta-details {
    padding-top: 15px;
}

.member-fullname {
    transition: color 0.3s ease;
}

.team-minimal-card:hover .member-fullname {
    color: #58111A;
}
.pm-trusted-brands-section {
    padding: 90px 0;
    background-color: #faf9f6;
    font-family: 'SpoofTrial', sans-serif;
    overflow: hidden;
}

.pm-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.pm-marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.pm-logo-box {
    width: 180px;
    height: 100px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.pm-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.pm-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.pm-move-left {
    animation: scrollLeft 25s linear infinite;
}

.pm-move-right {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50% - 15px));
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 767.98px) {
    .pm-trusted-brands-section {
        padding: 60px 0;
    }
    .pm-logo-box {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
}
.pm-process-section {
    padding: 70px 0 60px 0;
    background-color: #faf9f6;
    font-family: 'SpoofTrial', sans-serif;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.pm-process-card {
    background-color: #ffffff;
    padding: 30px 16px;
    height: 100%;
    /*display: flex;
    flex-column: column;*/
    justify-content: center;
    align-items: center;
    border: 1px solid #c4c4c4;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pm-process-card:hover {
    background-color: #ffffff;
    border-color: #1a1a1a;
}

.pm-process-card-title {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.pm-process-card-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 0;
}

.pm-counter-section {
    padding: 40px 0 52px 0;
    background-color: #ffffff;
    font-family: 'SpoofTrial', sans-serif;
}

.pm-counter-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.pm-counter-label {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .pm-process-section {
        padding: 60px 0 30px 0;
    }
    .pm-counter-section {
        padding: 30px 0 60px 0;
    }
    .pm-process-card {
        padding: 40px 20px;
    }
    .pm-counter-label {
        font-size: 15px;
    }
}
.pm-what-we-create-section {
    padding: 90px 0;
    font-family: 'SpoofTrial', sans-serif;
}

.pm-section-main-title {
    /* font-size: 36px; */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pm-section-sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 0;
}

.pm-create-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pm-create-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pm-create-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.pm-create-card:hover .pm-create-img-box img {
    transform: scale(1.05);
    opacity: 0.9;
}

.pm-create-info {
    padding-top: 15px;
}

.pm-create-title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.pm-create-desc {
    font-size: 15px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .pm-what-we-create-section {
        padding: 60px 0;
    }
    .pm-section-main-title {
        font-size: 28px;
    }
    .pm-section-sub-title {
        font-size: 15px;
    }
    .pm-create-title {
        font-size: 20px;
    }
    .pm-create-desc {
        font-size: 14px;
        max-width: 100%;
    }
}
.pw-latest-works-section {
    padding: 90px 0;
    background-color: #ffffff;
    font-family: 'SpoofTrial', sans-serif;
}

.pm-latest-works-swiper {
    width: 100%;
    overflow: hidden;
}

.pw-work-display-card {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f5f4f0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pw-work-actual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.pw-work-display-card:hover .pw-work-actual-img {
    transform: scale(1.04);
}

.pm-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background-color: #ffffff;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.pm-carousel-arrow:hover {
    background-color: #58111A;
    border-color: #58111A;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .pw-latest-works-section {
        padding: 60px 0;
    }
    .pm-carousel-arrow {
        width: 38px;
        height: 38px;
    }
}
.pm-service-page-section {
    padding: 50px 0;
    background-color: #faf9f5;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pm-service-maroon-banner {
    background-color: #58111A;
    padding: 16px 30px;
    border-radius: 2px;
    display: inline-block;
    width: 100%;
}

.pm-service-banner-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.pm-gallery-card {
    background-color: #e5e5e5;
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.pm-gallery-main {
    aspect-ratio: 16 / 10;
}

.pm-gallery-sub {
    aspect-ratio: 4 / 3;
}

.pm-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pm-gallery-card:hover .pm-gallery-img {
    transform: scale(1.04);
}

.pm-service-desc-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pm-service-desc-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.pm-lightbox-preview-img {
    max-height: 85vh;
    object-fit: contain;
}

.pm-custom-modal-content {
    border-radius: 0;
    border: 1px solid #1a1a1a;
    background-color: #faf9f5;
    padding: 10px;
}

.pm-modal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1a1a1a;
}

.pm-modal-input {
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: #ffffff;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.pm-modal-input:focus {
    border-color: #58111A;
    box-shadow: none;
}

.pm-captcha-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 767.98px) {
    .pm-service-page-section {
        padding: 60px 0;
    }
    .pm-service-banner-heading {
        font-size: 22px;
    }
    .pm-service-desc-title {
        font-size: 24px;
    }
}
.pm-catalogue-page-section {
    padding: 50px 0;
    background-color: #faf9f5;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pm-filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pm-filter-btn {
    background-color: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pm-filter-btn:hover,
.pm-filter-btn.active {
    background-color: #58111A;
    border-color: #58111A;
    color: #ffffff;
}

.pm-cat-card {
    aspect-ratio: 1 / 1;
}

.pm-cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pm-cat-card:hover .pm-cat-tag {
    transform: translateY(0);
}

.pm-cat-item {
    transition: all 0.4s ease;
}

.pm-cat-item.hide-item {
    display: none !important;
}

@media (max-width: 767.98px) {
    .pm-catalogue-page-section {
        padding: 60px 0;
    }
    .pm-filter-btn {
        padding: 8px 14px;
        font-size: 11px;
    }
}
/* ==========================================================
   Offcanvas Sidebar Navigation
   Add this block to the end of css/style.css
   ========================================================== */

#sidebarMenu .sidebar-nav {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

#sidebarMenu .sidebar-nav-link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

#sidebarMenu .sidebar-nav-link:hover,
#sidebarMenu .sidebar-nav-link.active {
    color: #7a1f2b; /* brand accent — replace with your exact logo/maroon hex if different */
}

#sidebarMenu .sidebar-nav-caret {
    transition: transform 0.25s ease;
    font-size: 0.9rem;
}

#sidebarMenu .sidebar-nav-item-services.open .sidebar-nav-caret {
    transform: rotate(45deg);
}

#sidebarMenu .sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#sidebarMenu .sidebar-nav-item-services.open .sidebar-submenu {
    max-height: 320px;
    padding-top: 0.5rem;
}

#sidebarMenu .sidebar-submenu-link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6b6b6b;
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

#sidebarMenu .sidebar-submenu-link:hover {
    color: #7a1f2b; /* same accent as above */
}