* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    /* ============================================
     Color Palette
     ============================================ */
    --devstren-color-primary: #CE440B;
    --devstren-color-primary-hover: #FF4B00;
    --devstren-color-primary-2: #FF6500;
    --devstren-dark: #000000;

    /* ============================================
     Typography Colors
     ============================================ */
    --devstren-color-text-light: #FFFFFF;
    --devstren-color-text-muted: #A1A1A1;
    --devstren-color-form-muted: #AAAAAA;
    --devstren-color-form-muted-2: #484848;
    --devstren-color-form-border: #747474;
    --devstren-color-overlay: #0000008F;
    --devstren-form-blur: 34.11px;


    /* ============================================
     Font Families
     ============================================ */
    --devstren-font-primary: 'Inter', 'Segoe UI', Roboto, sans-serif;
    --devstren-font-heading: 'Apfel Grotezk', sans-serif;

    /* ============================================
     Font Sizes (Responsive Scale)
     ============================================ */
    --devstren-font-h1: 140px;
    --devstren-font-h2: 64px;
    --devstren-font-slider-h: 45px;
    --devstren-font-scroll: 340px;
    --devstren-font-p: 20px;
    --devstren-font-slider-number: 100px;
    --devstren-font-card: 40px;
    --devstren-font-article: 30px;
    --devstren-font-footer-link: 46px;
    --devstren-who-font: 27px;
    --devstren-breaking-font: 90px;
}

span,
div,
p,
body {
    font-family: var(--devstren-font-primary);
    font-weight: 500;
    /* font-size: 40px; */
    letter-spacing: -1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--devstren-font-heading);
    font-weight: 400;
    letter-spacing: 0;
}

h1 {
    font-size: var(--devstren-font-h1);
}

h2 {
    font-size: var(--devstren-font-h2);
}

body {
    background-color: var(--devstren-dark);
    color: var(--devstren-color-text-light);
    width: 100%;
    overflow-x: hidden;
}

.devstren-btn-primary {
    background-color: var(--devstren-color-primary);
    border-radius: 0;
    font-size: var(--devstren-font-p);
    font-weight: 600;
    transition: background-color 0.3s ease;
    letter-spacing: 0;
}

.devstren-btn-primary:hover {
    background-color: var(--devstren-color-primary-hover);
}

.devstren-btn-secondary {
    background: transparent;
    border: 1px solid white;
    font-size: var(--devstren-font-p);
    letter-spacing: 0;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.devstren-btn-secondary:hover {
    background: var(--devstren-dark);
    color: var(--devstren-color-text-light);
}

/* Chrome, Edge, Safari & Opera Support (Webkit) */
::-webkit-scrollbar {
    width: 15px;
    /* Vertical Scrollbar Width */
    height: 15px;
    /* Horizontal Scrollbar Height */
}

/* Track (Background Area) */
::-webkit-scrollbar-track {
    background: var(--devstren-dark);
    border-radius: 0px;
}

/* Thumb (Draggable Bar) */
::-webkit-scrollbar-thumb {
    background: var(--devstren-color-primary-hover);
    border-radius: 0px;
    border: 0px;
    transition: background 0.3s ease;
}

/* header */
.devstren-header {
    z-index: 1;
    position: relative;
}

.devstren-header nav#main-nav {
    background: #000000a3 !important;
    backdrop-filter: blur(10px);
}

.devstren-custom-toggle .navbar-toggler {
    padding: 0px;
    border: none;
}

.devstren.offcanvas .btn-close:focus,
.devstren-custom-toggle .navbar-toggler:focus {
    box-shadow: none;
}

.devstren.offcanvas .btn-close {
    width: 0.8em !important;
    height: 0.8em !important;
}

.devstren-custom-toggle .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='35' height='26' viewBox='0 0 35 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='1' x2='35' y2='1' stroke='white' stroke-width='2'/%3E%3Cline y1='13' x2='35' y2='13' stroke='white' stroke-width='2'/%3E%3Cline y1='25' x2='35' y2='25' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.devstren.offcanvas {
    height: 100vh;
    width: 100% !important;
    margin: 0 !important;
    background: linear-gradient(349deg, black, var(--devstren-color-primary));
}

.devstren.offcanvas .nav-link {
    font-size: 90px;
    text-transform: uppercase;
    line-height: 1;
}

body:has(.offcanvas.show) {
    padding-right: 0 !important;
}

/* header */

