/* style.css */

/* General Industrial Theme */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* 1. Banner Styling */
.main-banner {
    height: 100px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('banner-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid #ff6600; /* Safety Orange */
}

/* 2. Logo Section */
.logo-area {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
}
.main-logo { height: 300px; }

/* 3. Carousel (Auto-Scrolling) */
.carousel-container {
    overflow: hidden;
    background: #111;
    padding: 20px 0;
}
.carousel-wrapper {
    position: relative; /* Anchor for absolute buttons */
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    overflow-x: auto; /* Required for manual scrolling */
    scroll-behavior: smooth; /* Modern browsers scroll smoothly automatically */
    scrollbar-width: none; /* Hide scrollbar for clean industrial look */
}

.carousel-track::-webkit-scrollbar { display: none; }

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ff6600; /* Industrial Orange */
    border: 2px solid #ff6600;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-btn:hover { background: #ff6600; color: #000; }
.prev { left: 10px; }
.next { right: 10px; }
/* Carousel Wrapper End */

.slide { width: 250px; padding: 10px; }
.slide img { width: 100%; border: 2px solid #444; filter: grayscale(50%); }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* Lightbox Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid #ff6600; /* Industrial accent */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Change cursor on carousel images to show they are clickable */
.slide img {
    cursor: zoom-in;
    transition: 0.3s;
}

.slide img:hover {
    filter: none; /* Remove grayscale on hover */
}
/* Lightbox Modal Style End */

/* 4. Contact Form */
.contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: #2a2a2a;
    border: 1px solid #444;
}
input, textarea, select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    background: #333;
    color: white;
    border: 1px solid #555;
}
button {
    background: #ff6600;
    color: white;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    text-transform: uppercase;
}

/* 5. Footer */
footer {
    padding: 30px;
    background: #111;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.9em;
}
