/* General Reset */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
}

/* Header and Mini Timeline Styling */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 20px 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  width: 200px;
  height: auto;
}


.step2 .header .brand {
  width: 250px; 
  height: auto;
}

.step2 .header {
  padding: 30px 0; 
}

.mini-timeline {
  display: flex;
  align-items: center;
}

.mini-line {
  width: 40px;
  height: 4px;
  background-color: #3a3f78;
  margin: 0 10px;
}

.mini-step {
  font-size: 1rem;
  font-weight: bold;
  color: #5864a2;
  padding: 5px 10px;
  border-radius: 8px;
}

.mini-step.completed {
  background-color: #3a3f78;
  color: #fff;
}

.mini-step.active {
  background-color: #5864a2;
  color: #fff;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #3b82f6, #10b981); 
}

.container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: all 0.4s ease;
  text-align: center;
}

.container .brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 0px 0px 15px rgba(0, 150, 255, 0.7);
}

form {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

input {
  width: 85%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #8bc34a;
  outline: none;
  font-size: 1.2rem;
  background-color: #f0f8e2;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #4caf50;
}

.search-result {
  margin-top: 50px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
}

.item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-wrapper {
  padding: 20px;
  flex-grow: 1;
}

.item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15), 0px 8px 16px rgba(0, 0, 0, 0.15);;
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-content {
  padding: 20px;
  text-align: left;
}

.item-data {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8rem;
  margin-top: 5px;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.search-result .title {
  font-family: 'Orbitron', sans-serif;
  color: #8bc34a;
  margin: 20px 0;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 110%;
  text-shadow: 0px 0px 8px rgba(0, 255, 255, 0.7);
  text-align: center;
}

.view-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  background-color: #3a3f78;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  margin-top: auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.view-btn:hover {
  background-color: #5864a2;
  box-shadow: 0px 0px 8px rgba(0, 255, 255, 0.5);
}

.container.initial .brand {
  font-size: 7rem;
}

.container.initial form {
  max-width: 800px;
}

.container.initial form input {
  padding: 20px;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .search-result {
    grid-gap: 20px;
  }
  .container.initial .brand {
    font-size: 4rem;
  }
  .container.initial form {
    max-width: 500px;
  }
  .container.initial form input {
    padding: 10px;
    font-size: 2rem;
  }
}

.label-large {
  font-size: 1.3rem;
  color: #333;
  font-weight: bold;
}


.clock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Text Styling */
.clock-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px; 
  text-align: center;
  letter-spacing: 1px;
}


.clock-container lottie-player {
  width: 250px; 
  height: 250px;
}
