/* Body with blurred background */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  color: white;
}

/* Dark overlay with blur */
.overlay {
  background-color: rgba(26, 26, 26, 0.6);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main content container */
.container {
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
  width: 100%;
}

/* Logo placeholder styling */
.logo .placeholder {
  font-weight: bold;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-bottom: 30px;
	hight:50%;
	width:50%;
}

/* Headings */
h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  margin-bottom: 15px;
  color: #ffffff;
}

.subtitle {
  font-size: 1.9rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #cccccc;
}

/* Progress bar container */
.progress-bar {
  position: relative;
  width: 320px;
  height: 6px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

/* Blue fill with animated sheen */
.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 65%;
  background: #2d92ff;
  border-radius: inherit;
}

.progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: sweep 1.6s linear infinite;
}

@keyframes sweep {
  0%   { left: -40%; }
  100% { left: 100%; }
}

/* Social icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 auto;
  font-size: 1.3rem;
  color: white;
  border: 1px solid white;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: white;
  color: #222;
}

.social
{
	widht:20px;
	height:20px;
	
}
