* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
  min-height: 100vh;
  overflow-x: hidden;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 235, 0, 0.85),
    rgba(255, 220, 0, 0.9),
    rgba(255, 245, 150, 0.95)
  );
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Logo Styling */
.logo-section {
  text-align: center;
  margin-bottom: 30px;
}

.logo-section img {
  height: 130px;
}

.logo {
  font-size: 4.5rem;
  font-weight: 800;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.4rem;
  color: #2d3748;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.tagline::before,
.tagline::after {
  content: "•";
  margin: 0 10px;
  color: #4a90e2;
}

/* Coming Soon Section */
.coming-soon-section {
  text-align: center;
  margin: 20px 0 10px;
  /* max-width: 800px; */
}

.coming-soon-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #979797;
  font-family: inter;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.description {
  font-size: 1.3rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  width: 100%;
  max-width: 700px;
  margin-top: 30px;
  text-align: center;
  margin-bottom: -150px;
}

.contact-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 25px;
  font-family: Arial;
  position: relative;
  padding-bottom: 15px;
}

.contact-info {
  display: flex;
 
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

/* .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  
  padding: 25px;
  border-radius: 10px;
 
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

/* .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
} */

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a90e2, #63b3ed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.contact-icon i {
  font-size: 1rem;
  color: white;
}

.contact-details {
  text-align: center;
}

