* {
    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: #ebb111;
}


/* Header */

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

.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;
}


/*Contact Section*/

.contact-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;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #fac83d;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: black;
}

.contact-info-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contactt-box {
    display: flex;
    gap: 15px;
}

.contactt-box i {
    font-size: 32px;
    color: #fac83d;
}

.contactt-box h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: black;
}

.contactt-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 14px 15px;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff5a1f;
}

.btn-submit {
    margin-top: 25px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #000;
    color: white;
}

body {
    background: #fff;
}

.contact-bar {
    background: #f9f7ef;
    padding: 45px 0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding: 25px;
}

.icon-box {
    width: 55px !important;
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    box-sizing: border-box;
}

.info-box h6 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: black;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}


/* Shake Animation */

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    50% {
        transform: translateX(4px);
    }
    75% {
        transform: translateX(-4px);
    }
    100% {
        transform: translateX(0);
    }
}

.shake:hover {
    animation: shake 0.5s;
}


/* Responsive */

@media (max-width: 768px) {
    .info-box {
        justify-content: center;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f8f8f8;
}

.map-section {
    width: 100%;
    height: 500px;
    position: relative;
}

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


/* Optional Overlay Button */

.map-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.map-btn:hover {
    background: #000;
    color: white;
}

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

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


/* 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 */

.crane-img {
    position: absolute;
    right: -80px;
    top: 0;
    width: 102px;
}

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: #f3c340;
}

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

.newsletter-box i {
    font-size: 30px;
    color: #e9b72f;
    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: 80px;
    width: 322px;
}

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


/* left image */

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

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity))!important;
    margin-left: 0px;
}

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


/* Top Bar */

@media (max-width: 480px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    .topbar-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .topbar-left {
        padding-left: 0;
    }
    .topbar-left::before {
        display: none;
    }
}


/* Header */

@media screen and (max-width: 480px) {
    /* Header */
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    /* Navigation */
    .nav {
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin: 10px 0;
    }
    .nav a {
        font-size: 11px;
        margin: 0 5px 0 0;
    }
    /* Dropdown */
    .dropdown-content {
        left: 0;
        right: auto;
        min-width: 150px;
    }
    /* Header Icons */
    .header-icons {
        gap: 10px;
    }
    .logo {
        justify-content: flex-start;
        width: 100%;
    }
    .logo-icon2 {
        width: 100px;
        margin: 0;
        margin-left: -20px;
    }
    /* Quote Button */
    .quote-menu {
        width: auto;
        justify-content: flex-end;
        margin: 0;
        margin-left: 140px;
        margin-top: -260px;
        /* 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;
    }
    /* 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;
    }
}


/* Hero Section */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-section {
        padding: 40px 0;
    }
    .hero-text h1 {
        font-size: 32px;
        margin-left: 0;
        text-align: center;
    }
    .top-label {
        margin-left: 0;
        text-align: center;
        display: block;
    }
    .contact-btn {
        margin-left: 0;
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 20px auto;
    }
    .worker-img {
        margin-left: 0;
        max-width: 170px;
        margin: 20px auto;
        margin-bottom: -183px;
    }
    .contact-box.call,
    .contact-box.mail {
        position: relative;
        top: -50px;
        left: 20%;
        margin: 10px auto;
        width: fit-content;
    }
    .crane-img,
    .left-img {
        display: none;
    }
}


/* Contact Section */

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 20px;
    }
    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .contactt-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}


/* Map Section */

@media (max-width: 480px) {
    .map-section {
        height: 300px;
    }
}


/* Footer */

@media (max-width: 480px) {
    .col-lg-3 {
        width: 100%;
    }
    .newsletter-box {
        margin-left: 0;
        margin-top: 0;
    }
    .crane1-img {
        display: none;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .payment-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .payment-icons img {
        margin-left: 0;
    }
    .footer-logo2 img {
        width: 180px;
    }
    .footer-social {
        text-align: center;
    }
    .footer-social a {
        margin: 0 8px;
    }
    .footer-links {
        text-align: center;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
}


/* Tablet Styles */

@media (min-width: 481px) and (max-width: 768px) {
    /* Top Bar */
    .topbar {
        flex-direction: column;
        padding: 15px 30px;
    }
    .topbar-right {
        justify-content: center;
    }
    /* Header */
    .header {
        flex-wrap: wrap;
        padding: 15px 30px;
    }
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    .nav a {
        margin: 0 8px;
    }
    /* Hero Section */
    .hero-text h1 {
        font-size: 42px;
        margin-left: 50px;
    }
    .top-label {
        margin-left: 50px;
    }
    .contact-btn {
        margin-left: 50px;
    }
    .worker-img {
        margin-left: 0;
        max-width: 280px;
    }
    .contact-box.call {
        right: 80px;
    }
    .contact-box.mail {
        right: 30px;
    }
    /* Contact Section */
    .section-title {
        font-size: 36px;
    }
    .contact-info-row {
        gap: 30px;
    }
    .info-box {
        padding: 15px;
    }
    /* Footer */
    .col-lg-3 {
        width: 50%;
    }
    .newsletter-box {
        margin-left: 0;
    }
    .crane1-img {
        width: 250px;
        right: -30px;
    }
}


/* Small Desktop / Large Tablet */

@media (min-width: 769px) and (max-width: 1024px) {
    /* Header */
    .nav {
        gap: 15px;
    }
    .nav a {
        margin: 0 8px;
        font-size: 13px;
    }
    /* Hero Section */
    .hero-text h1 {
        font-size: 46px;
        margin-left: 100px;
    }
    .top-label {
        margin-left: 100px;
    }
    .contact-btn {
        margin-left: 100px;
    }
    .worker-img {
        margin-left: -50px;
    }
    .contact-box.call {
        right: 100px;
    }
    .contact-box.mail {
        right: 50px;
    }
    .crane-img {
        width: 80px;
        right: -40px;
    }
    .left-img {
        left: -500px;
        width: 180px;
    }
    /* Contact Section */
    .section-title {
        font-size: 38px;
    }
    /* Footer */
    .col-lg-3 {
        width: 25%;
    }
    .crane1-img {
        width: 280px;
        right: -50px;
    }
}


/* Header */

.nav {
    gap: 15px;
}

.nav a {
    margin: 0 8px;
    font-size: 13px;
}


/* Hero Section */

.hero-text h1 {
    font-size: 46px;
    margin-left: 100px;
}

.top-label {
    margin-left: 100px;
}

.contact-btn {
    margin-left: 100px;
}

.worker-img {
    margin-left: -50px;
}

.contact-box.call {
    right: 100px;
}

.contact-box.mail {
    right: 50px;
}

.crane-img {
    width: 80px;
    right: -40px;
}

.left-img {
    left: -500px;
    width: 180px;
}


/* Contact Section */

.section-title {
    font-size: 38px;
}


/* Footer */

.col-lg-3 {
    width: 25%;
}

.crane1-img {
    width: 280px;
    right: -50px;
}