/* style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("test2.jpeg") no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(4px); /* Adjust the blur intensity as needed */
  color: #fff;
  text-align: center;
}

.container {
  max-width: 600px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
/* 
.social {
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.social.instagram {
  background: #e4405f;
  color: white;
}

.social.linkedin {
  background: #0077b5;
  color: white;
}

.social:hover {
  transform: scale(1.1);
  opacity: 0.8;
} */

/* Logo Styles */
.logo {
  width: 150px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 1rem; /* Space between logo and heading */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Progress Bar Styles */
.progress-container {
  width: 95%;
  background: #e0e0e0;
  border-radius: 20px;
  margin: 1rem auto;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 25px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  text-align: center;
  line-height: 25px;
  color: #fff;
  font-weight: bold;
  border-radius: 20px 0 0 20px;
  transition: width 0.5s ease;
}

/* Footer Styles */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
}


.social-btn {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 8px 8px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn i {
  font-size: 30px;
}

#instagram-btn {
  border-color: #e1306c;
}

#linkedin-btn {
  border-color: #0077b5;
}

.social-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#instagram-btn:hover {
  background: #e1306c;
}

#linkedin-btn:hover {
  background: #0077b5;
}

.social-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}