
/* ------------------------------------------ */
/* -------------- Global Styles ------------- */
/* ------------------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid var(--color-accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.ubg {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: auto;
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 0;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.span1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.span2 {
    color: rgb(30, 144, 255);
}

.span3 {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: rgb(0, 0, 0);
    margin: 0.5em;
}

.span4 {
    font-family: "Inter", sans-serif;
    font-weight: 350;
    font-style: normal;
    color: rgb(0, 0, 0);
    margin: 0.5em;
}

.spanA {
  color: #0000cd !important;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}

.spanA:hover,
.spanA:focus-visible {
  color: #00009b;
  text-decoration: underline;
}

/* .lnrlogo{
    display: inline-block;
    fill: rgb(0, 0, 0);
    width: 2em;
    height: 2em;
    vertical-align: -0.2em;
} */

.u-icon {
  display: inline-block;
  vertical-align: middle;
  width: 0.8em;
  height: 0.8em;
  fill: #2C3E50;                /* slate gray blue to match your h1 */
  transition: fill 0.2s ease, transform 0.2s ease;
}

.u-icon:hover {
  fill: rgb(30, 144, 255);      /* accent DodgerBlue on hover */
  transform: scale(1.1);
}

body.menu-active .entry-banner-index {
    padding-top: 60px;  /* Adjust value as needed */
}

/* ------------------------------------------ */
/* --------------- Navbar Styles ------------ */
/* ------------------------------------------ */

.navbar {
    height: 75px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1rem;
    top: 5px;
    width: 100%;
    z-index: 1;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 2px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: right;
    align-items: center;
    list-style: none;
    text-align: center;
    width: 100%;
    padding-top: 2em;
}

.nav-item {
    height: 60px;
}

.nav-links {
    color: rgb(94, 94, 94);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem;
    height: 100%;
    cursor: pointer;
    width: auto;
}

.nav-links:hover {
    transition: 0.1s;
    color: rgb(0, 0, 0);
}

.nav-links.active {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
}

.nav-logo {
    position: absolute;
    top: 10px;
    left: 13px;
}

.nav-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: inherit;
}

.lnrlogo {
  width: 3em;
  height: 3em;
  object-fit: contain;
  vertical-align: middle;
}

.project-title {
  margin: 0;
  line-height: 1;
  font-size: 1.5rem;
  color: #949494;
}

.nav-toggle {
    width: 2rem;
    height: 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    cursor: pointer;
    z-index: 2;
}

.bar {
    width: 100%;
    height: 0.1rem;
    background-color: rgb(94, 94, 94);
    border-radius: 0.1rem;
    transition: all ease ease-in-out 0.3s;
}

/* .nav-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem;
    padding-bottom: 10px;
}

.nav-button-links-login {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    background: rgb(255, 255, 255);
    color: rgb(95, 95, 95);
    font-size: 1.1rem;
    width: 97px;
    border-radius: 3px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-button-links-login:hover {
    background: rgb(238, 238, 238);
}

.nav-button-links-signup {
    padding: 0.8rem 1rem;
    border: none;
    cursor: pointer;
    background: rgb(30, 144, 255);
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    /* font-weight: 600; 
    width: 182px;
    border-radius: 4px;
    transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

.nav-button-links-signup:hover {
    background: rgb(53, 154, 255);
} */

.navunderline {
    background-color: #ffffff;
    position: relative; 
}

.navunderline::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #737373;
    padding-bottom: 70px;
}


/* ---------------------------------------------------------------------------- */
/*-----------------------------Index Page Styles-------------------------------*/
/* ---------------------------------------------------------------------------- */


/* ------------------------------------------ */
/* -------------- Entry Banner -------------- */
/* ------------------------------------------ */

.mc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1.5rem; /* auto horizontal centering and some space below */
    font-size: 1rem;
}

.mc-logo {
  width: 2em;
  height: 2em;
  object-fit: contain;
  border-radius: 0.25em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mc-text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C3E50;
  line-height: 1;
}

.entry-banner-index {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 5rem 0 5rem;
    text-align: center;
    border-radius: 0.5rem;
    color: rgb(0, 0, 0);
}

.entry-banner-content-index {
    max-width: 800px;
}

