@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-orange-color: #FF5A3C;
}

* {
    font-family: "Montserrat", sans-serif;
}


/* Common style */

.fs-md {
    font-size: 12px;
}

.max-area {
    max-width: 1550px;
    margin: 0 auto;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-prime {
    background-color: var(--primary-orange-color);
}


/* Header style */

header {
    border-top: 3.5px solid var(--primary-orange-color);
    box-shadow: 0px 2px 5px 1px #f9f9f9;
}

.site-logo {
    height: 2.5rem;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items>ul>li>a {
    color: #191919;
    text-decoration: none;
    font-size: 13.5px;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: var(--primary-orange-color);
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-button {
    background-color: var(--primary-orange-color);
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 12.5px;
}

#hamburger-menu,
#mobile-menu {
    display: none;
}

@media only screen and (max-width: 1098px) {
    #mobile-menu {
        background-color: var(--primary-orange-color);
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 9999;
        padding-top: 6rem;
    }
    .mobile-nav-items>ul {
        padding: 0px;
    }
    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }
    .mobile-nav-items>ul>li>a {
        color: white;
        text-decoration: none;
    }
    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }
    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }
    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }
    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }
    .mobile-nav-button:hover a {
        color: #141214;
    }
    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }
    .nav-items>ul,
    .nav-button {
        display: none;
    }
    #hamburger-cross {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }
    #hamburger-menu {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 24px;
    }
}


/* Home banner */

.home-banner {
    margin-bottom: 6rem;
/*    background: linear-gradient(90deg, rgb(125 203 225) 0%, rgb(209 239 255) 100%);*/
    background-color: #f2f6f7;
}

.banner-height {
    height: 30rem;
}

.banner-image {
    width: auto;
    transform: translate(0, -44%);
}

.banner-title {
    font-size: 3rem;
    line-height: normal;
}

.banner-email {
    padding: 0.8rem 1rem 0.8rem 1.5rem;
}

.banner-input-group {
    width: 25rem;
}

.get-quote-btn {
    padding: 0.7rem 1rem;
    transform: translate(186%, -50%);
    background-color: var(--primary-orange-color);
    color: #ffffff;
    transition: 0.5s;
}

.get-quote-btn:hover {
    background-color: #313131;
    color: #ffffff;
    box-shadow: 1px 1px 10px #67aad159;
}

.banner-email::placeholder {
    font-size: 12px;
    font-weight: 500;
    color: #b3b3b3;
}


/*Home About us intro*/

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

.our_service_img {
    width: 85%;
    height: 9rem;
    object-fit: cover;
}

.service_next_icon {
    background-color: #ffffff;
    color: var(--primary-orange-color);
    border: 2px solid var(--primary-orange-color);
    transition: 0.4s;
}

.service_next_icon svg {
    padding: 11px;
}

.service_next_icon:hover {
    background-color: #157b973b;
    color: var(--primary-orange-color);
    border: 2px solid transparent;
}

.our_section {
    margin-top: 10rem;
    background-color: #191919;
}

.icon_card {
    background-color: #2e2e2e;
    padding: 5rem;
}


/*Testimonial section*/

.testimonial-thumbnail {
    height: 2.5rem;
    width: 2.5rem !important;
}

.fill_orange {
    fill: #ffc107;
}

.fill_prime {
    fill: var(--primary-orange-color);
}

.stroke_white {
    stroke: #ffffff;
}

.stroke_prime {
    stroke: var(--primary-orange-color);
}

.owl-client img {
    filter: grayscale(1);
    width: 75% !important;
}

.owl-testimonial .owl-nav,
.owl-our-section .owl-nav {
    display: flex !important;
    gap: 3rem;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-10%, -200%);
    font-size: 2rem;
    font-weight: 600;
}

.owl-testimonial .owl-nav button {
    background-color: #171717 !important;
    color: #ffffff !important;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
}

.owl-our-section .owl-nav button {
    background-color: #ffffff !important;
    color: #191919 !important;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
}

.owl-testimonial .owl-nav button span,
.owl-our-section .owl-nav button span {
    margin-top: -5px;
}

.owl-testimonial .owl-nav button:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}

.owl-our-section .owl-nav button:hover {
    background-color: var(--primary-orange-color) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.owl-client .owl-stage {
    align-items: center;
    display: flex;
}


/*Gallery Intro Section*/

.gallery_intro_img {
    width: 40%;
    position: absolute;
    transform: translate(0);
}

.our_section a {
    background-color: #ffffff;
    color: #191919;
    padding: 0.7rem 2rem;
    border-radius: 5rem;
    transition: 0.4s;
    border: 1px solid #ffffff;
}

.our_section a:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}


/*About us Page*/

.w-fit {
    width: fit-content;
}

.about_us_thumbnails {
    height: 25rem;
    width: 25rem;
}

