:root {
    --red: rgb(194, 18, 18);
    --black: #000;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.5;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    border-bottom: 2px solid var(--red);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.site-logo {
  height: 40px; /* or whatever size looks good */
  width: auto;
}

.site-title {
  font-size: 24px;
  margin: 0;
  color: black; /* or black, depending on header background */
}


.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--black);
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
}

nav a:hover,
.active {
    color: var(--red);
}

/* Hero */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn {
    background: var(--red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #a31212;
}

/* Small Hero Variation */
.small-hero {
    height: 40vh;
}

/* Stats Bar */
.stats-bar {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    font-weight: bold;
}

/* About */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

.about-images {
  display: flex;
  gap: 20px; /* space between photos */
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optional */
}

}

.about-text h2 {
    color: var(--red);
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-text span {
    color: var(--red);
    margin-right: 0.5rem;
}

/* CTA */
.cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.cta h2 {
    margin-bottom: 1rem;
}

/* Projects Grid */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.project-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    display: block;
}

.project-card h3 {
    padding: 1rem;
    color: var(--red);
}

.project-card p {
    padding: 0 1rem 1rem;
}

/* Capabilities Section */
.capabilities {
    background: var(--black);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.capabilities h2 {
    color: var(--red);
    margin-bottom: 1rem;
}

.capabilities ul {
    list-style: none;
    padding: 0;
}

.capabilities li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

.contact form {
    flex: 1;
    min-width: 300px;
}

.contact label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--red);
    border-radius: 4px;
}


.contact button {
    border: none;
    cursor: pointer;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    background: var(--red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info a {
    color: var(--white);
    text-decoration: underline;
}

.office-header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* fixed from "right" */
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.office-title {
  margin: 0;
  font-size: 28px;
}

.contact-logo {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.office-details {
  text-align: left;
}

.social-buttons {
    display: flex;
    gap: 10px; /* space between buttons */
}

.linkedin-btn,
.facebook-btn {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* LinkedIn button */
.linkedin-btn {
    background-color: #0077B5;
}

.linkedin-btn:hover {
    background-color: #005582;
    transform: translateY(-2px);
}

/* Facebook button */
.facebook-btn {
    background-color: #1877F2;
}

.facebook-btn:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
}


/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
}