* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  color: #222;
  font-weight: 700;
}

h2 {
  border-bottom: 2px solid #8A7F80;
  padding-bottom: 10px;
  display: inline-block;
}

.logo-img {
  height: 60px;
  width: auto;
}

.header-link {
  color: #8A7F80 !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.header-link:hover {
  color: #fff !important;
  background-color: #8A7F80;
}

.custom-btn {
  background-color: #8A7F80;
  border-color: #8A7F80;
  color: white;
}
.custom-btn:hover {
  background-color: #6F6566;
  border-color: #6F6566;
}

.section-card {
  transition: all 0.3s ease;
}
.section-card:hover {
  transform: translateY(-5px);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0px 6px 12px rgba(138, 127, 128, 0.4);
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
  .display-4 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .logo-img {
    height: 45px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
  }
  .display-4 {
    font-size: 1.8rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.transition-ease, .transform-combined {
  transition: all 1s ease;
}
.transition-linear {
  transition: all 1s linear;
}
.transition-ease-in {
  transition: all 1s ease-in;
}
.transition-ease-out {
  transition: all 1s ease-out;
}
.transition-ease-in-out {
  transition: all 1s ease-in-out;
}

body {
  background: linear-gradient(to bottom, #fcfbfb, #949292);
  margin: 0;
  min-height: 100vh;
  padding: 20px;
}

.custom-btn {
  background-color: #8A7F80;
  border-color: #8A7F80;
  color: white;
  animation: pulse 1.5s infinite ease-in-out;
  transition: all 0.4s ease-in-out;
}
.custom-btn:hover, .custom-btn:active {
  animation: none;
  background-color: #6F6566;
  border-color: #6F6566;
  transform: scale(1);
}

.logo-img {
  height: 85px;
  width: auto;
  transition: transform 0.3s ease-in-out;
}
.logo-img:active {
  transform: scale(1.3);
}

h1, h2 {
  animation: fadeIn 1s ease-in-out;
  transition: color 0.7s ease, text-shadow 0.7s ease;
}
h1:hover, h2:hover {
  color: #6F6566;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.transform-combined {
  transform: translateY(-5px) rotate(2deg) scale(1.05);
}

/*# sourceMappingURL=style.css.map */
