.hover-6:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50%;
    height: 3px;
    background-color: #AA151B;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s;
  }
  .hover-6:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 50%;
    height: 3px;
    background-color: #AA151B;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
  }
  .hover-6:hover:before {
    transform: scaleX(1);
  }
  .hover-6:hover:after {
    transform: scaleX(1);
  }
  
  .navbar {
    background-color: black;
    
  }

  .link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 10px 0;
    color: #fff;
  }
  .link-wrapper {
    position: relative;
  
  }

  /* Hovers for navbar end here */

  /* Sections start */

  .section1 {
    width: 100%;
    min-height: 100vh;
}

.section2 {
    background-color: #cecece;
    width: 100%;
    min-height: 100vh;
}

.section3 {
    width: 100%;
    min-height: 80vh; 
}

/* sections end here */ 
  
/* style stuff */

.headerDiv1 {
  background-color: #cecece;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  
}

.headerText{
  text-align: center;
  margin-bottom: 20px;
  font-family: "Jersey 25", sans-serif;
}

.center{
  text-align: center;
  
}

.img1{
  width: 75%;
}



/* card */
.card {
  width: 25rem;
  border: 2px solid black;
  border-radius: 20px;
  transition: transform 0.2s;
  margin: 10px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 10px black;
  transition: .5s;
  
}

.cardimgborder{
  border: solid 4px black;
}

/*card end*/

/*button hover from https://markodenic.com/tools/buttons-generator/*/

.btnstyle {
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  z-index: 0;
  background: #fff;
  overflow: hidden;
  border: 2px solid black;
  color: black;
}
.btnstyle:hover {
  color: #fff;
}
.btnstyle:hover:after {
  height: 100%;
}
.btnstyle:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  background: gray;
}
/*button hover end*/

/*footer hover/footerstyle */
.footerhover:hover{
  animation: bounce .3s infinite alternate;
  
}

@keyframes bounce {
  to { transform: scale(1.2); }
}

.footerstyle{
  bottom: 0;
}
/*footer hover  */

.cool-list {
  list-style: none;
  padding: 0;
}

.cool-list li {
  padding: 10px;
  margin: 5px 0;
  background-color: #f0f0f0;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.3s ease;
}

.cool-list li:before {
  content: "\2022"; /* Bullet character */
  color: #ff6f61; /* Bullet color */
  font-size: 20px;
  margin-right: 10px;
}

.cool-list li:hover {
  background-color: #d9d9d9;
  transform: translateY(-2px);
}

.cool-list li:hover:before {
  color: #ff9f51; /* Change bullet color on hover */
}