.contact-label {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-value {
  font-size: 1.4rem;
  color: #2d3748;
  font-weight: 700;
  word-break: break-all;
}

/* Footer */
.footer {
  margin-top: 50px;
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(113, 128, 150, 0.2);
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .logo {
    font-size: 4rem;
    letter-spacing: 3px;
  }

  .coming-soon-heading {
    font-size: 3rem;
  }

  .description {
    font-size: 1.2rem;
  }

  .contact-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  /* .container {
    padding: 15px;
  } */

  .logo {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .tagline {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .coming-soon-heading {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .description {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .contact-heading {
    font-size: 1.8rem;
  }

  .contact-info {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  /* .contact-item {
    width: 100%;
    max-width: 350px;
  } */
}

@media (max-width: 480px) {
  .logo {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 1rem;
  }

  .coming-soon-heading {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .description {
    font-size: 1rem;
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-value {
    font-size: 1.2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo,
.tagline,
.coming-soon-heading,
.description,
.contact-section {
  animation: fadeInUp 0.8s ease-out forwards;
}

.logo {
  animation-delay: 0.1s;
}
.tagline {
  animation-delay: 0.3s;
}
.coming-soon-heading {
  animation-delay: 0.5s;
}
.description {
  animation-delay: 0.7s;
}
.contact-section {
  animation-delay: 0.9s;
}

.coming-soon-section {
  text-align: center;
  padding: 70px 0px;
  /* background: rgb(255 235 0 / 85%); */
}

:root {
  --c1: #0f172a;
  --c2: #1f2933;
  --c3: #111827;
  --c4: #1e3a8a;
  --c5: #312e81;
  --c6: #1e40af;
  --c7: #065f46;
  --c8: #14532d;
  --c9: #0f766e;
  --c10: #3f6212;
  --c11: #713f12;
  --c12: #7c2d12;
  --c13: #7f1d1d;
  --c14: #881337;
  --c15: #701a75;
  --c16: #4c1d95;
  --c17: #312e81;
  --c18: #1c1917;
  --c19: #262626;
  --c20: #020617;
}

.anim-1 {
  animation: fade20 12s infinite ease-in-out;
}

@keyframes fade20 {
  0% {
    color: var(--c1);
  }
  5% {
    color: var(--c2);
  }
  10% {
    color: var(--c3);
  }
  15% {
    color: var(--c4);
  }
  20% {
    color: var(--c5);
  }
  25% {
    color: var(--c6);
  }
  30% {
    color: var(--c7);
  }
  35% {
    color: var(--c8);
  }
  40% {
    color: var(--c9);
  }
  45% {
    color: var(--c10);
  }
  50% {
    color: var(--c11);
  }
  55% {
    color: var(--c12);
  }
  60% {
    color: var(--c13);
  }
  65% {
    color: var(--c14);
  }
  70% {
    color: var(--c15);
  }
  75% {
    color: var(--c16);
  }
  80% {
    color: var(--c17);
  }
  85% {
    color: var(--c18);
  }
  90% {
    color: var(--c19);
  }
  100% {
    color: var(--c20);
  }
}

.coming-soon-heading {
  /* font-size: 46px;
  font-weight: 900; */
  animation: slideGlow 2.5s ease forwards, colorShift 8s infinite 2.5s;
}

@keyframes slideGlow {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes colorShift {
  0% {
    color: #1f2933;
  }
  25% {
    color: #1e40af;
  }
  50% {
    color: #065f46;
  }
  75% {
    color: #7c2d12;
  }
  100% {
    color: #1f2933;
  }
}

.anim-2 {
  animation: pulseScale 4s infinite ease-in-out;
}

@keyframes pulseScale {
  0%,
  100% {
    color: var(--c2);
    transform: scale(1);
  }
  50% {
    color: var(--c15);
    transform: scale(1.07);
  }
}

.anim-3 {
  background: linear-gradient(
    90deg,
    var(--c1),
    var(--c6),
    var(--c12),
    var(--c16),
    var(--c1)
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradMove 6s infinite linear;
}

@keyframes gradMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

.anim-4 {
  animation: softBlink 3s infinite;
}

@keyframes softBlink {
  0%,
  100% {
    opacity: 1;
    color: var(--c3);
  }
  50% {
    opacity: 0.5;
    color: var(--c11);
  }
}

.anim-5 {
  animation: slideUp 2s ease forwards, fade20 12s infinite 2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-6 {
  animation: glowPulse 3.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%,
  100% {
    color: var(--c4);
    text-shadow: none;
  }
  50% {
    color: var(--c16);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }
}

.anim-7 {
  animation: bounceColor 2.8s infinite;
}

@keyframes bounceColor {
  0% {
    transform: translateY(0);
    color: var(--c5);
  }
  50% {
    transform: translateY(-10px);
    color: var(--c13);
  }
  100% {
    transform: translateY(0);
    color: var(--c5);
  }
}

.anim-8 {
  animation: breathe 5s infinite ease-in-out;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    color: var(--c8);
  }
  50% {
    transform: scale(1.08);
    color: var(--c18);
  }
}

.anim-9 {
  animation: shadowShift 4s infinite;
}

@keyframes shadowShift {
  0% {
    color: var(--c6);
    text-shadow: -10px 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    color: var(--c12);
    text-shadow: 10px 0 rgba(0, 0, 0, 0.3);
  }
  100% {
    color: var(--c6);
    text-shadow: -10px 0 rgba(0, 0, 0, 0.2);
  }
}

.anim-10 {
  animation: rotateFade 6s infinite ease-in-out;
}

@keyframes rotateFade {
  0% {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--c1);
  }
  50% {
    opacity: 0.6;
    transform: rotate(1deg);
    color: var(--c17);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--c1);
  }
}

.anim-9 {
  animation: shadowSweep20 12s infinite ease-in-out;
}

@keyframes shadowSweep20 {
  0% {
    color: #0f172a;
    text-shadow: -12px 0 rgba(0, 0, 0, 0.25);
  }
  5% {
    color: #1f2933;
  }
  10% {
    color: #111827;
  }
  15% {
    color: #1e3a8a;
    text-shadow: -6px 0 rgba(0, 0, 0, 0.25);
  }
  20% {
    color: #312e81;
  }
  25% {
    color: #1e40af;
  }
  30% {
    color: #065f46;
    text-shadow: 0 0 rgba(0, 0, 0, 0.3);
  }
  35% {
    color: #14532d;
  }
  40% {
    color: #0f766e;
  }
  45% {
    color: #3f6212;
    text-shadow: 6px 0 rgba(0, 0, 0, 0.3);
  }
  50% {
    color: #713f12;
  }
  55% {
    color: #7c2d12;
  }
  60% {
    color: #7f1d1d;
    text-shadow: 12px 0 rgba(0, 0, 0, 0.35);
  }
  65% {
    color: #881337;
  }
  70% {
    color: #701a75;
  }
  75% {
    color: #4c1d95;
    text-shadow: 6px 0 rgba(0, 0, 0, 0.3);
  }
  80% {
    color: #312e81;
  }
  85% {
    color: #1c1917;
  }
  90% {
    color: #262626;
    text-shadow: -6px 0 rgba(0, 0, 0, 0.25);
  }
  100% {
    color: #020617;
    text-shadow: -12px 0 rgba(0, 0, 0, 0.25);
  }
}

.anim-logo-1 {
  animation: floatLogo 3s ease-in-out infinite;
}
.anim-logo-2 {
  animation: breatheLogo 3s ease-in-out infinite;
}
.anim-logo-3 {
  animation: swingLogo 4s ease-in-out infinite;
}
.anim-logo-4 {
  animation: logoIntro 1.5s ease forwards;
}
.anim-logo-5 {
  animation: glowLogo 3s ease-in-out infinite;
}
.anim-logo-6 {
  animation: flipLogo 1.5s ease forwards;
}
/* .anim-logo-7 { animation: rotateSlow 6s linear infinite; } */
.anim-logo-8 {
  animation: bounceLogo 2.5s ease-in-out infinite;
}
.anim-logo-9 {
  animation: pulseLogo 3s ease-in-out infinite;
}
.anim-logo-10 {
  animation: floatGlow 4s ease-in-out infinite;
}

/* Keyframes */
@keyframes floatLogo {
  50% {
    transform: translateY(-14px);
  }
}
@keyframes breatheLogo {
  50% {
    transform: scale(1.08);
  }
}
@keyframes swingLogo {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}
@keyframes logoIntro {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowLogo {
  50% {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  }
}
@keyframes flipLogo {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}
@keyframes rotateSlow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounceLogo {
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulseLogo {
  50% {
    transform: scale(1.05);
  }
}
@keyframes floatGlow {
  50% {
    transform: translateY(-14px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  }
}
