/* Basic Reset */
*{
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fbfbfb;
}

.my-bg-css{
  background: url('../imgs/bg.jpg'); 
  background-repeat: no-repeat;
  background-size: cover;
}



.logo-image{
  width: 150px;
  margin-top: 10px;
}

.title {
  color: #ff0000;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.logo {
  width: 120px;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.logo:hover {
  transform: rotate(360deg);
}

.card-hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background: linear-gradient(181deg, #36539f85, #6d33dfb0);
  border-radius: 40px;
}

.card-hover:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(67, 5, 5, 0.3);
}

/* Button Style */
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

/* FontAwesome Icon Styling */
.fa-3x {
  color: #fcd34d;
}

/* Footer Styling */
.footer {
  background: linear-gradient(173deg, #f56868, #7039dbcc);
}



* Icon Animation */
.icon {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
}

/* Bounce Effect on Hover */
.card-hover:hover .icon {
  animation: bounce 1s infinite;
}

/* Keyframes for Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

/* Rotate Effect Example */
.card-hover:hover .icon {
  animation: rotate 2s infinite;
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}



/* Footer Styling */


.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #e5a10d; /* Highlight color on hover */
}





