
  .card_test {
      width: 250px;
      height: 250px;
      perspective: 1000px;
      background: transparent !important; 
      border: none !important;           
      box-shadow: none !important;  
    }
    
    @media (max-width: 1200px) {
      .card_test {
        width: 100%;
        margin-bottom: 20px;
      }
    }

    .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s;
      transform-style: preserve-3d;
      border-radius: 20px;
    }

    .card_test:hover .card-inner {
      transform: rotateY(180deg);
    }

    .card-front, .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 38px;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 17px;
      font-weight: bold;
    }

    .card-front {
      background: #20315d;
    }

    .card-back {
      background: #EF7C26;
      transform: rotateY(180deg);
    }

    .card-back button {
      padding: 8px 16px;
      background: #fff;
      border: none;
      color: #1783a1;
      font-weight: bold;
      border-radius: 20px;
      cursor: pointer;
    }

    .card-back button:hover {
      background: #ffebeb;
    }

    .speciality-banner {
      position: relative;
      height: 35vh; 
      color: #fff;
    }

    .speciality-banner .overlay {
      position: absolute;
      inset: 0;
      background: rgba(25, 79, 148, 0.004);
      z-index: 1;
    }

    .speciality-banner h1,
    .speciality-banner p {
      position: relative;
      z-index: 2; 
    }
  
  @media only screen and (max-width: 600px) {
    .icon {
        /* display: flex; */
        align-items: center;
        justify-content: center;
         width: 30px; 
        height: 31px;
        margin: auto;
    }
  }
    .circle-img{
      width: 175px;
    height: 175px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 21px 23px 20px rgba(0, 0, 0, 0.3);
    /* box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    }
    .list-group-item {
    position: relative;
    display: block;
    padding: 1.2rem !important;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
  }

  .list-group-item {
    border: none !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 7px;
   }

  .list-group-item.active {
    z-index: 2;
    color: #000;
    background-color: #ffffff;
    border-color: #ffffff;
   }

 .timeline {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.10rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
 }

/* line */
.timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.timeline li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: #1783a1;

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: #1783a1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeline li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid #1aa2c6;
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeline li .title,
.timeline li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.timeline li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}
.timeline li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* shadows */
.timeline li .title::before,
.timeline li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.timeline li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .timeline::before {
    grid-column: 2;
  }
  .timeline li:nth-child(odd) {
    grid-column: 1;
  }
  .timeline li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .timeline li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .timeline li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

 
     @media only screen and (max-width: 1200px) {
    
    #speciality{
        visibility: hidden;
    }
  }

  @media only screen and (max-width: 600px) {
    
    #banner {
        position: relative;
        left: 15%;
    }
   
  }

  .list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    background-color: #193562;
    border: 1px solid rgba(0, 0, 0, .125);
}
.list-group-item-action {
    width: 100%;
    color: #fdfeff;
    text-align: inherit;
}
.circle-img1 {
    width: 198px;
    height: 266px;
    border-radius: 10%;
    line-height: 30px;
    border: 2px solid #ffffff;
    
    cursor: pointer;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.flex-column{
  flex-direction:none !important;
}
.list-group-item.active .icon {
        filter: invert(1);
    }
    
@media (min-width: 1400px) {
    .p-xxl-5 {
        padding: 5px !important;
    }
}

/* banner */

.plastic-top-div {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 75vh;
    width: 100%;
}

.plastic-tag-top-bar {
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 20vh;
    /* right: 0; */
    left: 33%;
}

@media only screen and (max-width: 600px) {
    .plastic-tag-top-bar {
        padding: 20px 10px;
        top: 7vh;
        left: 0;
        font-size: 10px !important;
    }
      .plastic-top-div {
        background-size: cover !important;
        height: 24vh;
    }
    .little-hand{
      width: 100% !important;
      height: 100% !important;
    }
}


/* Mobile Hide */

@media (max-width: 767px) {
    .ganga-mobile-hide {
        display: none !important;
    }
}

/* Web Hide */

@media (min-width: 768px) {
    .ganga-web-hide {
        display: none !important;
    }
}

.event-images {
        display: flex;
        gap: 10px; /* reduce space between images */
        justify-content: center;
        margin-top: 15px;
    }
    .event-images img {
        border-radius: 12px;
        max-width: 500px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .event-images img:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
    }

     .highlight-heading {
      color: black;
      font-weight: bold;
      text-align: left;
      margin-bottom: 5px;
      font-size: 22px;
  }

  .heading-underline {
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #ff7e5f, #feb47b);
      border-radius: 2px;
      margin-bottom: 15px;
  }

  /* ?? Blinking animation */
  .blink {
      animation: blinkEffect 1s infinite;
  }

  @keyframes blinkEffect {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0.3; }
  }
  
  #list-breast-list.list-group-item-action:hover {
    background-color: #c81b67 !important; /* keep same pink */
    color: white !important; /* keep text color same */
}

#list-breast-list {
    background-color: #c81b67 !important; /* Breast cancer awareness pink */
    color: white !important;              /* White text */
    border-radius: 8px;                   /* Rounded corners */
    font-weight: 600;                     /* Bold text */
    transition: all 0.3s ease;            /* Smooth effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
}

#list-breast-list img {
    filter: brightness(1.1); /* Make icon pop slightly */
}

#list-breast-list:hover {
    background-color: #c81b67 !important; /* Keep same pink */
    transform: scale(1.02);               /* Slight zoom */
    box-shadow: 0 4px 10px rgba(231, 84, 128, 0.6); /* Pink glow */
    color: white !important;
}