.entry-banner-title-index {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.entry-banner-text-index {
    font-size: 1.5rem;
    line-height: 1.5;
    color: rgb(94, 94, 94);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  position: relative;
}

.social-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-links a:hover .social-logo {
  transform: scale(1.15);
}

.social-links a::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.social-links a:hover::after {
  opacity: 1;
}


/* ------------------------------------------ */
/* --------------- Card Styles -------------- */
/* ------------------------------------------ */

.content-index {
    margin-top: 110px;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
}

.cards-container-index {
    width: 100%;
    margin: 0;
}

.cards-index {
    display: block;
}

.cards-index .text-card-index {
    width: 100%;
    margin: 0;
    padding: 50px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cards-index .text-card-index.visible {
    opacity: 1;
    transform: translateY(0);
}

.cards-index .text-card-index:nth-child(1) {
    background: rgb(30, 144, 255);
}

/* Uncomment and modify if you have a second card:
.cards-index .text-card-index:nth-child(2) {
    background: rgb(220, 20, 60);
} */

.cards-index .text-card-index:nth-child(3) {
    background: rgb(255,127,0);
    transform: translateY(0);
}

.cards-index .text-card-index h2 {
    font-size: 2.5rem;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 1rem;
    align-self: center;
    color: rgb(31, 31, 31);
}

.cards-index .text-card-index p {
    font-size: 1.2rem;
    text-align: center;
    text-transform: none;
    margin: 0;
    padding: 0 2rem 0 2rem;
}

.cards-index .text-card-index:first-child p {
    color: #ebebeb;
}

.cards-index .text-card-index:nth-child(2) p {
    color: rgb(94, 94, 94);
}

.cards-index .text-card-index:nth-child(3) p {
    text-align: left !important;
    padding: 0 2rem 0 1.5rem !important;
    margin: 0 !important;
    font-size: 1.5rem;
}


.cards-index .text-card-index ul {
    max-width: 600px;
    margin: 0;
    padding-left: 1.5rem;
    text-align: left;
    white-space: nowrap;
}

.cards-index .text-card-index li {
    font-size: 1.2rem;
    text-align: left;
    text-transform: none;
    margin: 0;
    padding: 0;
    color: rgb(233, 231, 231);
    list-style-position: outside;
    white-space: nowrap;
}

.cards-index .text-card-index a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    display: inline-flex; 
    align-items: center;
    align-self: center;
    margin-top: 1.3rem; 
    cursor: pointer;
}

.cards-index .text-card-index a svg {
    fill: #fff;
    margin-right: 0.5rem;
    width: 2.1em; 
    height: 2.1em;
}

.card-index-links:hover a {
    transform: scale(1.05);
    text-decoration: underline;
    transition: transform 0.2s ease, text-decoration 0.2s ease;
}

.cards-index .text-card-index:nth-child(2) svg {
    fill: #000;
}

.cards-index .text-card-index:nth-child(2) a {
    color: #000;
}

.card-index-links a.spanT{
    display:none;
}


/* ------------------------------------------ */
/* ---------------- Learning Page ------------ */
/* ------------------------------------------ */

.learningBanner{
  display:flex;
  justify-content:center;    
}

.learnTitle {
  font-size: 2rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}

.learningBannerText {
  text-align: center;
  font-size: 1.2rem;
  color: rgb(94, 94, 94);
}

.learnTitle h1 {
  display: inline-flex;
  align-items: center;
}


/* ===========================================================
   Guide Cards – polished animation version
   =========================================================== */

:root{
  --guide-max-w:clamp(340px,98vw,1200px);
  --guide-max-h:clamp(360px,65vh,500px);
}

.guides{
  width:100vw;
  border-top:1.5px solid #e0e0e0;
  padding:2rem 0 0 2rem;
  margin:3rem 0;
  box-sizing:border-box;
  display:flex;
  flex-wrap:wrap;
  gap:2rem 1.5rem;
  align-items:flex-start;
}
#practice-cases .guide-row{
  display:flex;
  flex-wrap:wrap;
  gap:2rem 1.5rem;
  width:100%;
}

.guides-header{
  flex:0 0 100%;
  width:100%;
  margin-bottom:2rem;
}
.guides-title{
  margin:0 0 .25rem;
  font-size:2rem;
}
.guides-tagline{
  margin:0;
  font-size:1.2rem;
}

.guide-card{
  position:relative;
  display:flex;
  border:1px solid #949494;
  border-radius:4px;
  overflow:hidden;
  flex:0 0 280px;
  max-width:280px;
  min-height:380px;
  will-change:transform;
}
.guide-card.open{
  flex:0 1 var(--guide-max-w);
  max-width:var(--guide-max-w);
}

