.blog_image {
    width: 100px;
    margin-left: 20px;
}
.imagepro {
    border-radius: 10%;
}

.team_image_fixed {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10%;
}
.team_image_fixed {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.single_team {
    text-align: center;
    margin-top: 20px;
    position: relative;
    width: 350px;
    height: 220px;
    overflow: hidden;
    border-radius: 10%;
    transition: transform 0.5s ease;
}

.team_content {
    text-align: center;
    color: black;
    position: absolute;
    bottom: -100%;
    width: 100%;
    transition: bottom 0.5s ease;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 10px;
}

.single_team:hover .team_image_fixed {
    transform: scale(1.1);
}

.single_team:hover .team_content {
    bottom: 0;
}

.single_team:hover {
    transform: translateY(-10px);
}        .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 200px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
  }
  .loader::before {
    border-color: #f03355 #0000;
    animation: inherit; 
    animation-duration: .5s;
    animation-direction: reverse;
  }
  .loader::after {
    margin: 8px;
  }
  @keyframes l16 { 
    100%{transform: rotate(1turn)}
  }

  /* navbar.css */
/* Navbar styles */
.navbar {
    background-color: transparent;
}

.navbar-brand {
    text-decoration: none;
    color: #333;
}

.navbar-toggler {
    cursor: pointer;
}

.navbar-toggler .toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
    transition: background-color 0.3s ease;
}

.navbar-toggler.active .toggler-icon {
    background-color: transparent;
}

.navbar-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    margin-right: 10px;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-item a:hover,
.nav-item a.active {
    color: #25b09b;
}

/* Small screen responsive styles */
@media (max-width: 767px) {
    .navbar-collapse {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-collapse ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-toggler.active .toggler-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .navbar-toggler.active .toggler-icon:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.active .toggler-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    }
    /* Assurez-vous que ce CSS est chargé dans votre projet */
    .shadow-permanent {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .sendmail {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        border: 3px solid;
        border-color: #FFF #FFF transparent transparent;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
      }
      .sendmail::after,
      .sendmail::before {
        content: '';  
        box-sizing: border-box;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border: 3px solid;
        border-color: transparent transparent #FF3D00 #FF3D00;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-sizing: border-box;
        animation: rotationBack 0.5s linear infinite;
        transform-origin: center center;
      }
      .sendmail::before {
        width: 32px;
        height: 32px;
        border-color: #FFF #FFF transparent transparent;
        animation: rotation 1.5s linear infinite;
      }
          
      @keyframes rotation {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      } 
      @keyframes rotationBack {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(-360deg);
        }
      }
          