    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden;
    }


    body {
        font-family: Arial, Helvetica, sans-serif;
        background: #fff;
    }

    /* NAVBAR + HERO SESSION STRT */
    .rl-page-wrap {
        background: #fff;
        padding: 20px 10px;
    }

    .rl-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        padding: 0;
        background:

            linear-gradient(105deg,
                rgba(55, 0, 0, .95) 0%,
                rgba(132, 8, 8, .94) 14%,
                rgba(205, 18, 18, .92) 72%,
                rgba(231, 88, 38, .90) 86%,
                rgba(244, 151, 62, .88) 100%),
            url("Images/img-01");
        background-size: cover;
        background-position: center;
    }

    .rl-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("Images/img-01") center/cover no-repeat;
        opacity: .18;
        pointer-events: none;
    }

    .rl-navbar {
        position: relative;
        z-index: 20;
        max-width: 1140px;
        height: 63px;
        margin: 0 auto;
        background: #fff;
        border-radius: 0 0 18px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        overflow: visible;
    }

    /* TOP SHAPE - untouched */
    .rl-navbar::before,
    .rl-navbar::after {
        content: "";
        position: absolute;
        bottom: 10px;
        width: 40px;
        height: 50px;
        background: transparent;
        pointer-events: none;
    }

    .rl-navbar::before {
        right: -38px;
        top: 0;
        border-top-left-radius: 24px;
        box-shadow: -15px -15px 0 15px #fff;
    }

    .rl-navbar::after {
        left: -38px;
        top: 0;
        border-top-right-radius: 24px;
        box-shadow: 15px -15px 0 15px #fff;
    }

    .rl-brand {
        display: flex;
        align-items: center;
        color: #000;
        text-decoration: none;
        font-size: 26px;
        font-weight: 800;
        position: relative;
        z-index: 2;
    }

    .rl-brand sup {
        font-size: 10px;
        margin-left: 3px;
    }

    .rl-nav-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .rl-menu {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 38px;
        margin: 0 auto;
        padding: 0;
    }

    .rl-menu a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
    }

    .rl-menu a.active {
        color: #ff5a1f;
        background: #f5f5f5;
        padding: 9px 13px;
        border-radius: 9px;
    }

    .rl-dropdown {
        position: relative;
    }

    .rl-dropdown-box {
        position: absolute;
        top: 44px;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        width: 445px;
        background: #fff;
        border-radius: 8px;
        padding: 22px 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 28px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s ease;
        box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
        z-index: 30;
    }

    .rl-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 18px;
    }

    .rl-dropdown:hover .rl-dropdown-box {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .rl-dropdown-box a {
        color: #000;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

    .rl-dropdown-box a:hover {
        color: #ff5a1f;
    }

    .rl-top-btn,
    .rl-main-btn {
        background: #000;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .rl-top-btn {
        padding: 14px 24px
    }

    .rl-main-btn {
        padding: 17px 30px;
        margin-top: 22px;
        font-size: 18px;
    }

    .rl-toggle {
        display: none;
        width: 42px;
        height: 38px;
        border: 0;
        border-radius: 8px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .rl-hero {
        position: relative;
        z-index: 3;
        max-width: 1140px;
        margin: 0 auto;
        padding-top: 115px;
    }

    .rl-content h1 {
        color: #fff;
        font-size: clamp(62px, 7vw, 82px);
        line-height: 1.06;
        font-weight: 700;
        margin-bottom: 26px;
        letter-spacing: -2px;
    }

    .rl-content p {
        color: #fff;
        max-width: 560px;
        font-size: 21px;
        line-height: 1.32;
        font-weight: 700;
    }

    .rl-call-card {
        width: 308px;
        min-height: 190px;
        margin-top: 80px;
        padding: 22px 30px;
        border-radius: 18px;
        background: rgba(214, 212, 212, .185);
        color: #fff;
        backdrop-filter: blur(3px);
    }

    .rl-call-card h5 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.28;
    }

    .rl-call-row {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 48px;
    }

    .rl-call-row span {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
        display: grid;
        place-items: center;
        font-size: 22px;
    }

    .rl-call-row strong {
        font-size: 21px;
    }

    .rl-image-card {
        position: relative;
        height: 680px;
        border-radius: 28px;
        overflow: hidden;
        background: #47150d;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
    }

    .rl-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity .8s ease;
    }

    .rl-slide.active {
        opacity: 1;
    }

    .rl-tabs {
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 26px;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        color: #fff;
    }

    .rl-tab span {
        display: block;
        height: 4px;
        background: rgba(255, 255, 255, .45);
        border-radius: 10px;
        margin-bottom: 8px;
        position: relative;
        overflow: hidden;
    }

    .rl-tab span::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: #fff;
    }

    .rl-tab.active span::before {
        animation: rlProgress 4s linear forwards;
    }

    @keyframes rlProgress {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }

    .rl-tab p {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
    }

    .rl-bottom-card {
        max-width: 1140px;
        margin: 90px auto 0;
        background: #fff;
        border-radius: 20px 20px 0 0;
        padding: 0px 35px;
        padding-top: 9px;
        display: grid;
        grid-template-columns: 1.8fr .6fr .6fr;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 5;
        overflow: visible;
    }

    .rl-bottom-card::before,
    .rl-bottom-card::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 50px;
        background: transparent;
        pointer-events: none;
        bottom: 0;
    }

    .rl-bottom-card::before {
        left: -38px;
        border-bottom-right-radius: 24px;
        box-shadow: 15px 15px 0 15px #fff;
    }

    .rl-bottom-card::after {
        right: -38px;
        border-bottom-left-radius: 24px;
        box-shadow: -15px 15px 0 15px #fff;
    }

    .rl-bottom-card p {
        margin: 0;
        color: #333;
        font-size: 18px;
        word-spacing: 2px;
        line-height: 1.05;
        font-weight: 700;
    }

    .rl-bottom-card h3 {
        margin: 0 0 6px;
        font-size: 23px;
        color: #000;
        font-weight: 800;
    }

    .rl-bottom-card h3 span {
        color: #ff5a1f;
        font-size: 13px;
    }

    @media(max-width:991px) {
        .rl-navbar {
            height: auto;
            min-height: 64px;
            flex-wrap: wrap;
            border-radius: 16px;
            padding: 14px;
        }

        .rl-navbar::before,
        .rl-navbar::after,
        .rl-bottom-card::before,
        .rl-bottom-card::after {
            display: none;
        }

        .rl-toggle {
            display: block
        }

        .rl-nav-area {
            display: none;
            width: 100%;
            padding-top: 18px;
        }

        .rl-nav-area.show {
            display: block
        }

        .rl-menu {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 20px;
        }

        .rl-dropdown-box {
            width: 100%;
            padding: 12px;
            border-radius: 14px;
            grid-template-columns: 1fr;
            background: #f7f7f7;
            box-shadow: none;
            border: 1px solid #eee;
        }

        .rl-dropdown-box::before {
            display: none;
        }

        .rl-dropdown:hover .rl-dropdown-box {
            display: grid;
            transform: none;
        }

        .rl-hero {
            padding: 65px 15px 0;
        }

        .rl-content {
            text-align: center;
        }

        .rl-content p {
            margin: auto;
        }

        .rl-call-card {
            margin: 45px auto 0;
            text-align: left;
        }

        .rl-image-card {
            height: 420px;
            margin-top: 35px;
            border-radius: 24px;
        }

        .rl-bottom-card {
            grid-template-columns: 1fr;
            text-align: center;
            margin-top: 45px;
            border-radius: 20px 20px 0 0;
        }
    }

    @media(max-width:575px) {
        .rl-page-wrap {
            padding: 8px
        }

        .rl-content h1 {
            font-size: 48px;
            letter-spacing: -1px;
        }

        .rl-content p {
            font-size: 17px
        }

        .rl-brand {
            font-size: 21px
        }

        .rl-image-card {
            height: 330px
        }

        .rl-tabs {
            left: 18px;
            right: 18px;
        }

        .rl-tab p {
            font-size: 13px
        }
    }


    @media (max-width: 991px) {
        .rl-page-wrap {
            padding: 4px;
        }

        .rl-wrapper {
            border-radius: 12px;
            padding: 8px;
        }

        .rl-navbar {
            border-radius: 8px;
            padding: 10px;
        }

        .rl-hero {
            padding: 45px 4px 0;
        }

        .rl-content {
            text-align: left;
        }

        .rl-content h1 {
            font-size: 32px;
            line-height: 1.05;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }

        .rl-content p {
            font-size: 13px;
            line-height: 1.25;
            margin: 0;
        }

        .rl-main-btn {
            margin-top: 18px;
            padding: 11px 17px;
            font-size: 13px;
            border-radius: 8px;
        }

        .rl-call-card {
            width: 100%;
            min-height: auto;
            margin-top: 15px;
            padding: 18px 12px;
            border-radius: 8px;
        }

        .rl-call-card h5 {
            font-size: 13px;
        }

        .rl-call-row {
            margin-top: 16px;
            gap: 12px;
        }

        .rl-call-row span {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

        .rl-call-row strong {
            font-size: 13px;
        }

        .rl-image-card {
            height: 285px;
            margin-top: 18px;
            border-radius: 8px;
        }

        .rl-bottom-card {
            margin-top: 12px;
            padding: 18px 12px;
            border-radius: 8px;
            grid-template-columns: 1fr 1fr;
            text-align: left;
            gap: 15px;
        }

        .rl-bottom-card>div:first-child {
            grid-column: 1 / -1;
        }

        .rl-bottom-card p {
            font-size: 13px;
            line-height: 1.15;
        }

        .rl-bottom-card h3 {
            font-size: 24px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {

        .rl-navbar,
        .rl-hero,
        .rl-bottom-card {
            max-width: 940px;
        }

        .rl-content h1 {
            font-size: 58px;
            line-height: 1.06;
        }

        .rl-content p {
            font-size: 18px;
            max-width: 480px;
        }

        .rl-main-btn {
            padding: 14px 24px;
            font-size: 16px;
        }

        .rl-call-card {
            width: 285px;
            min-height: 170px;
            margin-top: 55px;
            padding: 20px 24px;
        }

        .rl-call-row {
            margin-top: 34px;
        }

        .rl-image-card {
            height: 560px;
        }

        .rl-bottom-card {
            margin-top: 65px;
            grid-template-columns: 1.5fr .7fr .7fr;
            padding: 12px 28px;
        }

        .rl-bottom-card p {
            font-size: 16px;
        }

        .rl-bottom-card h3 {
            font-size: 22px;
        }
    }

    @media (max-width: 991px) {
        .rl-navbar {
            height: 58px !important;
            min-height: 58px !important;
            flex-wrap: nowrap !important;
            align-items: center !important;
            padding: 10px !important;
            position: relative !important;
        }

        .rl-toggle {
            display: grid !important;
            place-items: center !important;
            margin-left: auto !important;
            z-index: 1002 !important;
        }

        .rl-nav-area {
            display: none !important;
            position: absolute !important;
            top: 68px !important;
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            padding: 12px !important;
            background: #fff !important;
            border-radius: 14px !important;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .18) !important;
            z-index: 1000 !important;
        }

        .rl-nav-area.show {
            display: block !important;
        }

        .rl-menu {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 8px !important;
            margin: 0 0 10px !important;
        }

        .rl-menu li {
            width: 100% !important;
        }

        .rl-menu a {
            width: 100% !important;
            display: flex !important;
            justify-content: space-between !important;
            padding: 10px 12px !important;
            border-radius: 8px !important;
            background: #f7f7f7 !important;
            font-size: 13px !important;
            font-weight: 700 !important;
        }

        .rl-menu a.active {
            background: #000 !important;
            color: #fff !important;
        }

        .rl-dropdown-box {
            position: static !important;
            transform: none !important;
            width: 100% !important;
            margin-top: 8px !important;
            padding: 8px !important;
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 6px !important;
            background: #f5f5f5 !important;
            border-radius: 10px !important;
            box-shadow: none !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }

        .rl-dropdown-box a {
            padding: 8px 6px !important;
            font-size: 11px !important;
            justify-content: center !important;
            text-align: center !important;
            background: #fff !important;
        }

        .rl-top-btn {
            width: 100% !important;
            padding: 12px !important;
            border-radius: 8px !important;
            font-size: 13px !important;
        }
    }

    @media (max-width: 991px) {
        .rl-dropdown-box {
            display: none !important;
        }

        .rl-dropdown.open .rl-dropdown-box {
            display: grid !important;
        }
    }

    /* NAVBAR + HERO SESSION END */

    /* ABOUT SESSION START  */
    .roof-about-section {
        background: #fff;
        padding: 36px 0 40px;
    }

    .roof-about-img-wrap {
        position: relative;
        width: 100%;
        max-width: 555px;
        margin: auto;
        border-radius: 18px;
        overflow: hidden;
    }

    .roof-about-img-wrap>img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
    }

    .roof-team-card {
        position: absolute;
        left: 30px;
        bottom: 30px;
        width: 350px;
        min-height: 165px;
        padding: 22px;
        border-radius: 18px;
        background: #aa7c54;
        color: #fff;
        box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
    }

    .roof-team-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .roof-avatar-group {
        display: flex;
        align-items: center;
    }

    .roof-avatar-group img,
    .roof-avatar-group span {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -10px;
        object-fit: cover;
    }

    .roof-avatar-group img:first-child {
        margin-left: 0;
    }

    .roof-avatar-group span {
        background: #050505;
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 14px;
    }

    .roof-badge-icon {
        width: 31px;
        height: 42px;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 25px;
    }

    .roof-team-card h4 {
        color: #fff;
        margin: 32px 0 0;
        font-size: 20px;
        line-height: 1.18;
        font-weight: 800;
    }

    .roof-about-content {
        max-width: 520px;
        margin: auto;
        padding-left: 28px;
    }

    .roof-about-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #343434;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 32px;
    }

    .roof-about-content h2 {
        color: #000;
        font-size: 60px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -2px;
        margin-bottom: 32px;
    }

    .roof-about-content>p {
        color: #3a3a3a;
        font-size: 20px;
        line-height: 1.28;
        max-width: 540px;
        margin-bottom: 24px;
    }

    .roof-feature-list {
        margin-top: 20px;
    }

    .roof-feature-item {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 21px 0;
        border-bottom: 1px solid #dedede;
    }

    .roof-feature-item span {
        width: 24px;
        font-size: 21px;
        color: #111;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roof-feature-item h5 {
        margin: 0;
        color: #3a3a3a;
        font-size: 20px;
        font-weight: 700;
    }

    .roof-about-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 36px;
        background: #000;
        color: #fff;
        text-decoration: none;
        padding: 17px 30px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 800;
        transition: .3s ease;
    }

    .roof-about-btn:hover {
        background: #ff5a1f;
        color: #fff;
    }

    @media(max-width:991px) {
        .roof-about-section {
            padding: 60px 0;
        }

        .roof-about-content {
            padding-left: 0;
            text-align: center;
        }

        .roof-about-label {
            justify-content: center;
        }

        .roof-about-content h2 {
            font-size: 52px;
        }

        .roof-about-content>p {
            margin-left: auto;
            margin-right: auto;
        }

        .roof-feature-item {
            justify-content: center;
            text-align: left;
        }
    }

    @media(max-width:575px) {
        .roof-about-section {
            padding: 40px 0;
        }

        .roof-about-img-wrap>img {
            height: 430px;
        }

        .roof-team-card {
            left: 16px;
            right: 16px;
            bottom: 16px;
            width: auto;
            min-height: 145px;
        }

        .roof-about-content h2 {
            font-size: 42px;
            letter-spacing: -1px;
        }

        .roof-about-content>p {
            font-size: 17px;
        }

        .roof-feature-item h5 {
            font-size: 17px;
        }

        .roof-avatar-group img,
        .roof-avatar-group span {
            width: 39px;
            height: 39px;
        }
    }

    /* ABOUT SESSION END  */

    /* ROOF SERVICES SESSION START   */
    .roof-services-section {
        background: #fff;
        padding: 0 10px 60px;
        padding-top: 80px;
    }

    .roof-services-wrap {
        background: #000;
        border-radius: 18px;
        padding: 155px 0 140px;
        overflow: hidden;
        margin: 15px 0px;
    }

    .roof-services-title {
        color: #fff;
        text-align: center;
        font-size: 60px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -2px;
        margin-bottom: 50px;
    }

    .roof-service-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        height: 100%;
        text-align: center;
    }

    .roof-service-img {
        position: relative;
        height: 340px;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
    }

    .roof-service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        padding: 10px;
        border-radius: 25px;
        transition: transform 1.1s ease;
        /* transform-origin: center center; */
    }

    .roof-service-card:hover .roof-service-img img {
        transform: scale(1.08);
    }

    .roof-service-body h3 {
        color: #000;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        transition: color .35s ease, transform .35s ease;
    }

    .roof-service-card:hover .roof-service-body h3 {
        color: #ff6a18;
    }

    .roof-service-body {
        position: relative;
        padding: 58px 28px 24px;
        min-height: 190px;
    }

    .roof-service-icon {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 98px;
        height: 68px;
        background: #fff;
        color: #ff6a18;
        border-radius: 26px 26px 0 0;
        display: grid;
        place-items: center;
        font-size: 28px;
        overflow: visible;
        z-index: 2;
    }

    .roof-service-icon::before,
    .roof-service-icon::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 34px;
        height: 34px;
        background: transparent;
        pointer-events: none;
    }

    .roof-service-icon::before {
        left: -32px;
        top: 18px;
        border-bottom-right-radius: 28px;
        box-shadow: 14px 14px 0 10px #fff;
    }

    .roof-service-icon::after {
        right: -33px;
        top: 18px;
        border-bottom-left-radius: 28px;
        box-shadow: -14px 14px 0 10px #fff;
    }

    .roof-service-body p {
        color: #333;
        font-size: 18px;
        line-height: 1.18;
        margin: 0;
    }

    .roof-service-card.active .roof-service-body h3 {
        color: #ff6a18;
    }

    .roof-services-cta {
        max-width: 600px;
        margin: 100px auto 0;
        border-radius: 9px;
        overflow: hidden;
        background: linear-gradient(90deg, #450000 0%, #ff1c16 55%, #ff913c 100%);
        border: 1px solid rgba(255, 255, 255, .18);
        padding: 13px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .roof-services-cta-left {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 800;
    }

    .roof-services-cta-icon {
        width: 26px;
        height: 26px;
        border: 1.5px solid #fff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 13px;
        line-height: 1;
    }

    .roof-services-cta-btn {
        background: #fff;
        color: #111;
        text-decoration: none;
        padding: 15px 22px;
        border-radius: 7px;
        font-size: 17px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        white-space: nowrap;
    }

    @media(max-width:991px) {
        .roof-services-wrap {
            padding: 90px 0 80px;
        }

        .roof-services-title {
            font-size: 48px;
            margin-bottom: 40px;
        }

        .roof-service-img {
            height: 300px;
        }

        .roof-services-cta {
            margin-top: 60px;
        }
    }

    @media(max-width:575px) {
        .roof-services-section {
            padding: 0 8px 30px;
        }

        .roof-services-wrap {
            padding: 60px 0;
            border-radius: 16px;
        }

        .roof-services-title {
            font-size: 38px;
            letter-spacing: -1px;
        }

        .roof-service-img {
            height: 260px;
        }

        .roof-service-body p {
            font-size: 17px;
        }

        .roof-services-cta {
            flex-direction: column;
            text-align: center;
            padding: 18px;
        }

        .roof-services-cta-left {
            font-size: 18px;
        }

        .roof-services-cta-btn {
            width: 100%;
            justify-content: center;
        }
    }

    /* ROOF SERVICES SESSION END   */

    /* ROOF PROCESS SESSION START    */
    .roof-process-section {
        background: #fff;
        padding: 50px 0 45px;
    }

    .roof-process-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 55px;
    }

    .roof-process-title {
        color: #000;
        font-size: 60px;
        line-height: 1.08;
        font-weight: 700;
        letter-spacing: -2px;
        margin-bottom: 99px;
    }

    .roof-testimonial-card {
        width: 100%;
        max-width: 360px;
        background: #F7F7F7;
        border-radius: 18px;
        padding: 20px;
    }

    .roof-testimonial-head {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid #ddd;
    }

    .roof-testimonial-icon {
        width: 50px;
        height: 50px;
        background: #000;
        color: #fff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 24px;
    }

    .roof-testimonial-phone {
        color: #000;
        font-size: 21px;
        font-weight: 700;
        text-decoration: none;
    }

    .roof-testimonial-text {
        color: #111;
        font-size: 17px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .roof-testimonial-name {
        color: #444;
        font-size: 15px;
        margin: 0;
    }

    .roof-process-image {
        width: 100%;
        height: 540px;
        border-radius: 18px;
        overflow: hidden;
    }

    .roof-process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .roof-process-accordion {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .roof-process-item {
        background: #F7F7F7;
        border-radius: 18px;
        overflow: hidden;
        transition: all .35s ease;
    }

    .roof-process-btn {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 19px 25px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        text-align: left;
    }

    .roof-process-num {
        width: 34px;
        min-width: 34px;
        height: 34px;
        background: #fff;
        color: #ff5a1f;
        border-radius: 8px;
        display: grid;
        place-items: center;
        font-size: 18px;
        font-weight: 700;
    }

    .roof-process-btn h4 {
        margin: 0;
        color: #000;
        font-size: 21px;
        font-weight: 700;
        flex: 1;
    }

    .roof-process-icon {
        width: 25px;
        height: 25px;
        border: 1.8px solid #000;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 14px;
        transition: .35s ease;
    }

    .roof-process-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s ease, padding .45s ease;
        padding: 0 25px 0 69px;
    }

    .roof-process-body p {
        color: #3b3b3b;
        font-size: 17px;
        line-height: 1.28;
        margin: 0;
        max-width: 300px;
    }

    .roof-process-item.active {
        background: #F7F7F7;
    }

    .roof-process-item.active .roof-process-body {
        max-height: 120px;
        padding: 0 25px 24px 69px;
    }

    .roof-process-item.active .roof-process-icon {
        transform: rotate(45deg);
    }

    @media(max-width:991px) {
        .roof-process-section {
            padding: 60px 0;
        }

        .roof-process-title {
            font-size: 52px;
            margin-bottom: 35px;
        }

        .roof-testimonial-card {
            max-width: 100%;
            margin-bottom: 30px;
        }

        .roof-process-image {
            height: 430px;
            margin-bottom: 30px;
        }
    }

    @media(max-width:575px) {
        .roof-process-section {
            padding: 40px 0;
        }

        .roof-process-title {
            font-size: 42px;
            letter-spacing: -1px;
        }

        .roof-process-image {
            height: 360px;
        }

        .roof-process-btn {
            padding: 17px 16px;
        }

        .roof-process-btn h4 {
            font-size: 18px;
        }

        .roof-process-body {
            padding: 0 16px 0 62px;
        }

        .roof-process-item.active .roof-process-body {
            padding: 0 16px 22px 62px;
        }

        .roof-testimonial-phone {
            font-size: 18px;
        }
    }

    /* ROOF PROCESS SESSION START    */

    /* UQ ROOF WHY SESSION STRT */
    .uq-roof-why-section {
        background: #fff;
        padding: 70px 0;
    }

    .uq-roof-why-title {
        text-align: center;
        color: #000;
        font-size: 60px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -2px;
        margin-bottom: 55px;
    }

    .uq-roof-why-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1.25fr;
        grid-template-rows: 263px 170px 170px;
        gap: 20px;
        position: relative;
    }

    .uq-roof-why-card {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
    }

    .uq-roof-why-quality {
        background: #f1f1f1;
        padding: 32px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .uq-roof-why-icon {
        color: #ff6a18;
        font-size: 34px;
    }

    .uq-roof-why-quality h3 {
        color: #000;
        font-size: 28px;
        line-height: 1.18;
        font-weight: 800;
        margin: 0;
    }

    .uq-roof-why-team>img,
    .uq-roof-why-main-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .uq-uq-roof-why-team-text {
        position: absolute;
        top: 30px;
        left: 30px;
        color: #fff;
        z-index: 4;
    }

    .uq-uq-roof-why-team-text h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .uq-uq-roof-why-team-text h3 {
        font-size: 30px;
        font-weight: 800;
        margin: 0;
    }

    .uq-roof-why-team {
        position: relative;
        overflow: hidden;
    }

    .uq-roof-team-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 82% 55%, rgba(255, 106, 24, .55), transparent 38%);
        z-index: 1;
    }

    .uq-roof-team-avatars {
        position: absolute;
        inset: 0;
        z-index: 3;
    }

    .uq-roof-team-avatars img {
        position: absolute;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, .75);
    }

    .uq-roof-avatar-1 {
        width: 100px;
        height: 100px;
        left: 48px;
        bottom: 8px;
    }

    .uq-roof-avatar-2 {
        width: 100px;
        height: 100px;
        left: 152px;
        bottom: -8px;
    }

    .uq-roof-avatar-3 {
        width: 100px;
        height: 100px;
        left: 126px;
        bottom: 90px;
    }

    .uq-roof-avatar-4 {
        width: 100px;
        height: 100px;
        right: 0px;
        top: 75px;
    }

    .uq-roof-avatar-5 {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: -10px;
    }

    .uq-roof-why-main-img {
        grid-column: 3;
        grid-row: 1 / 4;
        border-radius: 18px;
        overflow: hidden;
    }

    .uq-roof-why-black {
        grid-row: 2 / 4;
        background: #000;
        color: #fff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .uq-roof-why-black h3 {
        font-size: 42px;
        font-weight: 800;
        margin: 0 0 6px;
    }

    .uq-roof-why-black h4 {
        font-size: 20px;
        font-weight: 800;
        margin: 0;
    }

    .uq-roof-why-black p {
        color: #fff;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 700;
        margin: 0;
    }

    .uq-roof-why-review {
        grid-row: 2 / 4;
        background: #f1f1f1;
        padding: 75px 30px 28px;
    }

    .uq-roof-why-review::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 95px;
        height: 58px;
        background: #fff;
        border-bottom-right-radius: 18px;
        z-index: 1;
    }

    .uq-roof-why-review::after {
        content: "";
        position: absolute;
        left: 95px;
        top: 0;
        width: 34px;
        height: 34px;
        background: transparent;
        border-top-left-radius: 28px;
        box-shadow: -10px -10px 0 8px #fff;
        pointer-events: none;
        z-index: 2;
    }

    .uq-roof-quote {
        position: absolute;
        top: 8px;
        left: 35px;
        color: #ff6a18;
        font-size: 48px;
        font-weight: 900;
        z-index: 3;
    }

    .uq-roof-why-review p {
        color: #333;
        font-size: 20px;
        line-height: 1.22;
        margin-bottom: 28px;
    }

    .uq-roof-why-review h4 {
        color: #333;
        font-size: 19px;
        font-weight: 800;
        margin: 0 0 2px;
    }

    .uq-roof-why-review small {
        color: #333;
        font-size: 15px;
    }

    .uq-roof-rating {
        position: absolute;
        left: 30px;
        bottom: 28px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .uq-roof-rating i {
        color: #ff6a18;
        font-size: 36px;
    }

    .uq-roof-rating strong {
        display: block;
        color: #000;
        font-size: 22px;
        line-height: 1;
    }

    .uq-roof-rating span {
        color: #333;
        font-size: 15px;
    }

    .uq-roof-why-support {
        position: absolute;
        right: 130px;
        bottom: 0;
        width: 295px;
        height: 175px;
        background:
            linear-gradient(135deg, rgba(80, 0, 0, .95), rgba(220, 24, 16, .86), rgba(255, 115, 24, .85)),
            url("Images/why-support.webp") center/cover no-repeat;
        color: #fff;
        padding: 5px 10px;
        border: 14px solid #fff;
        border-radius: 25px 25px 10px 25px;
        z-index: 10;
        overflow: visible;
    }

    .uq-roof-why-support::before {
        content: "";
        position: absolute;
        left: -2px;
        top: -43px;
        width: 31px;
        height: 31px;
        background: transparent;
        border-top-right-radius: 28px;
        box-shadow: 8px -7px 0 5px #fff;
        pointer-events: none;
        rotate: calc(175deg)
    }

    .uq-roof-why-support::after {
        content: "";
        position: absolute;
        right: -50px;
        bottom: -15px;
        width: 37px;
        height: 37px;
        background: transparent;
        border-top-right-radius: 25px;
        box-shadow: 8px -8px 0 4px #fff;
        pointer-events: none;
        rotate: calc(-178deg)
    }

    .uq-roof-why-support h3 {
        color: #fff;
        font-size: 26px;
        line-height: 1.15;
        font-weight: 800;
        margin-bottom: 50px;
    }

    .uq-roof-why-support a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .uq-roof-why-support a span {
        width: 25px;
        height: 25px;
        background: #fff;
        color: #ff6a18;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 13px;
    }

    .uq-roof-why-support a span i {
        transform: rotate(45deg);
    }

    .uq-roof-review-left-shape {
        position: absolute;
        left: -1px;
        top: 58px;
        width: 34px;
        height: 34px;
        background: transparent;
        border-top-left-radius: 28px;
        box-shadow: -10px -10px 0 8px #fff;
        pointer-events: none;
        z-index: 3;
    }

    .uq-roof-review-right-shape {
        position: absolute;
        right: 0px;
        top: 118px;
        width: 34px;
        height: 34px;
        background: transparent;
        border-top-left-radius: 24px;
        box-shadow: -7px -7px 0 7px #fff;
        pointer-events: none;
        z-index: 3;
        rotate: calc(180deg);
    }

    @media(max-width:1199px) and (min-width:992px) {
        .uq-roof-why-grid {
            max-width: 960px;
            grid-template-columns: 1fr 1fr 1.15fr;
            gap: 16px;
        }

        .uq-roof-why-support {
            right: 95px;
            width: 270px;
        }

        .uq-roof-why-support::before {
            display: none !important;
        }

    }

    @media(max-width:991px) {
        .uq-roof-why-section {
            padding: 45px 0;
        }

        .uq-roof-why-title {
            font-size: 44px;
            letter-spacing: -1px;
            margin-bottom: 30px;
        }

        .uq-roof-why-grid {
            max-width: 720px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
            gap: 16px;
        }

        .uq-roof-why-card {
            min-height: 240px;
            width: 100%;
        }

        .uq-roof-why-main-img {
            grid-column: 1 / -1;
            grid-row: auto;
            min-height: 520px;
        }

        .uq-roof-why-black,
        .uq-roof-why-review {
            grid-column: auto;
            grid-row: auto;
        }

        .uq-roof-why-main-img {
            position: relative !important;
        }

        .uq-roof-why-support {
            position: absolute !important;
            right: 20px !important;
            bottom: 450px !important;
            width: 90% !important;
            height: 155px !important;
            border: 0px solid #fff !important;
            border-radius: 22px !important;
            padding: 18px !important;
            z-index: 20 !important;
        }

        .uq-roof-why-support h3 {
            font-size: 22px !important;
            margin-bottom: 32px !important;
        }

        .uq-roof-why-support a {
            font-size: 15px !important;
        }

        .uq-roof-why-support::before,
        .uq-roof-why-support::after,
        .uq-roof-why-review::before,
        .uq-roof-why-review::after,
        .uq-roof-review-left-shape,
        .uq-roof-review-right-shape {
            display: none !important;
        }

        .uq-roof-quote {
            position: relative;
            top: auto;
            left: auto;
            display: block;
            margin-bottom: 10px;
            line-height: 1;
        }

        .uq-roof-rating {
            position: relative;
            left: auto;
            bottom: auto;
            margin-top: 35px;
        }
    }

    @media(max-width:575px) {
        .uq-roof-why-section {
            padding: 35px 0;
        }

        .uq-roof-why-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 22px;
        }

        .uq-roof-why-grid {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .uq-roof-why-card {
            border-radius: 10px;
            min-height: 185px;
        }

        .uq-roof-why-quality {
            padding: 18px 14px;
        }

        .uq-roof-why-icon {
            font-size: 24px;
        }

        .uq-roof-why-quality h3 {
            font-size: 18px;
            line-height: 1.2;
        }

        .uq-roof-why-team {
            min-height: 185px;
        }

        .uq-uq-roof-why-team-text {
            top: 12px;
            left: 12px;
        }

        .uq-uq-roof-why-team-text h4 {
            font-size: 10px;
            margin-bottom: 4px;
        }

        .uq-uq-roof-why-team-text h3 {
            font-size: 18px;
        }

        .uq-roof-team-avatars img {
            width: 48px !important;
            height: 48px !important;
        }

        .uq-roof-avatar-1 {
            left: 18px;
            bottom: 45px;
        }

        .uq-roof-avatar-2 {
            left: 70px;
            bottom: 50px;
        }

        .uq-roof-avatar-3 {
            left: 34px;
            bottom: 0;
        }

        .uq-roof-avatar-4 {
            right: 35px;
            top: 62px;
        }

        .uq-roof-avatar-5 {
            right: 18px;
            bottom: 18px;
        }

        .uq-roof-why-black {
            min-height: 205px;
            padding: 18px 14px;
        }

        .uq-roof-why-black h3 {
            font-size: 26px;
        }

        .uq-roof-why-black h4 {
            font-size: 12px;
        }

        .uq-roof-why-black p {
            font-size: 11px;
            line-height: 1.25;
        }

        .uq-roof-why-review {
            min-height: 205px;
            padding: 18px 14px;
        }

        .uq-roof-why-review p {
            font-size: 11px;
            line-height: 1.25;
            margin-bottom: 18px;
        }

        .uq-roof-why-review h4 {
            font-size: 10px;
        }

        .uq-roof-why-review small {
            font-size: 9px;
        }

        .uq-roof-quote {
            font-size: 28px;
        }

        .uq-roof-rating {
            gap: 8px;
            margin-top: 18px;
        }

        .uq-roof-rating i {
            font-size: 22px;
        }

        .uq-roof-rating strong {
            font-size: 14px;
        }

        .uq-roof-rating span {
            font-size: 9px;
        }

        .uq-roof-why-main-img {
            grid-column: 1 / -1;
            min-height: 410px;
        }

        .uq-roof-why-support {
            right: 10px !important;
            bottom: 240px !important;
            width: 95% !important;
            height: 105px !important;
            border: 0 !important;
            border-radius: 10px !important;
            padding: 14px 10px !important;
        }

        .uq-roof-why-support h3 {
            font-size: 13px !important;
            margin-bottom: 22px !important;
        }

        .uq-roof-why-support a {
            font-size: 9px !important;
            gap: 6px !important;
        }

        .uq-roof-why-support a span {
            width: 16px !important;
            height: 16px !important;
            font-size: 8px !important;
        }
    }

    /* UQ ROOF WHY SESSION END */

    /* ROOF PROJECTS SESSION START */
    .roof-project-section {
        background: #fff;
        padding: 40px 10px 45px;
    }

    .roof-project-wrap {
        background: #000;
        border-radius: 18px;
        padding: 160px 0 0;
        overflow: hidden;
    }

    .roof-project-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 45px;
    }

    .roof-project-head h2 {
        color: #fff;
        font-size: 58px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
    }

    .roof-project-arrows {
        display: flex;
        gap: 12px;
    }

    .roof-project-arrows button {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: #303030;
        color: #fff;
        display: grid;
        place-items: center;
        transition: .3s ease;
    }

    .roof-project-arrows button:hover {
        background: #ff6a18;
    }

    .roof-project-slider {
        overflow: hidden;
    }

    .roof-project-track {
        display: flex;
        gap: 22px;
        transition: transform .5s ease;
        will-change: transform;
    }

    .roof-project-card {
        flex: 0 0 calc(50% - 11px);
        color: #fff;
    }

    .roof-project-img {
        position: relative;
        height: 430px;
        border-radius: 18px;
        overflow: hidden;
        background: #000;
        isolation: isolate;
    }

    .roof-project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1.1s ease;
    }

    .roof-project-card:hover .roof-project-img img {
        transform: scale(1.06);
    }

    .roof-project-img::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 72px;
        height: 72px;
        background: #000;
        border-top-left-radius: 42px;
        z-index: 8;
    }

    .roof-project-img::after {
        content: "";
        position: absolute;
        right: 72px;
        bottom: 0;
        width: 34px;
        height: 34px;
        background: transparent;
        border-bottom-right-radius: 34px;
        box-shadow: 12px 12px 0 10px #000;
        z-index: 9;
    }

    .roof-project-link {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #2f2f2f;
        color: #fff;
        display: grid;
        place-items: center;
        text-decoration: none;
        z-index: 20;
        font-size: 18px;
        transition: background .35s ease, color .35s ease;
        /* transform: rotate(45deg); */
    }

    .roof-project-link i {
        transition: transform .75s ease;
        transform: rotate(45deg);
    }

    .roof-project-card:hover .roof-project-link i {
        transform: rotate(90deg);
    }

    .roof-project-link::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 72px;
        width: 32px;
        height: 32px;
        background: transparent;
        border-bottom-right-radius: 30px;
        box-shadow: 10px 10px 0 10px #000;
        z-index: -1;
    }

    .roof-project-link:hover {
        background: #ff6a18;
        color: #fff;
    }

    .roof-project-card h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        margin: 22px 0 12px;
        transition: color .35s ease;
    }

    .roof-project-card:hover h3 {
        color: #ff6a18;
    }

    .roof-project-card p {
        color: #cfcfcf;
        font-size: 19px;
        font-weight: 700;
        margin: 0;
    }

    .roof-partners-box {
        max-width: 1140px;
        margin: 160px auto 0;
        background: #fff;
        border-radius: 18px 18px 0 0;
        padding: 23px 20px;
        position: relative;
        overflow: visible;
        display: flex;
        align-items: center;
        gap: 55px;
    }

    .roof-partners-box::before,
    .roof-partners-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 50px;
        background: transparent;
        pointer-events: none;
    }

    .roof-partners-box::before {
        left: -38px;
        border-bottom-right-radius: 24px;
        box-shadow: 15px 15px 0 15px #fff;
    }

    .roof-partners-box::after {
        right: -38px;
        border-bottom-left-radius: 24px;
        box-shadow: -15px 15px 0 15px #fff;
    }

    .roof-partners-fixed {
        color: #333;
        font-size: 18px;
        font-weight: 500;
        min-width: max-content;
        position: relative;
        z-index: 2;
        background: #fff;
    }

    .roof-partners-marquee {
        overflow: hidden;
        flex: 1;
        position: relative;
    }

    .roof-partners-track {
        display: flex;
        align-items: center;
        gap: 65px;
        white-space: nowrap;
        width: max-content;
        animation: partnersMove 18s linear infinite;
    }

    .roof-partners-track strong {
        color: #111;
        font-size: 20px;
        font-weight: 700;
    }

    .partner-item {
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
    }

    .partner-item i {
        font-size: 22px;
        color: #222;
    }

    .partner-item span {
        font-size: 20px;
        font-weight: 700;
        color: #222;
    }

    @keyframes partnersMove {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    @media(max-width:991px) {
        .roof-project-wrap {
            padding: 90px 0 0
        }

        .roof-project-head {
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
        }

        .roof-project-head h2 {
            font-size: 48px
        }

        .roof-project-card {
            flex: 0 0 100%;
        }

        .roof-project-img {
            height: 380px
        }

        .roof-partners-box {
            margin-top: 90px;
            gap: 35px;
        }
    }

    @media(max-width:575px) {
        .roof-project-section {
            padding: 0 8px 35px
        }

        .roof-project-wrap {
            padding: 60px 0 0;
            border-radius: 16px;
        }

        .roof-project-head h2 {
            font-size: 40px;
            letter-spacing: -1px;
        }

        .roof-project-img {
            height: 300px
        }

        .roof-project-card h3 {
            font-size: 22px
        }

        .roof-partners-box {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
        }

        .roof-partners-marquee {
            width: 100%
        }

        .roof-partners-track {
            gap: 40px
        }
    }

    /* ROOF PROJECTS SESSION END */

    /* TESTIMONIAL SESSION START */
    .roof-testimonial-section {
        background: #fff;
        padding: 130px 10px;
    }

    .roof-testimonial-wrap {
        position: relative;
        min-height: 560px;
        border-radius: 18px;
        overflow: visible;
    }


    .roof-testimonial-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 1;
    }

    .roof-testimonial-bg,
    .roof-testimonial-wrap::before {
        border-radius: 18px;
        overflow: hidden;
        clip-path: inset(0 round 18px);
    }

    .roof-testimonial-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.226);
        z-index: 2;
    }

    .roof-testimonial-content {
        position: relative;
        z-index: 3;
        min-height: 530px;
        display: flex;
        align-items: center;
        padding: 70px 95px;
    }

    .roof-testimonial-left {
        width: 58%;
        color: #fff;
    }

    .roof-testimonial-left h2 {
        color: #fff;
        font-size: 58px;
        line-height: 1.12;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 90px;
    }

    .roof-rating-card {
        width: 270px;
        min-height: 130px;
        border-radius: 16px;
        background: rgba(135, 105, 82, .78);
        border: 1px solid rgba(255, 255, 255, .18);
        backdrop-filter: blur(4px);
        padding: 24px 20px;
    }

    .roof-rating-top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .roof-rating-top strong {
        color: #fff;
        font-size: 42px;
        line-height: 1;
        font-weight: 700;
    }

    .roof-stars {
        display: flex;
        gap: 2px;
        color: #ff6a18;
        font-size: 18px;
    }

    .roof-rating-card p {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .roof-testimonial-slider-area {
        position: absolute;
        top: -20px;
        right: 15px;
        width: 470px;
        z-index: 5;
    }

    .roof-client-slide {
        display: none;
    }

    .roof-client-slide.active {
        display: block;
        animation: clientFade .55s ease;
    }

    @keyframes clientFade {
        from {
            opacity: 0;
            transform: translateX(18px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    .roof-client-img {
        width: 350px;
        height: 270px;
        border-radius: 16px !important;
        /* overflow:hidden; */
        margin-left: 20px;
        margin-bottom: 30px;
        top: -80px;
        position: relative;
        z-index: 2;
    }

    .roof-client-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 35%;
        display: block;
        border-radius: 16px !important;

    }

    .roof-client-card {
        width: 390px;
        background: #fff;
        border-radius: 16px;
        padding: 35px 20px 22px;
        margin-top: -12px;
        bottom: 280px;
        position: relative;
        z-index: 1;
    }

    .roof-client-card::before {
        content: "";
        position: absolute;
        left: -32px;
        top: 12px;
        width: 32px;
        height: 32px;
        background: transparent;
        border-top-right-radius: 32px;
        box-shadow: 16px -16px 0 16px #fff;
    }

    .roof-client-card::after {
        content: "";
        position: absolute;
        right: -32px;
        top: 12px;
        width: 32px;
        height: 32px;
        background: transparent;
        border-top-left-radius: 32px;
        box-shadow: -16px -16px 0 16px #fff;
    }

    .roof-quote {
        color: #ff6a18;
        font-size: 28px;
        line-height: 1;
        margin-bottom: 30px;
        margin-top: 165px;
    }

    .roof-client-text {
        color: #111;
        font-size: 22px;
        line-height: 1.08;

        font-weight: 500;
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .roof-client-service {
        color: #111;
        font-size: 16px;
        margin-top: 10px;
        margin: 0;
    }

    .roof-testimonial-nav {
        position: absolute;
        width: 45px;
        height: 45px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: #000;
        display: grid;
        place-items: center;
        z-index: 10;
        transition: .3s ease;
    }

    .roof-testimonial-nav:hover {
        background: #ff6a18;
        color: #fff;
    }

    .roof-testimonial-prev {
        left: -55px;
        top: 72px;
    }

    .roof-testimonial-next {
        right: 15px;
        top: 72px;
    }

    @media(max-width:1199px) {
        .roof-testimonial-content {
            padding: 60px 55px;
        }

        .roof-testimonial-slider-area {
            right: 55px;
        }

        .roof-testimonial-left h2 {
            font-size: 50px;
        }
    }

    @media(max-width:991px) {
        .roof-testimonial-section {
            padding: 40px 10px;
        }

        .roof-testimonial-wrap {
            min-height: auto;
            overflow: hidden;
            border-radius: 18px;
        }

        .roof-testimonial-wrap::before,
        .roof-client-card::before,
        .roof-client-card::after {
            display: none;
        }

        .roof-testimonial-content {
            display: block;
            min-height: auto;
            padding: 55px 20px 20px;
            text-align: center;
        }

        .roof-testimonial-left {
            width: 100%;
        }

        .roof-testimonial-left h2 {
            font-size: 52px;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .roof-rating-card {
            margin: 0 auto 35px;
            width: 270px;
        }

        .roof-testimonial-slider-area {
            position: relative;
            top: auto;
            right: auto;
            width: 60%;
            margin: 0 auto;
            padding: 0 0 20px;
        }

        .roof-client-img {
            position: static;
            width: 100%;
            height: 220px;
            margin: 0;
            padding: 16px 16px 0;
            background: #fff;
            border-radius: 18px 18px 0 0 !important;
        }

        .roof-client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px !important;
        }

        .roof-client-card {
            position: static;
            width: 100%;
            margin: 0;
            padding: 24px 18px 26px;
            border-radius: 0 0 18px 18px;
        }

        .roof-quote {
            margin: 0 0 20px;
        }

        .roof-client-text {
            font-size: 18px;
            line-height: 1.25;
            margin-bottom: 26px;
        }

        .roof-testimonial-prev {
            left: -52px;
            top: 50%;
            transform: translateY(-50%);
        }

        .roof-testimonial-next {
            right: -52px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    @media(max-width:575px) {
        .roof-testimonial-left h2 {
            font-size: 34px;
        }

        .roof-testimonial-slider-area {
            width: 65%;
        }

        .roof-client-img {
            height: 220px;
        }

        .roof-client-card {
            padding: 20px;
        }

        .roof-client-text {
            font-size: 16px;
        }

        .roof-testimonial-nav {
            width: 44px;
            height: 44px;
        }

        .roof-testimonial-prev {
            left: -50px;
        }

        .roof-testimonial-next {
            right: -50px;
        }
    }

    /* TESTIMONIAL SESSION END */

    /* ROOF FAQS SESSION START */
    .roof-faq-section {
        background: #fff;
        padding: 0 0 70px;
        font-family: Arial, Helvetica, sans-serif;
    }

    .roof-faq-title {
        text-align: center;
        color: #000;
        font-size: 55px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -2px;
        margin-bottom: 55px;
    }

    .roof-faq-wrap {
        max-width: 740px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .roof-faq-item {
        background: #f1f1f1;
        border-radius: 18px;
        overflow: hidden;
    }

    .roof-faq-question {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 25px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        cursor: pointer;
        text-align: left;
    }

    .roof-faq-question h3 {
        margin: 0;
        color: #000;
        font-size: 25px;
        line-height: 1.2;
        font-weight: 500;
    }

    .roof-faq-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
        position: relative;
        display: inline-block;
    }

    .roof-faq-icon::before,
    .roof-faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 2px;
        background: #000;
        border-radius: 20px;
        transform: translate(-50%, -50%);
        transition: transform .65s cubic-bezier(.25, .8, .25, 1), opacity .45s ease;
    }

    .roof-faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .roof-faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        padding: 0 20px;
        transition: grid-template-rows .7s cubic-bezier(.25, .8, .25, 1), padding .55s ease;
    }

    .roof-faq-answer p {
        overflow: hidden;
        margin: 0;
        color: #333;
        font-size: 20px;
        line-height: 1.2;
        max-width: 650px;
    }

    .roof-faq-item.active .roof-faq-answer {
        grid-template-rows: 1fr;
        padding: 0 20px 24px;
    }

    .roof-faq-item.active .roof-faq-icon::after {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0;
    }

    @media(max-width:991px) {
        .roof-faq-section {
            padding: 50px 15px;
        }

        .roof-faq-title {
            font-size: 50px;
        }
    }

    @media(max-width:575px) {
        .roof-faq-title {
            font-size: 40px;
            letter-spacing: -1px;
            margin-bottom: 35px;
        }

        .roof-faq-question {
            padding: 22px 18px;
        }

        .roof-faq-question h3 {
            font-size: 20px;
        }

        .roof-faq-answer p {
            font-size: 17px;
        }
    }

    /* ROOF FAQS SESSION END */

    /* ROOF CONTACT SESSION START  */
    .roof-contact-section {
        background: #fff;
        padding: 40px 0 70px;
    }

    .roof-contact-wrap {
        position: relative;
        min-height: 600px;
    }

    .roof-contact-bg {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 558px;
        border-radius: 18px;
        overflow: hidden;
        z-index: 1;
    }

    .roof-contact-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .roof-contact-title-box {
        position: relative;
        z-index: 5;
        display: inline-block;
        background: #fff;
        padding: 0 55px 24px 0;
        border-radius: 0 0 18px 0;
    }

    .roof-contact-title-box::after {
        content: "";
        position: absolute;
        right: -30px;
        bottom: 82px;
        width: 30px;
        height: 30px;
        background: transparent;
        border-bottom-left-radius: 24px;
        box-shadow: -15px 15px 0 15px #fff;
        rotate: calc(90deg);
    }

    .roof-contact-title-box::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -30px;
        width: 30px;
        height: 30px;
        background: transparent;
        border-bottom-left-radius: 24px;
        box-shadow: -15px 15px 0 15px #fff;
        rotate: calc(90deg);
    }

    .roof-contact-title-box h2 {
        margin: 0;
        color: #000;
        font-size: 58px;
        line-height: 1.12;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .roof-contact-info-card {
        position: absolute;
        left: 30px;
        bottom: 30px;
        width: 350px;
        min-height: 263px;
        background: rgba(153, 152, 152, .205);
        color: #fff;
        border-radius: 16px;
        padding: 26px 22px;
        backdrop-filter: blur(4px);
        z-index: 4;
    }

    .roof-contact-info-card h5 {
        font-size: 14px;
        line-height: 1.55;
        font-weight: 800;
        margin-bottom: 45px;
    }

    .roof-contact-info-row {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-top: 18px;
    }

    .roof-contact-info-row span {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .22);
        display: grid;
        place-items: center;
        font-size: 20px;
    }

    .roof-contact-info-row strong {
        font-size: 20px;
        line-height: 1.18;
        font-weight: 800;
    }

    .roof-contact-form-card {
        position: absolute;
        right: 10px;
        top: 55px;
        width: 53%;
        background: #fff;
        border-radius: 22px;
        padding: 35px 34px 30px;
        z-index: 6;
    }

    .roof-contact-form-card label {
        display: block;
        color: #000;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .roof-contact-form-card input,
    .roof-contact-form-card select,
    .roof-contact-form-card textarea {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 9px;
        outline: none;
        background: #fafafa;
        color: #444;
        font-size: 16px;
        padding: 14px 15px;
    }

    .roof-contact-form-card textarea {
        height: 110px;
        resize: none;
    }

    .roof-contact-form-card input:focus,
    .roof-contact-form-card select:focus,
    .roof-contact-form-card textarea:focus {
        border-color: #ff6a18;
        background: #fff;
    }

    .roof-contact-form-card button {
        border: 0;
        background: #000;
        color: #fff;
        padding: 17px 30px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 800;
    }

    @media (min-width: 992px) and (max-width: 1199px) {

        .roof-contact-form-card {
            width: 46%;
        }

    }

    @media (max-width: 991px) {

        .roof-contact-wrap {
            min-height: auto;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .roof-contact-title-box {
            order: 1;
            display: block;
            background: #fff;
            padding: 0;
            margin-bottom: 30px;
            border-radius: 0;
        }

        .roof-contact-title-box:after {
            display: none;
        }

        .roof-contact-title-box:before {
            display: none;
        }

        .roof-contact-bg {
            order: 2;
            position: relative;
            height: 950px;
            border-radius: 18px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .roof-contact-form-card {
            position: absolute;
            top: 170px;
            /* heading ke baad image ke andar */
            left: 15px;
            right: 15px;
            width: auto;
            margin: 0;
            z-index: 5;
            padding: 30px;
        }

        .roof-contact-info-card {
            position: absolute;
            left: 15px;
            right: 15px;
            bottom: 15px;
            width: auto;
            min-height: auto;
            z-index: 5;
        }
    }

    @media (max-width: 767px) {

        .roof-contact-bg {
            height: 950px;
        }

        .roof-contact-title-box h2 {
            font-size: 42px;
        }

        .roof-contact-form-card {
            padding: 25px 20px;
        }

        .roof-contact-form-card label {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .roof-contact-form-card input,
        .roof-contact-form-card select,
        .roof-contact-form-card textarea {
            font-size: 14px;
            padding: 12px;
        }

        .roof-contact-form-card textarea {
            height: 100px;
        }

        .roof-contact-form-card button {
            padding: 14px 22px;
            font-size: 15px;
            border-radius: 10px;
        }

        .roof-contact-info-row strong {
            font-size: 16px;
        }

        .roof-contact-info-row span {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 16px;
        }

    }

    @media (max-width: 575px) {

        .roof-contact-section {
            padding: 30px 0 50px;
        }

        .roof-contact-title-box {
            margin-bottom: 20px;
        }

        .roof-contact-title-box h2 {
            font-size: 36px;
            line-height: 1.1;
            letter-spacing: 0;
        }

        .roof-contact-bg {
            height: 950px;
        }

        .roof-contact-form-card {
            top: 120px;
            left: 10px;
            right: 10px;
            padding: 18px 12px;
            border-radius: 16px;
        }

        .roof-contact-info-card {
            left: 10px;
            right: 10px;
            bottom: 100px;
            padding: 18px 15px;
        }

        .roof-contact-info-card h5 {
            margin-bottom: 25px;
            font-size: 13px;
        }

        .roof-contact-info-row {
            gap: 10px;
            margin-top: 15px;
        }

        .roof-contact-info-row strong {
            font-size: 14px;
            line-height: 1.4;
        }

        .roof-contact-info-row span {
            width: 38px;
            height: 38px;
            min-width: 38px;
            font-size: 15px;
        }

        .roof-contact-form-card .row {
            --bs-gutter-y: 1rem;
        }
    }

    /* ROOF CONTACT SESSION END  */

    /* FOOTER SESSION START  */
    .roof-footer-section {
        background: #fff;
        padding: 20px 10px;
        /* margin-top:auto; */
    }

    .roof-footer-wrap {
        background: #000;
        border-radius: 22px 22px;
        color: #fff;
        overflow: hidden;
        padding: 155px 0 0;
        min-height: 625px;
        position: relative;
    }

    .roof-footer-top {
        display: grid;
        grid-template-columns: 1.4fr 2fr 1.25fr 1.35fr;
        gap: 60px;
        padding-bottom: 135px;
    }

    .roof-footer-title {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .roof-footer-address {
        color: #cfcfcf;
        font-size: 17px;
        line-height: 1.25;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .roof-socials {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .roof-socials a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: .3s ease;
    }

    .roof-socials a:hover {
        color: #ff6a18;
        transform: translateY(-3px);
    }

    .roof-footer-link-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .roof-footer-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .roof-footer-list a {
        color: #cfcfcf;
        text-decoration: none;
        font-size: 17px;
        font-weight: 700;
        transition: .3s ease;
    }

    .roof-footer-list a:hover,
    .roof-footer-list a.active {
        color: #ff6a18;
    }

    .roof-contact-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .roof-contact-list li {
        color: #cfcfcf;
        font-size: 17px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .roof-contact-list i {
        color: #ff6a18;
        font-size: 18px;
        width: 20px;
    }

    .roof-footer-line {
        border-top: 1px solid rgba(255, 255, 255, .17);
        padding-top: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        position: relative;
        z-index: 2;
    }

    .roof-footer-copy,
    .roof-footer-credit {
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        margin: 0;
    }

    .roof-footer-credit a {
        color: #cfcfcf;
        text-decoration: underline;
    }

    .roof-footer-brand {
        margin-top: 45px;
        height: 185px;
        overflow: hidden;
        position: relative;
    }

    .roof-footer-brand h2 {
        font-size: 245px;
        line-height: .82;
        font-weight: 700;
        letter-spacing: 2px;
        margin: 0;
        background: linear-gradient(90deg, #4b0000 0%, #f52a19 56%, #9b5a22 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        opacity: .9;
    }

    .roof-footer-brand sup {
        font-size: 34px;
        letter-spacing: 0;
        -webkit-text-fill-color: #ff4b25;
        position: relative;
        top: -75px;
        margin-left: 12px;
    }

    @media(max-width:991px) {
        .roof-footer-wrap {
            padding: 80px 0 0;
        }

        .roof-footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 45px;
            padding-bottom: 80px;
        }

        .roof-footer-brand h2 {
            font-size: 150px;
        }

        .roof-footer-brand {
            height: 130px;
        }
    }

    @media(max-width:575px) {
        .roof-footer-section {
            padding: 0 8px;
        }

        .roof-footer-wrap {
            border-radius: 16px 16px 0 0;
            padding: 55px 0 0;
        }

        .roof-footer-top {
            grid-template-columns: 1fr;
            gap: 38px;
            padding-bottom: 55px;
        }

        .roof-footer-link-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .roof-footer-line {
            flex-direction: column;
            align-items: flex-start;
        }

        .roof-footer-brand {
            height: 95px;
        }

        .roof-footer-brand h2 {
            font-size: 100px;
            letter-spacing: -6px;
        }

        .roof-footer-brand sup {
            font-size: 20px;
            top: -35px;
        }
    }

    /* FOOTER SESSION END  */

    /* GO TO TOP BTN END */
    .back-to-top-btn {
        position: fixed;
        right: 22px;
        bottom: 22px;
        width: 54px;
        height: 54px;
        border: none;
        border-radius: 50%;
        background:
            conic-gradient(#ff5a1f 0deg, #eeeeee 0deg);
        color: #fff;
        z-index: 99999;
        display: grid;
        place-items: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px);
        transition: 0.3s ease;
    }

    .back-to-top-btn::before {
        content: "";
        position: absolute;
        inset: 5px;
        background: #000;
        border-radius: 50%;
        z-index: -1;
    }

    .back-to-top-btn i {
        font-size: 17px;
    }

    .back-to-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top-btn:hover {
        transform: translateY(-4px);
    }

    /* GO TO TOP BTN END */