:root {
  --base-color: #e0b42e;
  --accent-color: #e89c0f;
  --primary-color: #fbe14d;
  --dark-gray: #313e3b;
  --medium-gray: #828c8a;
  --yellow: #ffd507;
  --blue: #004163;
  --green: #4b5320;
  --extra-medium-gray: #e4e4e4;
  --alt-font: 'Space Grotesk', sans-serif;
  --primary-font: 'Inter', sans-serif;
}
header .navbar-brand img {
  max-height: 69px;
}
header.sticky .navbar-brand img {
  max-height: 59px;
}
.sticky-wrap .social-icon-style-10 ul li a:hover,
.sticky-wrap a,
.sticky-wrap a:hover,
.sticky-wrap div,
.sticky-wrap p,
.sticky-wrap span {
  color: #ffffff !important;
}
.sticky-wrap .elements-social {
  background: rgba(70, 82, 37, 0.69);
  padding: 10px 20px;
  border-radius: 6px;
}
footer .footer-logo img {
  max-height: 64px;
}
.text-accent-color {
  color: var(--accent-color);
}
.bg-accent-color {
  background-color: var(--accent-color);
}
.text-blue-color {
  color: var(--blue);
}
.bg-blue-color {
  background-color: var(--blue);
}
.text-green-color {
  color: var(--green);
}
.bg-green-color {
  background-color: var(--green);
}
.profile-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  margin-bottom: 45px;
}
.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.card-header-custom {
  background: linear-gradient(#4b5320 0%, #004163 100%);
  height: 130px;
  /* reduced */
  position: relative;
  overflow: hidden;
}
.card-header-custom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}
.profile-img-wrapper {
  position: relative;
  margin-top: -65px;
  /* adjusted */
  text-align: center;
  z-index: 10;
}
.profile-img {
  width: 60%;
  /* reduced */
  height: 60%;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.profile-card:hover .profile-img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.status-badge {
  position: absolute;
  bottom: 10px;
  right: calc(50% - 55px);
  background: #10b981;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #fff;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}
.profile-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 25px;
  margin-bottom: 12px;
}
.profile-title {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 50px;
}
.stat-item {
  text-align: center;
  transition: 0.3s;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.about-intro .feature-box-content {
  font-size: 18px;
  line-height: 26px;
}
.related-posts .card {
  transition: 0.5s all linear;
}
.related-posts .card:hover {
  transform: translateY(-5px);
}
/*# sourceMappingURL=styles.css.map */