 /* background images*/
 body.home{
  background-image: url('images/image1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: background-animation;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background-attachment: fixed;
}

@keyframes background-animation {
  0% {
    background-image: url('images/image1.jpg');
  }
  50% {
    background-image: url('images/image2.jpg');
  }
  100% {
    background-image: url('images/image1.jpg');
  }
}
.other-page{
  background-image: url(images/other-page2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.topnav {
    background-color: grey;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .topnav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin-left: 10px;
   
  }
  .topnav a:hover {
    color: #f2f2f2;
  }
  
  .topnav .icons {
    display: inline-block;
    margin-right: 50px;
    
  }

  /* navbar styles*/
  .navbar {
    overflow: hidden;
    background-color: white;
    display: flex;
    justify-content: center;
    margin: 0;
    position: fixed;
    top: 0;
  }
  
  .navbar a {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.2s;
  }
  
  .navbar a.active {
    border-bottom: 3px solid #f2f2f2;
  }
  
  .navbar a:hover {
  background-color: #32cd32;
  }

/* dropdown-menu*/
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: auto;
  left: 0;
  z-index: 1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
}

.dropdown-menu a:hover {
  background-color: #eee;
}
.container-fluid {
  margin-top: 50px;
}
 .row{
  background-color: white;
  
 }

 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Set the height of the container */
}

.icon-wrapper {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping */
  justify-content: center;
  align-items: center;
}

.icon-wrapper i {
  width: 50px; /* Set a fixed width for each icon */
  margin: 0 10px 10px 0; /* Add margin between icons and below the last icon in each row */
}

.card{
border-radius: 30px 50px 30px 50px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
height: 100%;
}


/* footer styles*/
.no-list{
  list-style: none;
  
}
.no-list a{
  text-decoration: none;
}
.container-copy{
  background-color: black;
}