/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up a basic font and background color */
html, body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

body a {
    color: #66c2aa;
    text-decoration: none;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    font-size: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #66c2aa;
}

.logo {
    display: flex;
    align-items: center;
}

/* Logo styles */
.logo img {
    /* Add width and height properties to adjust the logo size */
    width: 65px; /* Adjust this value as needed */
    height: auto; /* Automatically adjust the height to maintain aspect ratio */
    aspect-ratio: 1/1;
}

.logo h1 {
    font-size: 24px;
    margin-left: 20px;
}


/* Hero section styles */
.hero {
    background-image: url('img/background.webp');
    background-size: cover;
    background-position: right 20% top 30%;
    text-align: center;
    padding: 150px 0;
    color: #fff;
    position: relative;
}

/* Style for the dark box */
.hero-content {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}

/* Style for the main title within the dark box */
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Style for the description within the dark box */
.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff; /* Set the text color to white */
}

#port-btn {
    padding-top: 50px;
}

/* Style for the portfolio carousel container */
.portfolio-carousel {
    margin: 0 -10px; /* Add negative margin to create space between items */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Style for each portfolio item */
.portfolio-item {
    padding: 10px; /* Add padding to each item to create space */
    box-sizing: border-box;
    text-align: center;
    width: calc(33.33% - 20px); /* Adjust item width for a 3-column layout */
    margin: 10px; /* Add margin to create space between items */
    background-color: rgba(0, 0, 0, 0.7); /* Rounded backdrop color */
    border-radius: 10px; /* Rounded corners */
}

.portfolio-item img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

/* Style for the caption text */
.caption {
    margin-top: 10px;
    color: white;
    font-size: 16px;
}

.project-box-heading {
    font-size: 16px;
    color: #409d85;
}

/* Style for the portfolio item images */
.portfolio-image-container img {
    width: 500px;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 10px; /* Rounded corners for the image */
}

.btn {
    display: inline-block;
    padding: 20px 30px;
    background-color: #409d85;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.btn:hover {
    background-color: #2d6c5c;
}

/* Portfolio section styles */
.portfolio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}
.biz-portfolio {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #dadada;
}

.portfolio h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.biz-portfolio h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

section {
    text-align: center;
    padding: 60px 0;
}

.about {
    background-color: #f0f0f0;
}

.bold {
    font-weight: bold;
}

.sidebyside {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px;
    
}
.service {
    width: 33%;
    flex: 1 0 200px;
}

.services{
    background-color: #dadada;
    text-align: center;
    font-size: 18px;
}

.biz-services{
    text-align: center;
    margin-top: 100px;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.biz-services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto; /* Center the paragraph horizontally */
    margin-right: auto; /* Center the paragraph horizontally */
}

/* Contact section styles */
.contact {
    background-color: #fff;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-block;
    color: white;
    width: 48px;
    height: auto;
}

.materials {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.materials h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.filament-blurb a {
    color: #409d85;
}

.filament-blurb p {
    margin-bottom: 10px;
}

.students h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

/* Styles for the contact form section */
.quote {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.quote h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

/* Styles for the form elements */
form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 150px;
}

button[type="submit"] {
    background-color: #66c2aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #409d85;
}

.quote p {
    color: #888888; /* Slightly grey color */
    margin-bottom: 20px; /* Add some space below the paragraph */
}

.popular-materials {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

.popular-materials li {
    font-size: 18px;
    margin-bottom: 20px;
    display: table; /* Display list items as table rows */
    width: 100%;
    border-collapse: collapse; /* Collapse cell borders */
}

/* Style table cell for highlighted text */
.popular-materials p.highlight {
    font-weight: bold;
    color: #409d85;
    display: table-cell; /* Display as table cell */
    width: 30%; /* Adjust the width as needed */
    text-align: right; /* Align highlighted text to the right */
    padding-right: 10px; /* Add spacing between highlighted text and description */
}

/* Style table cell for description text */
.popular-materials span {
    display: table-cell; /* Display as table cell */
    text-align: left; /* Align description text to the left */
    padding-left: 10px; /* Add spacing between highlighted text and description */
}

.slick-next:before, .slick-prev:before{
    font-family: Arial, Helvetica, sans-serif !important;
    font-display: swap;
}


.fancy-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.fancy-list li {
    font-size: 18px;
}

.fancy-list h3.highlight {
    font-weight: bold;
    color: #409d85;
    font-size: 28px;
}

.fancy-list p.highlight {
    font-weight: bold;
    color: #409d85;
    font-size: 28px;
    margin-top: 30px;
}
.fancy-list a{
    text-decoration: none;
    transition: color 0.3s ease;
    color: #409d85;
}

.printing-bullet {
    margin-top: 10px;
    margin-bottom: 50px;
}

.printing-bullet li {
    list-style: inside; /* Place the bullet points inside the list item */
    text-align: center; /* Center the text within the list item */
    margin-bottom: 10px;
}

.small-space {
    margin: 5px;
}

/* Mobile navigation styles */
.menu-icon {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
    }

    .nav-links a:hover {
        color: #66c2aa;
    }

    .image-container {
        display: flex;
        flex-direction: column; /* Stack images vertically on smaller screens */
        align-items: center; /* Center-align images */
    }

    .image-container img {
        width: 100%; 
        margin-bottom: 15px;
    }
}

.project-box {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.project-box .project-box-heading {
    font-size: 24px;
    font-weight: bold;
}

.project-box p {
    font-size: 16px;
    color: #555;
}

.image-container {
    justify-content: space-between;
    margin-bottom: 15px;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-top: 20px;
    margin-left: 35px;
    margin-right: 35px;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .image-container {
        display: inline;
    }

    .image-container img {
        width: 15%;
    }
}

@media (max-width: 400px) {
    .service-container {
        flex-direction: column;
    }
}