/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-weight: 700;
}


/* -------------------- Navbar -------------------- */
.navbar {
  background-color: white !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand img {
  border-radius: 0;
  object-fit: contain;
  width: 250px;
  height: 80px;
}

.navbar .nav-link {
  color: #044aad !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ff3131 !important;
}

.navbar .nav-link.active {
  color: #ff3131 !important;
}

.navbar-toggler {
  border: none;
  outline: none;
}

/* Search Icon */
#searchToggle {
  background: #ff3131;
  border: none;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

#searchToggle:hover {
  background: #fff;
  color: #ff3131;
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

#navbarSearch {
  display: none;
  width: 200px;
  transition: width 0.3s ease;
}

/* -------------------- Coming Soon Section -------------------- */
.coming-soon {
  flex: 1;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon .coming-image {
  width: 45%;
  max-width: 450px;
  height: auto;
  margin-bottom: 1.5rem;
}

.coming-soon h1 {
  font-size: 2.5rem;
  color: #ff3131;
  font-weight: 700;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #044aad;
}

/* -------------------- Footer -------------------- */
footer {
  background: #044aad;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: auto;
  font-size: 0.95rem;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 180px;
    height: 60px;
  }

  .navbar .nav-link {
    margin: 6px 0;
    text-align: center;
  }

  #navbarSearch {
    width: 100%;
    margin-top: 10px;
  }

  .coming-soon .coming-image {
    width: 80%;
  }

  .coming-soon h1 {
    font-size: 2rem;
  }

  .coming-soon p {
    font-size: 1rem;
  }
}
