/*nav styling*/

.img-icon{
  border-radius: 50%;
  border-color: #9c27b0;
  border-style: solid;
  border-width: 3px;
}


.box{
    position: relative;
    width: 144px;
    height: 144px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    overflow: hidden;
}


.box::before{
    content: "";
    position: absolute;
    inset: -10px 10px;
    background: linear-gradient(315deg, #00bcd4, #9c27b0);
    transition: 0.5s;
    animation: animate 4s linear infinite;
}

.box:hover::before{
    inset: -20px 0px;
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.box::after{
    content: "";
    position: absolute;
    inset: 2px;
    background: #162052;
    border-radius: 50%;
    z-index: 1;
}

.content{
    position: absolute;
    inset: 10px;
    border: 2px solid #070a1c;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content img{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
    z-index: 3;
}

.content h6{
    font-size: 0.3rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.box:hover .content img{
    opacity: 0;
}


/*intro styling*/
.space{
    padding: 20px 0;
}

.side-boarder p{
    margin-left: 20px;
}

.cont {
  font-size: 16px; /* Default font size for smaller screens */
  font-weight: 900;
}

@media (min-width: 768px) { /* Medium screens and up */
  .cont {
    font-size: 18px;
    font-weight: 900;
  }
}

@media (min-width: 1200px) { /* Large screens and up */
  .cont {
    font-size: 3rem;
    font-weight: 900;
  }
}

.space h4{
  font-weight: 700;
}

/*button style*/

.exp-button button{
    width: 40%;
    padding: .25rem;
    border-style: none;
    margin-bottom: 0.5rem;
    position: relative;
    background-color: transparent;
    color: beige;
  }

.exp-button button::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: ;
    transition: width 0.25s ease-in-out;
  }

  .exp-button button:hover::before{
    width: 100%;
  }

/*list style*/

.exp{
    position: relative;
    border-left: #9c27b0 0.3rem solid;
    
}

  ul {
    padding-left: 0.2rem !important;
    list-style: none;
  }

  li {
    margin: 0.25rem 0;
  }
  
  a.underline-hover-effect {
    text-decoration: none;
    color: inherit;
  }
  
  .underline-hover-effect {
    display: inline-block;
    padding-bottom: 0.25rem; /* defines the space between text and underline */
    position: relative;
  }

  .underline-hover-effect:hover{
    color: #00bcd4;
  }
  
  .underline-hover-effect::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(111.3deg, #00bcd4 9.6%, #9c27b0 93.6%);
    transition: width 0.25s ease-out;
  }

  .underline-hover-effect:hover::before {
    width: 65%;
  }

  