 @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
	.homeimg-section {
	  display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
	}
 
    .img-hero {
      position: relative;
      animation: floatImage 4s ease-in-out infinite;
      width: 400px;
      height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .img-hero img {
      width: 75%;
      max-width: 320px;
      height: auto;
      z-index: 10;
     /* border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
    }

    .rotate-text {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
    }

    .rotate-text span {
      position: absolute;
      width: 90%;
      height: 90%;
      background: transparent;
      border: 4px solid #eaeef0;
      border-radius: 50%;
      z-index: 1;
      overflow: hidden;
    }

    .rotate-text span::before {
      content: "";
      position: absolute;
      inset: 16px;
      background: #e2dfe3;
      border-radius: 50%;
      z-index: 1;
      opacity: 0.7;
    }

    .rotate-text span i {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #ed0011bf, #8e15c9ad);
      filter: blur(4px);
      animation: animate 4s linear infinite;
    }

    .rotate-text .text {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #d5d5d5cc;
      border-radius: 50%;
      box-shadow: 0 1px 5px 4px #ffffff47;
      animation: rotateText 30s linear infinite;
      pointer-events: none;
    }

    .rotate-text .text b {
      position: absolute;
      transform-origin: 0 202px;
      display: block;
      top: 0;
      left: 50%;
      font-size: 1.1rem;
      font-weight: 600;
      color: #2c3e50;
      width: 18px;
      text-align: center;
    }

    /* Animations */
    @keyframes floatImage {
      0% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
      100% { transform: translateY(0); }
    }

    @keyframes animate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes rotateText {
      0% { transform: rotate(360deg); }
      100% { transform: rotate(0deg); }
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .img-hero {
        width: 320px;
        height: 320px;
      }
      
      .rotate-text .text b {
        transform-origin: 0 160px;
        font-size: 1.1rem;
      }
      
   
    }

    @media (max-width: 768px) {
      .homeimg-section {
        padding: 30px 10px;
      }

      .img-hero {
        width: 260px;
        height: 260px;
      }

      .img-hero img {
        width: 65%;
        max-width: 200px;
      }
      
      .rotate-text .text b {
        transform-origin: 0 150px;
        font-size: 0.9rem;
      }
      
    }

    @media (max-width: 480px) {
      .img-hero {
        width: 260px;
        height: 260px;
      }
      
      .rotate-text .text b {
        transform-origin: 0 130px;
        font-size: 0.8rem;
      }
      
     
    }