/* Outer Circle (Pulsing Circle) */
.outer-circle {
  background-color: transparent;
  border: 11px solid #FF4081; /* Neon Pink */
  width: 350px; /* Default size for larger screens */
  height: 350px; /* Maintain same max-height */
  border-radius: 50%; /* Make it round */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  z-index: 1;
}

/* Inner Circle */
.inner-circle {
  background-color: #18d26e; /* Inner Circle Color */
  width: 300px; /* Inner Circle size */
  height: 300px; /* Inner Circle size */
  border-radius: 50%; /* Make it round */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Round Image inside the Inner Circle */
.round-image {
  width: 200px;        /* Adjust size as needed */
  height: 200px;       /* Make the height and width the same for a perfect circle */
  border-radius: 50%;  /* This makes the image round */
  object-fit: cover;   /* Ensures the image covers the area without distortion */
}

/* Container to center the circle */
.container-circle {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  height: 70vh;
  flex-direction: column;
}

/* Mobile and Tablet responsiveness */
@media screen and (max-width: 768px) {
  .outer-circle {
    width: 250px; /* Reduce size on tablet */
    height: 250px; /* Maintain same height */
  }

  .inner-circle {
    width: 220px; /* Reduce inner circle size */
    height: 220px; /* Keep it proportional */
  }

  .round-image {
    width: 160px; /* Reduce image size */
    height: 160px;
  }
}

@media screen and (max-width: 480px) {
  .outer-circle {
    width: 200px; /* Reduce size further on mobile */
    height: 200px;
  }

  .inner-circle {
    width: 180px; /* Reduce inner circle size */
    height: 180px;
  }

  .round-image {
    width: 120px; /* Adjust image size on mobile */
    height: 120px;
  }
}
	
	.outer-circle:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5);
    }

    .outer-circle:active {
      animation: none; /* Stop animation when clicked */
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
      }
      50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
      }
    }
	