.guide-toggle{
  flex:0 0 280px;
  padding:2rem 1.75rem;
  background:#1e90ff;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.75rem;
  border:none;
  cursor:pointer;
}
.guide-title{
  display:flex;
  font-size:1.2rem;
  font-weight:700;
}
.guide-tagline{
  margin:10px 0 0;
  font-size:.9rem;
}

.guide-content{
  flex:1 1 auto;
  background:#fff;
  text-align:center;
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
}
.guide-card.open .guide-content{
  max-height:var(--guide-max-h);
  overflow-y:auto;
}

.burger{
  position:absolute;
  top:16px;
  right:16px;
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  width:22px;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
  z-index:10;
}
.burger .bar{
  width:100%;
  height:3px;
  background:#5e5e5e;
  transition:transform .4s cubic-bezier(.68,-0.55,.27,1.55),opacity .2s ease;
  will-change:transform;
}
.burger .bar:nth-child(1),
.burger .bar:nth-child(3){
  opacity:0;
}
.guide-card.open .burger{
  opacity:1;
  pointer-events:auto;
}
.guide-card.open .burger .bar:nth-child(1){
  transform:translateY(8px) rotate(45deg);
  opacity:1;
}
.guide-card.open .burger .bar:nth-child(2){
  opacity:0;
}
.guide-card.open .burger .bar:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
  opacity:1;
}

.step-wrapper{
  position:relative;
}
.step{
  display:none;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .35s ease,transform .35s ease;
  will-change:opacity,transform;
}
.step.active{
  display:block;
  opacity:1;
  transform:none;
  padding:2rem 1rem .25rem;
}
.step.active h3,
.step.active h4{
  margin:.75rem auto 1.2rem;
  font-size:1.25rem;
  font-weight:600;
  line-height:1.25;
  max-width:700px;
}

.step-list{
  margin:.4rem auto .6rem;
  list-style:none;
  padding:0;
  line-height:1.3;
  text-align:left;
  max-width:850px;
}

[data-step="1"] .compact-options{
  display:flex;
  flex-direction:column;
  gap:.6rem;
  padding-left:0;
  margin:.6rem auto 1rem;
  list-style:none;
  max-width:850px;
}
[data-step="1"] .compact-options li{
  display:flex;
  flex-direction:column;
  font-size:.95rem;
  line-height:1.3;
}
[data-step="1"] .compact-options .label{
  font-weight:600;
  margin-bottom:.15rem;
}
[data-step="1"] .compact-options .desc{
  font-weight:400;
  color:#333;
}

.step-list li{
  display:flex;
  gap:.35rem;
  margin-bottom:.3rem;
  opacity:0;
  transform:translateX(-8px);
  animation:slideIn .35s forwards;
}
.step-list li:nth-child(1){
  animation-delay:.05s;
}
.step-list li:nth-child(2){
  animation-delay:.1s;
}
.step-list li:nth-child(3){
  animation-delay:.15s;
}
.step-list li:nth-child(4){
  animation-delay:.2s;
}
.step-list li:nth-child(5){
  animation-delay:.25s;
}

@keyframes slideIn{
  to{
    opacity:1;
    transform:none;
  }
}

.step-list svg{
  flex:0 0 1rem;
  width:1rem;
  height:1rem;
}

.step-nav{
  margin:.75rem auto 1rem;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.25rem;
}
.step-nav button{
  background:none;
  border:none;
  cursor:pointer;
}
.rotate-180{
  transform:rotate(180deg);
}

.step-dots{
  display:flex;
  gap:.25rem;
  list-style:none;
  padding:0;
}
.dot{
  width:24px;
  height:24px;
  border:1px solid #5e5e5e;
  border-radius:50%;
  background:#fff;
  font:600 .7rem/24px "Inter",sans-serif;
  color:#5e5e5e;
  transition:background .25s;
}
.dot.active,
.dot:hover{
  background:#e4e4ff;
}
.dot.active{
  animation:pulse .8s ease-in-out;
}
@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.3);
    background:#c7c7ff;
  }
  100%{
    transform:scale(1);
  }
}

