/* Base Colors */
:root {
  --primary: #283d52;
  --secondary: #865f4e;
  --accent: #c4956d;
}

body {
  font-family: 'Mukta Mahee', 'poppins';
}



/* Header */
.site-header {
  background-color: var(--primary);
}
.site-header .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
}
.site-header .nav-link:hover {
  color: var(--accent) !important;
}
.call-btn {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
}
.call-btn:hover {
  background: var(--secondary);
  color: #fff !important;
}

/* Custom Toggle Button */
.custom-toggler {
  border: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.95)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Mobile nav */
@media (max-width: 991px) {
  #mobileNav .nav-link {
    text-align: left;
    padding: 8px 0;
  }
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: white;
}
.site-footer h5 {
  color: var(--accent);
  margin-bottom: 15px;
}
.site-footer a {
  color: #ddd;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--accent);
}

.datawavez{
  color: var(--accent) !important
}