* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Poppins", sans-serif;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff9432;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
  animation: float 3s ease-in-out infinite;
}

.floating-button:hover {
  background-color: #ff7a00;
  transform: scale(1.05);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 769px) {
  .floating-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating-button {
    padding: 8px 15px;
    font-size: 13px;
    max-width: 220px;
  }
}

.jphrc-btn {
  border-radius: 6px;
  border: none;
  background: #ff9432;
  color: white;
  font-weight: 700;
  padding: 8px 12px;
  font-size: small;
}

.mob-jphrc-btn {
  width: 100%;
  border-bottom: 1px solid white !important;
}
.jphrc-btn:hover {
  background-color: #ff7a00;
}
@media (max-width: 768px) {
  .jphrc-btn {
    display: none;
  }

}

/* Anti-Ragging Section Styling */
#anti-ragging-section .section-title {
  color: #008080; /* Teal */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.divider-teal {
  width: 80px;
  height: 4px;
  background-color: #008080; /* Teal */
  border-radius: 2px;
  margin-bottom: 20px;
}

.ragging-card {
  background: #fff;
  padding: 25px;
  border-top: 5px solid #008080; /* Teal Top Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.ragging-card:hover {
  transform: translateY(-5px);
}

.card-heading {
  color: #008080; /* Teal */
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.ragging-card a {
  text-decoration: none;
  color: teal;
  transition: color 0.2s;
}

.ragging-card a:hover {
  text-decoration: underline;
}

.warning-box {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

/* Custom Buttons */
.btn-teal {
  background-color: #008080;
  color: white;
  border: 1px solid #008080;
}

.btn-teal:hover {
  background-color: #006666;
  color: white;
}

.btn-outline-teal {
  background-color: transparent;
  color: #008080;
  border: 1px solid #008080;
}

.btn-outline-teal:hover {
  background-color: #008080;
  color: white;
}
