body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.subpage-header {
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: right;
    padding: 1em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: right;
    width: 100%;
    max-width: 100%;
}

.subpage-header h1 {
    margin: 0;
}

.subpage-nav {
    display: flex;
    align-items: center;
}

.subpage-nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}

.subpage-nav a:hover {
    text-decoration: underline;
}

{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.homepage-header {
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.main-nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}

header h1 {
    margin: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 90vh; /* Adjust as needed */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 0;
}

.active-slide {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1em;
    text-align: center;
}

.home-sections {
    display: flex;
    justify-content: space-around;
    padding: 2em 0;
}

.section {
    text-align: center;
    width: 30%;
}

.section h2 {
    color: #4CAF50; /* Green color */
}

.homepage-footer {
    display: flex;
    justify-content: space-between;
    padding: 2em;
    background-color: #f1f1f1;
}

.homepage-footer div {
    width: 45%;
}

.about-us, .contact-us {
    text-align: center;
}

.about-us h3, .contact-us h3 {
    margin-bottom: 0.5em;
}

.image-blocks {
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
}

.image-block {
    width: 23%;
}

.image-block img {
    width: 100%;
    height: auto;
}

.intro, .subheadings {
    text-align: center;
    margin: 2em auto;
    padding: 0 1em;
    max-width: 100%;
}

.subheadings {
    display: flex;
    justify-content: space-around;
}

.subheading {
    width: 30%;
}

.subheading h2 {
    color: #4CAF50; /* Green color */
}

.detailed-work {
    margin: 2em 0;
}

.work-item {
    display: flex;
    align-items: center;
    margin: 2em 0;
}

.work-item img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.work-item.left {
    flex-direction: row;
}

.work-item.right {
    flex-direction: row-reverse;
}

.work-desc {
    width: 60%;
    padding: 1em;
}

.work-desc p {
    color: #333; /* Dark text color */
    margin: 0;
}

/* Material Design Styles */
body {
    background-color: #FAFAFA;
}

.intro p, .work-desc p {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1em;
    border-radius: 4px;
}

.slide-desc p {
    margin: 0;
}
