
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-image: url("https://codzsword.github.io/bootstrap-sidebar/background-image.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

h3 {
    font-size: 1.2375rem;
    color: #FFF;
}

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

li {
    list-style: none;
}

/* Layout skeleton */

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
    justify-content: center;
}

#sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
    z-index: 1111;
}

/* Sidebar collapse */

#sidebar.collapsed {
    margin-left: -300px;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
}

.sidebar-logo a {
    color: #e9ecef;
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-header {
    color: #e9ecef;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #e9ecef;
    position: relative;
    display: block;
    font-size: 1rem;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}
.btn{
    margin-left: 25px;
}
#glow-text {
    transition: all 0.3s ease; /* Smooth transition for the glow effect */
}

#glow-text:hover {
    color: #fff; /* Change text color on hover */
    text-shadow: 
        0 0 5px #fff, 
        0 0 10px #ff00ff, 
        0 0 15px #ff00ff, 
        0 0 20px #ff00ff, 
        0 0 25px #ff00ff; /* Glowing effect */
}
/* Responsive */

@media (min-width:768px) {
    .content {
        width: auto;
    }
}

#glow-effect {
    border:solid transparent; /* Transparent base border */
    border-radius:0px 10px 0px 10px; /* Rounded corners */
    text-align: center;
    color: white; /* Text color */
    animation: glow 5s infinite alternate; /* Animation */
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.8);
        border-color: rgba(255, 0, 0, 1); /* Red */
    }
    25% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 15px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.8);
        border-color: rgba(0, 255, 0, 1); /* Green */
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.8), 0 0 15px rgba(0, 0, 255, 0.8), 0 0 20px rgba(0, 0, 255, 0.8);
        border-color: rgba(0, 0, 255, 1); /* Blue */
    }
    75% {
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.8), 0 0 15px rgba(255, 255, 0, 0.8), 0 0 20px rgba(255, 255, 0, 0.8);
        border-color: rgba(255, 255, 0, 1); /* Yellow */
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 15px rgba(255, 0, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.8);
        border-color: rgba(255, 0, 255, 1); /* Magenta */
    }
}

#glow-effect-round {
    border:solid transparent;
    border-radius: 50%; /* Transparent base border */ /* Rounded corners */
    text-align: center;
    color: white; /* Text color */
    animation: glow 5s infinite alternate; /* Animation */
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.8);
        border-color: rgba(255, 0, 0, 1); /* Red */
    }
    25% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 15px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.8);
        border-color: rgba(0, 255, 0, 1); /* Green */
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.8), 0 0 15px rgba(0, 0, 255, 0.8), 0 0 20px rgba(0, 0, 255, 0.8);
        border-color: rgba(0, 0, 255, 1); /* Blue */
    }
    75% {
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.8), 0 0 15px rgba(255, 255, 0, 0.8), 0 0 20px rgba(255, 255, 0, 0.8);
        border-color: rgba(255, 255, 0, 1); /* Yellow */
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 15px rgba(255, 0, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.8);
        border-color: rgba(255, 0, 255, 1); /* Magenta */
    }
}
.typewriter {
    border-right: 2px solid white; /* Cursor effect */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow */
    color: whitesmoke;
    margin-left: 25px;
}

.blink {
    animation: blink-caret 0.75s step-end infinite; /* Blinking cursor */
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white; /* Cursor color */
    }
}
main{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    justify-content: center;
}
main .header{
    width: 100vw;
    height: 90%;
}
.box1 .image img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}
.box1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
    margin-bottom: 10px;
}


/* recarch style */
.container{
  margin-top: 5px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .card{
    height: 280px;
    max-width: 350px;
    margin: 0 20px;
    background:transparent;
    transition: 0.4s;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    border-radius: 0px 10px 0px 10px;
  }
  .card:hover{
    height: 470px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
  }
  .card .img{
    height: 200px;
    width: 100%;
  }
  .card .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .card .top-text{
    padding: 5px;
  }
  .card .top-text .name{
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
  }
  .card .top-text p{
    font-size: 20px;
    font-weight: 600;
    color: #eeff00;
    line-height: 20px;
  }
  .card .bottom-text{
    padding: 0 20px 10px 20px;
    margin-top: 5px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.1s;
    color: #0066ff;
  }
  .card:hover .bottom-text{
    opacity: 1;
    visibility: visible;
  }
  .card .bottom-text .text{
    text-align: justify;
  }
  .card .bottom-text .btn{
    margin: 10px 0;
    text-align: left;
  }
  .card .bottom-text .btn a{
    text-decoration: none;
    background: #e74c3c;
    color: #f2f2f2;
    padding: 5px 8px;
    border-radius: 3px;
    display: inline-flex;
    transition: 0.2s;
  }
  .card .bottom-text .btn a:hover{
    transform: scale(0.9);
  }
  @media screen and (max-width: 978px) {
    .container{
      flex-wrap: wrap;
      flex-direction: column;
    }
    .card{
      max-width: 700px;
      margin: 20px 0;
    }
  }

  /* footer  */
  .footer {
    margin: auto;
    position: absolute;
    max-width: 100%;
    width: 100%;
    background: #10182F;
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px;
  }
  .footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
    .footer-col form button {
      margin: 10px 0 0 0;
    }
  }

  h1 {
    text-align: center;
  }
  
  h1,
  aside,
  .container1 {
    margin: 0 auto 20px;
    max-width: 500px;
  }
  
  .container {
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    transition: box-shadow 200ms;
    &:hover {
      box-shadow: 0 10px 50px -10px rgba(0,0,0,0.25);
    }
  }
  .slideshow {
    position: relative;
    width: 100%;
    &:after {
      content: '';
      display: block;
      padding-bottom: calc((100% / 6) * 4);
    }
    &:hover a {
      opacity: 1;
    }
    a {
      opacity: 0;
      position: relative;
      text-decoration: none;
      transition: opacity 0.5s;
      &:after {
        border-color: #FFF #FFF transparent transparent;
        border-style: solid;
        border-width: 2px;
        color: #FFF;
        display: block;
        height: 10px;
        position: absolute;
        top: calc(50% - 5px);
        width: 10px;
      }
      &:first-child:after {
        content: '';
        left: 10px;
        transform: rotate(-135deg);
      }
      &:nth-child(2):after {
        content: '';
        right: 10px;
        transform: rotate(45deg);
      }
    }
    .slide {
      background-color:rgb(16, 32, 38);
      box-sizing: border-box;
      display: none;
      height: 100%;
      position: absolute;
      width: 100%;
      &:first-child,
      &:target {
        display: block;
      }
      a {
        display: block;
        height: 100%;
        position: absolute;
        width: 50%;
        &:nth-child(2) {
          left: 50%;
        }
      }
      img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit:contain;
      }
    }
  }
  .pagination {
    display: flex;
    bottom: 10px;
    justify-content: center;
    position: absolute;
    width: 100%;
    a {
      background:rgb(16, 32, 38);
      border-radius: 50%;
      display: block;
      height: 10px;
      width: 10px;
      &:not(:last-child) {
        margin-right: 5px;
      }
      span {
        display: none;
      }
    }
  }
  
  a:target {
    color: red;
  }
