* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --primary: #002f6c;
  --accent: #d52b1e;
  --highlight: #e5c07b;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #1f1f1f;
}

.navbar {
  background-color: var(--primary);
}

.navbar-brand,
.nav-link {
  color: white !important;
}
.navbar-toggler{
  background-color: #f5f5f5;
}
.hero {
  background: url("assets/img/hero.jpg")
    no-repeat center/cover;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.section-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cta-button {
  background-color: var(--accent);
  color: white;
}

footer {
  background-color: #f5f5f5;
  padding: 2rem 0;
}

.footer-icon {
  font-size: 1.3rem;
  margin-right: 10px;
  color: var(--primary);
}

.footer-links a {
  color: #444;
  text-decoration: none;
  margin-right: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}
