@import "./constants/colors.css";
@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&display=swap');

* {
  font-family: "Poppins", sans-serif !important;
}

.layout {
  height: 100%;
}

.home {
  margin-bottom: 10px;
}

.home-header-container {
  align-items: center;
  background-image: linear-gradient(150deg,
      var(--wnp-color-primary),
      var(--wnp-color-primary),
      var(--wnp-color-primary-light),
      var(--wnp-color-primary-extralight));
  color: #fff;
  display: flex;
  flex-direction: column;
}

.home-header-title {
  position: relative;
  padding-top: 20px;
  margin: 30px 15px 60px;
}

.home-header-title-1 {
  font-size: 32px;
}

.home-header-title-2 {
  font-size: 22px;
}

.home-header-bkg-image-clip-container {
  --header-bkg-image-clip-height: 190px;
  height: var(--header-bkg-image-clip-height);
  overflow: hidden;
  width: 100%;
  justify-content: center;
  display: flex;
  position: relative;
  margin-top: 0;
}

.home-header-bkg-image {
  height: 530px;
  position: relative;
  bottom: 30%;
  right: -10px;
  margin-left: 20px;
}

.home-subheader-container {
  align-items: center;
  background-color: var(--wnp-color-secondary);
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 0;
}

.home-subheader {
  padding: 10px 0;
  width: 95%;
}

.certification-info {
  padding-left: 8%;
  padding-right: 8%;
}

a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  vertical-align: middle;
  color: #1f87b2;
}

.button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 700;
  color: white;
  background-color: black;
  border: none;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  margin-left: 10px;

}

.text-container {
  text-align: center;
}

.button2 i {
  font-size: 40px;
  margin-bottom: 5px;
}

.text-top {
  font-size: 18px;
  display: block;
  line-height: 1.2;
  text-align: left;
}

.text-bottom {
  font-size: 18px;
  font-weight: bold;
  display: block;
  line-height: 1.2;
  text-align: left;
}

.home-cert-bubble-container {
  --cert-bubble-size: 50px;
  margin-top: calc(0px - var(--cert-bubble-size) / 4);
}

.home-cert-bubble,
.home-cert-bubble-container {
  align-items: center;
  display: flex;
  justify-content: center;
}

.home-cert-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--cert-bubble-size);
  width: var(--cert-bubble-size);
  background-color: #fff;
  border-radius: calc(var(--cert-bubble-size) / 2);
  border-style: solid;
  border-width: 2px;
  box-shadow: 1px 1px 5px var(--wnp-color-secondary-light);
  font-size: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  /* Add transition for smooth effect */
  position: relative;
  /* Required for tooltip positioning */
}

.home-cert-bubble::after {
  content: attr(data-title);
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--wnp-color-sscp);
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 10;
  margin-top: 5px;
}

.home-cert-bubble:hover::after {
  opacity: 1;
}

.home-cert-bubble:hover {
  transform: scale(1.1);
  /* Slightly increase size on hover */
  box-shadow: 2px 2px 10px var(--wnp-color-secondary);
  /* Enhance shadow on hover */
}

.home-cert-bubble a {
  display: block;
  /* Make the anchor tag a block element */
  width: 100%;
  /* Fill the entire width of the parent */
  height: 100%;
  /* Fill the entire height of the parent */
  text-align: center;
  /* Center the text */
  line-height: var(--cert-bubble-size);
  /* Vertically center the text */
}

.home-cert-bubble-cissp-2024 {
  border-color: var(--wnp-color-cissp-2024);
  color: var(--wnp-color-cissp-2024);
}

.home-cert-bubble-ccsp {
  border-color: var(--wnp-color-ccsp);
  color: var(--wnp-color-ccsp);
}

.home-cert-bubble-crisc {
  border-color: var(--wnp-color-crisc);
  color: var(--wnp-color-crisc);
}

.home-cert-bubble-sscp {
  border-color: var(--wnp-color-sscp);
  color: var(--wnp-color-sscp);
}

.home-cert-bubble-cism {
  border-color: var(--wnp-color-cism);
  color: var(--wnp-color-cism);
}

