/*
 * Synotrend Solutions - Primary Style Sheet
 * Branding Colors: #004d99 (Primary Blue), #e67e22 (Accent Orange), #333333 (Text)
 */

/* --- Global Reset and Base Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Cleaner, professional font stack */
    line-height: 1.6;
    color: #333333; /* Darker gray for better readability */
    background-color: #f8f9fa; /* Very light gray background */
}

.container {
    width: 90%; /* Make content slightly wider */
    max-width: 1200px; /* Cap width for very large screens */
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1 {
    /* H1 is used only for branding in the header */
    font-size: 24px;
    margin: 0;
    text-transform: none; 
}

h2, h3, h4 {
    color: #004d99; /* Use primary blue for headings */
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22; /* Accent line under headings */
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- Header and Navigation Styling --- */
header {
    background: #004d99; /* Primary Blue */
    color: #ffffff;
    padding-top: 5px; 
    min-height: 70px;
    border-bottom: #003366 3px solid;
    display: flex; 
    align-items: center; 
}

header .container {
    display: flex;
    justify-content: space-between; /* Pushes branding to left, nav to right */
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

header a {
    color: #ffffff;
    text-decoration: none; /* Remove underline */
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .current a {
    color: #e67e22; /* Accent color for the current page */
    font-weight: bold;
}

/* --- Section and Footer Layout --- */
section {
    padding: 20px 0;
    margin-bottom: 20px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow lift */
    border-radius: 6px;
}

footer {
    padding: 20px;
    margin-top: 20px;
    color: #ffffff;
    background-color: #003366;
    text-align: center;
}

/* --- Button and CTA Styling --- */
.btn-primary {
    display: inline-block;
    background: #e67e22; /* Primary Accent Color */
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #cf711d; /* Darker accent on hover */
}


/* --- Contact Form Specific Styling --- */
#contact {
    /* Override section style for dedicated form area */
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

#contact button[type="submit"] {
    display: block;
    width: 100%;
    background: #004d99; /* Use primary blue for submission */
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#contact button[type="submit"]:hover {
    background: #003366;
}