/* ==================== Import Fonts ==================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ==================== Common Reset ==================== */

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

html {
  font-size: 1rem;
  scroll-behavior: smooth !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  top: 0 !important;
  background-color: #fff;
  color: var(--off-black);
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

*:focus {
  outline: none;
}

button[type="button"]:focus {
  outline: none;
}

input:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  resize: none;
}

textarea {
  resize: none;
}

/* ==================== Common style ==================== */
.wrapper {
  display: block;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}

.body-fixed {
  overflow: hidden;
}

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: all 0.4s ease;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.shadow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  transition: all 0.3s ease-in-out;
}

.nav-open .shadow-overlay {
  display: block;
}

/* ====================CMS_CON=============================== */
.cms-con h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.cms-con p {
  color: #2c2c2c;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cms-con p:last-child {
  margin-bottom: 0;
}

.cms-con {
  margin-bottom: 30px;
}

.cms-con:last-child {
  margin-bottom: 0;
}

/* ==================== Common Classes ==================== */

:root {
  --primary-color: #37ec81;
  --secondary-color: #066b67;
  --light-bg: #f6f6f6;
  --black: #000;
  --off-black: #1a1a1a;
  --white: #fff;
  --radius-8: 8px;
  --transition: all 0.3s ease-in-out;
}

.common-sec {
  position: relative;
  padding-block: 120px 120px;
}

.sm-title {
  font-weight: 600;

  font-size: 24px;

  line-height: 1.25;
}

.sec-head {
  margin-bottom: 44px;
}

.sec-head .sec-title {
  color: var(--black);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
}

.sec-head .sec-title:has(.span) {
  display: flex;
  align-items: center;
}

.sec-head .sec-title span {
  font-style: italic;
  position: relative;
  color: var(--secondary-color);
}

.sec-head .sec-title span::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 22px;
  bottom: -16px;
  left: -15px;
  background-image: url(../img/svg/scratch-art.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ===================slick style===================== */
.slick-slide {
  height: auto !important;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  display: flex !important;
  height: auto !important;
}

.slick-slide > div {
  width: 100%;
}

/* ==================== btn style ==================== */

.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-8);
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn:has(.icon) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn .icon {
  font-size: 12px;
}

.right-arrow {
  mask-image: url(../img/svg/btn-arrow-right.svg);
}

.btn-green {
  color: var(--black);
  background-color: #37ec81;
}

.btn-green:hover {
  color: var(--white);

  background-color: var(--off-black);
}

.btn-black:hover {
  background-color: #37ec81;
}

.btn-black {
  color: var(--white);
  background-color: var(--black);
}

.btn-border {
  border: 1px solid #929292;
  color: var(--black);
}

.btn-border {
  background-color: var(--black);
  color: var(--white);
}

/* ==================== header  ==================== */
.header {
  padding: 20px 0 0;
  z-index: 999;
  position: relative;
}

.header .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* overflow: hidden; */
}

.main-nav ul li {
  display: inline-block;
}

.main-nav ul li a {
  font-size: 18px;
  color: var(--off-black);
  line-height: 1.03;
}

.main-nav ul li a:hover {
  color: var(--secondary-color);
}

.main-nav ul li:not(:last-child) {
  margin-right: 50px;
}

.header-btns .btn:not(:last-child) {
  margin-right: 20px;
}

