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

body {
  font-family: "Noto Sans", sans-serif;
  overflow-x: hidden;
  background: linear-gradient(
    -45deg,
    #667eea,
    #764ba2,
    #f093fb,
    #f5576c,
    #4facfe,
    #00f2fe
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-height: 100vh;
  position: relative;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating geometric shapes - now covering the entire page */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  top: 60%;
  left: 80%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  animation-delay: -7s;
  transform: rotate(45deg);
}

.shape:nth-child(3) {
  top: 80%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: -14s;
}

.shape:nth-child(4) {
  top: 30%;
  left: 70%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation-delay: -3s;
}

.shape:nth-child(5) {
  top: 10%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  animation-delay: -10s;
}

/* Additional shapes for footer area */
.shape:nth-child(6) {
  top: 90%;
  left: 15%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation-delay: -5s;
}

.shape:nth-child(7) {
  top: 85%;
  left: 85%;
  width: 95px;
  height: 95px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  animation-delay: -12s;
  transform: rotate(30deg);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

/* Sparkling particles covering entire page */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: sparkle 3s infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Main Container Styling */
.container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
  padding: 2rem;
  animation: slideDown 1s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header Styling */
h1 {
  font-family: "Pacifico", cursive;
  font-size: 3.5rem;
  text-align: center;
  padding-top: 2rem;
  position: relative;
  z-index: 101;
  text-transform: capitalize;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
  margin-bottom: 1rem;
}

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
      0 0 60px rgba(255, 255, 255, 0.4);
  }
}

h1::after {
  content: "";
  width: 270px;
  height: 20px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

h1:hover::after {
  height: 40px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

hr {
  border: none;
  border-bottom: 3px dotted rgba(255, 255, 255, 0.6);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

h2 {
  font-family: "Righteous", sans-serif;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Form Styling */
.mb-3 {
  margin-bottom: 2rem !important;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.form-label {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-control {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 15px !important;
  color: #fff !important;
  font-size: 1.1rem;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.8) !important;
}

input:focus::placeholder {
  color: transparent;
}
/* Button Styling */
.btn-warning {
  background: linear-gradient(45deg, #667eea, #764ba2) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 15px 50px !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.btn-warning::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-warning:hover::before {
  left: 100%;
}

.btn-warning:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6) !important;
}

/* Table Styling */
.table {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.9s both;
  white-space: nowrap;
}

.table th {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border: none !important;
  padding: 1.5rem 1rem !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.table td {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border: none !important;
  padding: 1.2rem 1rem !important;
  font-size: 1rem !important;
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.fa-solid {
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-info {
  background: linear-gradient(45deg, #4facfe, #00f2fe) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 8px 15px !important;
  transition: all 0.3s ease !important;
}

.btn-info:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4) !important;
}

.btn-danger {
  background: linear-gradient(45deg, #f5576c, #f093fb) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 8px 15px !important;
  transition: all 0.3s ease !important;
}

.btn-danger:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4) !important;
}

/* Footer with transparent background to show the animated background */
.footer {
  background: transparent !important;
  color: white;
  padding: 20px 0;
  position: relative;
  text-align: center;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-section {
  text-align: center;
}

/* Social Links - Centered & Stylish */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* margin-bottom: 10px; */
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom - Simplified */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .btn-warning {
    padding: 12px 30px !important;
    font-size: 1rem !important;
  }

  .table {
    font-size: 0.9rem;
  }

  .footer {
    padding: 25px 0 15px;
    margin-top: 40px;
  }

  .footer-content {
    margin-bottom: 20px;
  }

  .social-links {
    gap: 15px;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-bottom {
    padding-top: 15px;
  }

  .copyright p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 0 12px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .copyright p {
    font-size: 12px;
  }
}
.btn-info,
.btn-danger {
  font-size: 0.9rem !important;
  padding: 5px 10px !important;
  border-radius: 8px !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn-info,
  .btn-danger {
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
  }
}

@media (max-width: 480px) {
  .btn-info,
  .btn-danger {
    font-size: 0.75rem !important;
    padding: 3px 6px !important;
  }
}
/*  */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .btn-warning {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  h1::after {
    width: 200px;
    height: 15px;
    bottom: -5px;
  }

  .container {
    margin: 1rem 0.5rem;
    padding: 1rem;
    border-radius: 15px;
  }

  .mb-3 {
    margin-bottom: 1.2rem !important;
  }

  .form-label {
    font-size: 0.95rem;
  }

  .form-control {
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 10px !important;
  }

  .btn-warning {
    padding: 12px 30px !important;
    font-size: 1rem !important;
    width: 100%;
    margin-top: 0.5rem;
  }

  .table {
    margin-top: 1.5rem;
    font-size: 0.85rem;
  }

  .table th,
  .table td {
    padding: 0.8rem 0.5rem !important;
  }

  .table th {
    font-size: 0.9rem !important;
  }

  .btn-info,
  .btn-danger {
    font-size: 0.75rem !important;
    padding: 3px 6px !important;
    margin: 2px 0;
  }

  .footer {
    padding: 15px 0;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .copyright p {
    font-size: 11px;
  }

  hr {
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .container {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  .btn-warning {
    padding: 14px 35px !important;
  }

  .table {
    font-size: 0.9rem;
  }

  .btn-info,
  .btn-danger {
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
  }
}
