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

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffff;
}

/* Tablets */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

/* Phones */
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

/* Nav Bar  */

.nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-bar-container {
  background-color: #0a2463;
  color: #ffffff;
  display: flex;
  justify-content: center;
  height: 80px;
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 1rem;
}

.nav-bar .logo {
  width: auto;
  height: 65px;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.nav-bar ul li {
  padding: 8px 12px;
}

.nav-bar ul li a {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

.contact-us-btn {
  background-color: #cd1127;
  border: none;
  /* width: 140px; */
  height: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 12px;
  padding-left: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.contact-us-btn span {
  background-color: #e13a4d;
  width: 40px;
  height: 40px;
  /* position: absolute;
  right: -12px; */
  border-radius: 50%;
  display: flex;
  margin-left: 1rem;
}

.contact-us-btn span svg {
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
}

/* nav bar small screen*/
.nav-bar-sm-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000024;
}

.nav-bar-sm {
  padding: 1rem;
  height: 100%;
  width: 200px;
  background-color: #0a2463;
  animation: nav-bar-sm 0.4s ease forwards;
}

@keyframes nav-bar-sm {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-bar-sm ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.nav-bar-sm ul li a {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 8px 12px;
  width: 100%;
}

.nav-bar-sm .nav-close-btn {
  display: flex;
}

.nav-bar-sm .nav-close-btn button {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0 0 0 auto;
}

.nav-bar-open-btn-sm {
  display: none;
}

/* media query */
@media (min-width: 1500px) {
  .nav-bar {
    max-width: 1400px;
  }
}

@media (max-width: 880px) {
  .nav-bar ul {
    display: none;
  }

  .nav-bar-sm-container.show {
    display: block;
  }

  .nav-bar-open-btn-sm {
    display: block;
  }

  .nav-bar .logo {
    width: auto;
    height: 50px;
  }
}

/* section 1 */
.sec-1 {
  display: flex;
  background: linear-gradient(90deg, #eef6ff, #83daff38);
  padding-top: 80px;
}

.sec-1-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* left side  */
.sec-1 .left-side {
  width: 100%;
  display: flex;
  padding: 5rem 1rem;
  flex-direction: column;
}

.sec-1 .left-side h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.5rem;
  color: #17254e;
  margin-bottom: 1.5rem;
  max-width: 30rem;
}

.sec-1 .left-side p {
  font-weight: 400;
  font-size: 1rem;
  color: #4e544c;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.sec-1 .left-side button {
  font-size: 1rem;
  background-color: #cd1127;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  cursor: pointer;
}

.sec-1 .left-side img {
  height: auto;
  width: 200px;
}

/* right side */
.sec-1 .right-side {
  width: 550px;
  min-width: 550px;
  padding: 3rem 1rem;
}

.sec-1 .right-side .form {
  background-color: #f6f9ffb2;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 55px 20px rgb(42 167 255 / 17%);
  padding: 2rem 1.4rem;
}

.sec-1 .right-side .form h2 {
  font-size: 1.8rem;
  color: #183b56;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sec-1 .right-side .form h2 span {
  color: #cd1127;
}

.sec-1 .right-side .form label {
  font-size: 1rem;
  font-weight: 500;
  color: #183b56;
}

.sec-1 .right-side .form input {
  font-size: 1rem;
  font-weight: 500;
  color: #183b56;
  border: 1px solid #4e5a601a;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.sec-1 .right-side .form input:focus-visible {
  outline: none;
}

.sec-1 .right-side .form button {
  background-color: #cd1127;
  color: #ffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* media query */
@media (min-width: 1500px) {
  .sec-1-container {
    max-width: 1400px;
  }
}

@media (max-width: 950px) {
  .sec-1-container {
    flex-direction: column;
  }

  .sec-1 .left-side h1 {
    margin: 0 auto 1rem auto;
    text-align: center;
  }

  .sec-1 .left-side p {
    margin: 0 auto 1.5rem auto;
    text-align: center;
  }

  .sec-1 .left-side .button-container {
    display: flex;
    justify-content: center;
  }

  .sec-1 .left-side img {
    margin: 0 auto;
  }

  .sec-1 .right-side {
    padding: 0rem 1rem 3rem 1rem;
    margin: auto;
    min-width: auto;
    width: 90%;
    max-width: 450px;
  }
}

/* section 2 */
.sec-2 {
  display: flex;
  width: 100%;
  background: linear-gradient(0deg, #0000000d, transparent);
}

.sec-2-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
}

/* left side */
.sec-2-container .left-side {
  width: 100%;
  padding: 8rem 1rem;
}

.sec-2-container .explore-events-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}

.sec-2-container .explore-events-container .explore-events {
  display: flex;
}

.sec-2-container .explore-events-container .explore-events img {
  width: auto;
  height: 0.8rem;
}

.sec-2-container .explore-events-container .explore-events span {
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  color: #ffce00;
}

.sec-2-container .explore-events-container .explore-events .pattern {
  width: auto;
  height: 2.5rem;
}

.sec-2-container .left-side h1 {
  color: #2f327d;
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: 700;
  max-width: 500px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.sec-2-container .left-side .prg-1 {
  color: #0e2a46;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  max-width: 550px;
  line-height: 1.8rem;
}

.sec-2-container .left-side .prg-2 {
  color: #333931;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 550px;
  line-height: 1.8rem;
}

.sec-2-container .left-side .contact-now {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-2-container .left-side .contact-now img {
  width: auto;
  height: 8rem;
}

/* right side  */
.sec-2-container .right-side {
  width: 550px;
  min-width: 550px;
  padding: 3rem 1rem;
}

.sec-2-container .right-side-container {
  position: relative;
  height: 640px;
  width: 100%;
  display: flex;
}

.sec-2-container .right-side .main-img {
  background-color: #cd1127;
  width: 400px;
  height: 400px;
  border-radius: 80px;
  position: relative;
  margin: auto;
  z-index: 3;
}

.sec-2-container .right-side .main-img img {
  width: 360px;
  height: auto;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 180px);
}

.sec-2-container .right-side .pattern-1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: auto;
}

.sec-2-container .right-side .join-our-community {
  position: absolute;
  top: calc(15% + 100px);
  background-color: #ffff;
  border-radius: 6px;
  box-shadow: 0px 0px 8px -4px rgb(0 0 0 / 70%);
  border: 1px solid #e2e8f0;
  padding: 1rem;
  z-index: 4;
}

.sec-2-container .right-side .join-our-community .img-container {
  width: 182px;
}

.sec-2-container .right-side .join-our-community img {
  width: 3.4rem;
  height: auto;
  margin-right: -28px;
}

.sec-2-container .right-side .join-our-community p {
  font-size: 1rem;
  max-width: 165px;
}

.sec-2-container .right-side .completion-rate {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffff;
  border-radius: 6px;
  box-shadow: 0px 0px 8px -4px rgb(0 0 0 / 70%);
  border: 1px solid #e2e8f0;
  padding: 1rem;
  z-index: 4;
}

.sec-2-container .right-side .completion-rate .progress {
  width: 160px;
  height: 80px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border: 16px solid #3b82f6; /* light base */
  border-bottom: none;
  position: relative;
  /* overflow: hidden; */
  margin: 0 auto 0rem;
}

.sec-2-container .right-side .completion-rate .progress .progress-left {
  width: 160px;
  height: 80px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border: 16px solid #bfdbfe;
  border-bottom: none;
  position: absolute;
  top: -16px;
  left: -16px;
  clip-path: polygon(50% 100%, 50% 0, 100% 0, 100% 100%);
  transform-origin: center bottom;
}

.sec-2-container .right-side .completion-rate .progress span {
  background-color: #3b82f6;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 5px);
}

.sec-2-container .right-side .completion-rate .progress .percentage {
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: calc(50% - 28px);
}

.sec-2-container .right-side .completion-rate p {
  max-width: 190px;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-top: 0.5rem;
}

.sec-2-container .right-side .number-of-courses-sold {
  position: absolute;
  top: calc(50% + 100px);
  background-color: #ffff;
  border-radius: 6px;
  box-shadow: 0px 0px 8px -4px rgb(0 0 0 / 70%);
  border: 1px solid #e2e8f0;
  padding: 1rem;
  z-index: 4;
}

.sec-2-container .right-side .number-of-courses-sold .icon-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sec-2-container .right-side .number-of-courses-sold .icon-container span {
  background-color: #e0f2fe;
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
}

.sec-2-container .right-side .number-of-courses-sold .icon-container svg {
  margin: auto;
}

.sec-2-container .right-side .number-of-courses-sold .icon-container p {
  font-size: 1rem;
  color: #64748b;
  max-width: 160px;
  line-height: 1.4rem;
}

.sec-2-container .right-side .number-of-courses-sold b {
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 56px;
}

.sec-2-container .right-side .pattern-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 126px;
  height: 239px;
  background-color: transparent;
  background-image: radial-gradient(#bfdbfe 2px, transparent 2px);
  background-size: 20px 20px;
}

/* media query */
@media (min-width: 1500px) {
  .sec-2-container {
    max-width: 1400px;
  }
}

@media (max-width: 950px) {
  .sec-2-container {
    flex-direction: column-reverse;
  }

  .sec-2-container .right-side {
    width: auto;
    min-width: auto;
  }

  .sec-2-container .left-side {
    padding: 3rem 1rem 8rem 1rem !important;
  }
}

@media (max-width: 650px) {
  .sec-2-container .right-side .completion-rate .progress {
    width: 140px;
    height: 70px;
  }
  .sec-2-container .right-side .completion-rate .progress .progress-left {
    width: 140px;
    height: 70px;
  }

  .sec-2-container .right-side .join-our-community .img-container {
    width: 125px;
  }
  .sec-2-container .right-side .join-our-community p {
    max-width: 135px;
  }

  .sec-2-container .explore-events-container {
    display: none;
  }
}

/* section 3 */
.sec-3 {
  display: flex;
  width: 100%;
  background: linear-gradient(0deg, #0000000d, transparent);
}

.sec-3-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 1rem;
}

.sec-3 .card {
  padding: 2rem 2rem;
  box-shadow: 0px 0px 78px -23px #262d764a;
  border-radius: 16px;
  position: relative;
}

.sec-3 .card .flag {
  width: 3rem;
  height: auto;
  position: absolute;
  bottom: calc(100% - 1.5rem);
  left: calc(50% - 1.25rem);
}

.sec-3 .card h2 {
  font-size: 1.3rem;
  color: #2f327d;
  font-weight: 700;
  text-align: center;
  margin: 1.5rem 0rem;
}

.sec-3 .card p {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.sec-3 .card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0px;
}

.sec-3 .card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #00000099;
}

.sec-3 .card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00000099;
  font-size: 1.4rem;
  line-height: 1;
}

/* media query */
@media (min-width: 1500px) {
  .sec-3-container {
    max-width: 1400px;
  }
}

@media (max-width: 900px) {
  .sec-3 .card h2 {
    font-size: 1.7rem;
  }
	
  .sec-3 .card p {
   font-size: 1.2rem;
 }
 
  .sec-3 .card ul li {
     font-size: 1rem;
  }
}

@media (max-width: 655px) {
  .sec-3 .card {
    margin: auto;
    max-width: 400px;
  }
}

/* section 4 */

.sec-4 {
  display: flex;
}

.sec-4-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1rem 0rem 1rem
}

