/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.top-bar {
    background: #004a2f; /* Deep Green from your theme */
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

/* Horizontal Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px; /* Adjust height to fit your logo */
    width: auto;
    display: block;
}

.nav-links {
    display: flex; /* Makes menu horizontal */
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00a859;
}

/* Login Button style */
.login-btn a {
    background: #333;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.login-btn a:hover {
    background: #00a859;
}

/* Banner Animation */
.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-wrapper {
    display: flex;
    width: 500%; /* 5 images */
    animation: slide 20s infinite linear;
}

.banner-wrapper img {
    width: 20%; /* 1/5th of the wrapper */
    height: auto;
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-20%); }
    45% { transform: translateX(-20%); }
    50% { transform: translateX(-40%); }
    70% { transform: translateX(-40%); }
    75% { transform: translateX(-60%); }
    95% { transform: translateX(-60%); }
    100% { transform: translateX(-80%); }
    /* About Section Styles */
.about-section {
    padding: 80px 5%;
    background: #ffffff;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-left: 5px solid #d4af37; /* Industrial Gold accent */
    padding-left: 15px;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Add a small gold checkmark before list items */
.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-grid { flex-direction: column; text-align: center; }
    .about-text h2 { border-left: none; padding-left: 0; }
}
}