main {
  margin-top: 12rem;
}

.text-justify {
  text-align: justify;
}

.glow-text {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  /* text-align:center; */
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #00aaff,
      0 0 20px #00aaff,
      0 0 30px #00aaff;
  }

  to {
    text-shadow: 0 0 20px #005eff,
      0 0 30px #005eff,
      0 0 40px #005eff;
  }
}

.mumbai-style::first-letter {
  font-size: 30px;
  font-weight: bold;
  color: #2b4eff;
}

.bg-places {
  background-color: #9195a732;
  padding: 20px 0;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 12px;
  border-radius: 6px;
}

.icon-list li::before {
  content: "📚";
  position: absolute;
  left: 0;
  font-size: 18px;
}

.pathway-style {
  position: relative;
  background-color: lightcyan;
  border: 2px solid rgba(0, 139, 53, 0.142);
  box-shadow: 2px 2px 10px darkblue;
  padding: 20px 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  margin: 10px 10px;
}

.d-flex>div:nth-child(1) .pathway-style::before {
  content: "1";
}

.d-flex>div:nth-child(2) .pathway-style::before {
  content: "2";
}

.d-flex>div:nth-child(3) .pathway-style::before {
  content: "3";
}

.d-flex>div:nth-child(5) .pathway-style::before {
  content: "4";
}


.pathway-style::before {
  color: white;
  background-color: darkblue;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 18px;
}

.folded-rectangle {
  --r: 30px;
  /* radius */
  width: 200px;
  aspect-ratio: 1.5;
  background: #519548;
  margin-left: 2rem;
  border-radius: 0 var(--r)/0 calc(2*var(--r));
  padding-block: var(--r);
  --_m: #0000 100%, #000 calc(100% + 1px);
  mask:
    conic-gradient(#000 0 0) content-box,
    radial-gradient(var(--r) at 100% 0, var(--_m)) no-repeat,
    radial-gradient(var(--r) at 0 100%, var(--_m)) 100% 100% no-repeat;
  mask-size: var(--r) var(--r);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  transition: transform 0.3s ease;
}

.folded-rectangle:hover {
  transform: translateY(10px);
}

.num-box {
  position: relative;
  background-color: #1073ac;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 4rem;
  height: 250px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  mask: radial-gradient(30px at 40px 40px, #77020200 98%, #092783) -40px -40px;
}


.num-box::before {
  position: absolute;
  left: 45%;
  top: 25px;
  color: white;
  background-color: darkblue;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
}

.num-box:hover {
  background-color: darkslateblue;
  color: aliceblue;
}

.num-box:nth-child(1)::before {
  content: "1";
}

.num-box:nth-child(2)::before {
  content: "2";
}

.num-box:nth-child(3)::before {
  content: "3";
}

.num-box:nth-child(4)::before {
  content: "4";
}

.num-box:nth-child(5)::before {
  content: "5";
}

.num-box:nth-child(6)::before {
  content: "6";
}

.num-box:nth-child(7)::before {
  content: "7";
}

.num-box:nth-child(8)::before {
  content: "8";
}

.num-box:nth-child(9)::before {
  content: "9";
}

.display-7 {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.gradient-title {
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(90deg, #00c6ff, #4e73df, #4edf77e7);
  background-size: 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 200%;
  }

  100% {
    background-position: 0%;
  }
}

.bg-scholar-success {
  background-color: rgba(224, 255, 255, 0.462);
}

.wrapper {
  padding: 0.7em 1.5em;
}

.check-style {
  background-color: #092783;
  color: white;
  padding: 0.25em;
  border-radius: 30%;
  margin-right: 0.75em;
}

.frame {
  border: 2px solid darkblue;
  padding: 1.2em;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

.frame:hover {
  background-color: darkblue;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 2px 2px 10px blue;
}

.btn-thesis {
  background-color: #519548;
  color: white;
  padding: 0.75em;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  transition: all 0.3s ease;
}

.btn-research {
  background-color: darkcyan;
  color: white;
  padding: 0.75em;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(147, 5, 5, 0.607);
  transition: all 0.3s ease;
}

.top {
  background-color: #4e73df;
  color: #fff;
  height: 120px;
  border-radius: 10px;
  border: 2px solid #330a98;
  padding: 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 23px), calc(50% + 23px) calc(100% - 23px), 50% 100%, calc(50% - 23px) calc(100% - 23px), 0 calc(100% - 23px));
}

.bottom {
  height: 150px;
  border-radius: 10px;
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  clip-path: polygon(0 0, calc(50% - 0.41px - 23px) 0, 50% calc(23px + 0.41px), calc(50% + 0.41px + 23px) 0, 100% 0, 100% 100%, 0 100%);
  margin-top: -22px;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  position: relative;
  padding-left: 2em;
  margin: 12px 0;
}

.icon-list li::before {
  content: "✔";
  position: absolute;
  left: 7;
  color: green;
  font-weight: bold;
}

.border-left {
  position: relative;
  border-left: 5px solid #4e73df;
  padding: 20px 50px;
}

.assistance-border-bottom {
  padding-bottom: 2em;
  border-bottom: 3px dashed #092987;
}

.border-left::after {
  position: absolute;
  box-shadow: 0 0 0 4px green;
  left: -8.6px;
  background: white;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 30px;
}

.research-support p {
  line-height: 1.5rem;
}

.flip-top {
  background: linear-gradient(145deg, rgba(9, 86, 158, 0.868), rgba(84, 63, 141, 0.819));
  box-shadow: 3px 3px 10px rgba(19, 5, 147, 0.607);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75em;
}

.flip-bottom {
  padding: 2em 1.5em;
  text-align: justify;
  font-weight: 600;
  font-size: 1.1rem;
}

.flip-container {
  background: linear-gradient(145deg, rgba(9, 86, 158, 0.17), rgba(84, 63, 141, 0.29));
  height: 100%;
  box-shadow: 3px 3px 10px rgba(19, 5, 147, 0.607);
  border: 2px solid darkblue;
  border-radius: 10px;
}

.faq-container {
  max-width: 700px;
  margin: auto;
  font-family: Arial;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background: darkcyan;
  color: white;
  font-weight: 600;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
}

.faq-question:hover {
  background: green;
}

.icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.faq-answer p {
  padding: 10px 0;
}

.fs-7 {
  font-size: medium;
}

@media screen and (max-width:768px) {

  .assistance-border-bottom-last {
    padding-bottom: 2em;
    border-bottom: 3px dashed #092987;
  }

  main {
    margin-top: 7em;
  }
}

@media screen and (min-width:768px) and (max-width:992px) {

  main {
    margin-top: 7.5em;
  }
}

.box-hover {
  transition: all 0.3s ease;
}

.box-hover:hover {
  transform: translateY(-10px);
}

.btn-anim {
  padding: 0.75em;
  margin: auto;
  background-color: #00aaff;
  color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  transition: all 0.3s ease;
  animation: button-scale 2s linear 2s infinite alternate;
}

.analysis-style {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* full width */
  max-width: 700px;
  /* control size on large screens */
  margin: 1em auto;
  padding: 1.2em;
  border: 2px solid rgb(4, 128, 42);
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.analysis-style:hover {
  transform: translateY(-10px);
}

@keyframes button-scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.btn-topic {
  padding: 1.2em;
  margin: auto;
  background-color: rgb(17, 19, 146);
  color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  transition: all 0.3s ease;
  animation: button-scale 2s linear 2s infinite alternate;
}