.our_vision,
.our_safety {
    background: url('../images/about_us_base.jpg');
    background-color: #191919;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: darken;
}

.our_vision .row,
.our_mission .row,
.our_safety .row {
    width: 93%;
}

.after_thumb {
    height: 25rem;
    width: 25rem;
    display: block;
    background-color: #222222;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: translate(13%, 11%);
}

.before_thumb {
    height: 25rem;
    width: 25rem;
    display: block;
    background-color: #efefef;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transform: translate(-13%, -11%);
}


/*Gallery Page*/

.gallery_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-row-gap: 3rem;
    grid-column-gap: 1rem;
}

.gallery_desc {
    left: 5%;
    top: 5%;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
}

.gallery_desc p:first-child {
    font-size: 13px;
}

.gallery_thumb:hover .gallery_desc {
    background-color: var(--primary-orange-color);
    color: #ffffff;
}

.gallery_thumb:hover {
    scale: 1.02;
}

.gallery_thumb {
    transition: 0.5s;
}

.gallery_thumb img {
    height: 270px;
}

@media screen and (max-width: 450px) {
    .gallery_list {
        grid-template-columns: auto;
    }
}


/*Policy page*/

.policy_base {
    background-color: #157b9714;
}

.policy_list {
    font-size: 15px;
    border-radius: 2rem;
    border: 1rem solid #ecf5f7;
    outline: 2px solid #191919;
}


/*Contact us page*/

.contact_info ul li {
    padding: 12px;
    width: 70%;
    transition: 0.5s;
}

.contact_info ul li:hover {
    background-color: var(--primary-orange-color);
    color: #ffffff;
    border: 1px solid transparent !important;
}

.contact_info ul li:hover a {
    color: #ffffff;
}

.contact_info ul li a {
    color: #000000;
}

.contact_form input::placeholder {
    font-size: 13px;
    font-weight: 500;
    color: #b7b7b7;
}

.contact_form input:focus,
.contact_form button:focus {
    box-shadow: none;
    border-color: var(--primary-orange-color);
}

.contact_form button {
    background-color: #191919;
    color: #fff;
    padding: 12px;
    font-weight: 500;
    transition: 0.5s;
}

.contact_form button:hover {
    background-color: #2e2e2e;
}

.social_icons a {
    background-color: var(--primary-orange-color);
    color: #ffffff;
    padding: 10px;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    transition: 0.5s;
}

.social_icons a:hover {
    background-color: #191919;
}


/*Plant and Machinery page*/

.completed_thumb {
    height: 35rem;
}

#completed_projects .accordion-button:not(.collapsed) {
    background-color: var(--primary-orange-color);
    color: #ffffff;
}

#completed_projects button:focus {
    box-shadow: none;
}

.key_position thead tr th {
    background-color: var(--primary-orange-color);
}


/*footer page*/

footer {
    background-color: #ff5a3c0a;
}

footer a {
    font-size: 14px;
}

.footer-logo {
    height: 100px;
}

.footer_copyright {
    background-color: var(--primary-orange-color);
}


/*Media Queries*/

@media screen and (max-width: 768px) {
    .banner-image {
        height: 15rem;
        width: 100%;
        object-fit: contain;
        position: unset !important;
        transform: none !important;
    }
    .banner-height {
        height: auto;
    }
}

@media screen and (min-width: 768px) {
    .owl-client img {
        width: 50% !important;
    }
}

@media screen and (max-width: 767px) {
    .gallery_intro_img {
        width: 100%;
        position: initial;
        transform: translate(0);
    }
    .our_section {
        margin-bottom: 3rem;
    }
    .contact_info ul li {
        width: 100%;
    }
    .w-sm-100,
    .our_vision .row,
    .our_mission .row,
    .our_safety .row {
        width: 100% !important;
    }
    .about_us_thumbnails {
        width: 100%;
        height: 18rem;
    }
    .after_thumb,
    .before_thumb {
        height: 18rem;
        width: 100%;
        transform: translate(0);
    }

    .site-logo {
        height: 3rem;
    }
}

@media screen and (max-width: 599px) {
    .icon_card {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    .banner-title {
        font-size: 2rem;
    }
    .banner-input-group {
        width: 100%;
    }
    .get-quote-btn {
        right: 0 !important;
        transform: translate(-5%, -50%);
    }
    .our_section {
        margin-top: 0;
    }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
    .banner-image {
        height: 19rem;
    }
}

@media screen and (max-width: 1024px) {
    .our_service_img {
        width: 100%;
    }
    .owl-our-section .item>div {
        flex-wrap: wrap;
    }
    .owl-testimonial .owl-nav {
        transform: translate(-5%, -380%);
    }
    .owl-our-section .owl-nav {
        transform: translate(20%, -380%);
    }
    .completed_thumb {
        height: 20rem;
    }
}