/* ==========================================
   MAIN CORPORATE THEME CONFIGURATION
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Header & Logo Branding */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a252f; /* Dark Corporate Blue */
    padding: 1rem 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.logo-image {
    height: 45px; /* Adjust scale size here */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-text b {
    color: #f39c12; /* Industry Amber */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('werk1.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 { font-size: 2.8rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #bdc3c7; }

.btn-primary {
    background-color: #f39c12;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

/* Page Structures */
.page-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-container h2 { font-size: 2.2rem; color: #1a252f; margin-bottom: 5px; }
.subtitle { color: #7f8c8d; margin-bottom: 40px; }

/* Service Card Layout Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid #1a252f;
}

/* Photo Configurations inside Services */
.service-photo-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 { color: #1a252f; margin-bottom: 10px; font-size: 1.3rem; }
.service-content p { color: #666; font-size: 0.95rem; margin-bottom: 15px; }

/* Contact Engine Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.form-holder { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #f39c12; }
.submit-btn { background-color: #1a252f; color: white; padding: 14px; border: none; border-radius: 4px; font-weight: bold; width: 100%; cursor: pointer; }

/* Live WhatsApp Bubble */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: white; border-radius: 50%;
    text-align: center; font-size: 30px; z-index: 999;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
}