* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: 'Inter', sans-serif; */
    /* font-family: 'Lato', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Open Sans', sans-serif; */
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.section-title {
    text-align: center;
    line-height: 37px;
    font-size: 28px;
    font-weight: 500;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    color: rgb(41, 41, 41);
}
.paragraph {
      font-size: 16px;
      text-decoration: none solid rgb(114, 114, 114);
      color: rgb(114, 114, 114);
      line-height: 27px;
      font-weight: 400;
      font-family: "PT Sans", sans-serif !important;
  }

/* The hero image */
.banner-hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/banner-img.png");
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.banner-hero-text {
    width: 100%;
    background-image: linear-gradient(rgba(38, 102, 115, 0.8), rgba(38, 102, 115, 0.8));
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: white;
}


/* projects section */
.project-tabs {
    border: none !important;
}

.project-tabs .nav-link {
    border: none;
    background: none;
    color: #333;
    font-weight: 500;
    margin-right: 10px;
    transition: all 0.3s ease;
    /* 👈 this is the key */
    border-radius: 20px;
    padding: 6px 15px;
}

.project-tabs .nav-link:hover {
    background-color: #eee;
    color: #000;
}

.project-tabs .nav-link.active {
    background-color: #ddd;
    color: #000;
}

.project-card {
    text-align: center;
    margin-bottom: 30px;
    /* opacity: 0; */
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active .project-card {
    opacity: 1;
    transform: translateY(0);
}

.fade.tab-pane {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade.tab-pane.show {
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card p {
    margin-top: 10px;
    font-weight: 500;
}


/* parallax section */
.parallax-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-img.png');
    height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-text {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 2rem;
    border-radius: 8px;
}

.parallax-text h3 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}


/* gallery-css */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (max-width: 768px) {

    /* The hero image */
    .banner-hero-image {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner-img.png");
        height: 400px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .parallax-text h3 {
        margin-bottom: 2rem;
        font-size: 1.4rem;
        font-weight: 400;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* gallery-css */
    .gallery-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

}


/* our-machine-css */
.table-wrapper {
    border: 1px solid #cfe2ff;
    border-radius: 8px;
    overflow: hidden;
}

.machine-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

.machine-row:last-child {
    border-bottom: none;
}

.machine-cell {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #dee2e6;
}

.machine-cell:first-child {
    border-left: none;
}

.machine-img {
    max-width: 100%;
    height: 120px;
    object-fit: cover;
}

.machine-name {
    font-weight: 500;
}

.table-header {
    background: #F48036;
    color: #fff;
    font-weight: bold;
}


/* our-products */
    .product-card {
      background-color: white;
      border: 2px solid #F48036;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      cursor: pointer;
    }

    .product-card:hover {
      /* transform: translateY(-6px); */
      box-shadow: 0 6px 20px rgba(0, 84, 165, 0.2);
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: fill;
      margin-bottom: 10px;
    }

    .product-title {
      font-size: 1rem;
      font-weight: bold;
      color: #F48036;
      border-top: 1px solid #ddd;
      padding-top: 10px;
      margin-top: 10px;
    }

    .grid-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 20px;
      text-align: center;
    }

    /* blog */
    .blog-card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }