:root {
  --primary: #35b6b4;
  --background: #defffe;
  --button-light: #00b3ff;
  --button: #0397d7;
  --button-dark: #124887;
  --light: #e2e2e2;
  --dark: #303030;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--button-dark);
  color: white;
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: var(--background);
  /* border-radius: 10px; */
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
  background: var(--primary);
  /* border-radius: 10px; */
}

/* Thumb hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--button-dark);
}

.center {
  text-align: center;
}

.button {
  color: var(--button);
}

.w-full,
.w-100 {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* summary, */
h1,
h2,
h3,
b {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

i,
p,
li,
label,
input,
textarea,
select,
option {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  list-style: none;
}

option:checked {
  background: var(--background);
}

details {
  border: 3px solid var(--primary);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3 ease;
}

details:hover {
  background-color: var(--backgrounds);
}

details[open] {
  background-color: var(--background);
}

summary {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::marker {
  content: "";
}

summary::before {
  content: "▸";
  margin-right: 8px;
  transition: 0.2s;
}

details[open] summary::before {
  content: "▾";
}

i {
  color: var(--button-dark);
  font-size: 20px;
  transition: all 0.3s ease;
}

i:hover {
  color: var(--button-dark);
  text-shadow: 0px 0px 15px var(--button-light);
}

.fa-circle-check {
  color: var(--primary);
}

button i {
  color: inherit;
  font-size: 20px;
}

p {
  font-size: 16px;
}

span {
  color: var(--button-dark);
}

input,
textarea,
select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  background: none;
  height: 50px;
}

input[type="range"],
input[type="checkbox"] {
  accent-color: var(--button-dark);
  height: auto;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--button);
}

input[type="range"]:focus,
input[type="checkbox"]:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: var(--dark);
  background: radial-gradient(
      circle at 20% 8%,
      rgba(0, 179, 255, 0.3) 100px 100px,
      transparent 500px
    ),
    radial-gradient(
      circle at 90% 35%,
      rgba(0, 179, 255, 0.3) 100px 100px,
      transparent 500px
    ),
    radial-gradient(
      circle at 50% 65%,
      rgba(0, 179, 255, 0.3) 100px 100px,
      transparent 500px
    ),
    radial-gradient(
      circle at 15% 94%,
      rgba(0, 179, 255, 0.3) 100px 100px,
      transparent 500px
    );
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-shadow: 0px 0px 15px var(--button-light);
}

img {
  width: 100%;
}

hr {
  margin: 20px 0;
}

form {
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}

.form-error {
  color: red;
}

.form-success {
  color: var(--button-dark);
}

.small {
  font-size: 13px;
  /* line-height: 2.5; */
}

.flex {
  display: flex;
  gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.flex-col-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  max-width: 1200px;
}

.btn {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    var(--button-dark) 0%,
    var(--button-dark) 30%,
    var(--button) 100%
  );
  color: white;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0px 0px 15px var(--button-light);
}

.btn-hollow {
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  background: white;
  color: var(--button);
  border: 3px solid var(--button);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-hollow:hover {
  box-shadow: 0px 0px 15px var(--button-light);
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.hamburger-open,
.hamburger-close {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  margin: 13px;
  color: var(--button);
  font-size: 40px;
  transition: transform 0.3s ease;
}

/* initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.6s ease;
}

.reveal-anti {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease;
}

/* when visible */
.reveal.active,
.reveal-anti.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar  */
.nav {
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 999;
  /* background-color: none;
  box-shadow: none; */
  transition: all 0.3s ease;
}

.nav.active {
  background-color: white;
  box-shadow: 0px 0px 10px var(--primary);
  height: 70px;
}

.nav-inner {
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  transition: transform 0.9s ease;
}

.nav-center ul li {
  list-style: none;
  margin-right: 15px;
}

/* Section 1 */
.sec1-inner-1 {
  height: 90vh;
}

.sec1-left h1 {
  font-size: 57px;
}

.sec1-card {
  border: 3px solid var(--primary);
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.sec1-card:hover {
  background-color: var(--background);
}

/* Section 3 */
.fa-circle-xmark {
  color: rgb(255, 88, 88);
}

.sec3-step {
  position: absolute;
  top: -18px;
  left: 20px;
  background-color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  color: white;
}

.sec3-step:hover {
  background-color: white;
  border: 1px solid var(--primary);
  color: var(--dark);
}

/* Timeline  */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: var(--button-dark);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}

.sec3-cards {
  gap: 50px;
  padding-bottom: 40px;
}

.sec3-cards .sec1-card {
  padding: 30px 80px;
}

.timeline .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 60px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--primary);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--button-dark);
}

