/* Reset body styles */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3F3F3 0%, #B0E0E6 100%); /* Soft gradient background */
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* Main container to center content */
.container {
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Smooth shadow for depth */
  transition: transform 0.3s ease;
}

.container:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Extraordinary Loader Styling */
.extra-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
}

/* Individual Circle Animation */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #DFA43F;
  animation: pulse 1.5s infinite ease-in-out alternate;
}

/* Circle Sequence Animation Delays */
.circle:nth-child(1) {
  animation-delay: 0s;
}

.circle:nth-child(2) {
  animation-delay: 0.4s;
}

.circle:nth-child(3) {
  animation-delay: 0.8s;
}

/* Pulsating Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #DFA43F;
  }
  100% {
    transform: scale(1.3);
    background-color: #28a745;
  }
}

/* Text styling */
.text h1 {
  font-size: 2.5rem; /* Adjusted for better readability */
  color: #333;
  margin: 15px 0;
  font-family: 'Roboto', sans-serif; /* More elegant font for headings */
  font-weight: 700;
}

.text p {
  font-size: 1rem;
  color: #666;
  font-family: 'Arial', sans-serif;
}

/* Highlight the brand name */
.highlight {
  color: #DFA43F;
  font-weight: bold;
}

/* Contact link styling */
.contact-link {
  color: #00B7FF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-link:hover {
  text-decoration: underline;
  color: #007BFF; /* Slightly darker on hover */
}

/* Status messages */
.status {
  margin-top: 20px;
}

.success {
  color: #28a745;
  font-weight: bold;
}

.failure {
  color: #dc3545;
  font-weight: bold;
}

.hidden {
  display: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .text h1 {
    font-size: 2rem; /* Adjust heading size for smaller screens */
  }
  
  .text p {
    font-size: 0.9rem; /* Adjust text size for smaller screens */
  }

  .circle {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .text h1 {
    font-size: 1.5rem; /* Adjust heading size for very small screens */
  }

  .text p {
    font-size: 0.8rem; /* Adjust text size for very small screens */
  }

  .circle {
    width: 20px;
    height: 20px;
  }
}
