* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #111;
    color: #fff;
}

.topbar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.info-item {
    opacity: 0.95;
}

.topbar-left {
    position: relative;
    padding-left: 18px;
    /* space for dot */
    display: flex;
}

p.orange-txt {
    margin-bottom: 0px;
}

.topbar-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #ffd04e;
}


/* Header */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 15px 40px;
}

.brand-text {
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 22px;
}

.logo p {
    font-size: 12px;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    /* 🔥 controls space between links */
}

.nav a {
    margin: 0 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    color: #a87b00;
}

.dropdown {
    position: relative;
}


/* Dropdown content */

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    min-width: 200px;
    z-index: 999;
}


/* Dropdown links */

.dropdown-content a {
    color: #111;
    padding: 12px 15px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    /*background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);*/
    color: #ffc21c;
}


/* Show dropdown on hover */

.dropdown:hover .dropdown-content {
    display: block;
}

.quote-btn {
    background: #a87b00;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: bold;
}


/* Header Icons */

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Search */

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 30px 8px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


/* Cart */

.cart {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #a87b00;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.quote-menu {
    display: flex;
    align-items: center;
}


/* Orange block */

.quote-btn {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: black;
    border: none;
    padding: 18px 26px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}


/* Three line icon block */

.menu-icon {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
}


/* Lines */

.menu-icon span {
    width: 22px;
    height: 2px;
    background: black;
    display: block;
}


/*Projects Section*/

.project-hero {
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/inner-page/breadcrumb.jpg") center center / cover no-repeat;
    height: 340px;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 1;
}

.breadcrumb-text {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcrumb-text a {
    color: inherit;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin: 0;
}

.contact-section {
    background: #ffffff;
    padding: 90px 0;
}

.contact-image img {
    width: 100%;
    border-radius: 6px;
}


/* HERO SECTION */

.hero-section {
    position: relative;
    min-height: 0%;
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/home-5/cta/cta-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 231, 161, 0.95), rgba(227, 196, 109, 0.90), rgba(201, 168, 74, 0.85));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


/* LEFT TEXT */

.top-label {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-left: 150px;
    color: #000;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0 30px;
    margin-left: 142px;
    color: #000;
}


/* BUTTON */

.contact-btn {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #000;
    padding: 14px 26px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    margin-left: 20vh;
    margin-top: -20px;
}

.contact-btn:hover {
    background: #000;
}

.contact-btn .arrow {
    background: #fff;
    color: #000;
    padding: 6px 8px;
}


/* RIGHT SIDE */

.worker-img {
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 3;
    margin-top: 60px;
    margin-left: -87px;
}


/* CONTACT BOX */

.contact-box {
    position: absolute;
    background: #fff;
    padding: 6px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-box i {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    padding: 12px;
    border-radius: 50%;
}

.contact-box small {
    font-size: 12px;
    color: #777;
}

.contact-box p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: black;
}


/* POSITIONS */

.contact-box.call {
    top: 25%;
    right: 140px;
}

.contact-box.mail {
    top: 48%;
    right: 70px;
}


/* CRANE */

