:root {
            --font-pro: 'Glacial Indifference', var(--font-main), sans-serif;
            --color-pro-green: #486937;
            --color-pro-green-light: #82bd59;
            --color-pro-dark: #181b31;
            --color-pro-gray: #808291;
            --color-cyan-tint: rgba(67, 206, 216, 0.15);
        }

        body {
            font-family: var(--font-pro);
            font-weight: 400;
            line-height: 1.5;
            font-size: 18px;
            color: var(--color-pro-gray);
            background-color: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-pro);
            color: var(--color-pro-dark);
            margin-top: 0;
        }

        h1, .h1 { font-weight: 700; line-height: 1.111em; font-size: 72px; }
        h2, .h2 { font-weight: 700; line-height: 1.111em; font-size: 36px; }
        h3, .h3 { font-weight: 700; line-height: 1.25em; font-size: 30px; }
        /* 1. Services Hero Banner (Full Viewport Sunset Sky) */
        .pro-srv-hero {
            position: relative;
            min-height: 100vh;
            min-height: 100dvh;
            height: 100vh;
            height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: url('../images/Testimonials_bg-min.jpg') center center / cover no-repeat;
            padding: 120px 0 60px;
            overflow: hidden;
        }

        .pro-srv-hero-overlay {
            display: none;
        }

        .pro-srv-hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
            color: #ffffff;
            padding-left: 20px;
        }

        .pro-srv-hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.01em;
            color: #ffffff;
            margin-bottom: 24px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
        }

        .pro-srv-hero-desc {
            font-size: 17.5px;
            line-height: 1.6;
            color: #ffffff;
            max-width: 580px;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
        }

        @media (max-width: 991px) {
            .pro-srv-hero {
                min-height: 100vh;
                min-height: 100dvh;
                height: 100vh;
                height: 100dvh;
                padding: 120px 0 60px;
                background-position: center center;
            }

            .pro-srv-hero-title {
                font-size: 42px;
                line-height: 1.15;
            }

            .pro-srv-hero-desc {
                font-size: 16px;
                line-height: 1.55;
            }
        }

        /* 2. Top Our Services 3-Columns Section (Matches sample site 1:1) */
        .pro-top-services {
            padding: 95px 0 100px;
            background-color: var(--color-cyan-tint);
        }

        .pro-section-title-center {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: var(--color-pro-dark);
            text-transform: uppercase;
            margin-bottom: 65px;
            letter-spacing: 0.02em;
        }

        .pro-top-srv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }

        .pro-top-srv-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 15px;
            transition: transform 0.35s ease;
        }

        .pro-top-srv-item:hover {
            transform: translateY(-6px);
        }

        .pro-top-srv-icon-holder {
            width: 100%;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            transition: transform 0.35s ease;
        }

        .pro-top-srv-icon-holder img {
            max-height: 90px;
            max-width: 110px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .pro-top-srv-item:hover .pro-top-srv-icon-holder {
            transform: scale(1.06);
        }

        .pro-top-srv-item h3 {
            font-family: var(--font-pro);
            font-size: 19px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--color-pro-dark);
            margin: 0;
            letter-spacing: 0.04em;
            line-height: 1.35;
        }

        /* 3. Deep Dive Section 1: Rebar Placing Drawings */
        .pro-deep-section {
            padding: 95px 0 100px;
        }

        .pro-bg-light {
            background-color: #f7f9fb;
        }

        .pro-bg-cyan {
            background-color: var(--color-cyan-tint);
        }

        .pro-bg-white {
            background-color: #ffffff;
        }

        .pro-two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 50px;
        }

        .pro-two-col-grid.reverse {
            grid-template-columns: 1.15fr 1fr;
        }

        .pro-two-col-img-frame {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 16px 45px rgba(24, 27, 49, 0.09);
        }

        .pro-two-col-img-frame img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .pro-two-col-img-frame:hover img {
            transform: scale(1.03);
        }

        .pro-deep-heading {
            font-size: 36px;
            font-weight: 700;
            text-transform: capitalize;
            color: var(--color-pro-dark);
            margin-bottom: 22px;
        }

        .pro-deep-text {
            font-size: 17px;
            line-height: 1.7;
            color: var(--color-pro-gray);
            margin-bottom: 0;
            text-align: justify;
            text-justify: inter-word;
        }

        .pro-highlight-banner {
            text-align: center;
            max-width: 860px;
            margin: 45px auto 55px;
            padding: 0 20px;
        }

        .pro-highlight-banner h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-pro-green);
            line-height: 1.5;
            margin: 0;
        }

        /* Feature item cards (with inline icons) */
        .pro-features-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .pro-features-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        /* 5. Bar Listings Features Layout (1:1 with reference) */
        .pro-bar-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 45px 50px;
            margin-top: 45px;
        }

        .pro-bar-feat-box {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .pro-bar-feat-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }

        .pro-bar-feat-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pro-bar-feat-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .pro-bar-feat-header h3 {
            font-family: var(--font-pro);
            font-size: 22px;
            font-weight: 700;
            color: var(--color-pro-dark);
            margin: 0;
            letter-spacing: -0.01em;
        }

        .pro-bar-feat-box p {
            font-family: var(--font-pro);
            font-size: 16px;
            line-height: 1.68;
            color: var(--color-pro-gray);
            margin: 0;
            text-align: justify;
            text-justify: inter-word;
        }

        .pro-bar-feat-full {
            grid-column: 1 / -1;
            margin-top: 10px;
        }

        /* Feature item blocks (clean transparent inline design 1:1) */
        .pro-features-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 50px;
            margin-top: 30px;
        }

        .pro-features-grid-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 45px 50px;
        }

        .pro-feat-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            transition: transform 0.3s ease;
        }

        .pro-feat-item:hover {
            transform: translateY(-4px);
        }

        .pro-feat-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .pro-feat-icon-wrap {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pro-feat-icon-wrap img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .pro-feat-header h3,
        .pro-feat-item h3 {
            font-family: var(--font-pro);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-pro-dark);
            margin: 0;
            letter-spacing: -0.01em;
        }

        .pro-feat-item p {
            font-family: var(--font-pro);
            font-size: 15.5px;
            line-height: 1.68;
            color: var(--color-pro-gray);
            margin: 0;
            text-align: justify;
            text-justify: inter-word;
        }

        /* 4. Three Level Checking Process Accordion */
        .pro-accordion-wrap {
            margin-top: 30px;
        }

        .pro-acc-item {
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 12px;
        }

        .pro-acc-header {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            padding: 16px 0;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--font-pro);
            font-size: 18px;
            font-weight: 700;
            color: var(--color-pro-dark);
            transition: color 0.3s ease;
        }

        .pro-acc-header.active,
        .pro-acc-header:hover {
            color: #4666e3;
        }

        .pro-acc-header i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .pro-acc-header.active i {
            transform: rotate(180deg);
        }

        .pro-acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .pro-acc-body.active {
            max-height: 200px;
            padding-bottom: 18px;
        }

        .pro-acc-body p {
            font-size: 16px;
            line-height: 1.65;
            color: var(--color-pro-gray);
            margin: 0;
            text-align: justify;
            text-justify: inter-word;
        }

        /* 5. Upcoming Services Banner & Cards (1:1 with Sample Website) */
        .pro-upcoming-banner {
            position: relative;
            background: url('../images/bg-2-min.jpg') center center / cover no-repeat;
            padding: 75px 0 280px;
            text-align: center;
            color: #ffffff;
        }

        .pro-upcoming-banner h2 {
            font-family: var(--font-pro);
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: 0.01em;
        }

        .pro-upcoming-cards-wrap {
            margin-top: -220px;
            padding-bottom: 95px;
            position: relative;
            z-index: 3;
        }

        .pro-upcoming-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pro-upcoming-card {
            background-color: #252c42;
            border-radius: 6px;
            padding: 70px 25px 65px;
            text-align: center;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.04);
            /* Hidden initially, visible only on scroll */
            opacity: 0;
            transform: translateY(55px) scale(0.92);
            transition: opacity 0.85s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1),
                        box-shadow 0.35s ease;
            will-change: opacity, transform;
        }

        .pro-upcoming-card.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .pro-upcoming-card.delay-1 {
            transition-delay: 0.1s;
        }

        .pro-upcoming-card.delay-2 {
            transition-delay: 0.25s;
        }

        .pro-upcoming-card.delay-3 {
            transition-delay: 0.4s;
        }

        .pro-upcoming-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../images/coming-soon-bg.jpg') center center / cover no-repeat;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .pro-upcoming-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
        }

        .pro-upcoming-card:hover::before {
            opacity: 0.22;
        }

        .pro-upcoming-card-content {
            position: relative;
            z-index: 2;
        }

        .pro-upcoming-icon-box {
            width: 100%;
            height: 85px;
            margin: 0 auto 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.35s ease;
        }

        .pro-upcoming-card:hover .pro-upcoming-icon-box {
            transform: scale(1.08);
        }

        .pro-upcoming-icon-box img {
            max-width: 105px;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .pro-upcoming-card h3 {
            font-family: var(--font-pro);
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }

        /* 6. Why Choose Us (6 Side-by-side cards with SVG Drawing) */
        .pro-why-section {
            padding: 95px 0 100px;
            background-color: #ffffff;
        }

        .pro-why-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pro-why-title {
            font-family: var(--font-pro);
            font-size: 36px;
            font-weight: 700;
            color: var(--color-pro-dark);
            margin-bottom: 12px;
        }

        .pro-why-subtitle {
            font-family: var(--font-pro);
            font-size: 18px;
            color: var(--color-pro-gray);
        }

        .pro-why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .pro-why-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 38px 34px;
            box-shadow: 0 12px 35px rgba(24, 27, 49, 0.05);
            border: 1px solid #f1f3f7;
            display: flex;
            gap: 28px;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }

        .pro-why-card:hover {
            background: linear-gradient(139deg, rgb(130, 189, 89) 20.38%, rgb(72, 105, 55) 94.9%);
            transform: translateY(-6px);
            box-shadow: 0 22px 50px rgba(72, 105, 55, 0.28);
            border-color: transparent;
        }

        .pro-why-icon-wrap {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pro-why-svg {
            width: 46px;
            height: 46px;
            display: block;
        }

        .pro-why-svg path,
        .pro-why-svg line,
        .pro-why-svg polyline,
        .pro-why-svg polygon,
        .pro-why-svg rect,
        .pro-why-svg circle {
            fill: none;
            stroke: url(#why-gradient);
            stroke-width: 2;
            stroke-miterlimit: 10;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 260;
            stroke-dashoffset: 0;
            transition: stroke 0.35s ease;
        }

        /* Smooth slow SVG Line Drawing Animation on Hover */
        .pro-why-card:hover .pro-why-svg path,
        .pro-why-card:hover .pro-why-svg line,
        .pro-why-card:hover .pro-why-svg polyline,
        .pro-why-card:hover .pro-why-svg polygon,
        .pro-why-card:hover .pro-why-svg rect,
        .pro-why-card:hover .pro-why-svg circle {
            stroke: #ffffff;
            animation: drawSvg 3.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        }

        @keyframes drawSvg {
            0% { stroke-dashoffset: 260; }
            100% { stroke-dashoffset: 0; }
        }

        .pro-why-card h3 {
            font-family: var(--font-pro);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-pro-dark);
            margin-bottom: 12px;
            transition: color 0.35s ease;
        }

        .pro-why-card:hover h3 {
            color: #ffffff;
        }

        .pro-why-card p {
            font-family: var(--font-pro);
            font-size: 15.5px;
            line-height: 1.65;
            color: var(--color-pro-gray);
            text-align: justify;
            text-justify: inter-word;
            margin: 0;
            transition: color 0.35s ease;
        }

        .pro-why-card:hover p {
            color: rgba(255, 255, 255, 0.95);
        }

        /* 7. Testimonials Carousel Section */
        .pro-testimonials-section {
            position: relative;
            background: url('../images/Testomonials_Background-min.jpg') center center / cover no-repeat;
            padding: 90px 0 80px;
            min-height: 520px;
            margin: 0;
            color: #ffffff;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pro-testimonials-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.15);
            z-index: 1;
        }

        .pro-testimonials-container {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            width: 100%;
        }

        .pro-testimonials-title {
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: 0 0 35px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
        }

        .pro-test-slider-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 240px;
            padding: 0 65px;
            max-width: 100%;
            margin: 0 auto;
        }

        .pro-test-slider {
            position: relative;
            width: 100%;
            max-width: 920px;
            min-height: 220px;
        }

        .pro-test-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .pro-test-slide.active {
            position: relative;
            opacity: 1;
            visibility: visible;
        }

        .pro-test-quote {
            font-family: 'Amiri', serif !important;
            font-size: 20px;
            line-height: 1.6;
            font-style: italic;
            color: #ffffff;
            margin: 0 0 20px;
            max-width: 880px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
        }

        .pro-test-author {
            font-family: var(--font-pro);
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 3px;
            letter-spacing: 0.04em;
        }

        .pro-test-company {
            font-family: var(--font-pro);
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* Left & Right Side Arrow Buttons */
        .pro-test-side-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #486937;
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .pro-test-side-btn.prev {
            left: 0;
        }

        .pro-test-side-btn.next {
            right: 0;
        }

        .pro-test-side-btn:hover {
            background: #82bd59;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(130, 189, 89, 0.4);
        }

        /* Centered Indicator Dots */
        .pro-test-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .pro-test-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pro-test-dot.active {
            background: #82bd59;
            transform: scale(1.3);
        }

        @media (max-width: 767px) {
            .pro-testimonials-section {
                padding: 90px 0 70px;
            }
            .pro-testimonials-title {
                font-size: 32px;
                margin-bottom: 30px;
            }
            .pro-test-slider-wrap {
                padding: 0 40px;
            }
            .pro-test-quote {
                font-size: 19px;
                line-height: 1.45;
            }
            .pro-test-side-btn {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }

        @media (max-width: 991px) {
            .pro-top-srv-grid,
            .pro-upcoming-grid,
            .pro-why-grid,
            .pro-two-col-grid,
            .pro-two-col-grid.reverse,
            .pro-features-grid-2,
            .pro-features-grid-3,
            .pro-features-grid-4 {
                grid-template-columns: 1fr;
            }

            .pro-upcoming-cards-wrap {
                margin-top: -120px;
            }

            .pro-testimonial-quote {
                font-size: 20px;
            }
        }