body{
    background-color:#f9f9f9 !important;
}
.team-section {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f5f7fa;
}

.member-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #5A67D8;
}


.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-button {
    position: fixed;
    bottom: 70px;       /* distance from bottom */
    right: 20px;        /* distance from right */
    width: 60px;
    height: 60px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
    width: 35px;  /* size of the icon */
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}


@media (max-width: 576px) {
    .whatsapp-button {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}


.emergency-button {
    position: fixed;
      bottom: 220px;       /* distance from bottom */
    right: 20px;        /* distance from right */
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: var(--bs-danger);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}


     .hallOfFame-content-section .card{
        position: relative;
    width: 100%;
    min-height: 340px;
    border-radius: 24px;
    border:0;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s 
ease;
    
     }

    .hallOfFame-content-section  .officer-img{
        padding: 6px 6px 0px 6px;
        width: 100%;
    height: 270px;
    object-fit: fill;
    border-radius: 24px;
    transition: all 0.3s ease;
     }
     .hallOfFame-content-section .officer-img:hover{
        transform: scale(1.1);
     }
     .hallOfFame-content-section .badge-custom{
       background-color: #800000;
     }

     /* officers page css start */
     .about-us-tabs .nav-pills .nav-link.active {
    color: #fff;
    background-color: var(--accent-color);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
        color: #fff;
    background-color:#172554;
}


.officer-content-section .card {
    width: 100%;
    min-height: 33rem;
    /* 520px */
    perspective: 62.5rem;
    /* 1000px */
    /* margin: 2.5rem auto; */
    /* 40px */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    border-radius: 1.5rem;
    background-color: transparent;
}

.officer-content-section .card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 1.5rem;
    /* 24px */
    box-shadow:
        0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.1),
        /* 15px 35px */
        0 0.1875rem 0.625rem rgba(0, 0, 0, 0.07);
    /* 3px 10px */
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.officer-content-section .card-image {
    position: relative;
    height: 17.5rem;
    /* 280px */
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
    /* 24px */
}

.officer-content-section .card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.officer-content-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.officer-content-section .card:hover .card-image img {
    transform: scale(1.05);
}

.officer-content-section .card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 50%);
    pointer-events: none;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.officer-content-section .card:hover .card-glow {
    opacity: 1;
}

.officer-content-section .card-info {
    padding: 1rem;
    /* 25px */
    position: relative;
}

.officer-content-section .card-name {
    margin: 0 0 0.375rem;
    /* 6px */
    font-size: 1.5rem;
    /* 24px */
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.03125rem;
    /* -0.5px */
}

.officer-content-section .card-title {
    margin: 0 0 0.5rem;
    /* 15px */
    font-size: 0.875rem;
    /* 14px */
    color: #5e60ce;
    font-weight: 600;
    letter-spacing: 0.03125rem;
    /* 0.5px */
    text-transform: uppercase;
}

.officer-content-section .card-bio {
    margin: 0 0 0.5rem;
    /* 20px */
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.5;
    color: #555;
}


@media (max-width: 400px) {

    /* 400px */
    .officer-content-section .card {
        width: 18.75rem;
        /* 300px */
        height: 30rem;
        /* 480px */
    }

    .officer-content-section .card-image {
        height: 11.25rem;
        /* 180px */
    }

    .officer-content-section .card-info {
        padding: 1rem;
        /* 20px */
    }

    .officer-content-section .card-name {
        font-size: 1.25rem;
        /* 20px */
    }

    .officer-content-section .card-bio {
        font-size: 0.875rem;
        /* 14px */
    }

}


.online-complaint {
    position: fixed;
       bottom: 140px;       /* distance from bottom */
    right: 20px;        /* distance from right */
    z-index: 9999;
    background: linear-gradient(135deg, #12401a, #079f1e); /* Gradient red */
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.6); /* Red shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: pulse 2s infinite;
}

.online-complaint:hover {
    transform: scale(1.1);
     color: #fff;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.8); /* Glow effect */
    background: linear-gradient(135deg,#079f1e, #12401a); /* Swap gradient */
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@media (max-width: 576px) {
    .emergency-button {
        padding: 10px 14px;
        font-size: 14px;
        bottom: 15px;
        left: 15px;
    }
}
@media (max-width: 750px) {
  .officer-content-section .card {
    width: 100%;
    min-height: auto;
    height: auto;
}
}





@property --angle-to-the-dangle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

.glowing-button-1{
  background-image: 
    linear-gradient(
      oklch(59% 56% 259deg),
      oklch(59% 56% 259deg)
    ),
    conic-gradient(
      from var(--angle-to-the-dangle),
      oklch(59% 56% 259deg) 0deg,
      white 20deg,
      oklch(59% 56% 259deg) 40deg
    );
  background-clip: padding-box, border-box;
  background-position: center center;
  background-size: 170px 500px;
  animation: rotateColors 2s linear infinite;
  border: 2px solid transparent;
}

@keyframes rotateColors {
  0% {
    --angle-to-the-dangle: 0deg;
  }
  100% {
    --angle-to-the-dangle: 360deg;
  }
}



/* shine effect */



.text-shine {  
  color: #fff;
  background: linear-gradient(to right, #777777 0, #cecece 10%, #777777 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine2 4s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
}

@-moz-keyframes shine2 {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 144px;
  }
  100% {
    background-position: 289px;
  }
}
@-webkit-keyframes shine2 {
   0% {
    background-position: 0;
  }
  60% {
    background-position: 144px;
  }
  100% {
    background-position: 289px;
  }
}
@-o-keyframes shine2 {
   0% {
    background-position: 0;
  }
  60% {
    background-position: 144px;
  }
  100% {
    background-position: 289px;
  }
}
@keyframes shine2 {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 144px;
  }
  100% {
    background-position: 289px;
  }
}




.Imgshine {
  position: relative;
  overflow: hidden;
}
.Imgshine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.699) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.Imgshine:hover::before, .Imgshine:focus::before {
  -webkit-animation: Imgshine 0.99s;
          animation: Imgshine 0.99s;
}
@-webkit-keyframes Imgshine {
  100% {
    left: 125%;
  }
}
@keyframes Imgshine {
  100% {
    left: 125%;
  }
}
.Imgshine2 {
  position: relative;
  overflow: hidden;
}
.Imgshine2::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.699) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.Imgshine2:hover::before, .Imgshine2:focus::before {
  -webkit-animation: Imgshine2 2.4s;
          animation: Imgshine2 2.4s;
}
@-webkit-keyframes Imgshine2 {
  100% {
    left: 125%;
  }
}
@keyframes Imgshine2 {
  100% {
    left: 125%;
  }
}