* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f6fa;
  color: #1a2b4c;
}
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #c6a300;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #c6a300 !important;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-toggler{
  background-color: #c6a300;
}
.hero {
  background: linear-gradient(135deg, #1a2b4c, #324b6b);
  color: white;
  padding: 120px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.3rem;
}
.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.service-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 3rem;
  color: #c6a300;
}
.cta-section {
  background: #c6a300;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
footer {
  background-color: #1a2b4c;
  color: white;
  padding: 30px 0;
}
.footer-icon {
  color: white;
  margin-right: 15px;
  font-size: 1.5rem;
}
a.footer-icon:hover {
  color: #c6a300;
}
