:root {
  --primary: #AD7414;        /* Deep professional blue */
  --primary-light: #e6f0fa;
  --accent: #AD7414;         /* Teal accent */
  --text-main: #2c4354;
  --text-muted: #2c4354;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #dde3ec;
  --radius-lg: 10px;
  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  scroll-behavior: smooth;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */

.site-header {
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 40px;
}

.navbar-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
}

.navbar-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.navbar-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.navbar-cta a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: #ffffff;
  background-color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.navbar-cta a:hover {
  background-color: #00366b;
  text-decoration: none;
}

/* Mobile nav (simple) */

.navbar-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
}

/* Added by rashed 23/11 15:15 */

.card img.service-icon {
  width: 100%;
  height: 160px;           /* you can increase or decrease this */
  object-fit: fill;       /* fills the card beautifully */
  border-radius: 8px;      /* matches card style */
  margin-bottom: 1rem;
  display: block;
}



/* added by rashed nov 23 2:05am */
/* Hide menu on mobile */
/* Mobile navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 0.75rem 1rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    max-height: 0;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0.95);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.25s ease-out,
      opacity 0.2s ease-out,
      transform 0.2s ease-out;
    z-index: 1001;
  }

  .navbar-nav a {
    padding: 0.45rem 0;
  }

  .navbar-nav.open {
    max-height: 420px; /* enough space for all links */
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .navbar-cta {
    display: none; /* hide desktop CTA, you can show a link inside menu instead if you want */
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 100;
  }

  body.nav-open {
    overflow: hidden; /* prevent body scroll when menu open */
  }
}


/* Hero */

.hero {
  background: radial-gradient(circle at top left, var(--primary-light), #ffffff 55%);
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: #00366b;
}

.btn-outline {
  background-color: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-badge {
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

/* Cards & grids */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

.service-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  border-radius: 8px;
}


/* Two-column split sections */

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Highlight strip */

.highlight-strip {
  background-color: var(--bg-alt);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* CTA */

.cta {
  text-align: center;
  padding: 3rem 0 3.5rem;
}

.cta h2 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.cta p {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background-color: #ffffff;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* Responsive tweaks */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
