.top{
    padding: 60px;
    text-align: center;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: -20px;
    border-bottom: 4px solid black;
    color: aliceblue;
    background: linear-gradient(90deg, rgba(18, 18, 22, 1.000) 0.000%, rgba(18, 18, 22, 1.000) 7.692%, rgba(22, 23, 26, 1.000) 7.692%, rgba(22, 23, 26, 1.000) 15.385%, rgba(26, 27, 31, 1.000) 15.385%, rgba(26, 27, 31, 1.000) 23.077%, rgba(31, 32, 35, 1.000) 23.077%, rgba(31, 32, 35, 1.000) 30.769%, rgba(35, 36, 39, 1.000) 30.769%, rgba(35, 36, 39, 1.000) 38.462%, rgba(39, 40, 43, 1.000) 38.462%, rgba(39, 40, 43, 1.000) 46.154%, rgba(43, 44, 47, 1.000) 46.154%, rgba(43, 44, 47, 1.000) 53.846%, rgba(47, 48, 51, 1.000) 53.846%, rgba(47, 48, 51, 1.000) 61.538%, rgba(50, 51, 55, 1.000) 61.538%, rgba(50, 51, 55, 1.000) 69.231%, rgba(54, 55, 58, 1.000) 69.231%, rgba(54, 55, 58, 1.000) 76.923%, rgba(56, 57, 61, 1.000) 76.923%, rgba(56, 57, 61, 1.000) 84.615%, rgba(59, 60, 64, 1.000) 84.615%, rgba(59, 60, 64, 1.000) 92.308%, rgba(61, 62, 66, 1.000) 92.308% 100.000%)
}
.im{
    position: absolute;
    top: 20px;
    left: 10px;
    border-radius: 50%;
    border: 5px solid aliceblue;
}
.title{
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    margin-top: 100px;
}
.txt{
    text-align: left;
    font-size: 25px;
    padding:30px 0px 30px 30px; 
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
body{
    background: #16222A;
    background: -webkit-linear-gradient(to right, #3A6073, #16222A);  
    background: linear-gradient(to right, #3A6073, #16222A); 
}
.img {
  float: right;
  margin: 0px 0px 20px 20px;
}
img:hover {
  transform: scale(1.05); /* zoom 5% bigger */
  box-shadow: 0 10px 20px rgba(0,0,0,0.5); /* shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prc {
    display: inline-block;
    border: 6px solid black;
    padding: 20px 60px;
    background-color: aliceblue;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 250px;
}
.prc:hover {
  transform: scale(1.05); /* zoom 5% bigger */
  box-shadow: 0 10px 20px rgba(0,0,0,0.4); /* shadow appears */
}
.img1{
    margin: 50px 30px 30px 0px;
    text-align: center;
}
.img2{
  float: right;
  margin-top: -100px;
  width: 50%;
}
.sr {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
}
.holographic-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .holographic-card {
    width: 200px;
    height: 100px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.5s ease;
    border: 6px solid black;
  }
  
  .holographic-card h2 {
    color: rgb(0, 0, 0);
    font-size: x-large;
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
  }
  
  .holographic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      0deg, 
      transparent, 
      transparent 30%, 
      rgba(0,255,255,0.3)
    );
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
  }
  
  .holographic-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
  }
  
  .holographic-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
  }
  .end {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    text-align: center;
    color: antiquewhite;
    background-color: black;
    padding: 40px;              
    width: 100%;
    margin-top: 200px;
    padding-bottom: 200px;
    margin-bottom: -20px;
    margin-left: -20px;
}
