body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7)),
    url('../img/home/hero-bg.jpg') center/cover;
  color: #fff;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
}

.hero-subtitle {
  margin: 20px 0;
  font-size: 18px;
}

.btn-primary {
  background: #920436;
  border: none;
}

.credibility-strip {
  background: #0A2540;
  color: #fff;
  padding: 20px 0;
}

.services-section {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.section-title {
  margin-bottom: 40px;
}

.about-preview {
  padding: 80px 0;
}

.process-section {
  background: #f0f0f0;
  padding: 60px 0;
}

.cta-section {
  background: #920436;
  color: #fff;
  padding: 60px 0;
}

/* NAVBAR BASE */
.navbar {
  transition: all 0.4s ease;
  padding: 20px 0;
  background: transparent;
}

/* SCROLLED STATE */
.navbar.scrolled {
  background: #0A2540;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo {
  height: 50px;
  transition: 0.3s;
}

.navbar.scrolled .logo {
  height: 40px;
}

/* LINKS */
.nav-link {
  color: #fff !important;
  margin-left: 20px;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-cta {
  background: #920436;
  padding: 8px 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-cta:hover {
  background: #b00545;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar {
    background: #0A2540;
  }
}

.logo {
  opacity: 0;
  transform: translateY(-10px);
  animation: logoFade 1s ease forwards;
}

@keyframes logoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA STRIP */
.footer-cta {
  background: #920436;
  color: #fff;
  padding: 60px 0;
}

.footer-cta h2 {
  margin-bottom: 20px;
}

/* FOOTER */
.main-footer {
  background: #0A2540;
  color: #ccc;
  padding: 60px 0 20px;
}

.main-footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #D4AF37;
}

/* ICONS */
.footer-links i {
  margin-right: 8px;
  color: #D4AF37;
}

/* DIVIDER */
.main-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* BOTTOM */
.footer-bottom {
  font-size: 14px;
  color: #aaa;
}