
    .banner {
      background: url('../images/about.png') no-repeat center center;
      background-size: cover;
      background-position: center;
      padding: 100px 0;
      text-align: center;
      color: #000;
    }

    .breadcrumb-item+.breadcrumb-item::before {
      content: ">";
    }

    .about-section {
      padding: 25px 0;
      animation: fadeIn 1.5s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .highlight {
      color: #d71e20;
      font-weight: bold;
    }



    .read-more-btn {
      background-color: #d71e20;
      color: white;
      border: none;
      padding: 10px 25px;
      font-weight: bold;
      border-radius: 5px;
      transition: 0.3s;
    }

    .read-more-btn:hover {
      background-color: #dc2a2d;
    }
     .img-container img {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 10px;
      /* border: 2px solid black; */
      box-shadow: 10px 0px 10px 0px rgb(71, 70, 70);
      transition: transform 0.3s ease;
    }

    .img-container img:hover {
      transform: scale(1.05);
    }
    

   
    @keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-heading {
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0; /* Ensures it's invisible before animation */
}
 .animated-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      border-radius: 15px;
      cursor: pointer;
      background: transparent;
       box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
      padding: 30px 20px;
      text-align: center;
      border:1px solid #d71e20;
    }

    .animated-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      background-color: #d71e20;
      
    }

     .animated-card .icon {
      font-size: 50px;
      color: #d71e20;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .animated-card:hover .icon {
      transform: rotate(10deg) scale(1.1);
    }

    .animated-card h4 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .animated-card p {
      color: #666;
    }
    .animated-card:hover h4,
.animated-card:hover p {
  color: #fff;
}

     .steps {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 50px;
    }

    .step {
      width: 50px;
      height: 50px;
      background: #ddd;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 30px;
      cursor: pointer;
      position: relative;
      transition: background 0.3s;
    }

    .step.active {
      background: #d71e20;
    }

    .step::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -40px;
      width: 80px;
      height: 4px;
      background: #ddd;
      transform: translateY(-50%);
      z-index: -1;
    }

    .step:last-child::after {
      display: none;
    }

    .step.active::after {
      background: #d71e20;
    }

    .step-content {
      max-width: 600px;
      margin: auto;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      display: none;
    }

    .step-content.active {
      display: block;
    }
    .rounded-circle{
      width:40px;height:40px;
    }
     .counter {
            font-size: 40px;
            font-weight: bold;
            color: #d71e20;
        }
    