.crane4-img {
    position: absolute;
    right: -30px;
    top: 18px;
    width: 370px;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

.footer1-section {
    position: relative;
    background: url("	https://wowtheme7.com/tf/buildnow/assets/img/home-5/footer-bg.jpg") center/cover no-repeat;
    color: #fff;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.footer-logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff5a1f;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-text {
    font-size: 14px;
    color: #ccc;
}

.footer-social span {
    display: block;
    margin-bottom: 8px;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

.footer-title {
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffc31f;
}

.newsletter-box {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 4px;
    margin-left: -32px;
    margin-top: -49px;
}

.newsletter-box i {
    font-size: 30px;
    color: #eeba2a;
    margin-bottom: 10px;
}

.newsletter-box h5 {
    font-weight: 600;
}

.newsletter-box p {
    font-size: 14px;
    color: #555;
}

.btn-orange {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    font-weight: 600;
    border: none;
    font-size: smaller;
}

.btn-orange:hover {
    background: #000;
    color: #fff;
}

.footer-bottom {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    padding: 15px 0;
    font-size: 14px;
    color: #000;
}

.payment-icons img {
    height: 22px;
    margin-left: 10px;
    background: #fff;
    padding: 3px;
    border-radius: 3px;
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff5a1f;
    color: #fff;
    padding: 10px 12px;
    border-radius: 3px;
    display: none;
}

.footer-logo2 img {
    width: 240px;
}


/* CRANE */

.crane1-img {
    position: absolute;
    right: -61px;
    top: 85px;
    width: 307px;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 21%;
}


/* left image */

.left-img {
    position: absolute;
    left: -675px;
    top: 0;
    width: 219px;
}

body {
    font-family: "Segoe UI", sans-serif;
}


/* Section */

.outline-heading-section {
    padding: 120px 30px;
    background: #fff;
    overflow-x: hidden;
}


/* Outline Text */

.outline-heading {
    font-size: 120px;
    font-weight: 900;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px #777;
    text-transform: capitalize;
    white-space: nowrap;
}


/* Icon Circle */

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ff5a1f;
    margin: 0 20px;
}

.icon-circle i {
    font-size: 42px;
    color: #fff;
}


/* Responsive */

@media (max-width: 1200px) {
    .outline-heading {
        font-size: 80px;
    }
    .icon-circle {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .outline-heading {
        font-size: 50px;
        white-space: normal;
    }
}


/* Scroll Top */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #ff5a1f;
    color: #fff;
    border: none;
    display: none;
}

.scrolling-wrap {
    width: 100%;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLeft 18s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.outline-heading {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 25px;
    color: transparent;
    -webkit-text-stroke: 1.5px #0f0f0f;
    text-transform: capitalize;
    white-space: nowrap;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.row-scroll {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
}

.scroll-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.scroll-track img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}


/* Left to Right */

.left-scroll .scroll-track {
    animation: scrollLeft 25s linear infinite;
}


/* Right to Left */

.right-scroll .scroll-track {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

body {
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.service-section {
    padding: 80px 0;
}

.service-card {
    border: 1px solid #eee;
    padding: 35px;
    background: #fff;
    height: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.service-icon {
    font-size: 45px;
    color: #ff6b00;
    margin-bottom: 20px;
    display: inline-block;
}


/* Shake Animation */

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-5px);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(-5px);
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-list {
    background: #f7f7f0;
    padding: 20px;
    margin-bottom: 25px;
    color: black;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.btn-view {
    border: 1px solid #000;
    padding: 12px 25px;
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
    transition: 0.3s;
}

.btn-view:hover {
    background: #000;
    color: #fff;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.hero1-section {
    min-height: 100vh;
    background: url('https://wowtheme7.com/tf/buildnow/assets/img/home-5/bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay1 {
    position: absolute;
    inset: 0;
}

.hero-contentt {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-contentt h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: -120px;
}

.hero-btn {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.3s;
    margin-bottom: -328px;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

.hero-btn i {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.impact-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.impact-tag {
    font-size: 12px;
    font-weight: 600;
    color: #ad7f00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.impact-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1px;
    color: black;
}

.impact-text {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.fw-bold {
    font-weight: 700!important;
    color: black;
}

.mb-3 {
    margin-bottom: 1rem!important;
    margin-top: -6px;
}

.h6,
h6 {
    font-size: 1rem;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-title {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    color: black;
}

.progress {
    height: 6px;
    background: #f1f1f1;
    border-radius: 0;
}

.progress-bar {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    width: 0;
    transition: width 1.5s ease;
}

.btn-impact {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-impact:hover {
    background: #000;
    color: #fff;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
}

.icon1 {
    width: 20px;
    margin-bottom: 0px;
    position: relative;
}

.content1 {
    margin-left: 10px;
}

.stats-box {
    position: absolute;
    top: 5vh;
    left: 13vh;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    text-align: center;
    width: 50vh;
    display: flex;
    justify-content: space-between;
}

.row.align-items-center.g-5 {
    position: relative;
}

.stats-box i {
    font-size: 30px;
    color: #ff6b00;
    margin-bottom: 10px;
}

.stats-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: #ffd04d;
}

.stats-box p {
    margin: 0;
    font-size: 14px;
}

.crane-img {
    position: absolute;
    right: -47px;
    top: 0px;
    width: 84px;
    opacity: 0.9;
}

@media(max-width: 991px) {
    .crane-img {
        display: none;
    }
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
}

.section-wrapper {
    padding: 90px 0;
}

.main-img {
    width: 100%;
    border-radius: 3px;
}

.service-sidebar {
    background: #f7f7f7;
    padding: 35px;
}

.service-sidebar h4 {
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
}

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

.service-list li {
    border-bottom: 1px solid #ddd;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: #111;
    font-weight: 500;
    transition: 0.3s;
}

.service-list a:hover {
    color: #e4ad17;
    padding-left: 5px;
}

.service-list i {
    color: #f5b403;
}

.small-img {
    margin-top: 30px;
    width: 100%;
}

.content-title {
    font-size: 36px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: #000;
}

.content-text {
    color: #666;
    font-size: 11px;
    line-height: 1.8;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff6b00;
    color: #fff;
    width: 45px;
    height: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

.scroll-top:hover {
    background: #000;
}

@media(max-width: 991px) {
    .service-sidebar {
        margin-top: 40px;
    }
}

.cta-overlay {
    position: absolute;
    bottom: 43px;
    left: 50%;
    transform: translateX(-50%);
    width: 71%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(7px);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
}

.cta-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.call-box {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.call-box i {
    font-size: 24px;
}

.call-box small {
    font-size: 12px;
    display: block;
}

.call-box strong {
    font-size: 16px;
}

.call-box:hover {
    background: #000;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
}


/* Feature Checklist */

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: -170px;
    margin-left: -8px;
}

.feature-list li {
    font-size: 11px;
    color: #555;
}

.feature-list i {
    color: #e2ac16;
    margin-right: 8px;
}


/* Content Section */

.left-content h3 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
    margin-left: -10px;
}

.left-content p {
    color: #666;
    font-size: 11px;
    line-height: 1.8;
    margin-left: -10px;
}


/* Bullet Highlight Points */

.highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    color: #000;
}

.highlight-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.highlight-dot {
    width: 9px;
    height: 9px;
    background: #f8b90b;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.highlight-list strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.highlight-list span {
    font-size: 13px;
    color: #777;
}

.logo-icon1 {
    transform-origin: center;
    margin-top: 0px;
    width: 140px;
}


/* CRANE */

.crane2-img {
    position: absolute;
    right: -61px;
    top: 85px;
    width: 307px;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

.footer2-section {
    position: relative;
    background: url("	https://wowtheme7.com/tf/buildnow/assets/img/home-5/footer-bg.jpg") center/cover no-repeat;
    color: #fff;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.footer-logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff5a1f;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-text {
    font-size: 14px;
    color: #ccc;
}

.footer-social span {
    display: block;
    margin-bottom: 8px;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

.footer-title {
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffc31f;
}


/* ==================== 
   SERVICES PAGE - RESPONSIVE MEDIA QUERIES
   ==================== */


/* Tablet View (max-width: 1024px) */

@media screen and (max-width: 1024px) {
    /* Header */
    .header {
        padding: 15px 20px;
    }
    .nav {
        gap: 15px;
    }
    .nav a {
        font-size: 13px;
        margin: 0 8px;
    }
    .logo-icon1 {
        width: 120px;
    }
    /* Service Cards */
    .service-section {
        padding: 60px 0;
    }
    .service-card {
        padding: 25px;
    }
    .service-card h4 {
        font-size: 20px;
    }
    /* Hero Section */
    .hero-content h1 {
        font-size: 52px;
    }
    .hero1-section {
        min-height: 60vh;
    }
    .hero-contentt h1 {
        font-size: 48px;
        margin-bottom: -80px;
    }
    .hero-btn {
        margin-bottom: -250px;
    }
    /* Impact Section */
    .impact-title {
        font-size: 36px;
    }
    .stats-box {
        width: 40vh;
        left: 8vh;
        padding: 12px 30px;
    }
    .stats-box h2 {
        font-size: 40px;
    }
    /* Outline Section */
    .outline-heading {
        font-size: 70px;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    .icon-circle i {
        font-size: 30px;
    }
    .scroll-track {
        gap: 40px;
    }
    /* Crane Images */
    .crane4-img {
        width: 280px;
        right: -20px;
    }
    .crane1-img {
        width: 250px;
        right: -40px;
        top: 70px;
    }
    /* Footer */
    .footer-logo2 img {
        width: 200px;
    }
    .newsletter-box {
        margin-left: 0;
        padding: 20px;
    }
}


/* Tablet Portrait (max-width: 768px) */

@media screen and (max-width: 768px) {
    /* Top Bar */
    .topbar {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px;
    }
    .topbar-left {
        padding-left: 0;
        justify-content: center;
    }
    .topbar-left::before {
        display: none;
    }
    .topbar-right {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .info-item {
        font-size: 13px;
        text-align: center;
    }
    /* Header */
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav a {
        font-size: 12px;
        margin: 0 5px;
    }
    .header-icons {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    .quote-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
    .menu-icon {
        padding: 12px 14px;
    }
    .menu-icon span {
        width: 18px;
    }
    /* Project Hero */
    .project-hero {
        height: 250px;
    }
    .hero-content h1 {
        font-size: 42px;
        text-align: center;
    }
    .breadcrumb-text {
        text-align: center;
    }
    /* Service Cards - 2 columns */
    .service-section .col-md-6 {
        width: 50%;
    }
    .service-card {
        padding: 20px;
    }
    .service-icon img {
        width: 50px;
    }
    .service-card h4 {
        font-size: 18px;
    }
    .service-list {
        padding: 15px;
    }
    .service-list li {
        font-size: 13px;
    }
    /* Hero1 Section */
    .hero1-section {
        min-height: 50vh;
    }
    .hero-contentt {
        text-align: center;
        margin: 0 auto;
    }
    .hero-contentt h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .hero-btn {
        margin-bottom: 0;
        padding: 12px 25px;
        font-size: 14px;
    }
    /* Impact Section */
    .impact-section {
        padding: 60px 0;
    }
    .col-lg-5,
    .col-lg-7 {
        width: 100%;
    }
    .image-wrapper {
        margin-bottom: 30px;
    }
    .stats-box {
        position: relative;
        top: -50px;
        left: 20px;
        width: auto;
        max-width: 300px;
    }
    .impact-tag {
        text-align: center;
        display: block;
    }
    .impact-title {
        font-size: 32px;
        text-align: center;
    }
    .fw-bold {
        text-align: center;
        font-size: 14px;
    }
    .impact-text {
        text-align: center;
    }
    .progress-item {
        max-width: 500px;
        margin: 20px auto;
    }
    .btn-impact {
        display: table;
        margin: 0 auto;
    }
    /* Outline Section */
    .outline-heading-section {
        padding: 60px 15px;
    }
    .outline-heading {
        font-size: 48px;
        gap: 15px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    .icon-circle i {
        font-size: 24px;
    }
    .scroll-track {
        gap: 30px;
    }
    /* Hero Section (Bottom) */
    .hero-section {
        padding: 50px 0;
    }
    .hero-text h1 {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
    }
    .top-label {
        margin-left: 0;
        text-align: center;
        display: block;
    }
    .contact-btn {
        margin-left: 0;
        display: inline-flex;
    }
    .worker-img {
        max-width: 240px;
        margin: 30px auto 0;
        display: block;
    }
    .contact-box.call,
    .contact-box.mail {
        position: relative;
        top: auto;
        right: auto;
        margin: 10px auto;
        width: fit-content;
    }
    .crane-img,
    .left-img {
        display: none;
    }
    /* Crane Images */
    .crane4-img {
        display: none;
    }
    .crane1-img {
        display: none;
    }
    .crane2-img {
        display: none;
    }
    /* Footer */
    .footer1-section {
        padding: 40px 0 20px;
    }
    .col-lg-4,
    .col-lg-2,
    .col-lg-3 {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer-logo2 img {
        width: 160px;
    }
    .footer-social {
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .newsletter-box {
        margin: 0;
        text-align: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .payment-icons {
        justify-content: center;
    }
}


/* Mobile View (max-width: 480px) */

@media screen and (max-width: 480px) {
    /* Top Bar */
    .topbar {
        padding: 8px 10px;
    }
    .topbar-left p {
        font-size: 11px;
    }
    .topbar-right {
        gap: 5px;
    }
    .info-item {
        font-size: 11px;
    }
    /* Header */
    .header {
        padding: 10px;
    }
    .logo {
        justify-content: flex-start;
        width: 100%;
    }
    .logo-icon1 {
        width: 100px;
        margin: 0;
    }
    /* Navigation - Align left */
    .nav {
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin: 10px 0;
    }
    .nav a {
        font-size: 11px;
        margin: 0 5px 0 0;
    }
    .dropdown-content {
        left: 0;
        right: auto;
        min-width: 150px;
    }
    .header-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
    /* Header Icons - Center and Top */
    .header-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 15px;
        margin: 0;
        position: relative;
        margin-top: 0px;
    }
    /* Search Box - Centered */
    .search-box {
        margin: 0;
        position: relative;
        display: inline-block;
    }
    .search-box input {
        width: 120px;
        padding: 8px 30px 8px 12px;
        font-size: 12px;
        border-radius: 20px;
        text-align: left;
    }
    .search-icon {
        position: absolute;
        right: -125px;
        left: auto;
        top: -130px;
        transform: translateY(-50%);
        cursor: pointer;
        pointer-events: none;
    }
    /* Cart - Centered */
    .cart {
        font-size: 20px;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -135px;
        right: -130px;
    }
    .cart-count {
        position: absolute;
        font-size: 10px;
        padding: 2px 5px;
        top: 0px;
        right: -10px;
        left: auto;
        background: #a87b00;
        color: #fff;
        border-radius: 50%;
        min-width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Quote Menu - Align Right */
    .quote-menu {
        width: auto;
        justify-content: flex-end;
        margin: 0;
        margin-left: auto;
        margin-top: -270px;
        /* Pushes to the right */
    }
    .quote-btn {
        padding: 10px 12px;
        font-size: 12px;
        margin: 0;
    }
    .menu-icon {
        padding: 10px 12px;
        gap: 6px;
        margin: 0;
    }
    .menu-icon span {
        width: 16px;
        height: 1.5px;
    }
    /* Project Hero */
    .project-hero {
        height: 180px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .breadcrumb-text {
        font-size: 11px;
    }
    /* Service Cards - 1 column */
    .service-section .col-md-6 {
        width: 100%;
    }
    .service-section {
        padding: 40px 0;
    }
    .service-card {
        padding: 25px;
        max-width: 350px;
        margin: 0 auto;
    }
    .service-icon img {
        width: 45px;
    }
    .service-card h4 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 13px;
    }
    .service-list li {
        font-size: 12px;
    }
    .btn-view {
        padding: 10px 20px;
        font-size: 12px;
    }
    /* Hero1 Section */
    .hero1-section {
        min-height: 40vh;
    }
    .hero-contentt h1 {
        font-size: 28px;
    }
    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    .hero-btn i {
        font-size: 12px;
    }
    /* Impact Section */
    .impact-section {
        padding: 40px 0;
    }
    .impact-title {
        font-size: 24px;
    }
    .fw-bold {
        font-size: 13px;
    }
    .impact-text {
        font-size: 13px;
    }
    .stats-box {
        padding: 2px 68px;
        left: 28px;
        top: -372px;
    }
    .stats-box h2 {
        font-size: 32px;
    }
    .stats-box p {
        font-size: 12px;
    }
    .icon1 img {
        width: 60px;
    }
    .progress-title {
        font-size: 12px;
    }
    .btn-impact {
        padding: 10px 25px;
        font-size: 12px;
    }
    /* Outline Section */
    .outline-heading-section {
        padding: 40px 10px;
    }
    .outline-heading {
        font-size: 28px;
        gap: 8px;
    }
    .icon-circle {
        width: 35px;
        height: 35px;
    }
    .icon-circle i {
        font-size: 16px;
    }
    .scroll-track {
        gap: 15px;
    }
    /* Hero Section (Bottom) */
    .hero-section {
        padding: 30px 0;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .top-label {
        font-size: 14px;
    }
    .contact-btn {
        margin-left: 70px;
        padding: 10px 18px;
        font-size: 14px;
    }
    .worker-img {
        max-width: 200px;
        margin-bottom: -160px;
        margin-right: 160px;
    }
    .contact-box {
        padding: 4px 12px;
    }
    .contact-box i {
        padding: 8px;
        font-size: 14px;
    }
    .contact-box p {
        font-size: 12px;
    }
    .contact-box small {
        font-size: 10px;
    }
    .contact-box.call,
    .contact-box.mail {
        position: relative;
        top: -70px;
        right: auto;
        margin: 10px auto;
        width: fit-content;
        margin-left: 160px;
    }
    /* Footer */
    .col-lg-4,
    .col-lg-2,
    .col-lg-3 {
        width: 100%;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-logo2 img {
        width: 140px;
    }
    .footer-text {
        font-size: 12px;
        text-align: center;
        padding: 0 10px;
    }
    .footer-social {
        text-align: center;
    }
    .footer-social a {
        margin: 0 8px;
        font-size: 14px;
    }
    .footer-title {
        font-size: 16px;
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .footer-links li {
        margin-bottom: 6px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .newsletter-box {
        padding: 20px 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    .newsletter-box h5 {
        font-size: 16px;
    }
    .newsletter-box p {
        font-size: 12px;
    }
    .form-control {
        font-size: 12px;
        padding: 8px;
    }
    .btn-orange {
        padding: 10px;
        font-size: 12px;
    }
    .footer-bottom {
        padding: 12px 0;
    }
    .footer-bottom p {
        font-size: 11px;
    }
    .payment-icons img {
        height: 14px;
        margin: 0 3px;
    }
    /* Scroll Top */
    .scroll-top {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
    }
}


/* Small Mobile (max-width: 360px) */

@media screen and (max-width: 360px) {
    .nav a {
        font-size: 9px;
    }
    .hero-content h1 {
        font-size: 24px;
    }
    .service-card {
        padding: 20px;
    }
    .service-card h4 {
        font-size: 18px;
    }
    .hero-contentt h1 {
        font-size: 24px;
    }
    .impact-title {
        font-size: 20px;
    }
    .stats-box {
        left: 5px;
        padding: 8px 15px;
    }
    .stats-box h2 {
        font-size: 28px;
    }
    .outline-heading {
        font-size: 22px;
    }
    .hero-text h1 {
        font-size: 24px;
    }
    .footer-logo2 img {
        width: 120px;
    }
}