* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === Background Styling === */
body {
  background-color: #0b0f1a;
  background-image: url('information-technology-nucb4z97b3q78mjk.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* === Hero Content === */
.hero {
  width: 100%;
  max-width: 1000px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* === Logo === */
.logo {
  max-width: 90%;
  height: auto;
  width: 200px;
  margin-bottom: 1rem;
}

/* === Company Name === */
.company-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1c294a;
  background: linear-gradient(to right, #00e5ff, #4a7eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* === Slogan === */
.slogan {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00ffe7;
  text-shadow: 0 0 10px rgba(0, 255, 231, 0.8), 0 0 20px rgba(0, 255, 231, 0.5);
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 231, 0.4);
  margin-bottom: 2rem;
  animation: pulse-glow 3s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

/* === Main Tagline === */
.hero-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  padding: 0 1rem;
}

/* === Coming Soon Typing Animation === */
.coming-soon {
  font-size: 1.4rem;
  font-weight: 500;
  color: #00ffff;
  font-family: 'Courier New', Courier, monospace;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ffff;
  width: 0;
  animation: typing 4s steps(26) forwards, blink 0.7s step-end infinite;
  margin-bottom: 2rem;
}

@keyframes typing {
  from { width: 0; }
  to { width: 26ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 255, 231, 0.8), 0 0 20px rgba(0, 255, 231, 0.5);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 14px rgba(0, 255, 231, 1), 0 0 28px rgba(0, 255, 231, 0.8);
    transform: scale(1.01);
  }
}

/* === Contact Button === */
.contact-button {
  display: inline-block;
  background: linear-gradient(to right, #00e5ff, #4a7eff);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.4);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 128, 255, 0.6);
}

/* === Responsive Layout === */
@media (max-width: 768px) {
  .company-name {
    font-size: 1.4rem;
    text-align: center;
  }

  .slogan {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.3rem;
    padding: 0 0.5rem;
  }

  .coming-soon {
    font-size: 1.1rem;
  }

  .contact-button {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    width: auto;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 150px;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .coming-soon {
    font-size: 1rem;
  }

  .slogan {
    font-size: 0.9rem;
  }
}