.sec-4 h3 {
  color: #cd1127;
  font-weight: 600;
  font-size: 1.5rem;
}

.sec-4 h2 {
  color: #2f327d;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.sec-4 .button-section {
  margin-bottom: 1.5rem;
  display: flex;
}

.sec-4 .button-section button {
  border: 1px solid #cd1127;
  color: #000;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sec-4 .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.sec-4 .card {
  padding: 1.2rem;
  box-shadow: 0px 4px 3px 4px #10182808;
  border-radius: 6px;
  margin: 12px 8px;
}

.sec-4 .card img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.sec-4 .card .title {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 1rem; */
}

.sec-4 .card .title h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
}

.sec-4 .card .title svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #101828;
}

.sec-4 .card ul {
  list-style: none;
  padding: 8px;
  margin: 0px;
  margin-bottom: 1rem;
}

.sec-4 .card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
}

.sec-4 .card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1;
}

.sec-4 .card button {
  background-color: #cd1127;
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
  border: 0;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
}

.sec-4 .slick-next {
  right: 0 !important;
}

.sec-4 .slick-prev {
  left: 0 !important;
}

/* media query */
@media (min-width: 1500px) {
  .sec-4-container {
    max-width: 1400px;
  }
}

@media (max-width: 369px) {
  .sec-4 .button-section button {
    width: 100%;
  }
}

