/* ==========================================================================
   GEOMETRIC V4 SECTION STYLES
   Description: Neo-brutalism style with grid backgrounds and 3D shadows.
   Properties page
   ========================================================================== */

.geo-v4-section {
    background-color: #c96b24; /* Core brand orange */
    /* DYNAMIC BACKGROUND: Creates a retro geometric grid using linear gradients */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.4) 2px, transparent 2px);
    background-size: 40px 40px; /* Defines grid density */
    background-position: center;
    padding: 100px 0 140px;
    overflow: hidden; 
}

/* --- 1. Header & Typography --- */

.geo-header-box {
    border-bottom: 6px solid #000; /* Thick bottom divider */
    padding-bottom: 20px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.geo-tag {
    background: #a3a3a3; /* Gray accent */
    color: #000;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 15px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000; /* Hard "pop" shadow */
}

.geo-headline {
    color: #fff;
    font-weight: 900;
    font-size: 56px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    /* Layered text-shadow for a massive 3D effect */
    text-shadow: 6px 6px 0px #a3a3a3, 8px 8px 0px #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

/* --- 2. Dynamic Layout Logic --- */

/* Staggered effect: Moves the middle card in a 3-column grid down for a "zigzag" look */
@media (min-width: 992px) {
    .geo-card-wrapper:nth-child(3n+2) {
        margin-top: 80px; 
    }
}

/* Alternating Tilts: Gives cards a playful, non-aligned aesthetic */
.geo-card-v4 {
    display: block;
    text-decoration: none !important;
    margin-bottom: 60px; 
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
}

.geo-card-wrapper:nth-child(odd) .geo-card-v4 {
    transform: rotate(2.5deg);
}

.geo-card-wrapper:nth-child(even) .geo-card-v4 {
    transform: rotate(-2.5deg);
}

/* --- 3. Card Internal Elements --- */

.geo-img-container {
    border: 4px solid #000;
    /* Double layered shadow: Gray offset by 10px, Black offset by 14px */
    box-shadow: 10px 10px 0px #a3a3a3, 14px 14px 0px #000;
    background: #000;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.geo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Floating info box containing the title and button */
.geo-info-box {
    position: absolute;
    bottom: -25px;
    right: -15px; 
    left: 20px;    
    background: #a3a3a3;
    border: 4px solid #000;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2; 
    box-shadow: 6px 6px 0px #000;
    transition: all 0.2s ease-in-out;
}

.geo-card-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Prevents long names from breaking layout */
    padding-right: 15px;
}

.geo-square-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

/* --- 4. Hover States: "The Snap Action" --- */

/* Reset rotation and lift card up on hover */
.geo-card-wrapper:nth-child(n) .geo-card-v4:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.02);
    z-index: 10;
}

/* Change shadow colors on hover */
.geo-card-wrapper .geo-card-v4:hover .geo-img-container {
    box-shadow: 14px 14px 0px #000, 18px 18px 0px #c96b24;
}

/* Slight zoom on the product image */
.geo-card-wrapper .geo-card-v4:hover .geo-img-container img {
    transform: scale(1.12); 
    opacity: 0.9;
}

/* Invert colors for the info box */
.geo-card-wrapper .geo-card-v4:hover .geo-info-box {
    background: #000;
    box-shadow: 8px 8px 0px #a3a3a3;
    transform: translate(-2px, -2px);
}

.geo-card-wrapper .geo-card-v4:hover .geo-card-title {
    color: #fff; 
}

/* Rotate the arrow button for visual feedback */
.geo-card-wrapper .geo-card-v4:hover .geo-square-btn {
    background: #c96b24; 
    border-color: #a3a3a3;
    transform: rotate(90deg); 
}

.geo-card-wrapper .geo-card-v4:hover .geo-square-btn svg path {
    stroke: #fff;
}




/* ==========================================================================
   GEO-V5 GALLERY SECTION
   Design Style: Neo-Brutalism (Hard edges, Bold shadows, High contrast)
   Properties product page
   ========================================================================== */

/* ========================================================
    Properties product page (geo-v4-section)
   ======================================================== */
.geo-v4-section {
    background-color: #c96b24; /* Core brand orange background */
    /* DYNAMIC BACKGROUND: Geometric grid using a subtle gray (#a3a3a3) */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.4) 2px, transparent 2px);
    background-size: 40px 40px; /* Size of the grid squares */
    background-position: center;
    padding: 100px 0 140px;
    overflow: hidden; 
}

/* Container for the section's main heading */
.geo-v4-section .geo-header-box {
    border-bottom: 6px solid #000; 
    padding-bottom: 20px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Small tag/label appearing above the main heading */
.geo-v4-section .geo-tag {
    background: #a3a3a3; /* Applied gray background */
    color: #000;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 15px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000; /* Solid black brutalist shadow */
}

/* Main section headline text styling */
.geo-v4-section .geo-headline {
    color: #fff;
    font-weight: 900;
    font-size: 56px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    /* Gray & Black mixed shadow for massive 3D impact */
    text-shadow: 6px 6px 0px #a3a3a3, 8px 8px 0px #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

/* Staggered layout effect for desktop screens */
@media (min-width: 992px) {
    .geo-v4-section .geo-card-wrapper:nth-child(3n+2) {
        margin-top: 80px; /* Pushes the middle column down */
    }
}

/* Main wrapper for each product card */
.geo-v4-section .geo-card-v4 {
    display: block;
    text-decoration: none !important;
    margin-bottom: 60px; 
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
}

/* Alternating tilt angles for odd/even cards to create a chaotic look */
.geo-v4-section .geo-card-wrapper:nth-child(odd) .geo-card-v4 {
    transform: rotate(2.5deg);
}
.geo-v4-section .geo-card-wrapper:nth-child(even) .geo-card-v4 {
    transform: rotate(-2.5deg);
}

/* Container holding the product image */
.geo-v4-section .geo-img-container {
    border: 4px solid #000;
    box-shadow: 10px 10px 0px #a3a3a3, 14px 14px 0px #000; /* Layered Gray + Black shadow */
    background: #000;
    aspect-ratio: 1/1; /* Keeps images perfectly square */
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.geo-v4-section .geo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Information box (title and arrow button) overlapping the image */
.geo-v4-section .geo-info-box {
    position: absolute;
    bottom: -25px;
    right: -15px; 
    left: 20px;    
    background: #a3a3a3; /* Base gray color */
    border: 4px solid #000;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2; 
    box-shadow: 6px 6px 0px #000;
    transition: all 0.2s ease-in-out;
}

/* Product title inside the info box */
.geo-v4-section .geo-card-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds '...' if the text is too long */
    padding-right: 15px;
}

/* Square button with arrow inside the info box */
.geo-v4-section .geo-square-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.geo-v4-section .geo-square-btn svg path {
    stroke: #000; /* Black arrow line */
}

/* ----------------------------------------------------
   HOVER EFFECTS (What happens when a user hovers over a card)
   ---------------------------------------------------- */

/* Snap the card straight, lift it up slightly, and bring it to the front */
.geo-v4-section .geo-card-wrapper:nth-child(n) .geo-card-v4:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.02);
    z-index: 10;
}

