/* ===============================
   MWSAU International Services CSS
   Theme: Professional / Institutional
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --mwsau-blue: #004080;
  --mwsau-dark-blue: #003366;
  --mwsau-light-blue: #00A8CC;
  --mwsau-gold: #FFC107;
  --mwsau-gold-dark: #FFB300;
  --text-dark: #263238;
  --text-muted: #5f6b7a;
  --bg-light: #F9F9F9;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

/* ===============================
   Header
================================= */

header {
  background: var(--mwsau-blue);
  color: var(--white);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 110px;
  width: auto;
  background: var(--white);
}

nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

nav ul li {
  margin-left: 24px;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  padding: 5px 0;
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--mwsau-gold);
  border-bottom: 2px solid var(--mwsau-gold);
}

.header-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.cta-btn,
.hero-btn,
.cta a,
.login-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn,
.hero-btn,
.cta a {
  background: var(--mwsau-gold);
  color: var(--mwsau-blue);
  padding: 12px 22px;
}

.cta-btn:hover,
.hero-btn:hover,
.cta a:hover {
  background: var(--mwsau-gold-dark);
  transform: translateY(-2px);
}

.login-btn {
  background: var(--white);
  color: var(--mwsau-blue);
  padding: 10px 20px;
  border: 2px solid var(--mwsau-gold);
}

.login-btn:hover {
  background: var(--mwsau-gold);
}

/* Mobile Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle div {
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
}

.menu-toggle.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.open div:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============================
   Hero
================================= */

.hero {
  background:
    linear-gradient(rgba(0, 64, 128, 0.88), rgba(0, 64, 128, 0.88)),
    url('/uganda-business-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 95px 20px;
  text-align: center;
}

.hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  max-width: 850px;
  margin: 0 auto 32px auto;
  opacity: 0.95;
}

.hero-btn {
  font-size: 1rem;
}

/* ===============================
   Section Defaults
================================= */

section {
  padding: 75px 0;
}

section h2 {
  color: var(--mwsau-blue);
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  margin-bottom: 18px;
  line-height: 1.25;
}

.intro p,
.uganda p,
.countries p,
.cta p {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===============================
   Intro
================================= */

.intro {
  background: var(--white);
}

.intro .container {
  background: var(--white);
  padding: 35px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--mwsau-gold);
}

/* ===============================
   Services
================================= */

.services {
  background: var(--bg-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.service-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 5px;
  background: var(--mwsau-gold);
  top: 0;
  left: 26px;
  border-radius: 0 0 8px 8px;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 2.3rem;
  color: var(--mwsau-light-blue);
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--mwsau-blue);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 9px;
  padding-left: 22px;
  position: relative;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ===============================
   Why Choose MWSAU
================================= */

.why-us {
  background: var(--white);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.features div {
  background: #f0f6ff;
  color: var(--mwsau-blue);
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #dbeafe;
}

/* ===============================
   Who We Serve
================================= */

.clients {
  background: var(--bg-light);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.client-grid div {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--mwsau-blue);
  transition: 0.3s ease;
}

.client-grid div:hover {
  transform: translateY(-5px);
}

/* ===============================
   How It Works
================================= */

.steps {
  background: var(--mwsau-blue);
  color: var(--white);
}

.steps h2 {
  color: var(--white);
}

.step-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.step {
  background: var(--mwsau-light-blue);
  padding: 28px 18px;
  border-radius: 14px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.step h3 {
  width: 45px;
  height: 45px;
  background: var(--mwsau-gold);
  color: var(--mwsau-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 1.1rem;
}

.step p {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===============================
   Countries
================================= */

.countries {
  background: var(--white);
}

.country-list {
  max-width: 950px;
  margin: 30px auto 0 auto;
  background: #f0f6ff;
  color: var(--text-dark);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  line-height: 2;
  border: 1px solid #dbeafe;
}

/* ===============================
   Why Uganda
================================= */

.uganda {
  background: var(--bg-light);
}

.uganda .container {
  background: var(--white);
  padding: 35px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* ===============================
   FAQ
================================= */

.faq {
  background: var(--white);
}

.faq h3 {
  max-width: 900px;
  margin: 24px auto 8px auto;
  color: var(--mwsau-blue);
  font-size: 1rem;
}

.faq p {
  max-width: 900px;
  margin: 0 auto 12px auto;
  color: var(--text-muted);
  background: #f9fbff;
  border-left: 4px solid var(--mwsau-light-blue);
  padding: 14px 16px;
  border-radius: 8px;
}

/* ===============================
   CTA
================================= */

.cta {
  background: var(--mwsau-blue);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  color: #e5eef8;
  margin-bottom: 28px;
}

/* ===============================
   Footer
================================= */

footer {
  background: var(--mwsau-dark-blue);
  color: var(--white);
  text-align: center;
  padding: 35px 50px;
}

footer a {
  color: var(--mwsau-gold);
}

/* ===============================
   Responsive Design
================================= */

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 22px;
  }

  .logo img {
    height: 90px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    background: var(--mwsau-blue);
    padding: 15px 0;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .header-buttons a {
    width: 100%;
  }

  section {
    padding: 55px 0;
  }

  .hero {
    padding: 70px 20px;
  }

  .service-grid,
  .features,
  .client-grid,
  .step-container {
    grid-template-columns: 1fr;
  }

  .intro .container,
  .uganda .container {
    padding: 25px 18px;
  }

  .service-card {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .country-list {
    font-size: 0.9rem;
    padding: 18px;
  }

  footer {
    padding: 30px 20px;
    font-size: 0.9rem;
  }
}