:root {
    --primary: #0b2e2e;
    --accent: #1a4d4d;
    --bg: #f4f7f6;
    --white: #ffffff;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; background: var(--bg); overflow-x: hidden; }

header { background: var(--primary); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; color: white; position: sticky; top: 0; z-index: 1000; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: white; text-decoration: none; font-weight: 500; }

.hero { height: 70vh; background: linear-gradient(rgba(11,46,46,0.7), rgba(11,46,46,0.7)), url('../images/hero/hero-safety.png'); background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.btn-cal { padding: 12px 25px; background: transparent; border: 2px solid white; color: white; cursor: pointer; font-weight: bold; transition: 0.3s; }
.btn-cal:hover { background: white; color: var(--primary); }

/* Client Logo Grid - Small and Grayish (Professional) */
.client-section { padding: 40px 8%; text-align: center; background: white; }
.client-grid { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; margin-top: 20px; }
.client-grid img { width: 110px; height: auto; filter: grayscale(1); opacity: 0.7; transition: 0.3s; }
.client-grid img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

.gallery-section { padding: 50px 8%; background: var(--bg); text-align: center; }
.tagline-link { margin-top: 20px; }
.tagline-link a { color: var(--primary); font-weight: bold; text-decoration: none; border-bottom: 2px solid var(--primary); }

.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1001; }

footer { background: #051a1a; color: #ccc; padding: 30px; text-align: center; font-size: 14px; }
.hero {
    height: 80vh;
    background: linear-gradient(rgba(11, 46, 46, 0.6), rgba(11, 46, 46, 0.6)), 
                url('../images/hero/hero-safety.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Moves content to the left */
    padding-left: 10%; /* Adjust this to move it more or less to the left */
    color: white;
}

.hero-text {
    max-width: 600px;
    text-align: left; /* Aligns text lines to the left */
}