/* section 5 */

.sec-5 {
  display: flex;
}

.sec-5-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-5 h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #141414;
  font-weight: 800;
  margin-bottom: 2rem;
}

.sec-5 p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  margin-bottom: 2rem;
  color: #1e1e1e;
}

.sec-5 .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sec-5 .card {
  margin-top: 30px;
  padding: 1rem;
  border-radius: 6px;
  height: 220px;
}

.sec-5 .card.odd-color {
  background-color: #f7fdf9;
  border: 1px solid #f7fdf9;
}

.sec-5 .card.even-color {
  border: 1px solid #f2f2f2;
  background-color: #fff;
}

.sec-5 .card h4 {
  font-size: 1.2rem;
  color: #141414;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sec-5 .card ul {
  list-style: none;
  padding: 8px;
  margin: 0px;
  margin-bottom: 1rem;
}

.sec-5 .card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
}

.sec-5 .card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1;
}

/* media query */
@media (min-width: 1500px) {
  .sec-5-container {
    max-width: 1400px;
  }
}

@media (max-width: 987px) {
  .sec-5 .card {
    height: auto;
  }
}

@media (max-width: 600px) {
  .sec-5 .card-container {
    gap: 0;
  }
}

/* section 6 */
.sec-6 {
  display: flex;
}

