
    .floating {
      animation: float 3.5s ease-in-out infinite;
    }
  
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
      100% { transform: translateY(0px); }
    }
  
    @media(max-width: 768px) {
      .hero-banner {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 30px;
      }
  
      .hero-banner h1 {
        font-size: 1.9rem;
      }
  
      .hero-banner p {
        font-size: 1rem;
      }
    }
    .image-container {
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid #eee;
}

.image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

    
        .beadcrume {
            margin-top: 50px;
        }
        
        section.blogs_grid {
            padding: 30px 0 10px;
            background: #b4a89c5d;
        }
        .box_blogs a {
            color: #000;
        }
        
        .box_blogs {
            background: #fff;
            padding: 10px 10px 29px;
            border-radius: 5px;
            box-shadow: 0px 2px 16px rgb(0 0 0 / 22%);
            transition: all 0.5s ease;
            position: relative;
                height: 100%;
        }
        
        .box_blogs img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        
        .postMeta span {
            padding: 5px 10px;
            background: #c08831;
            color: #fff;
            position: absolute;
            top: 15px;
            right: 16px;
            font-size: 12px;
        }
        .box_blogs h4 {
            font-size: 21px;
            line-height: 1.3;
            margin: 14px 10px 10px;
            font-weight: 700;
            transition: all 0.5s ease;
        }
        .box_blogs_h3_heading_wrapper {
            text-align: center; /* Center child inline-block elements */
        }

        .box_blogs_h3_heading {
            font-size: 30px;
            font-weight: 700;
            color: #001d3d;
            margin: 10px 0 25px;
            padding-bottom: 30px;
            position: relative;
            display: inline-block; /* Needed for centering via parent */
        }
        .box_blogs p {
            margin: 0 10px 15px;
            display: -webkit-inline-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #6a6a6a;
        }
        
        .box_blogs h5 {
            margin: 0 10px;
            color:  #c08831;
            border-bottom: 2px solid  #c08831;
            display: inline-block;
            padding-bottom: 7px;
        }
        
        .box_blogs:hover h4 {
            color:  #c08831;
        }
        
        .blogs_grid .col-md-4 {
            margin-bottom: 30px;
        }
        
        .box_blogs:hover {
            transform: translate(0px, -20px);
        }
        
     