.timeline .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 50%;
  width: 0;
  z-index: 1;
  left: 20px;
  border: medium solid var(--primary);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--button-dark) transparent transparent;
}

/* Section 4 */
.sec4-table {
  gap: 0px;
  border: 2px solid var(--primary);
}

.sec4-table-content {
  padding: 20px;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec4-table-content b {
  color: var(--primary);
}

/* section 5 */
.sec5-card-left img {
  width: 50%;
}

/* Section 6 */
.sec6-cards .sec1-card {
  padding: 30px 50px;
}

/* Section 7 */
.sec7-card:hover {
  background-color: var(--background);
}

.sec7-card summary div {
  justify-content: space-between;
  width: 90%;
}

.form-left,
.from-right {
  gap: 5px;
}

.form-part {
  margin-top: 10px;
}

/* section 9  */
.sec9 {
  background-color: #fff;
}

.sec9-card {
  border: 3px solid var(--primary);
  border-radius: 20px;
}

.about-sec9-left img {
  width: 150px;
}

.about-sec9-card {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
}

.no-blog-post {
  display: none;
}

.one-blog-container {
  border-radius: 20px;
  gap: 0;
  border: 3px solid var(--primary);
}

.single-blog-text {
  background-color: var(--background);
  padding: 25px;
  border-radius: 0 20px 20px 0;
}

.one-blog-container img {
  border-radius: 20px;
}

.one-blog-container li {
  list-style: disc;
}

.blog-sec9-inner {
  padding-top: 120px;
}

.sec9-card-read {
  justify-content: space-between;
}

.sec9-card-bottom {
  padding: 20px;
  background: var(--background);
  border-radius: 0 0px 20px 20px;
}

.sec9-card-bottom a i {
  color: white;
}

.sec9-card-top {
  height: 300px;
  width: 60%;
  margin: 0 auto;
}

.sec9-card-top img {
  height: 100%;
}

.sec9 button i {
  color: white;
}

/* Section 11  */
.sec11-left-top {
  border: 10px solid var(--primary);
  border-radius: 50%;
  padding: 75px 10px;
  width: 50%;
  margin: 0 auto;
}

.form11-part {
  justify-content: space-between;
}

.sec11-left-down {
  justify-content: space-around;
}

/* Footer  */
.footer {
  background: linear-gradient(
    to right,
    var(--button-dark) 0%,
    var(--button-dark) 30%,
    var(--button) 100%
  );
  color: white;
}

.footer i {
  color: white;
}

.footer-inner {
  justify-content: space-between;
}

.footer-left {
  justify-content: space-between;
}

.footer-right {
  align-items: end;
  gap: 0;
}

.footer-right .btn-hollow i {
  color: var(--button);
}

.footer-bottom {
  padding: 10px;
}

.footer-bottom .small {
  font-size: 12px;
}

.quick-eligiblity {
  position: fixed;
  border-radius: 50px 50px 0px 0px;
  width: 100%;
  bottom: -40px;
  transition: all 0.6s ease;
  display: none;
}

.quick-eligiblity.active {
  bottom: 0px;
  align-items: start;
}

.call-btn {
  border: none;
  border-radius: 50%;
  padding: 20px 17px 20px 15px;
  background: var(--button-dark);
  color: white;
  position: fixed;
  bottom: 10px;
  left: 10px;
  transition: all 0.6s ease;
  display: none;
}

.whatsapp-btn {
  border: none;
  border-radius: 50%;
  padding: 20px 13px 20px 13px;
  background: var(--button-dark);
  color: white;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: all 0.6s ease;
  display: none;
}

.whatsapp-btn.active {
  bottom: 10vh;
  border: none;
  border-radius: 10px;
  padding: 30px 13px 30px 10px;
  background: var(--button-dark);
  color: white;
  position: fixed;
  right: -13px;
  transform: translateX(0) rotate3d(360deg);
}

/* when user scrolls 100px */
.call-btn.active {
  bottom: 10vh;
  border: none;
  border-radius: 10px;
  padding: 30px 13px 30px 15px;
  background: var(--button-dark);
  color: white;
  position: fixed;
  left: -10px;
  transform: translateX(0) rotate3d(360deg);
}

/* Mobile and Tablets (1023px) */
@media (max-width: 900px) {
  body {
    font-size: 13px;
  }
  .container {
    padding: 20px 10px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .flex,
  .flex-center,
  .flex-center-center {
    flex-direction: column;
  }

  .btn,
  .btn-hollow {
    width: 100%;
  }

  h1 {
    font-size: 23px;
  }

  .hamburger-open {
    display: block;
  }

  summary {
    font-size: 15px;
  }

  /* Navbar  */
  .nav {
    z-index: 999;
  }
  .nav-inner {
    padding: 5px 10px;
    height: 60px;
    overflow: hidden;
    align-items: start;
    justify-content: start;
  }

  .nav-inner .nav-center {
    text-align: center;
    margin: 0 auto;
  }

  .nav-inner .nav-center li {
    margin-right: 0;
  }

  .nav-center {
    margin: 10px 0;
    font-size: 20px;
  }

  .nav-right {
    align-items: start;
    width: 100%;
    font-size: 20px;
  }

  .nav-left {
    align-items: start;
  }

  .nav-left i {
    font-size: 35px;
    margin-top: 28px;
  }

  .nav-left h2 {
    display: none;
  }

  .extra {
    display: none;
  }

  .timeline::after {
    width: 0px;
  }

  .timeline .left::before,
  .timeline .right::before {
    display: none;
  }

  input[type="checkbox"] {
    width: auto !important;
  }

  input,
  textarea,
  select,
  option {
    height: 50px;
    font-size: 13px;
  }

  .quick-eligiblity,
  .call-btn,
  .whatsapp-btn {
    display: block;
  }

  /* Section 1 */
  .sec1-left {
    flex: none;
  }

  .sec1-left .p-small {
    font-size: 14px;
  }

  .sec1-inner {
    padding-top: 90px;
  }

  .sec1-inner-1 {
    gap: 0;
    height: 80vh;
    text-align: center;
  }

  .sec1-left h1 {
    font-size: 33px;
  }

  .sec1-right {
    flex: none;
  }

  .sec1-card {
    padding: 30px 10px;
    font-size: 15px;
  }

  .sec1-inner .flex {
    gap: 0;
  }

  /* Section 2 */
  .sec2-cards .sec1-card {
    flex-direction: row;
    justify-content: start;
    gap: 10px;
  }

  /* Section 3 */
  .sec3-cards {
    gap: 40px;
  }
  .sec3-cards .sec1-card {
    padding: 30px;
  }

  /* Section 4 */
  .sec4-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec4-table-content {
    padding: 20px 10px;
  }

  .sec4-table-content h3 {
    font-size: 15px;
  }

  /* Section 7 */
  .sec7-card summary,
  .sec7-card div {
    flex-direction: row;
  }

  /* Section 8 */
  .sec8-left {
    align-items: center;
    text-align: center;
  }

  .sec8-left h1 {
    display: none;
  }

  .sec8-center {
    margin-top: 10px;
  }

  /* Section 9 */

  .blog-sec9-inner {
    padding-top: 80px;
  }

  .sec9-card-read a {
    width: 100%;
  }

  .sec9-card-read .flex {
    flex-direction: row;
  }

  .sec9-card-top {
    height: 200px;
  }

  .one-blog-img-container {
    width: 70%;
    margin: 0 auto;
  }

  .one-blog-container .flex {
    flex-direction: row;
  }

  .single-blog-text {
    border-radius: 0 0 20px 20px;
  }

  /* Section 11 */

  .sec11-left-top {
    width: 80%;
    border-radius: 50%;
    padding: 60px 0;
  }

  .sec11-left-top .btn {
    width: 70%;
  }

  .sec11-left-down {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }

  .sec11-down-left,
  .sec11-down-right {
    flex-direction: row;
    gap: 10px;
  }

  .sec11-right {
    width: 100%;
  }

  .form11-part,
  .form-part {
    flex-direction: row;
  }

  .form-part select,
  .form-part input {
    width: 100%;
  }

  .form-part b {
    font-size: 12px;
  }

  .form11-part label {
    font-size: 13px;
  }

  .form11-part input {
    width: 50%;
  }

  /* Footer  */
  .footer-left {
    flex-direction: row;
    width: 100%;
  }

  .footer-left h2 {
    font-size: 20px;
  }

  .footer-left .mr-20 {
    margin-right: 0;
    align-items: end;
  }

  .footer-left h3 {
    display: none;
  }

  .footer-right {
    align-items: center;
  }

  .footer-bottom {
    padding-bottom: 22px;
  }
}
