body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}


.content {
    text-align: center;
    margin-top: 50px;
}
/* Style for the button */
button.btn.back {
    background-color: gray; /* Set the background color to gray */
    color: white; /* Text color */
    padding: 10px 20px; /* Add padding for a more clickable area */
    border: none; /* Remove default button border */
    border-radius: 5px; /* Optional: rounded corners */
    cursor: pointer; /* Change cursor to indicate it's clickable */
    transition: background-color 0.3s ease; /* Smooth transition for the background color */
}

/* Hover effect */
button.btn.back:hover {
    background-color: blue; /* Change background color to blue on hover */
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #495057;
}

.buttons {
    margin: 20px 0;
    padding: 10px;
    position: absolute;
    left: 42%;
    bottom:-3%;
}

.buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 19px;
}

.buttons a:hover {
    background-color: #0056b3;
}

.footer-buttons {
    margin: 40px 0;
}

.footer-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 17px;
    cursor: pointer;
}

.footer-buttons button:hover {
    background-color: #0056b3;
}


/* Animation Section */
.animation-container {
    position: relative;
    height: 300px;
    margin-top: 30px;
}

.circle {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.animated-stream {
    width: 60%; /* Reduced size */
    height: 60%; /* Reduced size */
    background: radial-gradient(circle, rgba(0, 123, 255, 0.4), transparent);
    position: absolute;
    top: 20%; /* Centered closer to the white circle */
    left: 20%; /* Centered closer to the white circle */
    animation: rotate 6s linear infinite;
    z-index: -1; /* Keeps it behind the white circle */
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-icons i {
    font-size: 24px;
    color: rgba(0, 123, 255, 0.8); /* Adjusted to make icons more visible */
    position: absolute;
    animation: float 5s infinite ease-in-out;
}

.floating-icons i:nth-child(1) {
    top:2%;
    left: 45%; /* Adjusted closer to the circle */
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 1%;
    right: 46%; /* Adjusted closer to the circle */
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    top: 26%;
    right: 56%; /* Adjusted closer to the circle */
    animation-delay: 1s;
}

.floating-icons i:nth-child(4) {
    top: 29%;
    right: 43%; /* Adjusted closer to the circle */
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
