@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
:root {
  --primary-color: #11121a;
  --hover-color: #272832;
  --accent-color: #0071ff;
  --text-color: #c9c9c9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", serif;
}
html {
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth; /*For bookmark links*/
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  /* background-color: var(--primary-color); */
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
main {
  padding: min(5em, 7%);
  /* background-color: #ddd; */
}
main p {
  margin-top: 0.35em;
  margin-bottom: 2em;
}
nav {
  padding: 9px 33px;
  box-shadow: 1px 1px 64px #e5ecef;
  margin: 10px 140px;
  border-radius: 84px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
}
nav .home-li {
  margin-right: auto;
}
nav li {
  display: flex;
}
nav a {
  display: flex;
  text-decoration: none;
  /* color: var(--text-color); */
  color: #000;
  padding: 1em 2em;
  transition: background-color 150ms ease;
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", serif;
  font-size: 13px;
  letter-spacing: 0.8px;
}
/* nav a.active-link{
  border-bottom: 2px solid var(--text-color);
} */
/* nav a.accent-link{
  background-color: var(--accent-color);
} */
.accent-link {
  background-color: #3578b3;
  color: white;
  margin: 2px;
  padding: 14px 16px;
  border-radius: 25px;
}
#open-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
#close-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em 0em;
  cursor: pointer;
}
#overlay {
  /* background: rgba(0, 0, 0, 0.5); */
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  /* background-color: var(--accent-color);  */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid #ffffff;
}
@media screen and (max-width: 700px) {
  body {
    overflow-x: hidden;
  }
  #open-sidebar-button,
  #close-sidebar-button {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    /* width: min(15em, 100%); */
    width: 100%;
    z-index: 10;
    /* border-left: 1px solid var(--hover-color); */
    transition: right 300ms ease-in-out;
    overflow-x: hidden !important;
  }
  nav.show {
    right: 0;
    background-color: white;
  }
  nav.show ~ #overlay {
    display: block;
  }
  nav ul {
    /* width: 100%; */
    flex-direction: column;
  }
  nav a {
    /* width: 100%; */
    padding-left: 2.5em;
  }
  nav a.active-link {
    border-bottom: none;
  }
  nav .home-li {
    margin-right: unset;
  }
  .accent-link {
    width: 50%;
  }
  header {
    display: block !important;
    padding: 23px 44px !important;
  }
  .header-content {
    width: 100% !important;
  }
  .header-image {
    overflow: hidden;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 60px;
  }
  .cd-7 {
    margin-left: 0px !important;
  }
}

header {
  display: flex;
  justify-content: sed;
  gap: 6em;
  padding: 44px;
}
.header-content {
  color: black;
  width: 43vw;
  line-height: 2;
  b {
    color: #3578b3;
    font-size: 17px;
    letter-spacing: 1px;
  }
}
h1 {
  font-size: 3.3rem;
  color: white;
  -webkit-text-stroke-width: 1.7px;
  -webkit-text-stroke-color: #1d73bd;
}

.header-image {
  display: flex;
  flex-wrap: wrap;
  animation: fade 0.5s ease-in-out;

  :hover {
    scale: 1.02;
    transition: 0.5s ease;
  }
}