.example{
  margin:.4rem auto 0;
  color:#666;
  font-size:.9rem;
  max-width:560px;
  text-align:left;
}
.example-chain{
  list-style:none;
  margin:.4rem 0;
  padding:0;
  line-height:1.35;
}
.example-chain li{
  display:flex;
  align-items:flex-start;
  gap:.35rem;
}
.arrow-icon{
  flex:0 0 .85rem;
  width:.85rem;
  height:.85rem;
  fill:currentColor;
  margin-top:.15rem;
}
.root-cause{
  margin:.3rem 0 0;
}

.bonus-toggle{
  background:#fff;
  border:1px solid #e0e0e0;
  color:#000;
  align-items:center;
  justify-content:center;
}
.bonus-toggle .guide-title{
  margin:0;
  text-align:center;
}

.dl-center{
  display:flex;
  justify-content:center;
  font-size:larger;
}
.dl-center .download-item{
  display:flex;
  align-items:center;
  gap:.4rem;
}
.dl-center .download-item svg{
  width:1.2em;
  height:1.2em;
  flex:0 0 1.2em;
}

.download-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  position: relative;  /* Anchor child absolute elements */
  z-index: 1;
}

.download-item:hover {
  background-color: #e9e9e9;
}

.download-item a {
  font-size: 1rem;
  color: #217346;
  text-decoration: none;
}

.download-item a:hover {
  text-decoration: underline;
}

.download-item svg {
  width: 20px;
  height: 20px;
  color: #555;
  cursor: pointer;
}

/* For PDF items, change the non-icon link color */
.download-item.pdf a:not(.download-icon) {
  color: #D24726;
}

/* Ensure the download icon stays at the right */
.download-icon {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.js-preview-box {
  pointer-events: none;
  position: absolute;
  top: -210px;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 0.25rem;
  box-sizing: border-box;
  overflow: hidden !important;
}
.js-preview-box embed {
  width: 100%;
  height: 100%;
  border: none !important;
  overflow: hidden !important;
}

.js-preview-box iframe::-webkit-scrollbar {
  display: none;
}


/* ------------------------------------------ */
/* --------------- Resource Page ------------- */
/* ------------------------------------------ */

#resources .guide-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  width: 100%;
  justify-content: flex-start;
}

#resources .guide-toggle {
  background-color: #fff;
  color: #000;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

#resources .guide-title,
#resources .guide-tagline {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
}

#resources .guide-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin: 0;
}

#resources .guide-icon {
  width: 1.5rem;
  height: 1.5rem;
}

#resources .guide-tagline {
  color: #949494;
}


/* ------------------------------------------ */
/*-----------------About Page-----------------*/
/* ------------------------------------------ */

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem 0 1rem;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-section.engine {
  grid-template-areas: "photo text";
}
.about-section.journey {
  grid-template-areas: "text photo";
}
.about-text {
  grid-area: text;
}
.about-title {
  color: #2C3E50;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.about-subtitle {
  color: rgb(30, 144, 255);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: #4A5568;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.about-figure {
  grid-area: photo;
  text-align: center;
}
.about-photo {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

#about.entry-banner-index {
  padding: 0;
}

.enquiry-box {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.enquiry-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  text-align: center;
}

.enquiry-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2C3E50;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  color: #333;
  box-sizing: border-box;
  resize: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: rgb(30, 144, 255);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
}

.enquiry-form button {
  display: block;
  width: 100%;
  background-color: rgb(30, 144, 255);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enquiry-form button:hover {
  background-color: rgb(25, 120, 200);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.enquiry-form button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.3);
}

.enquiry-form button:disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
  box-shadow: none;
}

.about-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.social-link-inline .social-logo-inline {
  width: 2.2rem;
  height: 1.8rem;
}


/* ------------------------------------------ */
/* --------------- bottomindex ------------ */
/* ------------------------------------------ */

.bottomindex {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0.6rem;
    background-color: #f4f4f4;
    border-top: 1px rgb(94, 94, 94) solid;
    text-align: center;
    font-size: 0.8rem;
}




/* ------------------------------------------ */
/* --------------- Media Queries ------------ */
/* ------------------------------------------ */

/* ======= GLOBAL PATCHES ======= */

p a, p em, p strong,
li a, li em, li strong{
  display:inline;
  margin:0;
  word-spacing:normal;
  line-height:inherit;
}

.step-list li{align-items:flex-start;flex-wrap:wrap;gap:.25rem;}

.exec-img-wrapper{max-width:100%;margin:1rem auto;}
.exec-img-wrapper img{width:100%;height:auto;display:block;border:1px solid #e0e0e0;border-radius:4px;}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;}
}

