/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #fcf7f7;
    color: #222;
}
.logo {
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}
.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-right: 30px;
}

.company-name {
  font-family: 'Arial', sans-serif; /* Change font */
  font-size: 30px; /* Change size */
}

.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: #111;
    color: #fff;
    z-index: 1000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5vw;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.7rem;
    margin: 0;
    padding: 0;
}
.nav-links li { }
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: #ffb300;
}
.hero {
    background-image: url('hero-fire.jpg') center/cover no-repeat;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.hero-text {
    background: rgba(0,0,0,0.5);
    padding: 50px 30px;
    border-radius: 14px;
    color: #fff;
    text-align: center;
}
.experience, .gallery, .contact {
    max-width: 800px;
    margin: 2.2rem auto;
    padding: 30px 22px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 9px rgba(0,0,0,0.08);
}
h1 {
    color: #fff;
    font-weight; bold;
}
h2 {
    color: #263238;
}
.carousel {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
}
.carousel-images {
    width: 425px;
    height: 275px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 2px solid #ddd;
}
.carousel-images img {
    width: 425px;
    height: 275px;
    object-fit: cover;
    display: none;
    transition: opacity 0.4s ease;
}
.carousel-images img.active {
    display: block;
}
.carousel-btn {
    background: #fff3e0;
    color: #b71c1c;
    border: none;
    font-size: 2.5rem;
    border-radius: 9px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    margin: 0 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.carousel-btn:hover {
    background: #ffd54f;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
label {
    font-weight: 550;
    margin-bottom: 6px;
}
input, textarea {
    padding: 12px;
    border: 1.5px solid #d32f2f;
    border-radius: 5px;
    font-size: 1rem;
}
button[type="submit"] {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 14px 0;
    font-size: 1.12rem;
    border-radius: 5px;
    margin-top: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
}
button[type="submit"]:hover {
    background: #bf360c;
}
/* Responsive Design */
@media (max-width: 650px) {
    .nav-content { flex-direction: column; gap: 9px; }
    .carousel-images, .carousel-images img { width: 96vw; height: 45vw; min-height: 150px; }
    .gallery, .experience, .contact { margin: 1.1rem 1vw; padding: 17px 3vw;}
    .hero-text { padding: 24px 6vw; }
}