.header-image span {
  height: 200px;
  width: 200px;
  display: block;
  margin: 8px;
}
.header-image span img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.header-container {
  width: 100%;
  animation: fade 0.5s ease-in-out;
}
.cd-4 {
  margin-left: -17px !important;
}
.cd-7 {
  margin-left: 100px;
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

.header-container button {
  background-color: #3578b3;
  color: white;
  padding: 10px 31px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 20px;
}

.row {
  text-align: center;
  letter-spacing: 2px;
  color: black;
  h2 {
    color: #1d73bd;
    font-size: 35px;
    word-spacing: 7px;
    letter-spacing: 3px;
  }
  b {
    font-size: 3.3rem;
    color: white;
    -webkit-text-stroke-width: 1.7px;
    -webkit-text-stroke-color: #1d73bd;
    letter-spacing: 2px;
  }
}
.flex {
  display: flex;
  justify-content: space-evenly;
  gap: 2em;
  margin-top: 8em;
}
.flex img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.col span {
  width: 56%;
}

.exp {
  display: flex;
  justify-content: space-around;
  padding: 30px 152px;
  gap: 51px;
  align-items: center;
}

.inner-dv {
  display: flex;
  flex-direction: column;
  align-items: first baseline;
  justify-content: center;
  gap: 32px;

  h3 {
    font-size: 46px;
    border-left: 3px solid black;
    padding: 12px;
    color: white;
    -webkit-text-stroke-width: 1.7px;
    -webkit-text-stroke-color: #1d73bd;
    letter-spacing: 2px;
  }

  p {
    color: #606060;
    letter-spacing: 1px;
  }
  button {
    padding: 15px;
    background-color: transparent;
    border: 2px solid #010306;
    /* border-radius: 8px; */
    /* box-shadow: 3px 2px 18px #92989f; */
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 15px;
    color: black;
  }
}
.dv {
  display: flex;
  font-size: 17rem;
  color: #3e74a4;
  font-family: "Plus Jakarta Sans", serif;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: -13px;
  width: 996px;
  height: 348px;
  /* background-color: #573434; */
}
.grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 14px;
  strong {
    font-size: 64px;
    color: black;
  }
  p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
  }
}

.ed {
  color: black;
  text-align: center;
  font-size: 35px;
  letter-spacing: 3px;
  padding-bottom: 23px;
}

footer {
  padding: 49px;
  text-align: justify;
  background-color: #cdd7dd;
  color: black;
}
footer img {
  mix-blend-mode: multiply;
  margin-bottom: 0px;
  height: 90px;
  width: 832px;
}
footer strong {
  text-align: center;
  width: 100%;
  display: block;
}
footer .fa-brands {
  font-size: 21px;
  margin: 12px;
}
.links {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  color: #32638e;
  letter-spacing: 1.3px;
}
.links ul li {
  list-style: none;
  border-left: 2px solid;
  padding: 1px 10px;
  margin: 8px;
  cursor: pointer;
}
.links ul li:hover {
  color: #5688b5;
  border-left: none;
}

main {
  color: black;
  display: flex;
  align-items: center;
}

main img {
  height: 400px;
  mix-blend-mode: multiply;
}
main h2 {
  font-size: 39px;
  letter-spacing: 3px;
  word-spacing: 7px;
  padding-bottom: 23px;
}
.containers {
  display: flex;
  width: 88%;
  /* height: 54vh; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-direction: column;
}

/* Left section with links */
.sidebar {
  width: 42%;
  /* background-color: #2c3e50; */
  padding: 20px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 184px);
  grid-template-rows: repeat(2, 168px);
  gap: 3px;
}

.sidebar h2 {
  margin-bottom: 20px;
  text-align: center;
}

.nav-link {
  /* display: block; */
  color: #000000;
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  width: 160px;
  height: 160px;
  border: 1px solid rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link:hover {
  background-color: #9ebcd0;
}

.nav-link.active {
  background-color: #3498db;
}

/* Right section where content appears */
.content {
  width: 100%;
  padding: 30px;
  /* background-color: #f4f4f9; */
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  line-height: 26px;
  text-align: justify;
}

.content-display {
  text-align: center;
  font-size: 15px;
  color: #333;
}

.info > .container {
  display: flex;
  justify-content: space-between;
}

/* Aside bar */
aside {
  display: flex;
  gap: 63px;
  /* padding: 26px; */
  justify-content: space-between;
  padding: 20px 30px 0px 30px;
}

aside > div a {
  font-size: 12px;
  letter-spacing: 1px;
  word-spacing: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #2d6393;
  font-size: 22px;
}

.HTMList img {
  height: 74px;
}

aside a:hover {
  text-decoration: 1px underline;
}

aside a:focus {
  text-decoration: 1px underline;
}

side h4 {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
  color: rgb(30, 33, 69);
}

.content {
  width: 100%;
  left: 20rem;
  padding-top: 2rem;
  overflow-y: hidden;
  /* padding: 20px; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* padding-top: 220px; */
  background-color: #2d5a82;
  color: white;
}

.content ul {
  list-style: disc;
  letter-spacing: 0.7px;
  line-height: 1.6;
}
.contents {
  /* display: none; */
  width: 100%;
  /* height: 71vh; */
}

.active-content {
  display: block;
}
.content h2 {
  font-size: 15px;
  margin-bottom: 12px;
}
.key-points {
  list-style: none; /* Removes default bullets */
  padding: 0;
}
.key-points li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 600;
}
.key-points li::before {
  content: "✅"; /* Adds a green tick before each item */
  margin-right: 10px;
  color: green; /* Green color for the tick */
  font-size: 13px;
}

