/* General Styling */
.AMD,
.dots,
.more-projects,
.project {
    text-align: center;
}

.prt-page-title-row-Project-Detail {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Slider Section */
.slider-Project {
    position: relative;
    width: 100%;
    max-height: 600px;
}

.slides-Project {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-Project {
    min-width: 100%;
    box-sizing: border-box;
}

.slide-Project img {
    width: 100%;
    height: 66vh;
    object-fit: cover;
    display: block;
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active-Project {
    background-color: #fff;
}

/* Bottom Section */
.bottom-section {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.bottom-section div {
    flex: 1;
    text-align: center;
    min-width: 150px;
}

/* More Projects Section */
.more-projects {
    width: 100%;
    padding: 40px 0;
}

.projects-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project {
    width: 30%;
}

.project img {
    width: 100%;
    height: auto;
}

.project-title {
    margin-top: 10px;
    font-size: 18px;
}

.more-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
}

/* AMD Section */
.AMD {
    margin-top: 50px;
    height: 0vh;
    background-color: #fed700;
    padding: 15px;
}

/* Project Paragraph */
.Project-Paragraph {
    margin-top: 75px;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .slider-Project {
        max-height: 500px;
    }

    .slide-Project img {
        height: 80vh;
    }

    .bottom-section {
        font-size: 18px;
    }

    .more-projects {
        padding: 20px;
        font-size: 18px;
    }

    .project {
        width: 45%;
    }

    .Project-Paragraph {
        margin-top: 60px;
    }
}

@media screen and (max-width: 992px) {
    .slider-Project {
        max-height: 400px;
    }

    .slide-Project img {
        height: 70vh;
    }

    .Project-Paragraph {
        margin-top: 50px !important;
    }
}

@media screen and (max-width: 768px) {
    .slider-Project {
        max-height: 350px;
    }

    .slide-Project img {
        height: 60vh;
    }

    .dots {
        bottom: 5px;
    }

    .dot {
        height: 8px;
        width: 8px;
    }

    .bottom-section {
        flex-direction: column;
        text-align: center;
        font-size: 16px;
    }

    .projects-container {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 80%;
        margin-bottom: 20px;
    }

    .more-button {
        width: 80%;
        font-size: 16px;
    }

    .AMD {
        margin-top: 50px;
        height: auto;
        padding: 10px;
        font-size: 16px;
    }

    .Project-Paragraph {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .slider-Project {
        max-height: 300px;
    }

    .slide-Project img {
        height: 50vh;
    }

    .dots {
        bottom: 3px;
    }

    .dot {
        height: 6px;
        width: 6px;
    }

    .bottom-section {
        font-size: 16px;
    }

    .project {
        width: 100%;
    }

    .more-button {
        width: 100%;
        padding: 8px;
    }

    .AMD {
        font-size: 14px;
        padding: 8px;
    }

    .Project-Paragraph {
        margin-top: 0px;
    }
}
/* Project Details Header CSS Stylesheet */
.line-pattern {
    display: inline-block;
    width: 1900px; /* Adjust the width as needed */
  }
  .top-line {
    background-color: black; /* Dark color for the top line */
    height: 80px; /* Thickness of the top line */
    width: 100%;
  }
  
  .bottom-bar {
    background-color: #FFD700; /* Yellow color for the bottom bar */
    height: 50px; /* Height of the yellow bar */
    width: 100%;
  }
  .line-pattern {
    display: inline-block;
    max-width: 100%;
    width: 1900px; /* Keeps the original width for large screens */
  }
  
  @media (max-width: 1900px) {
    .line-pattern {
      width: 100%; /* Adjusts width for smaller screens */
    }
  }
  