/* Switch the shadow colors on the image container */
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-img-container {
    box-shadow: 14px 14px 0px #000, 18px 18px 0px #c96b24; 
}

/* Zoom in the image and make it slightly transparent */
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-img-container img {
    transform: scale(1.12); 
    opacity: 0.9;
}

/* Invert the info box colors (turns black with gray shadow) */
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-info-box {
    background: #000; /* Box goes black */
    box-shadow: 8px 8px 0px #a3a3a3; /* Shadow becomes gray */
    transform: translate(-2px, -2px);
}

/* Change title color to white */
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-card-title {
    color: #fff; 
}

/* Change square button to orange and rotate arrow */
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-square-btn {
    background: #c96b24; 
    border-color: #a3a3a3;
    transform: rotate(90deg); 
}
.geo-v4-section .geo-card-wrapper .geo-card-v4:hover .geo-square-btn svg path {
    stroke: #fff; /* White arrow line on hover */
}






/* ========================================================
   SECTION 2: Product Details (geo-v5-section)
   ======================================================== */
.geo-v5-section {
    background-color: #c96b24; /* Core brand orange */
    /* Geometric grid background using #a3a3a3 */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.4) 2px, transparent 2px);
    background-size: 40px 40px; 
    background-position: center;
    padding: 100px 0 160px; /* Extra bottom padding for cards with vertical offsets */
    overflow: hidden; 
}
.geo-v5-section .geo-header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 6px solid #000; 
    padding-bottom: 20px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 20px;
}
.geo-v5-section .geo-tag {
    background: #a3a3a3; 
    color: #000;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 15px;
    display: inline-block;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000; 
}
.geo-v5-section .geo-headline {
    color: #fff;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    text-shadow: 6px 6px 0px #a3a3a3, 8px 8px 0px #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}
.geo-v5-section .geo-back-btn {
    background: #a3a3a3;
    color: #000 !important;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 40px;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-block;
}
.geo-v5-section .geo-back-btn:hover {
    background: #000;
    color: #fff !important;
    box-shadow: 4px 4px 0px #c96b24;
    transform: translate(4px, 4px);
}
@media (min-width: 1200px) {
    .geo-v5-section .geo-card-wrapper:nth-child(4n+1) { margin-top: 0px; }
    .geo-v5-section .geo-card-wrapper:nth-child(4n+2) { margin-top: 60px; }
    .geo-v5-section .geo-card-wrapper:nth-child(4n+3) { margin-top: 20px; }
    .geo-v5-section .geo-card-wrapper:nth-child(4n+4) { margin-top: 90px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .geo-v5-section .geo-card-wrapper:nth-child(3n+1) { margin-top: 0px; }
    .geo-v5-section .geo-card-wrapper:nth-child(3n+2) { margin-top: 50px; }
    .geo-v5-section .geo-card-wrapper:nth-child(3n+3) { margin-top: 20px; }
}
.geo-v5-section .geo-gallery-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px; 
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.geo-v5-section .geo-card-wrapper:nth-child(3n+1) .geo-gallery-card { transform: rotate(-3deg); }
.geo-v5-section .geo-card-wrapper:nth-child(3n+2) .geo-gallery-card { transform: rotate(1deg); }
.geo-v5-section .geo-card-wrapper:nth-child(3n+3) .geo-gallery-card { transform: rotate(3deg); }
.geo-v5-section .geo-img-box {
    border: 4px solid #000;
    box-shadow: 10px 10px 0px #a3a3a3, 14px 14px 0px #000; 
    background: #000;
    aspect-ratio: 4/3; 
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.geo-v5-section .geo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.95;
}
.geo-v5-section .geo-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #c96b24;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: scale(0.8) rotate(-15deg);
    transition: all 0.3s ease;
}
.geo-v5-section .geo-img-box:hover .geo-zoom-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.geo-v5-section .geo-zoom-icon:hover {
    background: #fff;
}
.geo-v5-section .geo-info-box {
    position: relative;
    margin-top: -30px; 
    margin-left: 20px; 
    margin-right: -10px;
    background: #a3a3a3; 
    border: 4px solid #000;
    padding: 24px 20px;
    z-index: 2; 
    box-shadow: 8px 8px 0px #000;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}
.geo-v5-section .geo-card-title {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
.geo-v5-section .geo-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.geo-v5-section .geo-card-desc {
    font-size: 14px;
    color: #222;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.geo-v5-section .geo-explore-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: #000;
    padding: 8px 16px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 2px solid #000;
    transition: all 0.2s;
}
.geo-v5-section .geo-card-wrapper:nth-child(n) .geo-gallery-card:hover {
    transform: rotate(0deg) translateY(-10px);
    z-index: 10;
}
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-img-box {
    box-shadow: 14px 14px 0px #000, 18px 18px 0px #c96b24; 
}
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-img-box img {
    transform: scale(1.1); 
    opacity: 1;
}
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-info-box {
    background: #000; 
    box-shadow: 8px 8px 0px #a3a3a3; 
    transform: translate(-4px, -4px);
}
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-card-title { color: #fff; }
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-card-desc { color: #ccc; }
.geo-v5-section .geo-card-wrapper .geo-gallery-card:hover .geo-explore-link {
    background: #c96b24;
    color: #000;
    border-color: #c96b24;
}
.geo-v5-section .geo-empty-state {
    background: #a3a3a3;
    border: 6px dashed #000;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 12px 12px 0px #000;
    margin: 40px auto;
    max-width: 600px;
}
.geo-v5-section .geo-empty-title {
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 10px;
}
.geo-v5-section .geo-empty-desc {
    color: #222;
    font-weight: 700;
    font-size: 16px;
}


/* ========================================================
   SECTION 3: Subtop Section (prop-main-product-section)
   ======================================================== */
.prop-main-product-section {
    background-color: #fff; 
    /* Subtle blueprint grid background using Gray */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}
.prop-main-product-section .project-two-shape-1 {
    opacity: 0.2;
    filter: grayscale(1);
}
.prop-main-product-section .prop-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}
.prop-main-product-section .prop-header-tag {
    background: #a3a3a3; /* Gray Accent */
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 4px 4px 0px #c96b24; /* Orange Shadow */
}
.prop-main-product-section .prop-main-title {
    color: #111;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 4px 4px 0px rgba(163, 163, 163, 0.3);
}
.prop-main-product-section .prop-product-card {
    display: block;
    text-decoration: none !important;
    margin-bottom: 80px;
    position: relative;
}
.prop-main-product-section .prop-product-img {
    border: 4px solid #a3a3a3; /* Gray Border */
    aspect-ratio: 4/3; 
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #111;
    box-shadow: -10px 10px 0px #c96b24; /* Orange Shadow on Frame */
    transition: all 0.4s ease;
}
.prop-main-product-section .prop-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s;
}
.prop-main-product-section .prop-product-info {
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Physical Overlap */
    margin-left: 30px;
    margin-right: -10px;
    background: #fff;
    border: 4px solid #a3a3a3; /* Gray Border */
    border-left: 8px solid #c96b24; /* Orange Accent Line */
    padding: 24px 20px;
    box-shadow: 10px 10px 0px #a3a3a3; /* Gray Shadow on Box */
    transition: all 0.3s ease;
}
.prop-main-product-section .prop-product-name {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.2;
    transition: color 0.3s;
}
.prop-main-product-section .prop-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #c96b24;
    text-transform: uppercase;
}
.prop-main-product-section .prop-product-card:hover .prop-product-img img {
    transform: scale(1.1);
    opacity: 1;
}
.prop-main-product-section .prop-product-card:hover .prop-product-img {
    box-shadow: -14px 14px 0px #111; /* Shadow turns black on frame */
}
.prop-main-product-section .prop-product-card:hover .prop-product-info {
    transform: translate(-4px, -4px);
    background: #111; /* Inverts to black */
    border-color: #111;
    box-shadow: 10px 10px 0px #c96b24; /* Shadow turns Orange on box */
}
.prop-main-product-section .prop-product-card:hover .prop-product-name,
.prop-main-product-section .prop-product-card:hover .prop-product-link {
    color: #fff;
}






/* ==========================================================================
   SUB-PRODUCT GALLERY STYLES (Neo-Brutalism Style)
   Sub Product page
   ========================================================================== */

.gallery-page {
    background-color: #c96b24; /* Core Brand Orange */
    /* GEOMETRIC GRID: Retro pattern using linear gradients */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.4) 2px, transparent 2px);
    background-size: 40px 40px;
    background-position: center;
    padding: 100px 0;
}

/* --- 1. Section Title --- */
.section-title__title {
    color: #fff;
    font-weight: 900;
    font-size: 52px;
    text-transform: uppercase;
    margin-bottom: 60px;
    /* Massive 3D Text Shadow Effect */
    text-shadow: 6px 6px 0px #a3a3a3, 8px 8px 0px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* --- 2. Gallery Card Structure --- */
.gallery-page__single {
    background: #fff;
    border: 4px solid #000;
    margin-bottom: 30px;
    position: relative;
    /* Hard Shadow: Gray layer + Black layer */
    box-shadow: 10px 10px 0px #a3a3a3, 14px 14px 0px #000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image Wrapper */
.gallery-page__img {
    position: relative;
    overflow: hidden;
    background: #000;
    border-bottom: 4px solid #000;
}

.gallery-page__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Icon (Plus Symbol) */
.gallery-page__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: 5;
    transition: all 0.3s ease;
}

.gallery-page__icon a {
    width: 60px;
    height: 60px;
    background: #c96b24;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 4px 4px 0px #000;
}

/* --- 3. Card Content Area --- */
.project-one__content {
    padding: 20px;
    background: #a3a3a3; /* Base Gray color */
    transition: background 0.3s ease;
}

.project-one__tag p {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-one__title {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

/* --- 4. Hover Effects --- */
.gallery-page__single:hover {
    transform: translateY(-10px); /* Lift card up */
    box-shadow: 14px 14px 0px #000, 18px 18px 0px #c96b24;
}

.gallery-page__single:hover .gallery-page__img img {
    transform: scale(1.1); /* Zoom image */
    opacity: 0.7;
}

.gallery-page__single:hover .gallery-page__icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-page__single:hover .project-one__content {
    background: #000; /* Invert content background to black */
}

.gallery-page__single:hover .project-one__title {
    color: #fff;
}

/* --- 5. Navigation Buttons --- */
.thm-btn {
    background: #a3a3a3;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    padding: 15px 35px;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.thm-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 4px 4px 0px #c96b24;
    transform: translate(2px, 2px);
}







/* ==========================================================================
   MAIN PRODUCT SECTION STYLES
   Design: Editorial Neo-Brutalism (Overlapping layers & Hard shadows)
   Home product section
   ========================================================================== */

.prop-main-product-section {
    background-color: #fff; 
    /* BLUEPRINT GRID: Subtle background pattern using low-opacity gray lines */
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Background floating shape styling */
.project-two-shape-1 {
    opacity: 0.2;
    filter: grayscale(1);
}

/* --- 1. Section Header --- */

.prop-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.prop-header-tag {
    background: #a3a3a3; /* Gray Accent */
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 4px 4px 0px #c96b24; /* Hard Orange Shadow */
}

.prop-headline {
    color: #111;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    /* Subtle 3D depth effect */
    text-shadow: 4px 4px 0px rgba(163, 163, 163, 0.3);
}

/* --- 2. Product Card (Editorial Overlap) --- */

.prop-product-card {
    display: block;
    text-decoration: none !important;
    margin-bottom: 80px;
    position: relative;
}

/* Image Container with hard-edge orange shadow */
.prop-product-img {
    border: 4px solid #a3a3a3; 
    aspect-ratio: 4/3; 
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #111;
    box-shadow: -10px 10px 0px #c96b24; 
    transition: all 0.4s ease;
}

.prop-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s;
}

/* Floating Content Box: Overlaps the image slightly */
.prop-product-info {
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Moves the box up into the image frame */
    margin-left: 30px;
    margin-right: -10px;
    background: #fff;
    border: 4px solid #a3a3a3; 
    border-left: 8px solid #c96b24; /* Bold Orange Accent Line */
    padding: 24px 20px;
    box-shadow: 10px 10px 0px #a3a3a3; 
    transition: all 0.3s ease;
}

.prop-product-name {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.2;
    transition: color 0.3s;
}

.prop-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #c96b24;
    text-transform: uppercase;
}

/* --- 3. Hover Interactions --- */

/* Card lifts and image zooms in */
.prop-product-card:hover .prop-product-img img {
    transform: scale(1.1);
    opacity: 1;
}

/* Image shadow changes color on hover */
.prop-product-card:hover .prop-product-img {
    box-shadow: -14px 14px 0px #111;
}

/* Content box pops out and inverts color */
.prop-product-card:hover .prop-product-info {
    transform: translate(-4px, -4px);
    background: #111; 
    border-color: #111;
    box-shadow: 10px 10px 0px #c96b24; 
}

/* Title and link turn white when background goes black */
.prop-product-card:hover .prop-product-name,
.prop-product-card:hover .prop-product-link {
    color: #fff;
}






/* ==========================================================================
   SERVICES MODULE - COMPLETE CSS
   Design Style: Neo-Brutalism (Hard edges, Bold shadows, High contrast)
   ========================================================================== */

/* ========================================================
   SECTION 1: SERVICE HOME PAGE (act=view)
   ======================================================== */
.prop-service-section-v3 {
    background-color: #fff;
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: center;
    padding: 100px 0 120px;
    overflow: hidden;
}

.prop-service-section-v3 .prop-header-center {
    text-align: center;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prop-service-section-v3 .prop-tag {
    background: #a3a3a3; 
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-bottom: 20px;
    display: inline-block;
    border: 3px solid #111;
}

.prop-service-section-v3 .prop-headline {
    color: #111;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-shadow: 5px 5px 0px rgba(163,163,163,0.4);
}

.prop-service-section-v3 .prop-header-divider {
    width: 100px;
    height: 8px;
    background: #c96b24; 
    margin-top: 24px;
    border: 2px solid #111;
}

.prop-service-section-v3 .service-row-item {
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.prop-service-section-v3 .prop-service-link {
    display: flex;
    width: 100%;
    text-decoration: none !important;
    position: relative;
}

.prop-service-section-v3 .prop-img-side {
    width: 60%;
    aspect-ratio: 16/10;
    border: 6px solid #a3a3a3;
    overflow: hidden;
    background: #111;
    z-index: 1;
    box-shadow: 18px 18px 0px #f4f4f4;
    transition: all 0.4s ease;
}

.prop-service-section-v3 .prop-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.8s ease;
}

.prop-service-section-v3 .prop-content-side {
    width: 50%;
    background: #fff;
    border: 5px solid #a3a3a3;
    border-top: 14px solid #c96b24;
    padding: 45px 40px;
    z-index: 5;
    box-shadow: 15px 15px 0px #a3a3a3;
    transition: all 0.3s ease;
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
}

.prop-service-section-v3 .service-row-item:nth-child(odd) .prop-content-side {
    right: 0;
    text-align: left;
}

.prop-service-section-v3 .service-row-item:nth-child(even) .prop-service-link {
    flex-direction: row-reverse;
}

.prop-service-section-v3 .service-row-item:nth-child(even) .prop-content-side {
    left: 0;
    text-align: right;
}

.prop-service-section-v3 .service-row-item:nth-child(even) .prop-explore-link {
    justify-content: flex-end;
    align-self: flex-end;
}

.prop-service-section-v3 .prop-service-title {
    font-size: clamp(16px, 5vw, 24px) !important; 
    font-weight: 900;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
    
    
    white-space: normal !important; 
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    display: block !important;
    width: 100% !important;
}

.prop-service-section-v3 .prop-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
    color: #c96b24;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.prop-service-section-v3 .prop-service-link:hover .prop-img-side { border-color: #111; }
.prop-service-section-v3 .prop-service-link:hover .prop-img-side img { transform: scale(1.08); opacity: 1; }
.prop-service-section-v3 .prop-service-link:hover .prop-content-side {
    background: #111; 
    border-color: #111;
    box-shadow: 15px 15px 0px #c96b24;
}
.prop-service-section-v3 .prop-service-link:hover .prop-service-title,
.prop-service-section-v3 .prop-service-link:hover .prop-explore-link { color: #fff; }
.prop-service-section-v3 .prop-service-link:hover .prop-explore-link svg { transform: translateX(10px); }

@media (max-width: 991px) {
    
    .prop-service-section-v3 .service-row-item {
        height: auto !important;
        margin-bottom: 60px !important;
        display: block !important; 
    }

    .prop-service-section-v3 .prop-service-link, 
    .prop-service-section-v3 .service-row-item:nth-child(even) .prop-service-link {
        flex-direction: column !important; 
        display: block !important;
    }

    
    .prop-service-section-v3 .prop-img-side {
        width: 100% !important;
        position: relative !important;
        margin-bottom: 0 !important;
    }

    
    .prop-service-section-v3 .prop-content-side {
        width: calc(100% - 20px) !important; 
        margin: -40px auto 0 !important; 
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        
        
        padding: 25px 15px !important; 
        text-align: center !important;
        box-sizing: border-box !important;
        
        
        height: auto !important; 
        min-height: 100px !important;
    }

    
    .prop-service-section-v3 .prop-service-title {
        font-size: 18px !important; 
        white-space: normal !important;
        overflow: visible !important;
        display: block !important;
    }
}

/* ========================================================
   SECTION 2: SERVICES CATEGORY LIST (act=details)
   Displays sub-categories in a 2-column cantilever grid
   ======================================================== */
.prop-service-cantilever-grid {
    background-color: #fff;
    background-image: 
        linear-gradient(rgba(163, 163, 163, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 163, 163, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    padding: 100px 0 180px;
    overflow: hidden;
}

.prop-service-cantilever-grid .prop-header-center {
    text-align: center;
    margin-bottom: 100px;
}

.prop-service-cantilever-grid .prop-tag {
    background: #a3a3a3; 
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.prop-service-cantilever-grid .prop-headline {
    color: #111;
    font-weight: 900;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 4px 4px 0px rgba(163,163,163,0.2);
}

.prop-service-cantilever-grid .prop-item-wrapper {
    margin-bottom: 120px;
}

/* Stagger Effect */
@media (min-width: 992px) {
    .prop-service-cantilever-grid .prop-item-wrapper:nth-child(2n) { 
        margin-top: 100px; 
    }
}

/* Base Link Wrapper */
.prop-service-cantilever-grid .prop-cantilever-card {
    display: block;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
}

/* Image Frame */
.prop-service-cantilever-grid .prop-img-box {
    border: 5px solid #111;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111;
    border-left: 8px solid #a3a3a3;
    border-top: 8px solid #a3a3a3;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.prop-service-cantilever-grid .prop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 1s ease, opacity 0.5s ease;
}

/* FIXED TEXT BOX: The core issue was here */
.prop-service-cantilever-grid .prop-info-box {
    background: #fff;
    border: 5px solid #111;
    padding: 25px !important;  /* Shrunk padding to fit 2 columns */
    margin-top: -50px !important; /* Pull up to overlap image */
    margin-left: 20px !important;
    margin-right: -10px !important;
    position: relative;
    z-index: 5;
    box-shadow: 10px 10px 0px #111 !important; 
    transition: all 0.3s ease;
    height: auto;
}

/* Typography Fixes */
.prop-service-cantilever-grid .prop-card-title {
    font-size: 22px;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
    white-space: normal !important;
    text-transform: uppercase;
}

.prop-service-cantilever-grid .prop-card-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Max 4 lines */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    white-space: normal !important;
}

.prop-service-cantilever-grid .prop-action-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #c96b24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Interactions */
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-img-box {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px rgba(163,163,163,0.1);
}
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-img-box img {
    transform: scale(1.1); 
    opacity: 1;
}
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-info-box {
    background: #111;
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px #c96b24 !important; 
}
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-card-title,
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-card-desc { 
    color: #fff; 
}
.prop-service-cantilever-grid .prop-cantilever-card:hover .prop-action-tag { 
    color: #c96b24; 
}

/* Utilities */
.prop-service-cantilever-grid .prop-footer-nav { 
    margin-top: 60px; 
    text-align: center; 
}
.prop-service-cantilever-grid .prop-back-btn {
    background: #fff; color: #111 !important; font-weight: 800; font-size: 14px; text-transform: uppercase;
    letter-spacing: 3px; padding: 18px 50px; border: 4px solid #111; box-shadow: 10px 10px 0px #a3a3a3;
    display: inline-block; transition: all 0.3s; text-decoration: none !important;
}
.prop-service-cantilever-grid .prop-back-btn:hover {
    background: #c96b24; color: #fff !important; border-color: #c96b24; box-shadow: 5px 5px 0px #111; transform: translate(5px, 5px);
}
.prop-service-cantilever-grid .prop-empty-notice {
    background: #fff; padding: 80px 40px; text-align: center; border: 1px solid #eee; box-shadow: 15px 15px 0px #c96b24; max-width: 700px; margin: 40px auto;
}

/* ========================================================
   SECTION 3: SERVICE GALLERY & DETAILS (act=sub)
   ======================================================== */
.prop-details-premium {
    background-color: #a3a3a3;
    position: relative;
    padding: 100px 0 160px;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(201, 107, 36, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 107, 36, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
}
.prop-details-premium::after {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: rgba(255,255,255,0.2); z-index: 0; animation: scanLine 8s linear infinite;
}
@keyframes scanLine { 0% { top: 0%; } 100% { top: 100%; } }

.prop-details-premium .prop-gallery-outer { position: relative; z-index: 2; }

.prop-details-premium .product-carousel-indicator {
    background: #111; color: #fff; padding: 10px 20px; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px; border-left: 8px solid #c96b24;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.1); margin-bottom: 30px; display: inline-block;
}

/* SAFETY NET: Prevent the frame from collapsing to 0 height */
.prop-details-premium .prop-main-frame {
    border: 6px solid #111; background: #111; box-shadow: 20px 20px 0px #c96b24, 35px 35px 0px #111;
    position: relative; overflow: hidden; margin-bottom: 30px;
    display: block !important; min-height: 236px; 
}

/* SAFETY NET: Force image visibility */
.prop-details-premium .product-gallery-item { 
    overflow: hidden; position: relative; 
    display: block !important; visibility: visible !important; opacity: 1 !important;
}
.prop-details-premium .product-gallery-item img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
    animation: kenBurnsDetail 20s infinite alternate ease-in-out;
}
@keyframes kenBurnsDetail { 0% { transform: scale(1); } 100% { transform: scale(1.15) translate(-1%, -1%); } }

.prop-details-premium .prop-stamp-badge {
    position: absolute; top: -20px; right: -20px; width: 90px; height: 90px;
    background: #c96b24; color: #fff; border: 4px solid #111; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    font-size: 10px; font-weight: 900; line-height: 1.1; z-index: 10;
    text-transform: uppercase; box-shadow: 5px 5px 0px #111; transition: transform 0.6s ease;
}
.prop-details-premium .prop-gallery-outer:hover .prop-stamp-badge { transform: rotate(45deg) scale(1.1); }

.prop-details-premium .product-thumbnails { display: flex; gap: 12px; margin-top: 20px; }
.prop-details-premium .product-thumb {
    width: 80px; border: 4px solid #111; cursor: pointer; transition: all 0.3s; background: #fff; box-shadow: 4px 4px 0px #111;
}
.prop-details-premium .product-thumb.active { border-color: #c96b24; transform: translateY(-5px); box-shadow: 4px 4px 0px #fff; }

/* Detail Text Box */
.prop-details-premium .prop-info-box {
    background: #fff; border: 6px solid #111; padding: 60px 45px;
    box-shadow: 20px 20px 0px #111; position: relative; z-index: 5;
}
@media (min-width: 992px) { .prop-details-premium .prop-info-box { margin-left: 30px; margin-top: 0; } }

.prop-details-premium .product-details__title {
    font-size: 32px; font-weight: 900; color: #111; text-transform: uppercase;
    line-height: 1; margin-bottom: 15px; text-shadow: 4px 4px 0px #a3a3a3;
}
.prop-details-premium .product-ref-tag {
    background: #111; color: #c96b24; font-size: 13px; font-weight: 800; padding: 6px 14px;
    display: inline-block; margin-bottom: 30px; border: 2px solid #c96b24;
}
.prop-details-premium .product-details__content-text1 {
    font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 40px;
    border-left: 8px solid #c96b24; padding-left: 25px;
}

/* Action Buttons */
.prop-details-premium .prop-btn {
    display: inline-flex; align-items: center; justify-content: center; font-weight: 900;
    font-size: 14px; text-transform: uppercase; letter-spacing: 2px; padding: 18px 35px;
    border: 4px solid #111; text-decoration: none !important; transition: all 0.3s; box-shadow: 8px 8px 0px #111; margin: 5px;
}
.prop-details-premium .prop-btn-back { background: #fff; color: #111; }
.prop-details-premium .prop-btn-whatsapp { background: #c96b24; color: #fff; }
.prop-details-premium .prop-btn:hover { transform: translate(3px, 3px); box-shadow: 0px 0px 0px #111; background: #111; color: #fff; border-color: #111; }








/* ========================================================
   SECTION 4: SERVICE HOME PAGE SUBTOP (display=subtop)
   ======================================================== */
.prop-every-step-interlock {
    background-color: #a3a3a3;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.08) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 2px, transparent 2px);
    background-size: 50px 50px;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.prop-every-step-interlock .prop-wrap {
    max-width: 1400px; margin: 0 auto; padding: 0 15px;
}

.prop-every-step-interlock .prop-header-content { margin-bottom: 80px; }
.prop-every-step-interlock .section-title__tagline {
    background: #c96b24; color: #fff !important; font-size: 13px; font-weight: 800;
    letter-spacing: 5px; text-transform: uppercase; padding: 10px 20px; display: inline-block;
    border: 3px solid #111; margin-bottom: 20px; box-shadow: 5px 5px 0px #111;
}
.prop-every-step-interlock .section-title__title {
    color: #111; font-weight: 900; font-size: 52px; line-height: 1; text-transform: uppercase;
    text-shadow: 4px 4px 0px #c96b24;
}

.prop-every-step-interlock .prop-interlock-box {
    display: flex; width: 100%; align-items: center; margin-top: 50px; position: relative;
}

.prop-every-step-interlock .prop-step-left {
    flex: 1; background: #c96b24; border: 6px solid #111; padding: 70px 60px; z-index: 10;
    box-shadow: 25px 25px 0px #111; margin-right: -120px; position: relative;
}
.prop-every-step-interlock .prop-step-left::after {
    content: ""; position: absolute; right: -20px; top: 40px; width: 40px; height: 80px;
    background: #111; border: 2px solid #c96b24; z-index: 11;
}

.prop-every-step-interlock .service-buttons {
    display: flex; flex-direction: column; gap: 12px; margin-top: 20px;
}

.prop-every-step-interlock .prop-service-tag {
    background: #fff; color: #111; font-size: 14px; font-weight: 800; text-transform: uppercase;
    padding: 14px 28px; border: 4px solid #111; text-decoration: none !important;
    transition: all 0.3s ease; box-shadow: 6px 6px 0px #111; display: inline-block; margin: 8px;
}
.prop-every-step-interlock .prop-service-tag:hover {
    background: #111; color: #fff; transform: translate(3px, 3px); box-shadow: 0px 0px 0px #fff;
}

.prop-every-step-interlock .prop-step-right {
    flex: 1.3; height: 650px; border: 6px solid #111; box-shadow: 30px 30px 0px #111;
    position: relative; z-index: 1; overflow: hidden; background: #111;
}
.prop-every-step-interlock .prop-step-right::before {
    content: ""; position: absolute; top: 30px; left: 30px; right: 30px; bottom: 30px;
    border: 1px solid rgba(255,255,255,0.15); z-index: 2; pointer-events: none;
}

.prop-every-step-interlock .overlap-accent-number {
    position: absolute; top: 50%; left: 0; transform: translateY(-50%); font-size: 200px;
    font-weight: 900; color: rgba(255, 255, 255, 0.1); line-height: 1; z-index: 5; pointer-events: none;
}

.prop-every-step-interlock .prop-img-inner {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    animation: kenBurnsSmooth 25s infinite alternate ease-in-out; transition: transform 1s ease;
}
@keyframes kenBurnsSmooth { 0% { transform: scale(1); } 100% { transform: scale(1.2) translate(-2%, -1%); } }
.prop-every-step-interlock .prop-step-right:hover .prop-img-inner { animation-play-state: paused; transform: scale(1.25) !important; }

@media (max-width: 991px) {
    .prop-every-step-interlock .prop-interlock-box { flex-direction: column; }
    .prop-every-step-interlock .prop-step-left { margin-right: 0; margin-bottom: -60px; padding: 40px; width: 100%; }
    .prop-every-step-interlock .prop-step-right { height: 450px; width: 100%; }
    .prop-every-step-interlock .overlap-accent-number { font-size: 100px; }
}






/* --- 1. DESIGN TOKENS --- 
        menubar navigation bar
*/
/* --- 1. DESIGN TOKENS --- */
:root {
    --brand-orange: #c96b24;
    --deep-black: #1a1a1a;
    --industrial-white: #ffffff;
    --ui-stroke: 3px;
    --header-height: 120px; 
}

/* --- 2. LAYOUT & CONTAINER --- */
.main-menu__wrapper .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 40px !important; 
}

.main-menu__wrapper {
    background-color: var(--industrial-white) !important;
    border-bottom: var(--ui-stroke) solid var(--deep-black) !important;
    height: var(--header-height) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    position: relative; 
    z-index: 999; 
}

.main-menu__wrapper-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
}

/* --- 3. LEFT SECTION & LOGO --- */
.main-menu__left {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important; 
    min-width: 0 !important; 
    height: 100%;
}

.main-menu__logo {
    flex-shrink: 0 !important;
    margin-right: 40px !important; 
    z-index: 10; 
}

.main-menu__logo img {
    height: 80px !important; 
    width: auto;
    display: block;
}

/* --- 4. DYNAMIC MENU BOX --- */
.main-menu__main-menu-box {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 100%;
    padding-right: 30px !important; 
}

.main-menu__list {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    height: var(--header-height);
    white-space: nowrap !important; 
}

.main-menu__list > li {
    position: relative;
    height: 100%; 
    display: flex;
    align-items: center;
}

.main-menu__list > li > a {
    color: var(--deep-black) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 14px !important; 
    letter-spacing: 1px;
    padding: 0 18px !important; 
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
    color: var(--brand-orange) !important;
}

/* --- 5. RIGHT SECTION (BUTTONS) --- */
.mobile-only-nav { display: none !important; } /* Hide in desktop */

.main-menu__right, .main-menu__call-search-btn-box, .main-menu__btn-box {
    display: flex !important;
    align-items: center !important;
}

.main-menu__btn {
    width: 50px !important;
    height: 50px !important;
    background: var(--industrial-white) !important;
    border: var(--ui-stroke) solid var(--deep-black) !important;
    color: var(--deep-black) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    box-shadow: 4px 4px 0px var(--brand-orange) !important;
    transition: 0.1s;
}

.btn-heart { border-right: none !important; }

.main-menu__btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--deep-black) !important;
    background-color: var(--brand-orange) !important;
    color: white !important;
}

/* --- 6. SUBMENU HOVER OVERRIDE --- */
.main-menu__list > li.dropdown > ul {
    display: block !important;
    background-color: var(--industrial-white) !important;
    border: var(--ui-stroke) solid var(--deep-black) !important;
    box-shadow: 6px 6px 0px var(--deep-black) !important;
    padding: 10px 0 !important;
    min-width: 220px !important;
    position: absolute !important;
    top: 100% !important; 
    left: 0 !important;
    z-index: 999 !important; 
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important; 
    transform: translateY(15px) !important; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.main-menu__list > li.dropdown:hover > ul {
    visibility: visible !important; opacity: 1 !important;
    pointer-events: auto !important; transform: translateY(0) !important; 
}

.main-menu__list > li.dropdown > ul > li > a:hover {
    background-color: #f0f0f0 !important; color: var(--brand-orange) !important;
}

.mobile-nav__toggler { display: none !important; } 




/* --- 7. RESPONSIVE QUERIES (Ultimate Centered UI) --- */
@media (max-width: 1024px) {
    .main-menu__wrapper { 
        height: 80px !important; 
        overflow: visible !important; 
        position: relative !important;
    }
    
    .main-menu__logo img { 
        height: 54px !important; 
        position: relative !important; 
        left: -30px !important;        
        display: block !important;
    }
    
    /* Hide desktop buttons only */
    .main-menu__right .main-menu__call-search-btn-box { 
        display: none !important; 
    }

    .main-menu__main-menu-box {
        position: static !important; 
    }

    /* Mobile Hamburger Button */
    .mobile-nav__toggler {
        display: flex !important;
        align-items: center; 
        justify-content: center;
        width: 42px !important; 
        height: 38px !important;
        padding : 16px !important;
        font-size: 18px !important;
        background: #ffffff !important;
        border: 2px solid var(--deep-black) !important;
        box-shadow: 3px 3px 0px var(--brand-orange) !important; 
        cursor: pointer;
        position: absolute !important;
        right: -12px !important; 
        top: 7px !important; 
        z-index: 10001 !important;
        margin: 0 !important; 
    }

    /* Mobile Dropdown Container */
    .main-menu__list { 
        position: absolute !important;
        top: 80px !important; 
        right: 0 !important; 
        width: 200px !important; 
        background-color: #ffffff !important; 
        border: var(--ui-stroke) solid var(--deep-black) !important;
        box-shadow: -6px 6px 0px var(--deep-black) !important; 
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        z-index: 10000 !important;
        visibility: hidden !important; 
        opacity: 0 !important;
        transform: translateY(10px) !important; 
        transition: all 0.3s ease !important;
    }

    .main-menu__main-menu-box:hover .main-menu__list,
    .main-menu__list.active {
        visibility: visible !important; 
        opacity: 1 !important;
        transform: translateY(0) !important; 
    }

    .main-menu__list > li { 
        width: 100% !important; 
        padding: 0px !important; 
        background-color: #ffffff !important; 
        border: none !important;
        margin: 0 !important;
        display: block !important;
    }

    /* 🌟 MAIN MENU LINKS (Center Aligned) */
    .main-menu__list > li > a { 
        display: flex !important;
        height: 45px !important; 
        padding: 0 35px !important; /* Leave some space for the arrow on the right */
        align-items: center !important; 
        justify-content: center !important; /* 🌟 Force horizontal center alignment */
        text-align: center !important;      /* 🌟 Force text center alignment */
        font-size: 12px !important; 
        font-weight: 700 !important;
        color: var(--deep-black) !important;
        border-bottom: 1px solid var(--brand-orange) !important; 
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important; /* Prepare for the arrow's absolute positioning */
    }

    .main-menu__list > li > a:hover {
        background-color: var(--brand-orange) !important;
        color: #ffffff !important;
    }

    /* --- 4.5 SUB-MENU (High Contrast Black & White Style) --- */
    body .main-menu__wrapper .main-menu__list > li.dropdown > ul {
        display: none !important; 
        position: relative !important; 
        width: 100% !important;
        /* 🌟 Pure white background */
        background-color: #ffffff !important; 
        padding: 5px 0 !important; 
        margin: 0 !important; 
        border: none !important;
        list-style: none !important; 
        
        top: 0 !important; 
        left: 0 !important;
        transform: none !important; 
        box-shadow: inset 0px 6px 8px -6px rgba(0,0,0,0.15) !important; 
        height: auto !important;
        z-index: 9999 !important;
    }

    body .main-menu__wrapper .main-menu__list > li.dropdown:hover > ul,
    body .main-menu__wrapper .main-menu__list > li.dropdown.active > ul,
    body .main-menu__wrapper .main-menu__list > li.dropdown.open > ul { 
        display: block !important;
    }

    body .main-menu__wrapper .main-menu__list > li.dropdown > ul > li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important; 
    }

    /* 🌟 SUB-MENU LINKS (Pure Black Text & Lines) */
    body .main-menu__wrapper .main-menu__list > li.dropdown > ul > li > a {
        display: flex !important;
        height: auto !important;
        min-height: 44px !important; 
        padding: 10px 20px !important; 
        align-items: center !important;
        justify-content: center !important; 
        text-align: center !important;      
        
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; 
        font-size: 13px !important;
        font-weight: 600 !important; /* Slightly bolder to match the black contrast */
        letter-spacing: 0.5px !important; 
        text-decoration: none !important; 
        
        /* 🌟 Pure black text */
        color: #000000 !important; 
        /* 🌟 Pure black divider line */
        border-bottom: 1px solid #d4af37 !important; 
        box-sizing: border-box !important;
        transition: all 0.2s ease-in-out !important; 
        background: transparent !important;
    }

    /* 🌟 Hover/Active Interaction */
    body .main-menu__wrapper .main-menu__list > li.dropdown > ul > li > a:hover,
    body .main-menu__wrapper .main-menu__list > li.dropdown > ul > li > a:active {
        /* Very light grey background so you can still feel the "click" */
        background-color: #f2f2f2 !important; 
        /* Keep the brand orange on hover for a pop of color */
        color: var(--brand-orange) !important; 
        font-weight: 700 !important; 
    }


    /* Utility Links (Testimonials/Contact) */
    .mobile-only-nav {
        display: block !important;
        background-color: #fffaf7 !important; 
    }

    .mobile-only-nav a { 
        color: var(--brand-orange) !important; 
        border-bottom: none !important;
    }

    /* Custom Arrow (Dropdown Indicators) Adjustment */
    .main-menu__list > li.dropdown > a::after {
        position: absolute !important;
        right: 15px !important; /* Arrow fixed to the far right */
        top: 50% !important;
        transform: translateY(-50%) !important; 
        
        content: "\f107" !important; 
        font-family: "Font Awesome 5 Free" !important;
        font-weight: 900 !important;
        font-size: 12px !important;
        color: var(--deep-black) !important; 
        transition: all 0.3s ease !important;
    }

    .main-menu__list > li.dropdown:hover > a::after,
    .main-menu__list > li.dropdown.active > a::after {
        color: #ffffff !important;
        transform: translateY(-50%) rotate(180deg) !important; 
    }
}




    
/* ============================================================
   Banner Sub Responsive (Word, Content Box)
   ============================================================ */
@media (max-width: 520px) {
    
    .ph-content-box {
        width: 100% !important;
        max-width: 450% !important;      
        padding: 25px 25px !important; 
        margin: 0 auto !important;
        display: block !important;
    }

    .ph-breadcrumb {
        display: flex !important;
        flex-wrap: nowrap !important;   
        gap: 10px !important;
        margin-bottom: 12px !important;
        overflow: hidden !important;
    }

    .ph-breadcrumb li, 
    .ph-breadcrumb li a {
        font-size: clamp(10px, 2.8vw, 14px) !important;
        white-space: nowrap !important;
    }

    .ph-content-box .ph-title {
        font-size: clamp(24px, 6vw, 40px) !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important; 
    }
}

@media (max-width: 989px) {
    .main-slider .swiper-slide .main-slider__content {
        width: 81% !important;
        max-width: 752px !important;
        height: 81vh !important;
        padding-top: 26px !important;
        padding-bottom: 23px !important;
        padding-left: 23% !important;
        padding-right: 23% !important;
        box-sizing: border-box !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        background-color: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid #ffffff !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        align-items: center;
        text-align: center;
        z-index: 10;
        margin: 0 !important;
    }
    
    .main-slider__title {
        font-size: 23px !important;    
    }
        
    .main-slider__sub-title {
        font-size: 12px !important;    
    }
}









/* --- Fix for the oversized Logo carousel on mobile and tablet --- */

    
    /* 1. Control the orange background */
    .brand-two {
        padding-top: 40px !important;    /* Give some breathing room at the top */
        padding-bottom: 40px !important; /* Give some breathing room at the bottom */
        height: 200px !important;         
        min-height: 0 !important;        
    }

    /* 2. ONLY set the height of the slide. 
       Do NOT use flexbox here to protect Swiper's internal calculations! */
    .brand-two .swiper-slide {
        height: 120px !important; 
        text-align: center !important; /* Basic horizontal centering */
    }

    /* 3. Make the <a> tag handle the flexbox centering instead */
    .brand-two .swiper-slide a {
        display: flex !important;
        align-items: center !important;      /* Vertically center the Logo */
        justify-content: center !important;  /* Horizontally center the Logo */
        width: 100% !important;
        height: 100% !important;
    }

    /* 4. Constrain image dimensions to prevent distortion */
    .brand-two .swiper-slide img {
        max-height: 80px !important; /* Limit the maximum height */
        max-width: 100% !important;  /* Prevent horizontal overflow */
        width: auto !important;      
        object-fit: contain !important; 
    }