/* Highlight active link and hide/show content */
.HTMList a.active-link {
  font-weight: bold;
  color: #007bff; /* Highlighted color */
  text-decoration: underline;
}

/* .contents {
  display: none;
} */

/* .contents.active-content {
  display: block;
} */

.btn1 {
  padding: 15px;
  background-color: #3e9763;
  border: 2px solid #3e9763;
  cursor: pointer;
  margin-right: 13px;
  color: white;
  letter-spacing: 2px;
}

.btn2 {
  padding: 15px;
  background-color: transparent;
  border: 2px solid #fcfdff;
  cursor: pointer;
  color: white;
  letter-spacing: 2px;
}

.btn1:hover {
  background-color: transparent;
  border: 2px solid white;
  transition: 1s ease;
}

@media screen and (max-width: 700px) {
  .exp {
    flex-wrap: wrap;
  }
  nav{
    margin: 0px 0px !important;
  }
}

/* @media screen and (max-width: 1250px){
  .content {
    padding-top: 12rem;
  }
  .container {
    margin-top: 8rem;
  }
} */

/* form css starts  */
.popup {
  background-color: #fff;
  width: 70%;
  /* padding: 30px 40px; */
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  display: none;
  /* border: 2px solid red; */
  box-shadow: 10px 10px 30px rgb(178, 180, 182);
  height: 90vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  z-index: 999;
}

.popup > button {
  background-color: transparent;
  font-size: 30px;
  /* color: #2c5ba4; */
  color: #fff;
  cursor: pointer;
  position: relative;
  left: 67vw;
  bottom: 23px;
  display: block;
  background: #a26363;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  padding: 1px 1px 6px 2px;
}
.popup p {
  font-size: 14px;
  text-align: justify;
  margin: 20px 0;
}
.popup a {
  width: 150px;
  display: block;
  position: relative;
  margin: auto;
  text-align: center;
  background-color: #0f72e5;
  color: #ffffff;
  text-decoration: none;
  padding: 5px 0;
}

.popup.active {
  display: block !important;
}

.popup > h2 {
  text-align: center;
  margin-top: -28px;
  margin-bottom: 31px;
  color: black;
}
strong {
  color: #d16f6f;
}

/* Background overlay */
.overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
  backdrop-filter: blur(5px); /* Apply blur effect */
  z-index: 10; /* Below popup but above content */
}

/* To prevent scrolling when popup is active */
body.popup-active {
  overflow: hidden;
}

/* When active, make the overlay visible */
.overlay.active {
  z-index: 5;
  opacity: 1;
}

/* Ensure the popup appears above everything */
.popup {
  z-index: 10;
}
.form-container {
  /* background: white; */
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.flexbox2 h2 {
  /* color: #3e7cb3; */
  color: #259694;
  font-size: 20px;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background: white;
  margin-bottom: 10px;
}

.phone-input > input {
  margin-bottom: 0;
}
.phone-input .flag {
  background: #f1f1f1;
  padding: 10px;
  font-size: 14px;
  border-right: 1px solid #ccc;
  white-space: nowrap;
}

.phone-input input {
  border: none;
  flex: 1;
  padding: 10px;
  font-size: 14px;
}

.consent {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  text-align: left;
  margin-bottom: 15px;
}

.consent input {
  width: 25%;
}

button {
  background-color: #259694;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.flexx {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
  flex-wrap: wrap;
}
.flexbox1 {
  display: flex;
  flex-direction: column;
  img {
    height: 292px;
  }
}
.downbx {
  display: flex;
  justify-content: center;
  gap: 34px;
}
.downbx > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  h2 {
    font-size: 13px;
    text-align: center;
  }
}
.downbx img {
  height: 50px;
  /* background-color: #6fa3d1; */
  background-color: #d16f6f;
  padding: 18px;
  display: block;
  height: 77px;
  border-radius: 50%;
  margin-bottom: 12px;
  margin: 12px 0;
}