/* ==================== hero-sec  ==================== */
.hero-sec {
  position: relative;
  padding: 112px 0 140px;
  /* background-image: url(../img/chex.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-sec::before,
.hero-sec::after,
.hero-title span::before,
.inn-hero-sec::after,
.inn-hero-sec::before,
.inn-hero-title span::before {
  content: "";
  position: absolute;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-sec::before,
.inn-hero-sec::before {
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  aspect-ratio: 1/1;
  left: 0;
  background-image: url(../img/hero-left.png);
}

.hero-sec::after,
.inn-hero-sec::after {
  width: 80px;
  aspect-ratio: 1/1;
  right: 0;
  background-image: url(../img/hero-right.png);
}

.hero-title span::before,
.inn-hero-title span::before {
  width: 255px;
  height: 22px;
  right: 20px;
  bottom: 0px;
  background-image: url(../img/svg/scratch-art.svg);
  background-size: cover;
}

.hero-title {
  position: relative;
  font-size: 100px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-title span,
.hero-con p span,
.inn-hero-title span {
  position: relative;
  color: var(--secondary-color);
}

.inn-hero-title span::before {
  bottom: -26px;
}

.hero-title span {
  font-style: italic;
}

.hero-con p {
  color: #404040;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.hero-btns .btn:not(:last-child) {
  margin-right: 20px;
}

.glasee-view {
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: var(--secondary-color);
  padding: 28px 0px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid #ffffff;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  overflow: hidden;
}

.glasee-view.r2 {
  margin-bottom: 60px;
  transform: rotate(5deg);
}

.glasee-view.r1 {
  transform: rotate(-5deg);
}

.grbg {
  background: radial-gradient(50% 50%, rgba(55, 236, 129, 0.4) 0%, transparent 100%);
}

.gr1 {
  height: 300px;
  width: 300px;
  bottom: -100px;
  left: -100px;
}

.gr2 {
  top: -100px;
  right: -100px;
  height: 400px;
  width: 400px;
}

.floatable-cursor .icon {
  position: absolute;
  mask-image: none;
  mask-size: auto;
  min-height: 30px;
  width: 30px;
  object-fit: contain;
  top: -25px;
  background-color: transparent;
}

.floatable-cursor .txt {
  padding: 5px 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: 30px;
  text-transform: capitalize;
}

.floatable-cursor.drk .txt {
  background-color: var(--secondary-color);
  color: var(--white);
}

.floatable-cursor.drk .icon {
  right: -23px;
}

.floatable-cursor.light .icon {
  left: -23px;
}

.floatable-cursor.light .txt {
  background-color: var(--primary-color);
  color: var(--black);
}

.floatable-cursor.light {
  bottom: -5%;
  left: 50%;
  animation: cursorMove 7s infinite alternate-reverse;
}

.floatable-cursor.drk {
  left: -30%;
}

.floatable-cursor.drk.ani2 {
  bottom: -10%;
  animation: cursorMove 12s infinite alternate-reverse;
}

.floatable-cursor.drk.ani1 {
  top: -10%;
  animation: cursorMove 10s alternate-reverse infinite;
}

@keyframes cursorMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, -10px);
  }

  50% {
    transform: translate(-10px, 10px);
  }

  75% {
    transform: translate(10px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ==================== why choose  ==================== */
.why-choose-sec .why-box .box {
  border: 1px solid #c7c7c7;
  border-radius: var(--radius-8);
  color: var(--black);
  background-color: transparent;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-choose-sec .why-box .box:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.why-box .box .img {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: var(--transition);
}

.why-box .box:hover .img {
  background-color: var(--primary-color);
}

.why-box .box:hover .img img {
  filter: brightness(0);
}

.why-box .box .img img {
  height: 60%;
  transition: var(--transition);
}

/*  */
.pract-wrap {
  height: 100%;
}

.pract-wrap .box {
  background-color: var(--white);
  box-shadow: 0px 4px 65px 0px #00000014;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}

.pract-wrap .box .img img {
  border-radius: var(--radius-8);
}

.pract-wrap .box .img {
  margin-bottom: 20px;
}

.pract-wrap .box .cms-con h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.pract-wrap .box .det {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius-8);
  margin-bottom: 30px;
}

.pract-wrap .box .det ul,
.pract-wrap .box .det ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pract-wrap .box .det ul li:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}

.pract-wrap .box .det ul li {
  gap: 10px;
  margin-right: 20px;
}

.pract-wrap .box .det ul li:last-child {
  margin-right: 0;
}

.pract-wrap .box ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.pract-wrap .box .det ul li img {
  min-width: 20px;
  width: 20px;
  aspect-ratio: 1/1;
}

.watch-icon {
  mask-image: url(../img/svg/watch.svg);
}

/* work shop */
.ws-slide .founder-detail .img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.workshop-slider .row {
  --bs-gutter-y: 24px;
}

.ws-slide .box {
  border-radius: var(--radius-8);
  border: 1px solid #c7c7c7;
  height: 100%;
  display: flex;
  flex-direction: column;

  overflow: hidden;
}

.ws-slide .box .con {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ws-slide .img-contain .img {
  display: inline-block;
  padding: 25px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.ws-slide .img-contain .img img {
  width: 50px;
  aspect-ratio: 1/1;
}

.ws-slide {
  height: 100%;
}

.ws-slide .img-contain {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ws-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.ws-title span {
  color: var(--secondary-color);
}

.ws-info-contain .subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
}

.ws-info-contain .time {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 10px 0;
}

.ws-info-contain .time .icon {
  font-size: 20px;
  background-color: var(--secondary-color);
}

.ws-info-contain .time span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #2c2c2c;
}

.ws-info-contain .price {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--black);
}

.ws-slide .founder-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.ws-slide .founder-detail .info p,
.ws-slide .founder-detail .info span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
}