/* ---------- HERO CONTENT ---------- */
#frame-section {
    position: relative;
    z-index: 1;
}

.frame-section .container {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

section#frame-section:before {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    content: '';
    background: #0000003b;
    top: 0%;
}

section#frame-section:after {
    position: absolute;
    width: 100%;
    height: 200px;
    z-index: 0;
    content: '';
    background: linear-gradient(0deg, #D4470D 0%, transparent 95%);
    top: 90%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.hero-copy {
    position: absolute;
    top: 25%;
    left: 0;
    z-index: 15;
    max-width: 660px;
}

.hero-copy h1 {
    font-size: var(--devstren-font-h2);
    line-height: 1;
}

.poly-card {
    position: absolute;
    top: 25%;
    left: calc(50% - 112px);
    transform-origin: center top;
    width: 224px;
    background: #fff;
    padding: 10px 10px 14px;
    border-radius: 0;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    z-index: 16;
    will-change: transform;
}

.hero-copy,
.hero-side-copy,
.big-word {
    will-change: transform, opacity;
}

.poly-card img {
    width: 100%;
    display: block;
    min-height: 200px;
    height: 100%;
    object-fit: cover;
    background: #333;
}

.poly-card p {
    color: var(--devstren-dark);
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 20px 0px 0px 0px;
}

.hero-side-copy {
    position: absolute;
    top: 25%;
    right: 0px;
    max-width: 360px;
    z-index: 15;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-align: left;
}

.big-word {
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
    height: auto;
    z-index: 12;
    text-align: center;
    pointer-events: none;
    overflow: visible;
    transform: translate(0%, 0%) !important;
}

.big-word h2 {
    font-weight: 400;
    font-style: normal;
    font-size: var(--devstren-font-scroll);
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    white-space: nowrap;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 48px;
    z-index: 16;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-hint .line {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
    position: relative;
}

.scroll-hint .line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.fade-target {
    opacity: 0;
}

@media (max-width: 900px) {
    .hero-copy {
        top: 96px;
        left: 20px;
        max-width: 72%;
    }

    .hero-side-copy {
        display: none;
    }

    .poly-card {
        top: auto;
        bottom: 120px;
        left: 20px;
        width: 168px;
    }

    .poly-card img {
        height: 112px;
    }

    .scroll-hint {
        right: 20px;
        bottom: 20px;
    }
}

/* my css services slider */
/* ============================================
   Storytelling Pin Section
   ============================================ */

.devstren-who-we-are {
    background-color: var(--devstren-dark);
    overflow: hidden;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -100vh;
    z-index: 2;
}

.devstren-testimonials-pinned:after,
.devstren-testimonials-pinned:before,
.devstren-demolition-services:after,
section.devstren.devstren-who-we-are.position-relative:before,
section.devstren.devstren-who-we-are.position-relative:after {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1200px;
    background-image: url('http://demolition-inc.com/wp-content/uploads/2026/08/Group-12-1.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: -1;
}

.devstren-testimonials-pinned:after,
section.devstren.devstren-who-we-are.position-relative:after {
    top: -210px;
    left: -200px;
    animation-name: shadowft;
}

.devstren-testimonials-pinned:before,
section.devstren.devstren-who-we-are.position-relative:before {
    bottom: -90px;
    right: -400px;
    transform: rotate(298deg);
    animation-name: shadowsd;
}

@keyframes shadowft {
    0% {
        margin-top: 0px;
    }

    50% {
        margin-top: 100px;
    }

    100% {
        margin-top: 0px;
    }
}

@keyframes shadowsd {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 100px;
    }

    100% {
        margin-bottom: 0px;
    }
}

.devstren-pin-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Watermark Text */
.devstren-watermark-text {
    font-family: var(--devstren-font-heading);
    font-size: 300px;
    font-weight: 400;
    white-space: nowrap;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
    line-height: 0.7;
    background: linear-gradient(to bottom, white -130%, black 85%) !important;
    -webkit-background-clip: text !important;
    color: transparent;
}

.devstren-frame-content {
    top: 0;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0%);
}

/* Frame 1 Typography & Controls */
.devstren-eyebrow {
    color: var(--devstren-color-primary);
    font-size: var(--devstren-font-p);
    font-weight: 600;
}

.devstren-about-lead,
.devstren-about-lead .word {
    font-size: var(--devstren-who-font) !important;
    color: var(--devstren-color-text-light);
    line-height: 1;
    font-weight: 400 !important;
}

.devstren-about-desc {
    font-size: var(--devstren-font-article);
    color: var(--devstren-color-text-muted);
    line-height: 1;
}

/* Side Floating Cards */
.devstren-card-left {
    left: 0;
    bottom: -130%;

    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    padding: 10px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: space-between;
    min-width: 155px;
}

.devstren-card-right {
    right: 0;
    bottom: -200%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    padding: 10px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: space-between;
    min-width: 155px;
}

.devstren-card-plus {
    color: var(--devstren-color-primary);
    font-size: 32px;
    display: block;
    line-height: 1;
}

.devstren-card-label {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Morphing Central Image Box */
.devstren-hero-image-wrapper {
    position: absolute;
    width: 480px;
    height: 380px;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.devstren-hero-image-wrapper .devstren-hero-img {
    object-fit: cover;
}

.devstren-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

/* Final Overlay Content Styles */
.devstren-final-overlay {
    height: 100vh;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    /* Controlled via GSAP */
}

.devstren-tag {
    font-size: var(--devstren-font-p);
    color: var(--devstren-color-text-light);
    letter-spacing: 1px;
    font-weight: 200;
}

.devstren-final-heading {
    font-size: var(--devstren-font-h2);
    color: var(--devstren-color-text-light);
    line-height: 1.1;
    font-weight: 400;
}

/* Feature Cards (Frame 4) */
.devstren-feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 0;
    min-height: 280px;
    padding: 20px;
}

.devstren-card-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.devstren-card-num,
.devstren-feature-title {
    font-family: var(--devstren-font-primary);
    font-size: var(--devstren-font-p);
    color: #ffffff;
    font-weight: 400;
}

.devstren-feature-desc {
    font-size: 12px;
    color: var(--devstren-color-text-muted);
    line-height: 1.4;
}

.devstren-about-lead>.word {
    opacity: 0.3;
}

/* ============================================
   Demolition Services Section Styles
   ============================================ */
.devstren-demolition-services {
    background: var(--devstren-dark);
}

.devstren-horizontal-wrapper {
    width: 100%;
}

.devstren-demolition-services:after {
    top: -300px;
    left: -300px;
}

.devstren-horizontal-track {
    gap: 40px;
    padding-left: 10vw;
    padding-right: 10vw;
    will-change: transform;
}

.devstren-card-item {
    width: 75vw;
    max-width: 1050px;
}

.devstren-service-card {
    background-color: #ffffff;
    color: #000000;
    min-height: 480px;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: pointer;
    padding: 35px;
}

.devstren-service-card svg rect {
    fill: black;
    transition: fill 0.4s ease;
}

.devstren-slide-num {
    font-family: var(--devstren-font-heading);
    font-size: var(--devstren-font-slider-number);
    line-height: 1;
    font-weight: 400;
}

.devstren-card-title {
    font-size: var(--devstren-font-slider-h);
    line-height: 1;
    text-transform: uppercase;
}

.devstren-card-desc {
    font-size: var(--devstren-font-p);
    line-height: 1.4;
    font-weight: 300;
}

.devstren-card-img-wrapper img {
    width: 400px;
    height: 400px;
    border-radius: 4px;
    object-fit: cover;
}

/* Active (Orange Theme) */
.devstren-card-item.is-active .devstren-service-card svg rect {
    fill: white;
}

.devstren-card-item.is-active .devstren-service-card {
    background-color: var(--devstren-color-primary) !important;
    color: var(--devstren-color-text-light) !important;
}

@media (max-width: 768px) {
    .devstren-card-item {
        width: 85vw;
    }

    .devstren-horizontal-track {
        gap: 20px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}


/* ============================================
   Demanding Demolition Projects Section
   ============================================ */

.devstren-demanding-projects {
    background: url('../images/bg-excavator-site.png') no-repeat center center / cover;
    background-color: var(--devstren-dark);
    min-height: 800px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Typography Customizations */
.devstren-subtitle {
    font-family: var(--devstren-font-primary);
    font-size: var(--devstren-font-p);
    color: var(--devstren-color-text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.devstren-heading {
    line-height: 1.05;
    letter-spacing: -1px;
}

.devstren-text {
    font-family: var(--devstren-font-primary);
    font-size: var(--devstren-font-p);
    color: var(--devstren-color-text-muted);
    line-height: 1.5;
}


.devstren-btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: var(--devstren-font-primary);
    font-size: var(--devstren-font-p);
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.devstren-btn-outline:hover {
    border-color: var(--devstren-color-text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Polaroid Card Frame */
.devstren-polaroid-card {
    padding-bottom: 100px !important;
    transition: transform 0.4s ease;
}

.devstren-polaroid-card:hover {
    transform: rotate(5deg) !important;
}

.devstren-card-img-holder img {
    max-height: 480px;
    object-position: center;
    object-fit: cover;
}


/* ============================================
   Breaking Down Section Styles
   ============================================ */
.devstren-breaking-down {
    background-color: var(--devstren-dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Machinery Cutout Position */
.devstren-machinery-arm {
    width: 380px;
    max-width: 35vw;
    left: -50px !important;
    pointer-events: none;
    z-index: 1;
}

.devstren-machinery-arm img {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.8));
}

/* Headline Styling */
.devstren-main-headline {
    font-family: var(--devstren-font-heading);
    color: var(--devstren-color-text-light);
    line-height: 0.95;
    letter-spacing: -2px;
    font-size: var(--devstren-font-h1);
    font-weight: 400;
}

.devstren-main-headline span {
    font-size: var(--devstren-font-h1);
    font-weight: 400;
}

.devstren-headline-highlight {
    font-family: var(--devstren-font-heading);
    font-size: var(--devstren-font-h1);
    line-height: 0.95;
    background: linear-gradient(to right, #CE440B 40%, #000000 100%) !important;
    -webkit-background-clip: text !important;
    color: transparent;
}

.devstren-headline-highlight .devstren-text-orange {
    font-family: var(--devstren-font-heading);
    font-weight: 400;
}

.devstren-headline-highlight svg {
    height: 130px;
    width: 60px;
}

.devstren-text-orange {
    color: var(--devstren-color-primary);
}

/* Graphic Badges & Arrow Boxes */
.devstren-distressed-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Side Text */
.devstren-side-paragraph {
    font-family: var(--devstren-font-primary);
    font-size: 15px;
    color: var(--devstren-color-text-muted);
    line-height: 1.5;
    max-width: 380px;
}

/* Estimate Link */
.devstren-estimate-link {
    font-family: var(--devstren-font-primary);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.devstren-estimate-link:hover {
    color: var(--devstren-color-primary) !important;
}

.devstren-estimate-link:hover .devstren-link-arrow {
    transform: translateX(6px);
}

/* Bottom Right Preview Thumbnail */
.devstren-preview-card {
    max-width: 240px;
    transition: transform 0.4s ease;
}

.devstren-preview-card:hover {
    transform: scale(1.05) rotate(1deg);
}

.devstren-truck-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

/* Ambient Orange Glow Behind Headline */
.devstren-ambient-glow {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(206, 68, 11, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* ============================================
   Project Showcase Slider Styles
   ============================================ */

.devstren-project-showcase {
    padding: 5rem 0;
    overflow: hidden;
    background-color: var(--devstren-dark, #0d0d0d);
}

/* Header Alignment */
.project-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-showcase-subtitle {
    color: var(--devstren-color-primary, #ce440b);
    font-size: var(--devstren-font-p, 1rem);
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.project-showcase-title {
    max-width: 570px;
}

.project-showcase-title h2 {
    line-height: 0.95;
    text-align: right;
    font-family: var(--devstren-font-heading, sans-serif);
    color: var(--devstren-color-text-light, #ffffff);
    font-size: var(--devstren-font-h2, 2.75rem);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Swiper Mechanics */
.project-showcase-slider {
    overflow: visible !important;
}

.project-showcase-slider .swiper-wrapper {
    align-items: flex-start;
}

.project-showcase-slider .swiper-slide {
    width: clamp(280px, 32vw, 571px);
    height: auto;
}

/* Smooth Polaroid Hover Effect (No Layout Jump) */
.project-polaroid {
    position: relative;
    background: transparent;
    padding: 0;
    transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
    box-sizing: border-box;
}

.project-polaroid-image {
    aspect-ratio: 571 / 626;
    overflow: hidden;
    width: 100%;
}

.project-polaroid-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.devstren-project-showcase .project-polaroid:hover {
    background: #ffffff;
    padding: 1.25rem 1.25rem 90px 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.devstren-project-showcase .project-polaroid:hover img {
    transform: scale(1.03);
}

/* ============================================
   Testimonial Pinned Section Styles
   ============================================ */

.devstren-testimonials-pinned {
    background-color: var(--devstren-dark, #0d0d0d);
    height: 100vh;
    width: 100%;
}

/* Orange Glow Effect */
.glow-bg {
    background: radial-gradient(circle, rgba(206, 68, 11, 0.45) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px);
}

/* Center Heading Styling */
.section-title {
    line-height: 1;
    letter-spacing: -0.02em;
    font-size: var(--devstren-font-h1);
    z-index: -1;
    position: relative;
}

.section-title .highlight-text {
    color: var(--devstren-color-primary);
}

/* Glassmorphism Testimonial Cards */
.devstren-card {
    position: absolute;
    width: 320px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.card-text {
    font-size: var(--devstren-font-p);
    line-height: 1;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.stars {
    color: var(--devstren-color-primary, #ce440b);
    font-size: var(--devstren-font-p);
    letter-spacing: 2px;
}

.avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: var(--devstren-font-p);
    color: var(--devstren-color-primary, #ce440b);
    letter-spacing: 0.05em;
}

.author-role {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    font-weight: 100;
    line-height: 1;
}

/* Initial Layout Positions for Desktop */
.card-1 {
    top: 8%;
    left: 4%;
}

.card-2 {
    bottom: 8%;
    left: 18%;
}

.card-3 {
    top: 32%;
    right: 5%;
}

.card-4 {
    bottom: -10%;
    right: 15%;
}

/* Mobile Adaptations */
@media (max-width: 991px) {
    .devstren-testimonials-pinned {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }

    .devstren-card {
        position: relative;
        width: 100%;
        margin-bottom: 1.5rem;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }

    .testimonial-cards-container {
        position: relative !important;
        padding: 0 1.5rem;
        height: auto !important;
    }
}

/* ============================================
   Service Area Section Styles
   ============================================ */

.devstren-service-area {
    padding: 5rem 0 0 0;
    background-color: var(--devstren-dark, #0d0d0d);
    overflow: hidden;
}

.service-area-heading h2 {
    line-height: 1.1;
    font-family: var(--devstren-font-heading, sans-serif);
    color: var(--devstren-color-text-light, #ffffff);
    font-size: var(--devstren-font-h2, 2.5rem);
}

/* Service Area Badges Flexbox */
.service-area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.service-area-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background-color: var(--devstren-dark-card, #242424);
    color: var(--devstren-color-text-light, #ffffff);
    padding: 0.85rem 1.75rem;
    font-size: var(--devstren-service-font, 0.95rem);
    font-family: var(--devstren-font-primary, sans-serif);
    font-weight: 500;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-area-item:hover {
    background-color: #2e2e2e;
    transform: translateY(-2px);
}

/* Location Pin SVG Icon */
.service-area-item::before {
    content: "";
    flex-shrink: 0;
    width: 1.15rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--devstren-color-primary, #f36d21);
    background-image: url('data:image/svg+xml,<svg width="11" height="14" viewBox="0 0 11 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.26237 0C2.35604 0 0 2.63289 0 5.59127C0 8.52647 1.67957 11.7169 4.30006 12.9418C4.91094 13.2273 5.6138 13.2273 6.22468 12.9418C8.84518 11.7169 10.5247 8.52647 10.5247 5.59127C10.5247 2.63289 8.1687 0 5.26237 0ZM5.26237 6.57796C5.98895 6.57796 6.57797 5.98895 6.57797 5.26237C6.57797 4.53579 5.98895 3.94678 5.26237 3.94678C4.53579 3.94678 3.94678 4.53579 3.94678 5.26237C3.94678 5.98895 4.53579 6.57796 5.26237 6.57796Z" fill="%23FFFFFE"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

/* Map Frame Responsiveness */
.service-map-frame {
    width: 100%;
    aspect-ratio: 1920 / 564;
    min-height: 350px;
    position: relative;
}

.service-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Recent Articles Section Styles
   ============================================ */

.devstren-recent-articles {
    padding: 5rem 0;
    background-color: var(--devstren-dark, #0d0d0d);
}

.recent-articles-heading h2 {
    margin: 0;
    line-height: 1.1;
    color: var(--devstren-color-text-light, #ffffff);
    font-family: var(--devstren-font-heading, sans-serif);
    font-size: var(--devstren-font-h2, 2.5rem);
}

.recent-articles-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.recent-articles-wrapper {
    padding-top: 3rem;
}

/* Featured Article Card */
.article-card-featured {
    background: var(--devstren-color-text-light);
    padding: 1rem;
    border-radius: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card-featured .article-card-image {
    overflow: hidden;
    border-radius: 0px;
}

.article-card-featured .article-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-featured:hover .article-card-image img {
    transform: scale(1.03);
}

.article-card-featured .article-card-content {
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-featured h3 {
    font-size: var(--devstren-font-article);
    line-height: 1.2;
    color: var(--devstren-dark);
    margin-bottom: 0.75rem;
}

.article-card-featured p {
    line-height: 1;
    color: var(--devstren-dark);
    margin-bottom: 0;
}

/* Link Styling */
.article-card-link {
    display: inline-block;
    color: var(--devstren-color-primary, #f36d21);
    text-decoration: underline;
    text-decoration-color: var(--devstren-color-primary, #f36d21);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    font-size: var(--devstren-font-p);
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
}

.article-card-link:hover {
    color: var(--devstren-color-primary-hover, #ffffff);
}

/* Right Column & Horizontal Cards */
.recent-articles-right {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-card-horizontal {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-card-last {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.article-card-horizontal .article-card-image {
    overflow: hidden;
    border-radius: 2px;
}

.article-card-horizontal .article-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-horizontal:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-horizontal .article-card-content {
    display: flex;
    flex-direction: column;
    align-self: start;
}

.article-card-horizontal h3 {
    font-family: var(--devstren-font-article);
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--devstren-color-text-light, #ffffff);
    margin: 0 0 0.5rem;
}

.article-card-horizontal p {
    line-height: 1.5;
    color: var(--devstren-color-text-muted, #aaaaaa);
    margin: 0 0 0.75rem;
}

/* ============================================
   Clearance CTA Section Styles
============================================ */
.devstren-clearance {
    background: var(--devstren-color-primary);
    margin-top: 5rem;
    overflow: hidden;
    min-height: 500px;
    height: 500px;
}

.devstren-clearance .container {
    position: relative;
    z-index: 1;
}

.clearance-logo img {
    max-width: 88px;
    height: auto;
}

.clearance-content {
    position: relative;
    z-index: 1;
}

.clearance-content h2 {
    color: var(--devstren-color-text-light);
    font-size: var(--devstren-font-h2);
    line-height: 1;
    margin-bottom: 12px;
}

.clearance-image {
    max-width: 700px;
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0px;
    bottom: -10px;
    z-index: 0;
}

.clearance-image img {
    display: block;
    height: 100%;
    width: auto;
}

/* ============================================
   Footer Section Styles
============================================ */
.devstren-footer {
    background-color: var(--devstren-dark);
    background-image: url("http://demolition-inc.com/wp-content/uploads/2026/08/footer-shadow.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding: 100px 0 0;
    overflow: hidden;
}


.footer-title {
    color: var(--devstren-color-primary);
    font-size: var(--devstren-font-p);
    letter-spacing: 0;
    margin-bottom: 15px !important;
    display: inline-block;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-list a {
    text-decoration: none;
    color: var(--devstren-color-form-muted-2);
    transition: .3s;
    font-weight: 400;
    font-size: var(--devstren-font-footer-link);
}

.footer-list a:hover {
    color: var(--devstren-color-text-light);
}

.footer-text {
    color: var(--devstren-color-text-light);
    font-size: var(--devstren-font-p);
    line-height: 1.45;
    margin: 0;
}

.footer-project-text {
    font-size: var(--devstren-font-p);
}

.footer-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #575757;
    padding-bottom: 12px;
}

.footer-form .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--devstren-color-text-light);
    padding: 0;
    font-size: var(--devstren-font-p);
}

.footer-form .form-control::placeholder {
    color: var(--devstren-color-text-light);
    opacity: 1;
}

.footer-form .form-control:focus {
    background: transparent;
    color: var(--devstren-color-text-light);
    box-shadow: none;
}

.footer-form .devstren-btn-primary {
    min-width: 140px;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid var(--devstren-color-text-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--devstren-color-text-light);
    font-size: var(--devstren-font-p);
    margin: 0;
}

.watermark {
    font-size: clamp(22rem, 7vw, 4rem) !important;
    text-align: center;
    line-height: 1;
    opacity: 0.2;
    color: transparent;
    background: linear-gradient(45deg, #CE440B, transparent);
    -webkit-background-clip: text;
}

div#wrapper-footer {
    padding-bottom: 0px;
}