/* ======= DESKTOP-FIRST MEDIA QUERIES ======= */

@media (max-width:1050px){
  .navbar{height:auto;flex-direction:column;align-items:stretch;padding-top:14px;}
  .nav-menu{width:100%;display:flex;flex-direction:column;align-items:flex-start;overflow:hidden;max-height:0;padding-top:3.5rem;transition:max-height .5s ease;}
  .nav-menu.active{max-height:400px;}
  .nav-links{padding-left:1.5rem;}
  .nav-links:hover{color:#000;transition:.1s;}
  .nav-item{padding-top:1rem;height:50px;position:relative;padding-bottom:15px;margin-bottom:15px;}
  .nav-item::after{content:"";position:absolute;top:59px;left:0;width:10000px;border-bottom:1px solid #9d9d9d;transform:translateY(10px);opacity:0;transition:.3s;}
  .nav-menu.active .nav-item::after{transform:none;opacity:1;}
  .nav-toggle{display:flex;flex-direction:column;justify-content:space-between;width:2rem;height:1.5rem;cursor:pointer;z-index:2;transition:.3s;}
  .bar{width:100%;height:.2rem;background:#5e5e5e;transition:.3s;}
  .nav-toggle.active .bar:nth-child(1){transform:translateY(.65rem) rotate(45deg);}
  .nav-toggle.active .bar:nth-child(2){opacity:0;}
  .nav-toggle.active .bar:nth-child(3){transform:translateY(-.65rem) rotate(-45deg);}
  .entry-banner-index{padding-top:2rem;transition:.2s;}
}

@media (max-width:936px){
  .cards-index .text-card-index{min-height:275px;}
  .cards-index .text-card-index h2{font-size:2rem;text-align:center;}
  .cards-index .text-card-index p,
  .cards-index .text-card-index li,
  .cards-index .text-card-index:nth-child(3) p{font-size:1rem;}
  .cards-index .text-card-index li{white-space:normal;}
  .cards-index .text-card-index a{font-size:1rem;display:inline-flex;position:relative;padding-right:50px;}
  .cards-index .text-card-index a svg{width:1.5em;height:1.5em;}
  .card-index-links{display:flex;justify-content:center;}
  .card-index-links a.spanT{display:inline-flex;padding-top:1em;align-items:center;font:600 1.2rem "Poppins",sans-serif;}
  .card-index-links a:not(.spanT){display:none;}
  .guides{padding:1.75rem 1.25rem 0;gap:1.5rem 1rem;}
  .guides-header{text-align:center;}
  .guide-card{display:flex;flex-direction:column;flex:0 0 100%;max-width:100%;min-height:260px;overflow:hidden;}
  .guide-card:not(.open){min-height:260px;}
  .guide-card:not(.open) .guide-toggle{flex:1;height:100%;}
  .guide-card:not(.open) .guide-content{max-height:0;overflow:hidden;}
  .guide-toggle{width:100%;padding:1.5rem 2rem; justify-content: center;}
  .guide-title{font-size:1.4rem; text-align:center; align-self: center;}
  .guide-tagline{font-size:.85rem;}
  .burger{top:14px;right:14px;}
  .step.active{padding:1.5rem 1rem .5rem;}
  .step.active h3,
  .step.active h4{font-size:1.15rem;}
  .step-list li,
  .step.active p{font-size:.9rem;}
  .guide-card.open .step.active p,
  .guide-card.open .step-list li{font-size:.85rem;}
  /* #resources.guide-card{display:flex;flex-direction:column;flex:0 0 100%;max-width:100%;min-height:260px;overflow:hidden;}
  #resources.guide-card:not(.open){min-height:260px;}
  #resources.guide-card:not(.open) .guide-toggle{flex:1;height:100%;}
  #resources.guide-card:not(.open) .guide-content{max-height:0;overflow:hidden;}
  #resources.guide-toggle{width:100%;padding:1.5rem 2rem; justify-content: center;} */
  #resources .guide-title{flex-direction: row;}
  .learningBanner { flex-direction: column; }
  .learnTitle { font-size: 1.6rem; margin-bottom: 0.8rem; }
  .learningBannerText { font-size: 1rem; }
  .learnTitle h1 { font-size: 2.5rem; }
  .download-item {padding: 0.6rem 0.8rem;}
  .download-item a {font-size: 0.95rem;}
  .download-item svg {width: 18px;height: 18px;}
  .dl-center{font-size:1.2rem;gap:1rem;}
  .dl-center .download-item{gap:.3rem;}
  .dl-center .download-item svg{width:1.1em;height:1.1em;}
  .download-extra {display: none}
  .about-container{padding:2rem 1rem 0;}
  .about-section{grid-template-columns:1fr;grid-template-areas:"text" "photo";margin-bottom:2rem;}
  .about-figure{display:contents;}
  .about-figure img{display:none;}
  .about-figure figcaption{display:none;}
  .enquiry-box{margin:1.5rem auto;padding:1.5rem;}
  .enquiry-form input,.enquiry-form textarea{padding:.5rem;}
  .enquiry-form button{padding:.5rem;}
}

@media (max-width:430px){
  .project-title{font-size:1.1rem;text-align:center;}
  .entry-banner-index{padding:2rem 1rem;}
  .entry-banner-title-index{font-size:2rem;}
  .entry-banner-text-index{font-size:1.2rem;}
  .content-index{margin:0;}
  .cards-index .text-card-index{min-height:230px;padding:20px 15px 15px;}
  .cards-index .text-card-index h2{font-size:1.65rem;line-height:1.25;margin-bottom:.6rem;}
  .cards-index .text-card-index p,
  .cards-index .text-card-index li,
  .cards-index .text-card-index:nth-child(3) p{font-size:.9rem;}
  .cards-index .text-card-index li{line-height:1.35;}
  .card-index-links{flex-direction:column;align-items:center;margin-top:.8rem;}
  .card-index-links a.spanT{font-size:1.05rem;padding-bottom:.5rem;}
  .cards-index .text-card-index a svg{width:1.3em;height:1.3em;margin-left:.3rem;}
  .bottomindex{font-size:.6rem;}
  .guides{padding:1.25rem .75rem 0;gap:1.25rem .75rem;}
  .guide-card{display:flex;flex-direction:column;flex:0 0 100%;max-width:100%;min-height:220px;overflow:hidden;}
  .guide-card:not(.open){min-height:220px;}
  .guide-card:not(.open) .guide-toggle{flex:1;height:100%;}
  .guide-card:not(.open) .guide-content{max-height:0;overflow:hidden;}
  .guide-toggle{width:100%;padding:1.25rem 1.25rem;}
  .guide-title{font-size:1rem;}
  .guide-tagline{font-size:.8rem;}
  .burger{display:none;}
  .step.active{padding:1.25rem .75rem .4rem;}
  .step.active h3,
  .step.active h4{font-size:1.05rem;}
  .step-list li,
  .step.active p{font-size:.8rem;}
  .guide-card.open .step.active p,
  .guide-card.open .step-list li{font-size:.75rem;}
  .exec-img-wrapper{margin:0 -1rem;}
  .exec-img-wrapper img{width:100vw;height:auto;border:none;border-radius:0;}
  .download-item {flex-direction: column;align-items: flex-start;padding: 0.4rem 0.6rem;max-height: 3rem;overflow: hidden;}
  .download-item a {font-size: 0.8rem;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
  .download-item svg {width: 14px;height: 14px;margin-top: 0.4rem;align-self: flex-end;}
  .dl-center{flex-direction:column;font-size:1rem;gap:.5rem;}
  .dl-center .download-item{width:100%;justify-content:center;gap:.25rem;padding:.4rem .6rem;}
  .dl-center .download-item svg{width:1em;height:1em;}
  #resources .learningBannerText h1{font-size:1.4rem;text-align:center;}
  #resources .learningBannerText p{font-size:.9rem;text-align:center;}
  .about-container{padding:1.5rem .5rem 0;}
  .about-section{grid-template-columns:1fr;grid-template-areas:"text" "photo";margin-bottom:1.5rem;}
  .about-figure{display:contents;}
  .about-figure img{display:none;}
  .about-figure figcaption{display:none}
  .enquiry-box{margin:1rem auto;padding:1rem;}
  .enquiry-form input,.enquiry-form textarea{padding:.4rem;}
  .enquiry-form button{padding:.4rem;font-size:.9rem;}
}


/* ------------------------------------------ */
/* ----------------niche changes----------------- */
/* ------------------------------------------ */

@media (max-width: 460px) {
  .download-item {padding: 0.4rem 0.6rem;}
  .download-item a {font-size: 0.875rem;}
  .download-item svg {width: 16px;height: 16px;}
}
