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

body {
  font-family: "Poppins", sans-serif;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #184b94;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-bar ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
}

.nav-bar ul li a:hover {
  color: #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 5px;
}

.nav-bar ul li a.active {
  color: #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 5px;
}

.connect-button {
  background-color: #fff;
  color: #184b94;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.burger-menu {
  display: none;
}

.connect-button.sidebar {
  display: none;
}
/* Connect Modal */

main {
  position: relative;
}

.connect-modal {
  position: fixed;
  top: 25%;
  left: 25%;
  width: 800px;
  height: 475px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px #0000001a;
  color: #111827;
  display: none;
  padding: 50px;
  border-radius: 10px;
}

.connect-modal.show-modal {
  display: block;
  z-index: 1000;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.connect-modal h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.connect-modal p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  column-gap: 30px;
  margin: 40px 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  background-color: #f6f9ff;
  padding: 10px;
  border: 1px solid #eef4ff;
  border-radius: 4px;
}

.form-group input,
.form-group option {
  font-size: 16px;
  font-weight: 500;
}

.form-group input::placeholder {
  color: #c8c8c8;
  font-weight: 500;
  font-size: 17px;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.form-button {
  background-color: #184b94;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-cancel-button {
  background-color: #fff;
  color: #184b94;
  padding: 10px;
  border: 1px solid #184b94;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .header img {
    width: 100px;
  }

  .nav-bar ul li a {
    font-size: 14px;
  }

  .connect-button {
    padding: 8px 14px;
    font-size: 14px;
  }

  .connect-modal {
    left: 12%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header img {
    width: 100px;
  }

  .nav-bar {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #184b94;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-bar ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-bar ul li a {
    padding: 10px 0;
  }

  .burger-menu {
    display: block;
  }

  .nav-bar.active {
    display: block;
  }

  .connect-button {
    display: none; /* Hide on smaller screens */
  }

  .connect-button.sidebar {
    display: block; /* Hide on smaller screens */
  }

  .connect-modal {
    left: 0%;
    top: 15%;
    height: max-content;
  }

  .form-container {
    grid-template-columns: 1fr;
  }
  .connect-button {
    display: none; /* Hide on smaller screens */
  }

  .connect-button.sidebar {
    display: block; /* Hide on smaller screens */
  }

  .connect-modal {
    left: 0%;
    top: 15%;
    height: max-content;
  }

  .form-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .connect-modal {
    left: 0%;
    top: 10%;
    height: max-content;
    width: 100%;
    padding: 5px;
  }

  .connect-modal h4 {
    font-size: 24px;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select {
    padding: 8px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input::placeholder {
    font-size: 14px;
  }

  .form-button,
  .form-cancel-button {
    padding: 8px;
    font-size: 14px;
  }
}

/* Header */

.hero-header {
  color: #184b94;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f2f2f2;
}

.hero-header h2 {
  font-size: 24px;
  font-weight: 600;
}

.admission-steps {
  margin: 70px 100px;
  padding: 24px 50px;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 1px 4px 0px #00000014;
  border-radius: 8px;
}

.admission-progress {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  background-color: #bfbfbf;
  width: max-content;
  color: #fff;
  padding: 2px 12px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 18px;
  border: 6px solid #f0f0f0;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}

.step-text {
  padding: 5px 30px;
  border-radius: 12px;
  background-color: #f0f0f0;
  box-shadow: 0px 2px 2px 0px #0000001a inset;
  width: max-content;
  color: #8c8c8c;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.step-text::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #f0f0f0 transparent;
}

.active .step-number {
  background-color: #184b94;
}

.active .step-text {
  background-color: #184b94;
  color: #fff;
}

.active .step-text::before {
  border-color: transparent transparent #184b94 transparent;
}

.completed .step-number {
  background-color: #184b94;
}

.completed .step-text {
  background-color: #184b94;
  color: #fff;
}

.completed .step-text::before {
  border-color: transparent transparent #184b94 transparent;
}

.progress-bar {
  position: absolute;
  top: 13%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  z-index: -1;
  box-shadow: 0px 4px 4px 0px #00000026 inset;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #184b94;
  width: 50%;
  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .admission-steps {
    margin: 70px 20px;
    padding: 24px 30px;
  }
}

@media screen and (max-width: 768px) {
  .admission-steps {
    margin: 70px 20px;
    padding: 24px 20px;
  }

  .admission-progress {
    flex-direction: column;
    gap: 20px;
  }

  .progress-bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 100%;
  }

  .progress {
    width: 100%;
    height: 50%;
  }
}

/* Step Info */

.step-info {
  margin-top: 40px;
  /* : 24px 50px; */
  padding: 40px 100px;
}

.info {
  display: none;
}

.info.active {
  display: block;
}

.step-header {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.step-header span::after {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background-color: #184b94;
  margin-right: 10px;
  border-radius: 4px;
}

.step-header h5 {
  font-size: 24px;
  font-weight: 600;
  color: #184b94;
}

.step-list {
  list-style-position: inside;
  padding-left: 14px;
  font-size: 18px;
  margin: 12px 0;
  font-weight: 500;
}

.step-list li {
  margin-bottom: 10px; /* Adjust this value to increase or decrease the gap */
}

.blue-word {
  color: #184b94;
  font-weight: 600;
}

.step-para {
  margin-top: 32px;
}

.step-para p {
  margin-bottom: 8px;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.steps-next {
  border: 2px solid #184b94;
  background-color: #fff;
  color: #184b94;
  padding: 10px 20px;
  box-shadow: 0px 0px 10px 0px #00000033;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.steps-back {
  /* border: 2px solid #184b94; */
  background-color: #184b94;
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0px 0px 10px 0px #00000033;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.steps-big-para {
  margin: 20px 50px;
  line-height: 1.8;
}

.warning {
  color: #de0000;
  margin-bottom: 10px;
  padding: 0 30px;
}

.warning-list {
  color: #de0000;
  margin-bottom: 20px;
  list-style-position: inside;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .step-info {
    padding: 40px 20px;
  }

  .step-header {
    padding: 10px;
  }

  .step-header h5 {
    font-size: 20px;
  }

  .step-list {
    font-size: 16px;
  }

  .step-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .steps-big-para {
    margin: 0;
    margin-top: 20px;
  }

  .warning {
    padding: 20px 0;
  }

  .warning-list {
    padding: 20px 0;
  }
}

/* Footer */

footer {
  background-color: #184b94;

  margin-top: 80px;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  padding: 50px 100px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-links,
.explore-links {
  margin-left: 200px;
}

.copy-right {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding: 40px 100px;
  border-top: 1px solid #fff;
}

.copy-right p {
  margin-top: 20px;
  font-weight: 400;
}

.footer-logo {
  width: 37%;
}

.about-links,
.explore-links {
  width: 33%;
}

.footer-link {
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    gap: 0;
    padding: 42px 34px;
  }
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
    font-size: 14px;
  }

  .footer-logo,
  .about-links,
  .explore-links {
    width: 100%;
  }

  .footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
  }

  .footer-container h4 {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-contact {
    margin-top: 0;
    text-align: center;
  }

  .footer-list {
    margin-top: 0;
    text-align: center;
  }

  .about-links,
  .explore-links {
    margin-left: 0;
  }

  .copy-right {
    padding: 20px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
  }
}
