* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    background-image: url('../images/bg.jpg'); /* Replace with your image path */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-attachment: fixed; /* Keep background fixed during scroll */
    background-size: cover; /* Scale image to cover the entire viewport */
    background-position: center center; /* Center the image */
    height: 100vh; /* Ensure body takes full viewport height */
    width: 100vw; /* Ensure body takes full viewport width */
}

.container {
    font-family: 'Josefin Sans', sans-serif;
    width: 100vw;
    height: 100vh;
}

.img {
  /*
  position: absolute;
  top: -100%;
  background: linear-gradient(190deg, rgba(21, 199, 30, .8) 50%, rgba(233, 67, 67, .8) 0);
  */
  height: 100%;
  width: 100%;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: top .3s .5s;
}
.img-wrapper {
  /*
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(images/bg.jpg) no-repeat center;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  */
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 1s;
}
  .img-wrapper:hover {
    box-shadow: 0 0 50px #06831b inset ;
  }



.card-wrapper {
  height: 500px;
  width: 350px;
  /*
        border: 1px solid #fff;
    */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(images/bg.jpg) no-repeat center;*/
  border-radius: 15px;
  overflow: hidden;
  transition: box-shadow 1s;
}

.card-wrapper:hover {
    box-shadow: 0 0 30px #fff;
}

.card {
    position: absolute;
    top: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(190deg, rgba(21, 199, 30, .8) 50%, rgba(233, 67, 67, .8) 0);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: top .3s .5s;

}

.card-wrapper:hover .card {
    top: 0;
}

.card-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 15px;
    border: 2px solid #fff;
    padding: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, .7);
}

.card-heading {
    font-family: 'Source Code Pro', monospace;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 3px;
    background: linear-gradient(#0a9751, #06831b);
    width: 70%;
    text-align: center;
    padding: 5px 0;
    transform: perspective(1000px) skewX(-20deg) rotateY(40deg);
}

.card-paragraph {
    font-size: 18px;
    color: #ddd;
    width: 85%;
    text-align: justify;
    position: relative;
}

.card-paragraph::first-letter {
    margin-left: 40px;

}

.card-paragraph i {
    color: #fff;
    font-size: 25px;
    font-style: italic;
    position: absolute;
}


.card-paragraph i:last-child {
    bottom: -10%;
    margin-left: 10px;
}

.card-icons {
    list-style: none;
    display: flex;
    width: 50%;
    justify-content: space-around;
}

.card-icon-link {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: border .3s;
}

.card-icon-link:hover {
    border: 1px solid #1b5cf5;
}

.card-icon {
    font-size: 20px;
    color: #fff;
    transition: color .3s;
}

.card-icon-link:hover .card-icon {
    color: #1b5cf5;
}

.card-btn {
    border: none;
    outline: none;
    width: 150px;
    height: 35px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: linear-gradient(#6837ee, #0d2b7e);
    color: #ddd;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    cursor: pointer;
}

/*
a:link {
  color: White;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
*/
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

/*
a:active {
  color: white;
  background-color: White;
  text-decoration: none;
}
*/

.footer-Right {
  display: flex;
  flex-shrink: 0; /* 1 or 0 (on or off) */
  flex-grow: 0; /* 1 or 0 (on or off) */
  flex-direction: row;
  justify-content: space-around;
  align-items: center; /* Main Vertical Axis (flex-end flex-start center) */
  height: 100%;
  width: Auto;
  font-size: 40pt;
/*  padding: 5px;*/
  margin: 5px;
  gap: 5px;
}

.footer-Left {
  display: flex;
  flex-shrink: 0; /* 1 or 0 (on or off) */
  flex-grow: 1; /* 1 or 0 (on or off) */
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; /* Main Vertical Axis (flex-end flex-start center) */
  height: 100%;
  width: Auto;
  font-size: 40pt;
  padding: 5px;
  margin: 5px;
  gap: 5px;
}

.navbar-nav .nav-link {
  color: black; /* e.g., #007bff for blue */
}

  /* Change nav item text color on hover */
  .navbar-nav .nav-link:hover {
    color: #35A876; /* e.g., #ffc107 for yellow */
  }

  /* Change active nav item text color */
  .navbar-nav .nav-link.active {
    color: #2D8E63; /* e.g., #28a745 for green */
  }