.sec-6-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-6 h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e242c;
  text-align: center;
  margin-bottom: 1rem;
}

.sec-6 p {
  font-size: 1rem;
  color: #1e1e1e;
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.sec-6 .wrapper {
  display: flex;
}

/* left side  */
.sec-6 .wrapper .left-side {
  width: 100%;
  padding: 1rem 1rem;
}

.sec-6 .wrapper .left-side .card {
  box-shadow: 0px 0px 40px 4px #002b6b40;
  width: fit-content;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.sec-6 .wrapper .left-side .card span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.sec-6 .wrapper .left-side .card .color-1 {
  background-color: #e1e9fe;
}

.sec-6 .wrapper .left-side .card .color-2 {
  background-color: #ffeed2;
}

.sec-6 .wrapper .left-side .card .color-3 {
  background-color: #f6e2ff;
}

.sec-6 .wrapper .left-side .card span img {
  width: 1.5rem;
  height: 1.5rem;
}

/* right side */
.sec-6 .wrapper .right-side {
  width: 550px;
  min-width: 550px;
  display: flex;
  align-items: center;
}

.sec-6 .wrapper .right-side .right-side-wrapper {
  display: flex;
  gap: 1rem;
  position: relative;
}

.sec-6 .wrapper .right-side .person-1 {
  width: auto;
  height: 300px;
}

.sec-6 .wrapper .right-side .person-2 {
  width: auto;
  height: 500px;
}

.sec-6 .wrapper .right-side .card {
  position: absolute;
  bottom: calc(0px + 100px);
  background-color: #fff;
  box-shadow: 0px 0px 40px 4px #002b6b40;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
}

.sec-6 .wrapper .right-side .card .img-container {
  width: 8rem;
  display: flex;
}

.sec-6 .wrapper .right-side .card .img-container img {
  width: 3rem;
  height: auto;
  margin-right: -0.8rem;
}

.sec-6 .wrapper .right-side .card .count {
  display: flex;
  flex-direction: column;
}

.sec-6 .wrapper .right-side .card .count b {
  font-size: 1.2rem;
  color: #0066ff;
  font-weight: 700;
}

.sec-6 .wrapper .right-side .card .count span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #414d60;
}

/* media query */
@media (min-width: 1500px) {
  .sec-6-container {
    max-width: 1400px;
  }
}

@media (max-width: 1000px) {
  .sec-6 .wrapper {
    flex-direction: column;
  }

  .sec-6 .wrapper .left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sec-6 .wrapper .left-side .card {
    padding-right: 1.2rem !important;
    width: 100%;
    justify-content: left;
  }

  .sec-6 .wrapper .right-side {
    width: auto;
    min-width: auto;
  }

  .sec-6 .wrapper .right-side .right-side-wrapper {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .sec-6 .wrapper .right-side .person-1 {
    width: auto;
    height: 200px;
  }

  .sec-6 .wrapper .right-side .person-2 {
    width: auto;
    height: 350px;
  }

  .sec-6 .wrapper .right-side .card {
    bottom: calc(0px + 30px);
  }
}

@media (max-width: 450px) {
  .sec-6 .wrapper .right-side .person-1 {
    width: auto;
    height: 150px;
  }

  .sec-6 .wrapper .right-side .person-2 {
    width: auto;
    height: 250px;
  }

  .sec-6 .wrapper .right-side .card {
    bottom: calc(0px + 20px);
  }
}

/* section 7 */
.sec-7 {
  background-color: #0a2463;
}

.sec-7-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.sec-7 h1 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sec-7 .main-prg {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  font-weight: 200;
  max-width: 460px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.sec-7 .wrapper {
  display: flex;
}

.sec-7 .wrapper .left-side,
.sec-7 .wrapper .right-side {
  width: 50%;
  padding: 0rem 3rem;
}

.sec-7 .wrapper .left-side {
  border-right: 1px solid #fff;
}

.sec-7 .wrapper h2 {
  font-size: 2rem;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 2rem;
  max-width: 380px;
}

.sec-7 .wrapper .part-container {
  display: flex;
  gap: 12px;
}

.sec-7 .wrapper .part-container .part-1,
.sec-7 .wrapper .part-container .part-2 {
  width: 50%;
}

.sec-7 .wrapper .part-container p {
  display: flex;
  gap: 8px;
  margin-bottom: 1.4rem;
}

.sec-7 .wrapper .part-container p img {
  width: 1.4rem;
  height: 1.4rem;
}

.sec-7 .wrapper .part-container p span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
}

/* media query */
@media (min-width: 1500px) {
  .sec-7-container {
    max-width: 1400px;
  }

  .sec-7 .wrapper h2 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .sec-7 .wrapper {
    flex-direction: column;
  }

  .sec-7 .wrapper .left-side,
  .sec-7 .wrapper .right-side {
    border: none;
    width: 100%;
  }

  .sec-7 .wrapper h2 {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .sec-7 .wrapper .part-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sec-7 .wrapper h2 {
    text-align: center;
  }

  .sec-7 .wrapper .part-container .part-1,
  .sec-7 .wrapper .part-container .part-2 {
    width: 100%;
    max-width: 270px;
  }
}

/* section 8 */
.sec-8 {
  display: flex;
  width: 100%;
}

.sec-8-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 1rem 0rem 1rem;
}

.sec-8 h1 {
  text-align: center;
  color: #050c26;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.sec-8 .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sec-8 .card {
  padding: 2rem;
  box-shadow: 0px 0px 9px 0px #0000000d;
  margin: 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec-8 .card .main-prg {
  color: #acacac;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.8px;
  min-height: 140px;
}

.sec-8 .card .person {
  display: flex;
  gap: 12px;
}

.sec-8 .card .person img {
  width: 3rem;
  height: 3rem;
}

.sec-8 .card .person .person-details span {
  color: #353535;
  font-size: 1.1rem;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.sec-8 .card .person .person-details p {
  color: #8e8e8e;
  font-size: 0.8rem;
}

.sec-8 .slick-next {
  right: 0 !important;
}

.sec-8 .slick-prev {
  left: 0 !important;
}

/* media query */
@media (min-width: 1500px) {
  .sec-8-container {
    max-width: 1400px;
  }
}

/* section 9 */
.sec-9 {
  display: flex;
  width: 100%;
}

.sec-9-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 1rem;
}

.sec-9 h1 {
  color: #18191f;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

.sec-9 .wrapper {
  position: relative;
  display: flex;
}

.sec-9 .menu-container {
  box-shadow: 0px 0px 27px -8px #00000026;
  width: 550px;
  min-width: 550px;
  margin-top: 50px;
  z-index: 2;
}

.sec-9 .menu-item.color-1 {
  color: #000000;
  fill: #a5a6f6;
}

.sec-9 .menu-item.color-2 {
  color: #000000;
  fill: #5d5fef;
}

.sec-9 .menu-item.color-1 .menu-header {
  background-color: #fff;
}
.sec-9 .menu-item.color-2 .menu-header {
  background-color: #fafbff;
}

.sec-9 .menu-item .menu-header {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem;
}

.sec-9 .menu-item .menu-header .name {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 1rem;
}

.sec-9 .menu-item.color-1 .menu-header .name span {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #cd112799;
  border-radius: 50%;
}

.sec-9 .menu-item.color-2 .menu-header .name span {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #cd1127;
  border-radius: 50%;
}

.sec-9 .menu-item .menu-header svg {
  transition: transform 0.3s ease;
}

.sec-9 .menu-item .menu-header svg.rotated {
  transform: rotate(90deg);
}

.sec-9 .menu-item .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid #f5f5f5;
  transition: max-height 0.3s ease;
}

.sec-9 .menu-item .submenu.open {
  max-height: 500px;
  background: #fff;
}

.sec-9 .menu-item .submenu li a {
  display: block;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  background-color: #ffffff;
}

/* content  */
.sec-9 .content {
  background-color: #fafbff;
  width: 100%;
  box-shadow: 0px 0px 4px 0px #00000026;
  border-radius: 12px;
  margin-left: -25px;
  max-height: 175px;
  display: flex;
}

.sec-9 .content p {
  color: #000000;
  font-size: 1rem;
  margin: auto 0;
  width: 100%;
  padding: 0rem 1rem;
  padding-left: 7rem;
}

/* media query */
@media (min-width: 1500px) {
  .sec-9-container {
    max-width: 1400px;
  }

  .sec-9 .menu-container {
    width: 650px;
    min-width: 650px;
  }
}

@media (max-width: 1000px) {
  .sec-9 .wrapper {
    flex-direction: column;
  }

  .sec-9 .menu-container {
    width: 100%;
    max-width: 90%;
	min-width: 90%;
    margin: auto;
  }

  .sec-9 .content {
    max-height: a;
    width: 100%;
    max-width: 90%;
    margin: auto;
    margin-top: 2rem;
  }

  .sec-9 .content p {
    padding: 1rem 1rem;
    text-align: center;
    margin-top: auto;
  }
}

@media (max-width: 380px) {
  .sec-9 .menu-item.color-2 .menu-header .name span {
    display: none;
  }

  .sec-9 .menu-item.color-1 .menu-header .name span {
    display: none;
  }
}

/* section 10 */
.sec-10 {
  display: flex;
  width: 100%;
  padding: 1rem 4rem;
}

.sec-10-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 5rem 1rem 3rem 1rem;
  box-shadow: 0px 28px 63px -4px #d7d1f7;
  border-radius: 21px;
  overflow: hidden;
  position: relative;
}

.sec-10-container::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1px;
  box-shadow: 220px -150px 142px 240px #d7d1f7;
  z-index: -1;
}

.sec-10-container::after {
  content: " ";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1px;
  box-shadow: -220px -150px 142px 240px #d7d1f7;
  z-index: -1;
}

.sec-10-container h1 {
  color: #1e242c;
  font-size: 2.8rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.sec-10-container .button-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
}

.sec-10-container .button-container button {
  width: calc(100% / 3);
  background-color: #02033b;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 1rem;
  padding: 1.2rem 1.2rem;
  border-radius: 80px;
  cursor: pointer;
}

/* media query */
@media (min-width: 1500px) {
  .sec-10-container {
    max-width: 1400px;
  }
}

@media (max-width: 600px) {
  .sec-10-container .button-container {
    flex-direction: column;
  }

  .sec-10-container .button-container button {
    width: 100%;
  }
}

/* footer */

footer {
  display: flex;
  flex-direction: column;
  padding: 4rem 0rem 2rem 0rem;
  width: 100%;
}

footer .footer-content {
  background-color: #02033b;
  margin: auto;
  max-width: 90%;
  width: 100%;
  padding: 6rem 3rem;
  border-radius: 26px;
  display: flex;
  gap: 6rem;
}

footer .footer-content img {
  height: 80px;
  width: auto;
  margin: auto 0;
}

footer .footer-content .wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

footer .footer-content .wrapper h6 {
  color: #f9fafb;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

footer .footer-content .wrapper .quick-link ul {
  list-style: none;
}

footer .footer-content .wrapper .quick-link a {
  font-size: 1rem;
  color: #f9fafb;
  font-weight: 400;
  text-decoration: none;
}

footer .footer-content .wrapper .address p {
  font-size: 1rem;
  color: #f9fafb;
  font-weight: 400;
  line-height: 1.4rem;
}

footer .footer-content .wrapper .social a {
  text-decoration: none;
}

footer .footer-content .wrapper .social svg {
  fill: #f9fafb;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.4rem;
}

footer .copyright {
  text-align: center;
  margin: 3rem 0rem 1rem 0rem;
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
}

/* media query */
@media (max-width: 850px) {
  footer .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  footer .footer-content img {
    height: auto;
    width: 230px;
    margin: auto;
  }
}

@media (max-width: 900px) {
 
  footer .footer-content .wrapper h6{
    font-size: 1.2rem;
  }
 
  footer .footer-content .wrapper .quick-link a{
    font-size: 1.2rem;
  }
 
 
  footer .footer-content .wrapper .address p{
    font-size: 1.2rem;
  }
}


@media (max-width: 584px) {
  footer .footer-content .wrapper {
    text-align: center;
  }
}

/* Contact Us */

.contactus-sec {
  display: flex;
  padding-top: 80px;
}
.contactus-sec .contactus-sec-container {
  font-family: Poppins;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contactus-sec .contactus-sec-content {
  display: flex;
  max-width: 1200px;
  padding: 10px;
  width: 100%;
  min-height: 600px;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contactus-sec h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #141414;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contactus-sec p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  margin-bottom: 2rem;
  color: #717171;
}

.contactus-sec .contact-info {
  background: linear-gradient(135deg, #02033b 0%, #02033b 100%);
  padding: 40px;
  color: white;
  border-radius: 32px;
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contactus-sec .contact-info::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 269px;
  height: 269px;
  background: #1a1a1a;
  border-radius: 50%;
}

.contactus-sec .contact-info::after {
  content: "";
  position: absolute;
  bottom: 56px;
  right: 75px;
  width: 138px;
  height: 138px;
  background: rgb(255 255 255 / 11%);
  border-radius: 50%;
}

.contactus-sec .contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contactus-sec .contact-info p {
  font-size: 18px;
  opacity: 0.9;
  color: #c9c9c9;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: start;
  margin-left: 0;
}

.contactus-sec .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.073rem;
  font-weight: 400;
}

.contactus-sec .contact-item svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  fill: currentColor;
}

.contactus-sec .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.contactus-sec .social-icon {
  width: 40px;
  height: 40px;
  background: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.contactus-sec .social-icon:hover {
  background: #fff;
}
.contactus-sec .social-icon:hover svg {
  fill: #000;
}

.contactus-sec .social-icon svg {
  width: 20px;
  height: 15px;
  fill: #fff;
}

.contactus-sec .form-section {
  padding: 40px;
  flex: 1.2;
}

.contactus-sec .form-section .form-row {
  display: flex;
  gap: 20px;
}

.contactus-sec .form-section .form-group {
  flex: 1;
  position: relative;
  margin-bottom: 40px;
}

.contactus-sec .form-section .form-group.full-width {
  width: 100%;
}

.contactus-sec .form-section label {
  display: block;
  font-weight: 500;
  color: #333;
  font-size: 12px;
}

.contactus-sec .form-section input {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  background: transparent;
  font-size: 14px;
  outline: none;
  font-family: poppins;
}

.contactus-sec .form-section .form-group::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1a1a3e;
  transition: width 0.4s ease;
}

.contactus-sec .form-section .form-group:focus-within::before {
  width: 100%;
}

.contactus-sec .form-section .subject-group {
  margin-bottom: 30px;
}

.contactus-sec .form-section .subject-group label {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.contactus-sec .form-section .radio-group {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contactus-sec .form-section .radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contactus-sec .form-section .radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contactus-sec .form-section .radio-item input[type="radio"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: normal;
  font-size: 12px;
  margin: 0;
}
.contactus-sec .form-section .radio-item input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border: 2px solid #d8d8d8;
  border-radius: 50%;
  background: #e0e0e0;
}
.contactus-sec
  .form-section
  .radio-item
  input[type="radio"]:checked
  + label:before {
  background: #1a1a3e;
  border: 2px solid #1a1a3e;
}
.contactus-sec
  .form-section
  .radio-item
  input[type="radio"]:checked
  + label:after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.contactus-sec .form-section .radio-item label {
  margin: 0;
  cursor: pointer;
  font-weight: normal;
  font-size: 12px;
}

.contactus-sec .form-section .submit-btn {
  background: #000000;
  color: white;
  padding: 15px 48px;
  border: none;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  float: right;
  font-family: poppins;
  margin-top: 25px;
}

.contactus-sec .form-section .submit-btn:hover {
  background: #333;
}
@media (max-width: 900px) {
  .contactus-sec .contact-info::before {
    width: 220px;
    height: 220px;
  }

  .contactus-sec .contact-info::after {
    width: 80px;
    height: 80px;
    bottom: 56px;
    right: 50px;
  }
}

@media (max-width: 768px) {
  .contactus-sec .contactus-sec-content {
    flex-direction: column;
  }
  .contactus-sec .contact-info {
    gap: 40px;
  }

  .contactus-sec .contact-info,
  .contactus-sec .form-section {
    padding: 30px;
  }

  .contactus-sec .form-section .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contactus-sec .form-section .radio-group {
    flex-direction: column;
    gap: 15px;
  }

  .contactus-sec .form-section .submit-btn {
    width: 100%;
    float: none;
  }
  .contactus-sec .contact-info::after {
    bottom: 56px;
    right: 75px;
  }
}

@media (max-width: 480px) {
  .contactus-sec .contact-info h2 {
    font-size: 24px;
  }

  .contactus-sec .contact-info,
  .contactus-sec .form-section {
    padding: 25px;
  }

  .contactus-sec .contact-info::before {
    width: 200px;
    height: 200px;
  }

  .contactus-sec .contact-info::after {
    width: 68px;
    height: 68px;
    bottom: 40px;
    right: 50px;
  }
}


.fade-in-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}
 
.fade-in-animation.show {
  opacity: 1;
  transform: translateY(0);
}


/* ********************added */



.contactus-sec .form-section label {
    display: block;
    font-weight: 500;
    color: #333;
	text-align: justify;
}

.contactus-sec .form-section br{
	display:none;
}

.contactus-sec .form-section .submit-btn {
	width: 40% !important;}


textarea.wpcf7-form-control.wpcf7-textarea.message {
    width: 100%;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    padding-top: 16px;
    border-bottom: 1px solid gray;
    font-family: 'Poppins';
	height:0;
}

span.wpcf7-list-item-label {
    font-size: 12px;
}
.contactus-sec .form-section .subject-group {
    margin-top: 30px;
}
.sec-1 .right-side .form input {
	width: 100% !important;}