.ws-slide .founder-detail .info p {
  margin-bottom: 5px;
}

.ws-slide .founder-detail .info span {
  font-weight: 400;
  color: #2c2c2c;
}

.founder-sec .right {
  max-width: 473px;
  margin-left: auto;
}

.founder-sec .cms-con h4 {
  color: var(--black);
  margin-bottom: 6px;
}

.founder-sec .cms-con p:not(:last-child) {
  margin-bottom: 20px;
}

.founder-sec .cms-con {
  margin-bottom: 40px;
}

/* last-prep-sec */

.last-prep-sec {
  background-color: var(--secondary-color);
}

.last-prep-sec .container {
  position: relative;
  z-index: 2;
}

.last-prep-sec .container::before,
.last-prep-sec .container::after {
  position: absolute;
  content: "";
  background-image: url(../img/svg/Ellipse.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 400px;
  width: 400px;
  z-index: -1;
}

.last-prep-sec .container::before {
  left: -20%;
  top: 55%;
  transform: translateY(-50%);
}

.last-prep-sec .container::after {
  right: -14%;
  top: -21%;
}

.last-prep-sec .prep-card {
  background-color: var(--white);
  height: 100%;
  padding: 30px 45px;
  text-align: center;
  border-radius: calc(var(--radius-8) * 2);
}

.last-prep-sec .prep-card .img {
  margin: 0 auto 20px;
}

.svg-icons {
  display: inline-block;
  padding: 25px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.svg-icons img {
  width: 50px;
  aspect-ratio: 1/1;
}

.last-prep-sec .sec-head .sec-title,
.last-prep-sec .sec-head .sec-title span,
.last-prep-sec .sec-head p {
  color: var(--white);
}

.last-prep-sec .sec-head .sec-title,
.last-prep-sec .sec-head p {
  margin-bottom: 30px;
}

.last-prep-sec .row {
  --bs-gutter-y: 24px;
}

.cms-con h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.last-prep-sec .row .sec-head {
  max-width: 270px;
  margin: 0;
}

/*  */
.video-card {
  position: relative;
  width: 300px;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.video-card img.video,
.video-card video.video-el {
  width: 100%;
  display: block;
}

.video-card video.video-el {
  display: none;
  /* hidden initially */
}

.video-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.play-icon {
  font-size: 50px;
  color: white;
}

.video-card .video-el {
  position: relative;
  top: 0;
  left: 0;
}

.video-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* testimonial slider */
.tt-slide .box {
  position: relative;
  background-color: var(--light-bg);
  padding: 40px 30px 30px;
  display: flex;
  border-radius: calc(var(--radius-8) * 2);
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: var(--off-black);
}

.tt-slide .info .img img {
  height: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.tt-slide .info {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
  max-width: 78%;
}

.tt-slide {
  padding: 0 12px;
  height: 100%;
}

.tt-slide > div {
  height: 100%;
}

.tt-slide .img-1 {
  right: 67px;
  bottom: 30px;
  height: 50px;
}

.testimonial-slider .slick-list.draggable {
  overflow: visible;
}

.testimonial-slider .slick-track {
  margin: 0 -12px;
}

.slick-arrow {
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #e6e6e6;
  border-radius: 50%;
  font-size: 0;
  bottom: -90px;
  left: 57%;
  transform: translate(-50%);
  z-index: 9;
  transition: var(--transition);
}

.slick-arrow::before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  background-image: url("../img/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.slick-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-prev {
  left: 50%;
}

.slick-arrow:hover {
  background-color: var(--secondary-color);
}

.slick-arrow:hover::before {
  filter: brightness(0) invert(1);
}

/* certificate sec

*/
.certification-sec .sec-head .sec-title {
  margin-bottom: 40px;
}

.certi-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certi-img img {
  height: 380px;
  border: 1px solid var(--secondary-color);
  border-radius: 16px;
}

/* footer */
.top-footer {
  background-color: var(--white);
  background-image: url(../img/desing.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px;
  border-radius: calc(var(--radius-8) * 2);
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 65px 0px #00000014;
  width: 100%;
  max-width: 1200px;
  margin: 0% auto -100px;
}

.top-footer .sec-head {
  margin-bottom: 0;
}

.top-footer .sec-head .sec-title {
  margin-bottom: 10px;
}

.footer .container {
  max-width: 1170px;
}

.top-footer .row .right {
  padding-left: 50px;
}

.top-footer .form-group {
  margin-bottom: 20px;
}

.form-group input {
  background-color: #f1f1f1;
  border: none;
}

.footer {
  padding-top: 150px;
  position: relative;
  background-color: var(--secondary-color);
}

.social-links ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.social-links ul li a {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.linkedin-icon {
  mask-image: url(../img/svg/linkedin.svg);
}

.insta-icon {
  mask-image: url(../img/svg/social-media.svg);
}

.youtube-icon {
  mask-image: url(../img/svg/youtube.svg);
}

.foot-logo {
  height: 50px;
}

.footer hr {
  color: var(--white);
  opacity: 0.2;
  margin: 30px 0 40px;
}

.foot-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}

.foot-links ul {
  list-style: none;
  padding-left: 20px;
}

.foot-links ul li {
  position: relative;
}

.foot-links ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
}

.foot-links ul a {
  color: var(--white);

  font-weight: 400;
  font-size: 18px;
  line-height: 2.5;
}

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.foot-legal ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
}

.foot-legal ul a {
  color: var(--white);
  font-weight: 400;
}

.copyright {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

p a {
  color: inherit;
  font-size: inherit;
}

.footer a:hover {
  color: var(--primary-color) !important;
}

.come-from {
  top: 0;
  right: 0;
  border-bottom-left-radius: 16px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 5px;
}

.come-from > div {
  color: var(--white);
}

.hero-left {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #37ec81;
  transform: translate(-50%);
  filter: blur(200px);
  z-index: -1;
  opacity: 0.2;
}

.hero-right {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60%;
  width: 1170px;
  transform: translate(-50%, -50%);
  /* filter: blur(20px); */
  z-index: -1;
  background-image: url("../img/chex.png");
  border-radius: 100%;
  opacity: 0.4;
}

/* verify */
/* Certificate Verification Styles */

.verification-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.verification-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.page-title {
  text-align: center;
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin-bottom: 50px;
  font-weight: 400;
}

.search-form {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-end;
}

.input-group {
  flex: 1;
}

.input-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fafafa;
}

.input-field:hover {
  border-color: #d0d0d0;
  background: var(--white);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(55, 236, 129, 0.08);
}

.input-field::placeholder {
  text-transform: none;
  color: #999;
  letter-spacing: 0;
  font-weight: 400;
}

.verify-btn {
  padding: 16px 50px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(6, 107, 103, 0.2);
}

.verify-btn:hover {
  background: var(--primary-color);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.35);
}

.verify-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(55, 236, 129, 0.25);
}

.loading {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.spinner {
  border: 4px solid #f0f0f0;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.error-message {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid #ff4444;
  padding: 24px 28px;
  border-radius: var(--radius-8);
  color: #cc0000;
  display: none;
  animation: slideIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.1);
}

.error-message strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.error-message p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.result-container {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.success-badge {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.success-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.success-badge h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.success-badge p {
  font-size: 15px;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.certificate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.certificate-table tr {
  transition: background-color 0.2s ease;
}

.certificate-table tr:hover {
  background-color: #f9f9f9;
}

.certificate-table tr:last-child th,
.certificate-table tr:last-child td {
  border-bottom: none;
}

.certificate-table th,
.certificate-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #efefef;
}

.certificate-table th {
  font-weight: 700;
  color: var(--secondary-color);
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  width: 35%;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.certificate-table td {
  color: var(--off-black);
  font-size: 16px;
  font-weight: 500;
  background: var(--white);
}

.certificate-table td strong {
  font-weight: 700;
  font-size: 17px;
}

/*  */

.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--secondary-color);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transform: rotate(-90deg);
  z-index: 999;
  border: 1px solid var(--light-bg);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn .icon {
  color: var(--white);
  font-size: 34px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* animation on hover */
.back-to-top-btn:hover .icon {
  animation: arrowUpDown 0.5s ease forwards;
}

.arrowTop-icon {
  mask-image: url(../img/svg/arrow-right.svg);
}

.why-box {
  height: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s ease forwards infinite;
  /* animation-delay: 10s; */
}

/* Animate shine only once on hover */
.btn:hover::after {
}

/* Keyframes for one-way shine movement */
@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Optional accessibility focus */
.btn:is(:focus, :focus-visible, :active) {
  outline: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.header-logo a {
  height: 100%;
}

.grid-lyt {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.grid-lyt .glasee-view {
  font-size: 20px;
  padding: 10px;
  display: inline-block;
  width: auto;
  border-radius: 10px;
  margin-bottom: 0;
  /* background-color: rgb(255, 255, 255, .6); */
}

.sticky-header .header {
  position: fixed;
  padding: 12px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}

.header .container-lg {
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  /* overflow: hidden; */
  background: linear-gradient(to bottom, #fff, #daf6e5);
}

.sticky-header {
  padding-top: 80px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.hamburger {
  cursor: pointer;
}

.hamburger svg {
  height: 1em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--secondary-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

/* when active */
.nav-open .hamburger svg {
  transform: rotate(-45deg);
}

.nav-open .hamburger .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* inner banner  */
.inn-hero-sec {
  padding-top: 42px;
  position: relative;
  text-align: center;
  padding-bottom: 100px;
}

.inn-hero-sec .container-lg {
  padding-top: 110px;
  padding-bottom: 121px;
}

.inn-hero-sec .floatable-cursor.drk.ani1 {
  left: 48%;
  top: 9%;
}

.inn-hero-sec .floatable-cursor.drk.ani2 {
  right: 6%;
  left: inherit;
  bottom: 23%;
}

.inn-hero-sec .floatable-cursor.light {
  left: 11%;
  bottom: 24%;
}

.inn-hero-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.35;
  margin-bottom: 50px;
}

.inn-hero-sec .inn-hero-con p {
  font-weight: 500;
  color: #404040;
  font-size: 32px;
  line-height: 1.5;
  max-width: 765px;
  margin: 0 auto;
}

.inn-hero-sec .hero-right {
  height: 70%;
  top: 40%;
}

.inn-hero-sec .gr1 {
  height: 122px;
  width: 122px;
  opacity: 40%;
  top: 60%;
  left: 10%;
  filter: blur(30px);
  background-color: #37ec81;
  z-index: -1;
}

.inn-hero-sec::after {
  top: 40px;
}

/*  */
.contact-sec {
  position: relative;
}

.contact-sec .col-left {
  max-width: 375px;
}

.contact-sec .col-left .sec-head {
  margin-bottom: 35px;
}

.contact-sec .intro-text {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2c2c;
}

.contact-sec .info-item {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  margin-bottom: 30px;
}

.contact-sec .info-icon {
  min-width: 26px;
  width: 26px;
  padding-top: 2px;
}

.contact-sec .info-icon img {
  width: 100%;
  aspect-ratio: 1/1;
}

.contact-sec .info-content .info-title,
.social-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-sec .info-content p {
  color: #2c2c2c;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.contact-sec .social-links ul {
  justify-content: start;
  gap: 20px;
  padding-top: 12px;
}

.contact-sec .social-links ul a {
  height: auto;
  width: auto;
  border-radius: 0;
  background-color: transparent;
}

.contact-sec .social-links ul a img {
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.contact-sec .col-right {
  max-width: 672px;
  margin-left: auto;
  background-color: var(--white);
  box-shadow: 0px 4px 60px 4px #00000014;
  padding: 50px;
  border-radius: 16px;
  position: relative;
}

.contact-sec .col-right .sec-title span::before {
  bottom: -22px;
}

.contact-sec .col-right .sec-head {
  margin-bottom: 54px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-sec .form-group input,
.contact-sec .form-group textarea {
  width: 100%;
  padding: 16px 30px;
  border: 1px solid #cccccc;
  border-radius: var(--radius-8);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  transition: var(--transition);
  background: var(--white);
  color: #959595;
}

.contact-sec .form-group input:focus,
.contact-sec .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-sec .form-group textarea {
  min-height: 120px;
}

.contact-sec .response-time {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
  color: var(--black);
}

.contact-sec .col-right::before {
  content: "";
  position: absolute;
  width: 244px;
  height: 244px;
  bottom: -50%;
  right: -50%;
  opacity: 0.2;
  background-color: #37ec81;
  filter: blur(100px);
  z-index: -1;
  transform: translate(-100%, -100%);
}

.contact-sec::before {
  content: "";
  position: absolute;
  width: 244px;
  height: 244px;
  top: 50%;
  left: -160px;
  opacity: 0.2;
  background-color: #37ec81;
  filter: blur(100px);
}

.light-banner-sec .container .mentor-session {
  padding-top: 82px;
  padding-bottom: 82px;
  padding-left: 30px;
  padding-right: 30px;
  background-image: url(../img/online-learning.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.light-banner-sec .container .mentor-session .sec-title {
  color: var(--white);
}

/* about us */
.glass-view {
  font-weight: 600;
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid #ffffff;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 19px 42px;
  margin-bottom: 40px;
}

.our-story-sec .story-wrap {
  background-color: #066b67;
  padding: 40px;
  border-radius: 16px;
}

.story-img img {
  border-radius: 16px;
}

.our-story-sec .sec-head .sec-title,
.our-story-sec p,
.our-story-sec .sec-title span {
  color: var(--white);
}

.our-story-sec .content {
  max-width: 432px;
  margin-left: auto;
}

.our-story-sec .content .cms-con p {
  margin-bottom: 16px;
}

.why-we-exist .img img {
  max-width: 573px;
  margin-left: auto;
  border-radius: 16px;
  width: 100%;
}

.why-we-exist .sec-head p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.cms-con ul li {
  position: relative;
  padding-left: 23px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.cms-con ul li::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 10px;
  background-color: #066b67;
}

.why-we-exist .sec-head .sec-title {
  margin-bottom: 36px;
}

.why-we-exist .sec-head {
  margin-bottom: 26px;
}

.ur-mission-sec {
  background-image: url(../img/misssion-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 8/3;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 16px;
}

.ur-mission-sec .center-con {
  background-color: var(--white);
  max-width: 573px;
  margin-left: auto;
  box-shadow: 0px 4px 65px 0px #00000014;
  border-radius: 16px;
  padding: 50px;
}

.meetTheFounder-sec .sec-head {
  margin-bottom: 40px;
}

.meetTheFounder-sec .name p {
  font-size: 18px;
}

.meetTheFounder-sec .name {
  margin-bottom: 20px;
}

.meetTheFounder-sec .cms-con p {
  margin-bottom: 16px;
}

.meetTheFounder-sec .social-links ul {
  justify-content: flex-start;
  gap: 20px;
}

.meetTheFounder-sec .social-links ul li a {
  height: 30px;
  width: 30px;
  border-radius: 8px;
}

.meetTheFounder-sec .container .row:first-child {
  margin-bottom: 100px;
}

.meetTheFounder-sec .row.flex-row-reverse .founder-img img {
  margin-left: auto;
}

.meetTheFounder-sec .founder-img img {
  max-width: 573px;
  aspect-ratio: 57/40;
  object-fit: cover;
  border-radius: 16px;
  object-position: top;
  width: 100%;
}

.our-beliefs-sec .container {
  max-width: 1440px;
  padding-left: 0;
}

.our-beliefs-sec .left img {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.our-beliefs-sec .right {
  padding-left: 124px;
}

.company-head-info {
  position: relative;
}

.company-head-info .content-box {
  background-color: rgb(255 255 255 / 90%);
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  padding: 15px;
  border-radius: 10px;
}

.company-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.company-head-info .img-box img {
  max-width: 400px;
  aspect-ratio: 1/1.4;
  filter: grayscale(1);
  border-radius: 16px;
  transition: var(--transition);
  width: 100%;
  object-fit: cover;
}

.company-head-info:hover img {
  filter: none;
}

.company-head-info .content-box .name {
  font-size: 20px;
}

.main-nav {
  margin-left: auto;
  margin-right: 40px;
}

.parctical-sec .top-row {
  align-items: center;
}

.parctical-sec .left-text {
  text-align: right;
}

.tt-slide .cms-con {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.come-from svg {
  fill: #73cf11;
  height: 100%;
  width: 100%;
}

.come-from svg {
  height: 24px;
  width: 24px;
}

.practical-info {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.btn-border {
  border: none;
}

.btn-border:hover {
  background-color: var(--primary-color);
  color: var(--black);
}

.company-head-info .content-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.company-head-info .social-links ul li a {
  background-color: var(--secondary-color);
  height: 36px;
  width: 36px;
}

.company-head-info .social-links ul {
  gap: 15px;
}

/* landing page  */

.landing-hero-sec.hero-sec .inn-hero-title {
  color: var(--secondary-color);
}

.landing-hero-sec.hero-sec p {
  font-size: 18px;
  padding-top: 12px;
  max-width: 550px;
  margin-bottom: 30px;
}

.landing-hero-sec.hero-sec img {
  margin: 0 auto;
  transform: translate(7%);
}

.landing-hero-sec.hero-sec .floatable-cursor.drk.ani1 {
  top: -5%;
  left: inherit;
  right: 5%;
}

.landing-hero-sec.hero-sec .floatable-cursor.light {
  bottom: 0%;
  left: 10%;
}

.whyThis-sec .right {
  max-width: 500px;
  margin-left: auto;
}

.whyThis-sec .right .sec-head {
  margin-bottom: 40px;
}

.cms-con h5 {
  font-size: 20px;
  margin-bottom: 24px;
}

.whyThis-sec .img img {
  border-radius: 16px;
}

/*  */

.willLearn-sec {
  padding-top: 90px;
  background-color: #f5f5f5;
}

.green {
  position: absolute;
  width: 180px;
  height: 180px;

  filter: blur(100px);
  background-color: var(--primary-color);
}

.green-left {
  left: -80px;
  bottom: 100px;
}

.willLearn-sec .left {
  position: sticky;
  top: 110px;
}

.willLearn-sec p {
  font-size: 18px;
}

.willLearn-sec .left p {
  margin-bottom: 50px;
}

.willLearn-sec .left img {
  border-radius: 16px;
}

.willLearn-sec .right {
  position: relative;
}

.willLearn-sec .willLearn-wrap {
  padding: 45px 0;
  border-bottom: 1px solid #d7d7d7;
}

.willLearn-sec .willLearn-wrap .box {
  max-width: 585px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 100px;
  align-items: center;
}

.willLearn-sec .willLearn-wrap:last-child {
  border-bottom: none;
}

.willLearn-sec .sm-title {
  color: var(--secondary-color);
}

.willLearn-sec .right:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  left: 240px;
  top: 0;
  background-color: #d7d7d7;
}

.willLearn-sec .right:after {
  content: "";
  position: sticky;
  height: 100px;
  width: 2px;
  left: 135px;
  top: 50px;
  background-color: var(--primary-color);
}

.liveClass-sec .container {
  border-radius: 16px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 20px 50px;
}

.liveClass-sec .sec-title,
.liveClass-sec .sec-title span {
  color: var(--white);
}

.liveClass-sec .row {
  --bs-gutter-x: 0;
  padding-top: 24px;
}

.liveClass-sec .lcf-wrap {
  text-align: center;
  border-right: 1px solid #1a837f;
  height: 100%;
  padding: 25px 40px;
}

.liveClass-sec .row > *:last-child .lcf-wrap {
  border-right: none;
}

.liveClass-sec .lcf-wrap img {
  max-height: 70px;
  margin: 0 auto;
}

.liveClass-sec .lcf-wrap .info {
  margin-top: 30px;
}

.liveClass-sec .lcf-wrap .sm-title {
  font-size: 22px;
}

/*  */
.courseStru-sec .sec-head {
  margin-bottom: 75px;
}

.faq-wrap .cms-con ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

/* FAQ card */
.faq-wrap .faq-item {
  background: var(--white);
  border-radius: calc(var(--radius-8) * 2);
  border: 1px solid #b6b6b6;
  box-shadow: 0px 4px 65px 0px #00000014;
  padding: 33px;
  position: relative;
  margin-bottom: 26px;
}

/* Header row */
.faq-wrap .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Title */
.faq-wrap .sm-title {
  color: var(--secondary-color);
}

.faq-wrap .sm-title span {
  color: var(--off-black);
  margin-left: 1rem;
}

/* Toggle button */
.faq-wrap .faq-toggle {
  cursor: pointer;
  transition: var(--transition);
  background-color: transparent;
  font-size: 30px;
}

.top-arrow-icon {
  mask-image: url(../img/svg/up-arrow.svg);
}

.faq-wrap .faq-toggle span {
  color: var(--off-black);
  transform: rotate(180deg);
  transition: transform 0.22s ease;
}

.faq-wrap .faq-toggle[aria-expanded="true"] span {
  transform: rotate(0deg);
  color: var(--secondary-color);
}

/* Body content */
.faq-wrap .faq-body .cms-con {
  margin-top: 14px;
  padding: 8px 55px 8px 2px;
  border-top: 1px solid #f0f0f0;
}

.founder-sec.wtcd-sec .right {
  margin: 0;
}

.founder-sec.wtcd-sec .sec-head .sec-title span {
  display: block;
}

/* faq */
.faq-sec .container {
  box-shadow: 0px 4px 65px 0px #00000014;
  background: #ffffff;
  border-radius: 16px;
  padding: 100px 80px;
}

.faqs-wrap .accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
}

.faqs-wrap .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 0;
}

.faqs-wrap .accordion-item:last-child {
  border-bottom: none;
}

.faqs-wrap .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 30px 0px 30px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faqs-wrap .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--black);
  box-shadow: none;
  padding-bottom: 20px;
}

.faqs-wrap .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.faqs-wrap .accordion-button::after {
  display: none;
}

.faqs-wrap .accordion-button:hover {
  background: transparent;
}

.faqs-wrap .accordion-button .icon {
  font-size: 30px;
  transform: rotate(180deg);
  color: var(--off-black);
}

.faqs-wrap .accordion-button:not(.collapsed) .icon {
  transform: translate(0);
  color: var(--secondary-color);
}

.faqs-wrap .accordion-body {
  padding: 0 50px 28px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
}

.faqs-wrap .accordion-collapse {
  border: none;
}

.pricing-sec .sm-title {
  margin-bottom: 20px;
}

.contain-price {
  border: 1px solid var(--black);
  border-radius: var(--radius-8);
  padding: 20px 20px 10px;
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
}

.contain-price .incl-tax {
  position: absolute;
  bottom: -9px;
  background-color: var(--white);
  padding: 3px 5px 0;
}

.contain-price p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.contain-price .main-price {
  font-size: 56px;
  color: var(--secondary-color);
  font-weight: 700;
}

.pricing-sec .info-box {
  padding: 15px 30px;
  background-color: var(--primary-color);
  box-shadow: 5px 6px 0 var(--black);
  border-radius: var(--radius-8);
  display: inline-block;
}

.pricing-sec .container {
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 65px 0px #00000014;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.pricing-sec .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pricing-sec .left {
  padding: 50px;
  padding-left: 84px;
}

.pricing-sec .left .sec-title {
  text-align: start;
}

.pricing-sec .right {
  background-color: var(--secondary-color);
  height: 100%;
  color: var(--white);
  padding: 80px 65px 20px;
}

.pricing-sec .right .cms-con ul li {
  color: var(--white);
}

.tools-sec .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 30px;
  gap: 24px;
}

.tools-sec .grid .img {
  border: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 10px;
}

.bonus-sec.our-story-sec .content {
  margin: 0;
}

.bonus-sec.our-story-sec .container .story-wrap {
  padding-top: 50px;
}

.bonus-sec.our-story-sec .cms-con ul li {
  color: var(--white);
}

.pricing-sec .right .cms-con ul li::before,
.bonus-sec.our-story-sec .cms-con ul li::before {
  background-color: var(--white);
}

.MeetYourTrainer-sec .right {
  max-width: 473px;
  margin-left: auto;
}

.cta-sec.common-sec .container {
  background-color: var(--secondary-color);
  border-radius: 16px;
  padding: 70px;
  color: var(--white);
  position: relative;
}

.cta-sec.common-sec .container .sec-title,
.top-footer .sec-head .sec-title {
  text-align: start;
}

.cta-sec .sec-title {
  color: var(--white);
  margin-bottom: 22px;
}

.cta-sec .sec-head {
  max-width: 80%;
}

.cta-sec.common-sec .container::before {
  position: absolute;
  content: "";
  background-image: url(../img/Consultwhiz-logo-trp.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 337px;
  height: 266px;
  bottom: -10%;
  right: 0;
}

.founder-sec .left-img img {
  border-radius: 16px;
}

.live-icon {
  display: inline-block;
  position: relative;
  top: calc(50% - 5px);
  background-color: rgb(255, 0, 0);
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.live-icon::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: live 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes live {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(3.5);
    background-color: rgba(255, 0, 0, 0);
  }
}

.hero-con .bg-white {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: inline-flex;
  gap: 5px;
  font-weight: 700;
  align-items: center;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.pricing-sec .green {
  display: none;
}
.MeetYourTrainer-sec .img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}