.home-cert-bubble-cisa {
  border-color: var(--wnp-color-cisa);
  color: var(--wnp-color-cisa);
}

.home-cert-bubble-ccsk {
  border-color: var(--wnp-color-ccsk);
  color: var(--wnp-color-ccsk);
}

.home-feature,
.home-feature-container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.home-feature {
  border: 1px solid #e0e0e0;
  border-top: 3px solid #FFA500;
  /* Orange top border */
  padding: 15px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin: 15px;
  width: 100%;
  max-width: 355px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-feature-image {
  height: 75px;
  margin-bottom: 15px;
}

.home-feature-text {
  margin: 0;
}

@media only screen and (min-width: 348px) {
  .home-header-title {
    margin: 4px 8px -14px;
  }

  .home-header-title-1 {
    font-size: 1.25rem;
  }

  .button2 {
    min-width: 150px !important;
    letter-spacing: 1px !important;
  }

  .home-header-title-2 {
    font-size: 1.5rem;
    width: 60%;
  }

  .home-header-bkg-image {
    right: -76px;
  }

  .home-subheader-container {
    padding: 25px 0;
  }

  .home-subheader {
    width: 85%;
  }

  .home-cert-bubble-container {
    --cert-bubble-size: 62px;
  }

  .home-cert-bubble {
    margin: 0 2px;
  }

  .home-feature-container {
    margin-top: 15px;
  }

  .home-feature {
    flex-direction: row;
    margin: 15px;
    max-width: 355px;
  }

  .home-feature-image {
    margin-top: 0;
  }

  .home-feature-text {
    margin: 8px 0 0 10px;
  }
}

@media only screen and (min-width: 600px) {
  .home-header-title {
    margin: 75px 0 -117px -180px;
  }

  .home-header-title-1 {
    font-size: 3.5rem;
  }

  .button2 {
    min-width: 200px !important;
    letter-spacing: 6px !important;
  }

  .home-header-title-2 {
    font-size: 2.5rem;
    width: 100%;
  }

  .home-header-bkg-image {
    right: -180px;
  }

  .home-subheader {
    font-size: 20px;
  }

  .home-cert-bubble-container {
    --cert-bubble-size: 93px;
    margin-top: calc(0px - var(--cert-bubble-size) / 5);
  }

  .home-cert-bubble {
    border-width: 3px;
    font-size: small;
    margin: 0 10px;
  }

  .home-feature-container {
    margin-top: 20px;
  }

  .home-feature {
    margin: 20px;
    max-width: 470px;
  }

  .home-feature-image {
    height: 100px;
  }

  .home-feature-text {
    margin: 8px 0 0 15px;
  }
}

@media only screen and (min-width: 1000px) {
  .home-header-title {
    margin: 27px 0 -219px -280px;
  }

  .home-header-title-1 {
    font-size: 55px;
  }

  .home-header-title-2 {
    font-size: 41px;
  }

  .home-header-bkg-image-clip-container {
    --header-bkg-image-clip-height: 363px;
    margin-left: 70px;
  }

  .home-header-bkg-image {
    height: 700px;
    bottom: 26%;
    right: -200px;
  }

  .home-subheader-container {
    flex-direction: row;
    justify-content: center;
    padding: 25px 0 33px;
  }

  .home-subheader {
    padding: 0 2px;
    width: auto;
  }

  .home-cert-bubble-container {
    --cert-bubble-size: 100px;
    margin-top: calc(0px - var(--cert-bubble-size) / 6);
  }

  .home-cert-bubble {
    border-width: 4px;
    font-size: small;
    margin: 0 15px;
  }

  .home-feature-container {
    flex-direction: column;
    justify-content: center;
    margin-left: -30px;
  }

  .home-feature {
    margin: 20px;
    width: 470px;
  }

  .feature {
    height: auto;
    min-height: 11rem;
  }

  .phone-store-badge {
    top: 64%;
    margin-left: 190px;
  }
}


@media only screen and (min-width: 1500px) {
  .home-header-title {
    margin: 30px 0 -219px -320px;
  }

  .home-header-bkg-image {
    right: -94px;
  }

  .phone-store-badge {
    margin-left: 84px;
  }
}

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

#root,
body,
html {
  height: 100%;
}

body {
  margin: 0;
  color: #0f0f0f;
  color: var(--wnp-color-font);
  font-family: "Open Sans", sans-serif;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 29px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 22px;
}

a,
p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

a,
a:active,
a:hover,
/*a:visited {
  color: #1f87b2;
  color: var(--wnp-color-primary);
  text-decoration: none;
  text-align: center;
}*/

.font-header-light {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.font-header-regular {
  color: white;
  font-family: "Open Sans", sans-serif;
}

.font-header-italic {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

.font-header-bold {
  font-family: "Open Sans", sans-serif;
  font-weight: bolder;
}

.font-header-extrabold {
  font-family: "Open Sans", sans-serif;
  font-weight: bolder;
}

.font-body-light {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.font-body-regular {
  font-family: "Open Sans", sans-serif;
}

.font-body-italic {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

.font-body-bold {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

.font-body-extrabold {
  font-family: "Open Sans", sans-serif;
  font-weight: bolder;
}

.font-accent {
  font-family: "Vujahday Script", cursive !important;
  font-size: 32px;
  line-height: 0.5;
}

.font-color-regular {
  color: #0f0f0f;
  color: var(--wnp-color-font);
}

.hidden {
  display: none;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
}

.left-column,
.right-column {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-column {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
}

.home-feature {
  margin: 10px 0;
}

.modern-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f1c40f;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: #f1c40f;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

.cert-name {
  font-size: 20px;
  font-weight: bold;
}

.store-buttons-container {
  display: flex;
  gap: 0;
  position: absolute;
  /* bottom: -60px; */
  left: 21%;
  transform: translateX(-50%);
  z-index: 2;
}

.store-button {
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button img {
  width: 260px;
  height: auto;
}

.store-button img[alt="AltStore"] {
  width: 206px;
  height: 62px;
  border-radius: 8px;
  background-color: white;
  padding: 2px;
  object-fit: contain;
}

@media only screen and (max-width: 600px) {
  .store-buttons-container {
    align-items: center;
    gap: 10px;
    left: 142px;
  }

  .home-header-title {
    margin-bottom: 80px;
    text-align: left;
    margin-left: -20px;
  }

  .store-button img {
    width: 175px;
    height: auto;
  }

  .store-button img[alt="AltStore"] {
    width: 125px;
    height: auto;
  }

  .home-header-bkg-image-clip-container {
    margin-top: -15px;
  }
}

/* New Features Section Styles */
.section__title {
  margin: 0 auto;
  max-width: 90%;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.5em;
  text-align: center;
  color: var(--wnp-color-primary-dark);
}

.section__title span {
  font-weight: 700;
  display: block;
}

.section__desc {
  max-width: 32ch;
  margin: 1rem auto 3rem;
  color: var(--wnp-color-secondary);
  font-size: 1rem;
  text-align: center;
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  /* padding: 2rem; */
  padding-top: 0 !important;
}

.feature {
  position: relative;
  max-width: 21rem;
  height: 11rem;
  margin: 1rem;
  padding: 1rem;
  border-radius: 0.75em;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(31, 135, 178, 0.15);
  text-align: left;
  transition: transform 200ms ease-in;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature:hover {
  transform: scale(1.03);
}

.feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wnp-color-primary-dark);
}

.feature__desc {
  width: auto;
  margin: 0;
  color: var(--wnp-color-secondary);
  flex: 1;
  font-size: 1.125rem;
}

.feature__img {
  position: static;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-one {
  border-top: 5px solid var(--Cyan, #66CCCC);
}

.feature-two {
  border-top: 5px solid var(--Red, #FF3366);
}

.feature-three {
  border-top: 5px solid var(--Orange, #FF9933);
}

.feature-four {
  border-top: 5px solid var(--Blue, #3366FF);
}

@media (min-width: 1000px) {
  .section__title {
    max-width: 40%;
    font-size: 2rem;
  }

  .section__desc {
    max-width: 55ch;
    margin: 1rem auto 1rem;
  }

  .features {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
  }

  .feature-one,
  .feature-four {
    margin: auto 0;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .feature {
    height: auto;
    min-height: 11rem;
  }
}

/* Enhanced Instructor Section Styles */
.instructor-container {
  margin-bottom: 6px !important;
  /* margin-top: px !important; */
  background: linear-gradient(150deg, var(--wnp-color-primary-extralight), #fff);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 135, 178, 0.15);
  margin: 60px auto;
  max-width: 900px;
  padding: 40px;
  padding-top: 40px !important;
  padding-bottom: 20px !important;
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px 32px;
  align-items: center;
  text-align: left;
  transform: translateY(20px);
  animation: floatIn 0.8s ease-out forwards;
  overflow: hidden;
}

.instructor-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wnp-color-primary), var(--wnp-color-primary-light));
  border-radius: 16px 16px 0 0;
}

.instructor-image-wrapper {
  width: 170px;
  height: 170px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 4px solid var(--wnp-color-primary-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  grid-row: 1 / span 2;
  justify-self: start;
  animation: fadeIn 1s ease-out forwards;
}

.instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  image-rendering: auto;
  display: block;
}

.instructor-title {
  color: var(--wnp-color-primary-dark);
  font-size: 3.5rem;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
  grid-column: 2;
  animation: slideInTitle 1s ease-out forwards;
}

.instructor-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: none;
  width: 80px;
  height: 3px;
  background: var(--wnp-color-primary);
  border-radius: 2px;
}

.instructor-subtitle {
  color: var(--wnp-color-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  max-width: none;
  grid-column: 2;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.instructor-subtitle sup {
  color: var(--wnp-color-primary);
  font-weight: bold;
}

@keyframes floatIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Add hover effect */
.instructor-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 135, 178, 0.2);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .instructor-container {
    margin: 30px 15px;
    padding: 25px 15px;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .instructor-image-wrapper {
    grid-row: auto;
    justify-self: center;
  }

  .instructor-title {
    font-size: 2.5rem;
    grid-column: auto;
    margin: 0 0 10px;
  }

  .instructor-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .instructor-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 10px;
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .instructor-container {
    margin: 20px 10px;
    padding: 20px 10px;
  }

  .instructor-title {
    font-size: 2rem;
  }

  .instructor-subtitle {
    font-size: 1rem;
    line-height: 1.3;
  }

  .instructor-title::after {
    width: 60px;
    height: 2px;
  }
}

.phone-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-store-badge {
  position: absolute;
  top: 60%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 155px;
  text-align: center;
  z-index: 10;
}

.play-store-badge {
  width: 90%;
  margin-left: 10px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.play-store-badge:hover {
  transform: scale(1.05);
}

@media (max-width: 400px) {
  .phone-store-badge {
    width: 100px;
    top: 80%;
    left: 55%;
  }
}

@media (min-width: 380px) and (max-width: 420px) {
  .phone-store-badge {
    width: 110px;
    top: 80%;
    left: 55%;
  }
}

@media (min-width: 1000px) and (max-width: 1100px) {
  .phone-store-badge {
    width: 140px;
    top: 64%;
    left: 54%;
    margin-left: 190px;
  }
}

@media only screen and (max-width: 600px) {
  .phone-store-badge {
    left: 73%;
    width: 120px;
    top: 80%;
  }

  .play-store-badge {
    width: 90px;
    margin-left: -8px;

  }

  .cert-name {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1500px) {
  .phone-store-badge {
    width: 180px;
    top: 64%;
    left: 54%;
    margin-left: 84px;
  }
}

/* Added another div for the title container */
.home-header-title-container {
  position: relative;
  left: 12%;
}

/* Preventing horizontal scroll across the site */
html,
body {
  overflow-x: hidden !important;
  width: 100%;
}

/*  Preventing any element from overflowing the screen width */
* {
  box-sizing: border-box;
  max-width: 100vw;
}

/* App Screenshots Section Styles */
.app-interface {
  padding: 80px 0;
  background-color: #fff;
}

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

.ss-text-center {
  text-align: center;
}

.ss-fw-bolder {
  font-weight: 800;
}

.ss-text-uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-interface h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--wnp-color-secondary);
}

.app-title-color {
  color: var(--wnp-color-primary);
}

.ss-position-relative {
  position: relative;
}

.app-slider-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.app-ss-slider {
  padding-top: 50px;
  padding-bottom: 40px;
  margin-top: -50px;
  margin-bottom: -50px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-ss {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(31, 135, 178, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

.swiper-slide-active .app-ss {
  transform: scale(1.10);
  box-shadow: 0 20px 40px rgba(31, 135, 178, 0.25);
  opacity: 1;
}

.swiper-slide-prev .app-ss,
.swiper-slide-next .app-ss {
  transform: scale(0.95);
  opacity: 0.8;
}

.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .app-ss {
  transform: scale(0.85);
  opacity: 0.6;
}

.ss-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.app-screenshot-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.theme-swiper-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--wnp-color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(31, 135, 178, 0.3);
  pointer-events: all;
}

.theme-swiper-nav-btn:hover {
  transform: translateY(-3px);
  background: var(--wnp-color-primary-dark);
  box-shadow: 0 8px 20px rgba(31, 135, 178, 0.4);
}

.theme-swiper-nav-btn svg {
  width: 24px;
  height: 24px;
}

#ssSliderPrev {
  margin-left: -60px;
}

#ssSliderNext {
  margin-right: -60px;
}

@media (max-width: 1024px) {
  .app-interface-title {
    font-size: 2.7rem;
  }

  .app-slider-wrapper {
    max-width: 700px;
  }

  #ssSliderPrev {
    margin-left: -25px;
  }

  #ssSliderNext {
    margin-right: -25px;
  }
}

@media (max-width: 768px) {
  .app-interface-title {
    font-size: 2.1rem !important;
    margin-bottom: 40px;
  }

  .app-interface {
    padding: 60px 0;
  }

  .app-slider-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }

  #ssSliderPrev {
    margin-left: -10px;
  }

  #ssSliderNext {
    margin-right: -10px;
  }
}

/* Instructor & Certs New Layout CSS */
.instructor-and-certs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-right: 90px;
  z-index: 10;
}

.instructor-and-certs-wrapper {
  display: flex;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  padding: 0 1px;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 60px;
}

.instructor-profile-side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.instructor-image-wrapper-new {
  width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 135, 178, 0.15);
  background: white;
  overflow: hidden;
  padding: 10px;
  /* Only the image overlaps the banner */
  animation: fadeIn 1s ease-out forwards;
}

.instructor-image-wrapper-new .instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.instructor-info-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-grow: 1;
}

.instructor-info-side .home-cert-bubble-container {
  justify-content: flex-start !important;
  padding-left: 0;
  margin-left: 0;
}

.instructor-container-new {
  background: linear-gradient(150deg, var(--wnp-color-primary-extralight), #fff);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 135, 178, 0.15);
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.instructor-container-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wnp-color-primary), var(--wnp-color-primary-light));
  border-radius: 16px 16px 0 0;
}

.instructor-container-new .instructor-title {
  color: var(--wnp-color-primary-dark);
  font-size: 3.5rem;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
  animation: slideInTitle 1s ease-out forwards;
}

.instructor-container-new .instructor-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: none;
  width: 80px;
  height: 3px;
  background: var(--wnp-color-primary);
  border-radius: 2px;
}

.instructor-container-new .instructor-subtitle {
  color: var(--wnp-color-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  max-width: none;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.instructor-container-new .instructor-subtitle sup {
  color: var(--wnp-color-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .instructor-and-certs-section {
    margin-right: 0;
  }

  .instructor-and-certs-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
    padding: 0 15px;
  }

  .instructor-profile-side {
    order: 2;
  }

  .instructor-info-side {
    order: 1;
  }

  .instructor-image-wrapper-new {
    width: 250px;
    margin-top: 0;
  }

  .instructor-info-side {
    align-items: center;
    gap: 30px;
  }

  .instructor-info-side .home-cert-bubble-container {
    justify-content: center !important;
  }

  .instructor-container-new {
    text-align: center;
    padding: 25px 15px;
  }

  .instructor-container-new .instructor-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}