
/* =========================================
   1. GLOBAL STYLES & VARIABLES
   ========================================= */

:root {
  /* Using colors identified from the logo */
  --color-primary: #FF9800; /* Deep Orange Accent */
  --color-dark:    #1D2E4F; /* Dark Blue */
  --color-light:   #FFFFFF; /* White */
  --color-gray:    #B0BEC5; /* Neutral Gray */
  
  --font-main:     'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition:    all 0.3s ease-in-out;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    margin: 0;
    padding: 0;
    background-color: var(--color-light);
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */

header {
    background-color: var(--color-light); /* Keeps the main background clean */
    padding: 15px 0;
    border-bottom: 2px solid var(--color-gray); /* Clean separation */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
}

.logo {
    /* Set the size appropriate for the header */
    max-height: 250px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.1em;
    transition: var(--transition);
}

/* Hover state using the primary accent color */
nav ul li a:hover {
    color: var(--color-primary);
}

/* =========================================
   3. CONTENT SECTIONS (INDEX, SERVICES, ETC.)
   ========================================= */

.hero {
    background-color: var(--color-gray); /* Light gray for the hero banner */
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    color: var(--color-primary); /* Use orange for the main tagline */
    margin-bottom: 10px;
}

.hero h2 {
    color: var(--color-dark);
    font-weight: 300;
}

/* Main content containers on pages */
main {
    padding: 50px 0;
}

/* Styling the generic call to action buttons */
.button-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.button-primary:hover {
    background-color: #E68A00; /* A darker shade of orange on hover */
}

/* =========================================
   4. SERVICES PAGE SPECIFICS
   ========================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #F4F7F9; /* A very light gray background */
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(29, 46, 79, 0.1); /* Subtle dark blue shadow */
}

.service-card h3 {
    color: var(--color-primary);
    margin-top: 0;
}

/* =========================================
   5. FOOTER
   ========================================= */

footer {
    background-color: var(--color-dark); /* Dark blue footer background */
    color: var(--color-light);
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: var(--color-primary); /* Links in the footer use orange */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9em;
    opacity: 0.8;
}


/* style.css */
:root {
    --primary: #0f172a;    /* Deep Midnight */
    --secondary: #334155;  /* Slate Gray */
    --accent: #f97316;     /* Rescue Orange (Safety & Urgency) */
    --light: #f8fafc;      /* Soft White */
    --text: #1e293b;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
    background-color: var(--light);
}

header {
    background: var(--primary);
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover { color: var(--accent); }

.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url('hero-bg.jpg') center/cover;
    color: white;
    padding: 10px 10%;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 10%;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent);
}

footer {
    background: var(--primary);
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
}

/* About Page Specific Styles */
.about-bio {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-bio h2 {
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    margin-top: 2rem;
}

.timeline-box {
    background: #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group select {
    background-color: #f8fafc;
}

.btn-primary {
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
}

nav a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}