:root {
  --primary: #003366;     /* Deep, trustworthy navy blue – modern yet authoritative */
  --secondary: #0066cc;   /* Vibrant mid-blue for buttons/links – fresh and approachable */
  --accent: #00a3e0;      /* Bright sky-blue accent for highlights/call-to-actions – adds modern energy */
  --light: #f8fbff;      /* Very light cool blue-white for backgrounds */
  --dark: #1e2a38;       /* Slightly cooler dark gray-blue for text */
  --text-light: #f5f8fa; /* Subtle off-white for text on dark backgrounds */
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
    margin: 0;
    padding: 0;
    background: var(--light);
}

header {
  background: var(--primary);
  color: #fff;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin: 0 auto;
    flex-wrap: wrap;
	width:100%;
}

.site-branding a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
}

.site-branding img {
    max-height: 60px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent);
}

.main-navigation .current-menu-item a {
    color: var(--accent);
}

/* Mobile responsive – stacks vertically */
@media (max-width: 868px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }
    .main-navigation a {
        display: block;
        padding: 12px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
    }
}


.hero {
  background: linear-gradient(rgba(0, 51, 102, 0.28), rgba(0, 51, 102, 0.28)),
              url('../images/city.webp') center/cover no-repeat;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 24px auto;
  opacity: 0.95;
}

.section {
  padding: 90px 20px;
  background: #fff;
}

.section:nth-child(even) {
  background: var(--light);
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.3);
}

footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 50px 20px;
}

.site-header .container {
    padding: 0 40px; /* Slight padding only for header content */
    max-width: none; /* Full width */
}

.hero {
    padding: 160px 0; /* Vertical only */
}

.section {
    padding: 100px 0; /* Vertical only – full width */
}

footer {
    padding: 60px 0;
}

/* Center and constrain readable content inside full-width sections */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; /* Comfortable inner gutters for text/cards */
    box-sizing: border-box;
}

/* For hero text – keep centered and readable */
.hero .hero-content { /* Wrap your hero text in <div class="hero-content"> if needed */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cards grid – full width but centered */
.cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* If you have other sections (like news, contact), apply similar inner padding */
.news, .contact, .services, .process, .transparency {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}