body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}

header {
    background-color: #1d1d1d;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

p {
    color: white;
    font-size: 22px;
}

nav {
    text-align: center;
    background-color: #232323;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

.models-large {
    padding: 10px 10px;
    max-height: 600px;
    margin: 0 auto;
}

.models {
    padding: 10px 10px;
    max-height: 400px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: #5c5c5c;
}

.project {
    display: inline-block;
    width: 375px;
    height: 375px;
    margin: 10px;
    background-color: #d2d2d2;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.project::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.project h3 {
    color: #333;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    z-index: 1;
}

.project a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    font-size: 30px;
    top: 0;
    left: 0;
    text-decoration: none;
    color: transparent;
    transition: color 0.3s ease;
    text-align: center;
    line-height: normal; /* Ensure text is centered */
}

.project:hover::before {
    opacity: 1;
}

.project:hover a {
    color: white;
    line-height: normal; /* Keep this consistent to prevent shifting */
}

.img {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20px;
}

.img img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.img video {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.pdf-style {
    width: 100%;
    height: 800px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #444;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
