/* ------------------------------- */
/* Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ------------------------------- */
/* Universal */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box !important;
}

body,
html {
  zoom: 1;
  max-width: 100%;
  scroll-behavior: smooth !important;
}

body::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: #000000;
  color: white;
}

/* ------------------------------ */
/* Preloader */
.preloader {
  position: fixed;
  min-height: 100vh;
  max-height: 100vh;
  min-width: 100%;
  max-width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 10000 !important;
  display: flex;
  top: 0 !important;
  left: 0 !important;
  align-items: center;
  justify-content: center;
  transition: display 1s ease !important;
}

.preloader img {
  max-width: 8rem;
}

.preloader-hide {
  /* display: none !important; */
  z-index: -1000 !important;
  opacity: 0 !important;
  top: -200vh !important;
  transition: all 1s ease !important;
}

/* ---------------------------------- */
/* print */
@media print {
  .no-print {
    display: none !important;
  }

  * {
    font-size: 18px !important;
  }

  .solution span {
    font-size: 20px !important;
  }

  .art-main-04-left {
    display: none;
  }
}

/* ------------------------------ */
/* Colors */

:root {
  --whiteglf: #fff;
  --blackglf: #000;
  --consultglf: skyblue;
  --coachingglf: gold;
  --workshopglf: greenyellow;
}

/* ----------------------------- */
/* menu height adjuster */

.article-height-adjuster {
  height: 6.5rem;
}

@media screen and (max-width: 1200px) {
  .article-height-adjuster {
    height: 4rem;
  }
}

/* ----------------------------- */
/* height adjuster */
.habs {
  height: 6rem;
  /* background-color: yellow; */
}

@media screen and (max-width: 1600px) {
  .habs {
    height: 4.5rem;
  }
}

@media screen and (max-width: 800px) {
  .habs {
    height: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .habs-above-ind {
    display: none;
  }
}

/* ---------------------------- */
/* Menu First */
.menu-first {
  top: 0;
  position: fixed;
  min-width: 100%;
  max-width: 100%;
  height: 2.5rem;
  z-index: 1005 !important;
  background: var(--blackglf);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.menu-first * {
  color: white;
  /* font-size: .75rem; */
  text-decoration: none;
  text-transform: lowercase;
}

.menu-first div a {
  margin: 0 1rem 0 0;
  /* background-color: red; */
}

.menu-first div a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  .menu-first {
    display: none;
  }
}

/* -------------------------- */
/* Copyrights */
.copyrights {
  margin: 0;
  background-color: var(--blackglf);
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  justify-content: space-between;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  /* border: 5px solid red; */
}

.copyrights * {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.copyrights .cp-02 {
  display: flex;
  align-items: center;
  max-width: 25%;
}

.copyrights #scrollTopBtn {
  background-color: var(--whiteglf);
  padding: 0.5rem;
  line-height: 1;
  display: flex;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transform: rotate(90deg);
  color: var(--blackglf);
  transition: transform 0.5s ease;
  border: none;
  border-radius: 50%;
}

.copyrights #scrollTopBtn:hover {
  transform: rotate(-450deg);
  transition: transform 0.5s ease;
}

.policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 60%;
  gap: 1rem;
}

.policy-links a {
  margin: 0 1rem 0 0;
  padding-right: 1rem;
  line-height: 1;
  border-right: 1px solid white;
}

.policy-links a:last-child {
  padding-right: 0;
  border: none;
}

@media screen and (max-width: 1100px) {
  .copyrights * {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 800px) {
  .copyrights * {
    font-size: 0.85rem;
  }

  .policy-links {
    max-width: 100%;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.208);
    border-bottom: 1px solid rgba(245, 245, 245, 0.258);
    padding: 1.5rem 0;
  }

  .policy-links a {
    padding-right: 0.5rem;
    margin-right: 0;
  }

  .copyrights {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .copyrights .cp-02 {
    max-width: 100%;
  }

  /* .copyrights .cp-02 {
        padding-right: 30%;
    } */

  .copyrights #scrollTopBtn {
    width: 1.75rem;
    height: 1.75rem;
    transform: rotate(-450deg);
  }
}

/* ----------------------------- */
/* footer before gradient  */

.lt-grad {
  background: linear-gradient(90deg, #0055cb, #01d4ed, #78d911);
  height: 10px;
}

/* --------------------------- */
/* Footer Before */
.footer-before {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: black;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: none;
  /* border-top: 1px solid white;
    border-bottom: 1px solid white; */
}

.footer-after {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 2.5% 2rem;
  max-width: 100%;
  overflow: hidden;
  flex-wrap: nowrap;
  flex-direction: row;
}

.footer-after * {
  color: white;
  font-size: 10vh;
  transition: all 1s ease;
  cursor: pointer;
  line-height: 1;
}

.footer-after div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1%;
}

.footer-before * {
  color: white !important;
}

.footer-before div {
  font-size: 3rem;
  padding: 1rem 2.5%;
  color: var(--blackglf);
  text-transform: uppercase !important;
}

.footer-before a {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  padding: 1.25rem;
  margin-right: 0rem;
  position: relative;
  z-index: 100 !important;
  transition: padding 1s ease;
  border-radius: 50%;
  transform: scale(0.7);
}

.footer-before a svg {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  .footer-before div {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0rem;
  }

  .footer-before a {
    transform: scale(0.65);
    margin-right: 2.5%;
    margin-left: 0;
    padding: 0.5rem 0.6rem;
  }

  .footer-before a svg {
    width: 2rem;
    height: 2rem;
    padding: 0.5rem;
  }

  .footer-after {
    padding: 0.25rem 2.5% 0.75rem;
  }

  .footer-after * {
    font-size: 4vh;
  }
}

@media (min-width: 768px) {
  .footer-after {
    font-size: 3.5vh!important;
  }
}


/* -------------------------- */
/* Footer */
.footer {
  background-color: #000;
  min-height: 15rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 1rem 2.5%;
}

.footer-logo {
  max-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  background-color: #000000;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer * {
  color: white;
}

.footer-logo img {
  max-width: 8rem;
  margin: 3rem 1rem 1rem;
}

.footer .foot-div {
  max-width: 25%;
}

.footer .foot-div h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  text-decoration: 1px underline;
  text-underline-offset: 10px;
}

.footer .foot-div h5 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.7;
  text-align: left;
}

.footer .foot-div a {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  cursor: pointer;
  padding-left: 0.25rem;
  display: block;
  text-decoration: none;
}

.foot-div a:hover {
  /* font-weight: 400; */
  color: #89c6ff;
}

@media screen and (max-width: 1700px) {
  .footer .foot-div a {
    font-size: 1rem;
  }

  .footer .foot-div h5 {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .footer .foot-div h3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1200px) {
  .footer .foot-div {
    max-width: 49%;
    min-width: 49%;
    margin-bottom: 1rem;
  }

  .footer {
    flex-wrap: wrap;
    padding: 2rem 5%;
    min-height: 20rem;
    padding-bottom: 1rem;
  }

  .footer .foot-div h5 {
    font-size: 1rem;
  }

  .footer .foot-div h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .footer .foot-div a {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.85rem;
    padding-left: 0.5rem;
  }

  .footer-logo img {
    max-width: 7rem;
    margin: 3rem auto 0.5rem;
    text-align: center;
  }
}

/* ----------------------------- */
/* Mobile Menu */
/* main nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  border-bottom: 1px solid gainsboro;
  z-index: 1000 !important;
  display: none;
}

/* nav ul */
.nav ul {
  list-style: none;
}

/* nav container */
.nav-container {
  height: 65px;
  max-width: 100%;
  background-color: rgb(255, 255, 255);
}

/* nav data left menus */
.nav-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5%;
}

/* logo */
.nav .logo-data img {
  max-width: 5rem;
  /* height: 100%; */
}

/* nav a tags */
.nav a {
  text-decoration: none;
}

/* nav toggle */
.nav-toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

.nav-toggle #close,
.nav-toggle #hamburger {
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.5s ease;
}

.nav-toggle #close {
  opacity: 0;
}

/* Dropdown Menus */
.mega-btn {
  cursor: pointer;
}

/* Dropdown Menu Arrow */
.mega-btn-arrow {
  font-size: 1rem;
  color: goldenrod;
  font-weight: 100;
}

.li-btn-arrow {
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
}

/* mega content */
.mega-btn-content {
  display: flex;
  /* background-color: rgb(64, 255, 0); */
  padding: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid gainsboro;
}

/* Mega Container */
.mega-btn-container {
  background-color: rgb(255, 255, 255);
  height: 0;
  overflow: hidden;
  transition: height 1s ease, background-color 0.4s ease;
}

.mega-btn-bg-toggle {
  background-color: #000000 !important;
  color: white !important;
}

/* Mega Canva left */
.mega-btn-content-01 .mega-btn-content-01-left {
  min-width: 100%;
  padding-bottom: 0rem;
  border-bottom: 1px solid gainsboro;
  margin-bottom: 1.5rem;
  /* border: 1px solid red; */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/* Mega Canva right a */
.mega-btn-content-01-right-a {
  color: #000;
  margin-top: 1.5rem !important;
  min-width: 100%;
  padding-left: 1rem;
  border-left: 1px solid gainsboro;
  display: flex;
  flex-direction: column;
}

/* 02 Menu */
.mega-btn-content-02 {
  display: flex;
  flex-direction: column;
}

.mega-btn-content-02 h2 {
  margin-bottom: 1.5rem;
  text-decoration: 1px underline gainsboro;
  text-underline-offset: 5px;
  /* padding-left: 1rem; */
  margin-top: 1rem;
  color: goldenrod;
  font-weight: 400;
}

.mega-btn-content-02 a {
  margin-bottom: 1.5rem;
  color: #000;
  padding-left: 1rem;
  border-left: 1px solid gainsboro;
  font-weight: 400;
}

.mega-btn-content-02 a:last-child {
  margin-bottom: 0;
}

.mega-btn-content-01-right-a:first-child {
  margin-top: 0 !important;
}

/* Mega Canva Left a */
.mega-btn-content-01-left-a {
  margin-bottom: 1.5rem !important;
  color: #000;
  display: flex;
  flex-direction: column;
  /* border: 1px solid red; */
  min-width: 100%;
  padding-left: 1rem;
  border-left: 1px solid gainsboro;
  transition: color 0.6s ease;
}

.mega-btn-content-01-left-a:hover {
  color: blue;
}

/* nav link */
.nav-link {
  color: rgb(0, 0, 0);
  font-weight: 600;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid gainsboro;
  transition: all 0.4s ease;
}

.nav-link:hover {
  background-color: #000 !important;
  color: white !important;
  transition: all 0.4s ease;
}

.mega-btn-content-01 p {
  font-size: 0.85rem;
  font-weight: 300;
  display: none;
}

.mega-btn-content-01 h2,
.mega-btn-content-01 h3 {
  font-weight: 400;
}

/* Mobile */
@media screen and (max-width: 1200px) {
  .nav {
    display: block;
  }

  /* mobile nav menu entire container */
  .nav-menu {
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - 65px);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.3s, opacity 0.2s;
  }

  .mega-btn-content-01 a img,
  .mega-btn-content-01-right-a .fa-tiktok {
    display: none;
    visibility: hidden;
  }

  /* Show menu on click */
  .show-menu-toggle {
    opacity: 1;
    pointer-events: initial;
    top: 65.5px !important;
  }

  /* change menu icon to x icon on click */
  .show-icon-toggle #hamburger {
    opacity: 0;
    transform: rotate(720deg);
  }

  .show-icon-toggle #close {
    opacity: 1;
    transform: rotate(720deg);
  }

  .nav-data {
    padding: 0 1.5rem;
  }

  /* Canva menu */
  .mega-btn-content-01 {
    flex-direction: column;
  }
}

/* ------------------------------ */
/* Menus */
.menus {
  position: fixed;
  min-width: 100%;
  max-width: 100%;
  height: 4.25rem;
  background: white;
  z-index: 1005 !important;
  border-bottom: 1px solid gainsboro;
  /* overflow: hidden; */
  display: flex;
  padding: 0 2.5%;
  align-items: center;
  top: 2.5rem;
  justify-content: space-between;
}

.menus .menus-01 img {
  max-width: 6.5rem;
  /* background-color: red; */
  margin-bottom: -0.5rem;
}

.menus .menus-03 a {
  background-color: #0e0e10;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
}

.height-adjuster {
  height: 7.5rem;
}

@media screen and (max-width: 1200px) {
  .height-adjuster {
    height: 5rem;
  }
}

.menus-02 {
  display: flex;
  align-self: stretch;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  /* background-color: red; */
}

.menu-clickable {
  margin: 0 0.25rem;
  /* border: 1px solid yellow; */
  /* padding: .25rem; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-clickable .menu-head {
  /* background-color: whitesmoke; */
  padding: 0.5rem 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-clickable .menu-head:hover,
.menu-clickable .menu-head:active,
.menu-clickable .menu-head:focus,
.menu-clickable:hover .menu-head,
.menu-clickable:focus .menu-head,
.menu-clickable:active .menu-head {
  background-color: #000000;
  color: white;
  cursor: pointer;
  /* border-radius: 1.5rem; */
}

.menu-tail-3,
.menu-tail-2,
.menu-tail {
  width: 100%;
  position: absolute;
  height: max-content;
  left: 0;
  top: -1000vh;
  opacity: 0;
  z-index: -1000 !important;
  border-bottom: 2px solid gainsboro;
  /* border-radius: 0 0 2rem 2rem; */
  border-top: none;
  background-color: rgb(255, 255, 255);
  /* background-color: yellow; */
  display: flex;
  transition: top 0.2s ease, opacity 0.2s ease;
  /* height: 0; */
  overflow: auto;
  /* border: 10px solid red; */
  padding: 2rem 2rem;
}

.menu-tail-3::-webkit-scrollbar,
.menu-tail-2::-webkit-scrollbar,
.menu-tail::-webkit-scrollbar {
  display: none;
}

/* Menu 03 */
.menu-tail-3 {
  /* background-color: red; */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: auto;
}

.menu-tail-3 img {
  max-height: 200px;
  min-height: 200px;
  max-width: 100%;
  object-fit: cover;
}

.menu-tail-3-div {
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  /* overflow-y: scroll; */
  max-width: 16%;
  min-width: 16%;
}

.menu-tail-3-div h2 {
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: 1px gainsboro underline;
  text-underline-offset: 5px;
  /* background-color: red; */
  /* height: 4rem; */
}

/* .menu-tail-3-div::-webkit-scrollbar{
  display: none;
  } */

.menu-tail-2 img {
  border: 1px solid rgb(0, 0, 0, 0.2);
}

.menu-tail-3-div img {
  max-width: 100%;
  margin: 1rem 0 0;
  border-radius: 1rem;
  /* border: 10px solid teal; */
}

.menu-tail-3 a {
  text-decoration: none;
  color: inherit;
  margin-top: 1rem;
  /* padding-left: 1rem; */
  position: relative;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 1.2;
  /* background-color: red; */
  display: flex;
  align-items: center;
  /* text-decoration: 1px underline;
    text-underline-offset: 50px; */
  overflow: hidden;
  transition: all 0.5s ease;
}

.menu-tail-3 a::before {
  content: "-";
  /* position: absolute; */
  margin-right: 1rem;
  display: inline-block;
  text-decoration: none !important;
}

.menu-tail-3 a:hover {
  /* font-weight: 900; */
  color: #156cbe;
  /* text-underline-offset: 3px; */
}

/* .menu-tail *, .menu-tail-2 *{
    color: white;
  } */

.menu-tail-2 {
  justify-content: space-between;
  padding: 3rem 2.5% !important;
  /* background-color: red; */
  overflow-y: auto;
}

.menu-tail-2-div {
  display: flex;
  /* background-color: red; */
  margin-bottom: 2rem;
}

.menu-tail-2-div h2 {
  font-weight: 900;
  /* margin-bottom: .15rem;    */
  cursor: pointer;
  font-size: 1rem;
}

.menu-tail-2-div p {
  font-size: 0.85rem;
  opacity: 0.2;
}

.menu-tail-2-div:hover p {
  opacity: 1;
}

.menu-tail-2-div img {
  max-height: 2rem;
  /* margin-top: .5rem; */
  margin-right: 1rem;
}

.menu-tail-2-last {
  max-width: 30%;
  min-width: 30%;
  position: sticky;
  top: 0px;
}

.menu-tail-2-coaching .menu-tail-2-last {
  min-width: 53%;
}

/* .menu-tail-2-right .menu-tail-2-div:nth-child(3),
  .menu-tail-2-left .menu-tail-2-div:nth-child(5){
    background-color: yellow;
    margin-bottom: 3rem;
  } */

.menu-tail-2-last {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
}

.menu-tail-2-last * {
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.menu-tail-2-last h2 {
  font-size: 3rem;
  margin-bottom: 0rem;
  /* background-color: red; */
}

.menu-tail-2-last a {
  background-color: white;
  color: black;
  padding: 0.5rem 1rem;
}

.menu-tail-2-last-coach {
  background: url("./coaching/coach-menu.jpg") no-repeat 50% 50% !important;
  background-size: cover !important;
}

.menu-tail-2-last-corporate {
  background: linear-gradient(0deg, black, transparent 40%),
    url("./corporate/corporate-menu.jpg") no-repeat 50% 50% !important;
  background-size: cover !important;
}

.menu-tail-2 h3 {
  margin: 0 0 2rem 0;
  text-decoration: 1px underline;
  text-underline-offset: 10px;
}

.menu-clickable .menu-head:hover~.menu-tail-2,
.menu-tail-2:hover,
.menu-clickable .menu-head:hover~.menu-tail,
.menu-tail:hover,
.menu-clickable .menu-head:hover~.menu-tail-3,
.menu-tail-3:hover {
  top: 4rem;
  transition: all 0.7s ease;
  opacity: 1;
  z-index: 1000;
  overflow: auto;
  height: calc(100vh - 8.25rem);
}

.menu-clickable .menu-head:hover~.menu-tail,
.menu-tail:hover,
.menu-clickable .menu-head:hover~.menu-tail-3,
.menu-tail-3:hover {
  height: max-content;
}

/* .menu-tail-scroll{
    background-color: rgb(208, 230, 255) !important;
} */

/* .menu-clickable .menu-head:hover~.menu-tail-2,
.menu-tail-2:hover, .menu-tail-scroll
{
    overflow: auto;
} */

/* Inside Menu */
.menu-tail-01 {
  display: flex;
  max-width: 80%;
  min-width: 80%;
  padding: 2rem 0 3rem 2rem;
  /* background-color: red; */
}

.menu-tail-01-three {
  max-width: 40% !important;
  min-width: 40% !important;
}

.menu-tail-01-three a {
  max-width: 45%;
  min-width: 45%;
}

/* .menu-tail-01-four {
    max-width: 35% !important;
} */

.menu-tail-01 img {
  margin-bottom: 1rem;
  max-width: 100%;
  min-width: 100%;
  max-height: 12rem;
  min-height: 12rem;
  object-fit: cover;
  border-radius: 1rem;
}

.menu-tail-01 .mr-gad {
  object-position: 50% 0%;
}

.menu-tail-01 a {
  text-decoration: none;
  /* cursor: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2228%22 height=%2229%22 fill=%22none%22 viewBox=%220 0 28 29%22%3E%3Cpath fill=%22%23fff%22 d=%22M6.84 21.83c-.47-.6-1.05-1.82-2.07-3.34-.58-.83-2.01-2.41-2.45-3.23a2.1 2.1 0 0 1-.25-1.67 2.2 2.2 0 0 1 2.39-1.67c.85.18 1.63.6 2.25 1.2.43.41.82.85 1.18 1.32.27.34.33.47.63.85.3.39.5.77.35.2-.11-.83-.31-2.23-.6-3.48-.21-.95-.26-1.1-.46-1.82s-.32-1.32-.54-2.13c-.2-.8-.35-1.62-.46-2.44a4.7 4.7 0 0 1 .43-3.08c.58-.55 1.44-.7 2.17-.37a4.4 4.4 0 0 1 1.57 2.17c.43 1.07.72 2.19.86 3.33.27 1.67.79 4.1.8 4.6 0-.61-.11-1.91 0-2.5.12-.6.54-1.1 1.12-1.33.5-.15 1.02-.19 1.53-.1.52.1.98.4 1.29.83.38.98.6 2 .63 3.05.04-.91.2-1.82.47-2.7.28-.39.68-.67 1.15-.8.55-.1 1.11-.1 1.66 0 .46.15.85.44 1.14.82.35.88.56 1.82.63 2.77 0 .23.12-.65.48-1.24a1.67 1.67 0 1 1 3.17 1.07v3.77c-.06.97-.2 1.94-.4 2.9-.29.85-.7 1.65-1.2 2.38-.8.9-1.48 1.92-1.98 3.02a6.67 6.67 0 0 0 .03 3.2c-.68.07-1.37.07-2.05 0-.65-.1-1.45-1.4-1.67-1.8a.63.63 0 0 0-1.13 0c-.37.64-1.18 1.79-1.75 1.85-1.12.14-3.42 0-5.23 0 0 0 .3-1.66-.39-2.27-.68-.6-1.38-1.3-1.9-1.76l-1.4-1.6Z%22/%3E%3C/svg%3E"), auto; */
  color: #0e0e10;
  margin-right: 2rem;
  transition: opacity 0.4s ease, filter 0.3s ease;
  /* background-color: red; */
  min-width: calc(25% - 2rem);
}

.menu-tail-2 a {
  color: inherit;
  text-decoration: none !important;
  padding-right: 3rem;
  /* background-color: yellow; */
}

.menu-tail-2 .menu-tail-2-left,
.menu-tail-2 .menu-tail-2-right {
  max-width: 22.5%;
  /* background-color: red; */
  min-width: 22.5%;
}

.menu-tail-2 p {
  color: red;
  display: none;
}

/* .menu-tail-2:hover a:hover{
opacity: 1;
}

.menu-tail-2:hover a:not(:hover){
opacity: .2;
} */


/* 
.menu-tail-01:hover a:hover,
.menu-tail-02:hover a:hover {
 
  opacity: 1 !important;
}

.menu-tail-01:hover a:not(:hover),
.menu-tail-02:hover a:not(:hover) {
  opacity: 0.1 !important;
  
}

.menu-tail-3-div:hover a:hover {
  
  opacity: 1;
  transform: scale(1.05);
}

.menu-tail-3-div:hover a:not(:hover) {
 
  opacity: 0.2;
} */

.menu-tail-01 h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  /* background-color: red; */
  font-weight: 900;
  /* padding-left: .5rem; */
}

.menu-tail-01 p {
  font-size: 1rem;
  font-weight: 300;
  display: none;
}

.menu-tail-01 #new-menu::after {
  content: "new";
  margin-left: 1rem;
  font-size: inherit;
  padding: 0.15rem 0.5rem;
  line-height: 0;
  background-color: greenyellow;
  animation: menu-blink 1s ease 0s infinite;
}

@keyframes menu-blink {
  from {
    opacity: 0;
    transform: scale(1);
  }

  top {
    opacity: 1;
    transform: scale(1.3);
  }
}

.menu-tail-02 {
  border-left: 1px solid gainsboro;
  padding: 2rem;
  max-width: 18%;
  min-width: 18%;
  /* background-color: yellow; */
}

.menu-tail-02 a {
  display: flex;
  text-decoration: none;
  margin: 0 0 2rem;
  color: #0e0e10;
  transition: opacity 0.4s ease, filter 0.3s ease;
  /* background-color: red; */
  align-items: center;
}

.menu-tail-02 h4 {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-tail-02 a:last-child {
  margin: 0 !important;
}

.menu-tail-02 a img {
  margin-right: 2rem;
  max-height: 4rem;
}

.menu-tail-02-div h3 {
  font-size: 1.15rem;
  /* margin-bottom: .5rem; */
  line-height: 1;
  font-weight: 900;
}

.menu-tail-02-div p {
  font-weight: 400;
  font-size: 0.9rem;
  display: none;
}

.menu-tail-2-last {
  background: url("https://cdn.sanity.io/images/nyyhaljw/production/bdab9b234d5a2e71267dd97423c75213324005ee-512x512.png?w=512&h=512&q=80&auto=format") no-repeat 50% 50%;
  background-size: cover;
}

.menu-tail-scroll {
  /* background-color: red; */
  justify-content: center;
}

@media screen and (max-width: 1600px) {

  .menu-clickable .menu-head:hover~.menu-tail-2,
  .menu-tail-2:hover,
  .menu-clickable .menu-head:hover~.menu-tail,
  .menu-tail:hover,
  .menu-clickable .menu-head:hover~.menu-tail-3,
  .menu-tail-3:hover {
    top: 4rem;
    transition: all 0.7s ease;
    opacity: 1;
    z-index: 1000;
    overflow: auto;
    height: calc(100vh - 7.25rem);
  }

  .menu-tail-3-div h2 {
    font-size: 1.2rem;
    text-decoration: none;
    height: 4rem;
    line-height: 1.2;
    /* max-width: 70%; */
  }
}

@media screen and (max-width: 1200px) {
  .menus {
    display: none;
    /* overflow: hidden !important; */
    max-width: 100vw !important;
    max-height: 5rem;
    /* background-color: yellow !important; */
    top: 0;
  }

  .menus-gradient {
    display: none;
  }
}

/* ---------------------------------- */
/* section heading */
.section-heading {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
  max-width: max-content;
  margin: auto;
}

.our-services-heading {
  background: linear-gradient(270deg, #fcc200 14%, #84ce6f 50%, #13bda5 92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading span {
  font-size: 3rem;
  line-height: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-weight: 500;
}

@media screen and (max-width: 1700px) {
  .section-heading {
    font-size: 2.25rem;
  }

  .section-heading span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1200px) {
  .section-heading {
    font-size: 1.5rem;
    padding: 0.5rem 5%;
    line-height: 1.5;
  }

  .section-heading span {
    font-size: 2rem;
  }
}

/* checking gradient */

.check-grad {
  position: relative;
  display: none;
}

.check-grad::after {
  background-image: linear-gradient(90deg, #0055cb, #01d4ed, #78d911);
  border-bottom-left-radius: 2rem;
  filter: blur(10px);
  content: "";
  height: 85%;
  left: 4%;
  opacity: 0;
  position: absolute;
  top: 14%;
  transition-duration: 0.18s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 90%;
  z-index: 0;
}

.check-grad:hover::after {
  opacity: 1;
}

/* life beyond bondaries */
/* ---------------------------- */
/* Section 17 */
.section-17-up {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),
    url("./mr-gad/B1.webp") no-repeat 50% 50%;
  background-size: cover !important;
  max-width: 100%;
  min-width: 100%;
  margin: 0;
  min-height: 40rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0rem;
  padding-left: 45%;
  padding-right: 5%;
}

.section-17-up * {
  color: var(--whiteglf);
}

.section-17-up h2 {
  font-size: 5.5rem;
  max-width: 60%;
  line-height: 1;
  letter-spacing: -4px;
  text-align: left;
}

.section-17-up p {
  margin: 2.5rem 0;
  font-size: 1.75rem;
  text-align: left;
}

.section-17-up a {
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  text-align: left;
  position: relative;
  z-index: 100 !important;
  background-image: linear-gradient(135deg, #0055cb, #01d4ed);
}

.section-17-up-internal h2 {
  font-size: 4rem;
  max-width: 70%;
}

.section-17-up-internal p {
  font-size: 1.5rem;
}

@media screen and (max-width: 1600px) {
  .section-17-up h2 {
    font-size: 5rem;
    max-width: 80%;
  }

  .section-17-up {
    padding-left: 50%;
    padding-right: 2.5%;
  }
}

@media screen and (max-width: 1100px) {
  .section-17-up {
    padding: 10% 5%;
    margin-top: 0rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0)),
      url("./mr-gad/B1.webp") no-repeat 10% 50%;
    background-size: cover;
    justify-content: flex-end;
    align-items: center;
  }

  .section-17-up h2 {
    text-align: center;
    max-width: 90%;
    letter-spacing: 0;
    font-size: 3rem;
    line-height: 1;
  }

  .section-17-up a {
    padding: 0.75rem 1.25rem;
    text-align: center;
  }

  .section-17-up p {
    margin: 1.25rem 0 1rem;
    font-size: 1.5rem;
    text-align: center;
  }

  .section-17-up-internal h2 {
    font-size: 1.75rem;
    max-width: 100%;
    /* background-color: #01d4ed; */
    padding: 0;
  }

  .section-17-up-internal p {
    font-size: 1rem;
    opacity: .7 !important;
  }
}

:root {
  --navy: #0B1B2B;
  --gold: #0090ff;
  --gold-dark: #01d4ed;
  --white: #FFFFFF;
  --grey-bg: #F5F7FA;
  --grey-text: #6B7280;
  --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(11, 27, 43, 0.8), rgba(11, 27, 43, 0.6)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white, #fff);
  position: relative;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(11, 27, 43, 0.3) 100%);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  background: rgba(247, 198, 108, 0.1);
  border: 1px solid var(--gold, #f7c66c);
  color: var(--gold, #f7c66c);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: inline-block;
  animation: heroFadeIn 1.2s ease-out 0.3s both;
}

/* Heading */
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: heroFadeIn 1.2s ease-out 0.6s both;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: heroFadeIn 1.2s ease-out 0.9s both;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease-out 1.2s both;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-black:hover {
  background: #333;
}

/* Animation */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    /* let content decide */
    padding: 5rem 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-black {
    width: 100%;
  }
}

/* start */

.quote-section {
  background: radial-gradient(circle at top left, rgba(247, 198, 108, 0.052), transparent 70%),
              radial-gradient(circle at bottom right, rgba(217, 169, 79, 0.045), transparent 70%),
              #0b1b2b;
  color: var(--white, #fff);
  padding: 3rem;
  text-align: center;
  position: relative;
}

/* @keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */


.quote-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Quote */
.quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.quote::before,
.quote::after {
  font-size: 4rem;
  color: var(--gold, #f7c66c);
  position: absolute;
  font-family: 'Playfair Display', serif;
}

.quote::before {
  top: -20px;
  left: -40px;
}

.quote::after {
  bottom: -40px;
  right: -40px;
}

/* Underline */
.quote-underline {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  margin: 2rem auto;
  animation: quoteUnderline 2s ease-out 1s both;
}

@keyframes quoteUnderline {
  to {
    width: 120px;
  }
}

/* Author */
.quote-author {
  font-weight: 600;
  color: var(--gold, #f7c66c);
  font-size: 1.2rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .quote {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .quote-section {
    padding: 4rem 1.5rem;
  }

  .quote {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .quote::before {
    top: -10px;
    left: -20px;
    font-size: 3rem;
  }

  .quote::after {
    bottom: -20px;
    right: -20px;
    font-size: 3rem;
  }

  .quote-author {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .quote {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  .quote::before,
  .quote::after {
    display: none;
    /* Hide big quotes on very small screens */
  }

  .quote-underline {
    margin: 1.5rem auto;
  }

  .quote-author {
    font-size: 1rem;
  }
}

/* end */



/* Section Styles */
.section {
  padding: 2rem 2rem;
}

/* .container {
            max-width: 1400px;
            margin: 0 auto;
        } */

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--grey-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-timeline {
  font-size: 1.2rem;
  text-align: center;
  /* margin-bottom: 4rem; */
  color: var(--grey-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-timeline-2 {
  font-size: 1.7rem;
  text-align: center;
  /* margin-bottom: 4rem; */
  color: #0090ff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



/* What Is Section */
.what-is {
  background: var(--white);
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  /* vertically align items within each grid row */
  justify-content: center;
  /* center the grid itself in the container */
}

.section.what-is {
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  text-align: center;
  /* center text inside child elements */
  /* min-height: 20vh; */
  /* optional: make it take full screen height */
}

.section .what-is-two {
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  text-align: center;
}

/* .what-is-two h3,p {
 display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
} */

.what-is-text h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.what-is-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


 .audience-card h3{
  font-size: 1.2rem;
}

.highlight-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.journey-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  background: var(--grey-bg);
  border-radius: 20px;
  position: relative;
}

.journey-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.journey-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(247, 198, 108, 0.3);
}

.journey-step:hover .journey-circle {
  transform: scale(1.1);
}

.journey-arrow {
  font-size: 2.5rem;
  color: var(--gold);
  margin: 0 1rem;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

/* Who This Is For */
.target-audience {
  background: var(--grey-bg, #f9f9f9);
  padding: 6rem 2rem;
}

/* Grid */


.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* always 3 per row */
  gap: 2rem;
  justify-content: center;
  align-items: center;
  
}

.audience-grid .step-card:nth-last-child(2),
.audience-grid .step-card:last-child {
  grid-column: span 1;
  justify-self: center;   /* centers last 2 */
}

/* Card */
.audience-card {
  background: var(--white, #fff);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition, all 0.3s ease);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  transform: scaleX(0);
  transition: var(--transition, all 0.3s ease);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Icon */
.audience-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  transition: var(--transition, all 0.6s ease);
}

.audience-card:hover .audience-icon {
  transform: rotateY(360deg);
}/* Who This Is For */
.target-audience {
  background: var(--grey-bg, #f9f9f9);
  padding: 6rem 2rem;
}

/* Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  justify-content: center;
}

/* Last two cards center alignment (desktop only) */
.audience-grid .step-card:nth-last-child(2),
.audience-grid .step-card:last-child {
  grid-column: span 1;
  justify-self: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.audience-card {
  background: var(--white, #fff);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition, all 0.3s ease);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  transform: scaleX(0);
  transition: var(--transition, all 0.3s ease);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Icon */
.audience-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  transition: var(--transition, all 0.6s ease);
}

.audience-card:hover .audience-icon {
  transform: rotateY(360deg);
}

/* --- Achievements Section --- */
.achievements {
  background: linear-gradient(rgba(11, 27, 43, 0.05), rgba(11, 27, 43, 0.05)),
    url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 5rem 2rem;
}

/* Grid Layout */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Achievement Card */
.achievement-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition, all 0.3s ease);
  backdrop-filter: blur(10px);
}

.achievement-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

/* Checkmark */
.achievement-check {
  color: var(--gold, #f7c66c);
  font-size: 1.8rem;
  margin-right: 1.5rem;
  font-weight: bold;
  min-width: 30px;
  flex-shrink: 0;
}

/* Text */
.achievement-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .achievements {
    padding: 4rem 1.5rem;
  }

  .achievement-item {
    padding: 1.8rem;
  }

  .achievement-text {
    font-size: 1rem;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    /* single column */
    gap: 1.5rem;
  }

  .achievement-item {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .achievement-check {
    font-size: 1.5rem;
    margin-right: 1rem;
  }

  .achievement-text {
    font-size: 1rem;
  }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
  .achievements {
    padding: 3rem 1rem;
  }

  .achievement-item {
    flex-direction: row;
    /* keep check left, text right */
    align-items: flex-start;
    padding: 1.2rem;
  }

  .achievement-check {
    font-size: 1.3rem;
    margin-right: 0.8rem;
  }

  .achievement-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Live Mentoring */
/* --- Live Mentoring Section --- */
.live-mentoring {
  background: var(--white);
  padding: 5rem 2rem;
}

/* Content Grid */
.mentoring-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image */
.mentor-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mentor-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition, all 0.4s ease);
}

.mentor-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Info */
.mentor-info h3 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mentor-title {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.mentor-info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--grey-text, #666);
  line-height: 1.6;
}

/* Benefits List */
.mentoring-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentoring-benefits li {
  position: relative;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  padding: 1rem;
  background: var(--grey-bg, #f8f8f8);
  border-radius: 10px;
  transition: var(--transition, all 0.3s ease);
}

.mentoring-benefits li::before {
  content: "•";
  color: var(--gold, #f7c66c);
  font-size: 1.5rem;
  margin-right: 1rem;
  line-height: 1;
}

.mentoring-benefits li:hover {
  background: var(--gold, #f7c66c);
  color: var(--navy, #0b1b2b);
  transform: translateX(10px);
}

.mentoring-benefits li:hover::before {
  color: var(--navy, #0b1b2b);
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .mentoring-content {
    gap: 3rem;
  }

  .mentor-info h3 {
    font-size: 2rem;
  }

  .mentor-title {
    font-size: 1.2rem;
  }

  .mentor-info p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .mentoring-content {
    grid-template-columns: 1fr;
    /* stack */
    gap: 2.5rem;
  }

  .mentor-image img {
    height: 350px;
    /* smaller image */
  }

  .mentor-info h3 {
    font-size: 1.8rem;
  }

  .mentor-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .mentor-info p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .mentoring-benefits li {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .mentoring-benefits li::before {
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
  .live-mentoring {
    padding: 3rem 1rem;
  }

  .mentor-image img {
    height: 280px;
  }

  .mentor-info h3 {
    font-size: 1.6rem;
  }

  .mentor-info p {
    font-size: 0.95rem;
  }

  .mentoring-benefits li {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}

/* --- Timeline Container --- */
.framework-timeline {
  position: relative;
  margin: 4rem 0;
}

/* Vertical Line */
.framework-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* --- Timeline Item Layout --- */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* --- Number Circle --- */
.timeline-number {
  position: absolute;
  top: -5%;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold, #f7c66c), var(--gold-dark, #d9a94f));
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--white),
    0 8px 25px rgba(247, 198, 108, 0.35);
}

/* --- Card Styling --- */
.timeline-content {
  background: var(--white, #fff);
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--gold, #f7c66c);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* --- Title --- */
.timeline-content h3 {
  color: var(--navy, #0b1b2b);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* --- Description --- */
.timeline-content p {
  color: #555;
  line-height: 1.6;
}

/* --- Outcome Tag --- */
.timeline-outcome {
  display: inline-block;
  background: var(--grey-bg, #f8f8f8);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold, #f7c66c);
  border: 1px solid rgba(247, 198, 108, 0.4);
}

/* --- Connecting Lines --- */
.timeline-item:nth-child(odd) .timeline-content::before,
.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  width: 40px;
  height: 2px;
  background: var(--gold, #f7c66c);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -40px;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .timeline-content {
    padding: 1.8rem;
  }
}

/* --- Mobile Stack & Overlap (force overrides) --- */
@media (max-width: 768px) {
  .framework-timeline::before {
    display: none !important;
  }

  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 42px 0 28px !important;
    display: block;
    overflow: visible;
  }

  /* Number circle centered, overlapping card */
  .timeline-number {
    bottom: 20px;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 64px;
    height: 64px;
    margin: 0 auto -32px !important;
    /* negative bottom = overlap */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    /* stay above card */
  }

  /* Card with top gold bar (no side bar, no connectors) */
  .timeline-content {
    position: relative;
    padding: 18px 16px !important;
    border-left: 0 !important;
    border-top: 5px solid var(--gold, #f7c66c) !important;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    background: #fff;
  }

  .timeline-item .timeline-content::before {
    display: none !important;
  }
}

/* Small phones */
@media (max-width:480px) {
  .timeline-number {
    width: 52px;
    height: 52px;
    margin: 0 auto -26px !important;
    font-size: 1rem;
  }

  .timeline-content {
    padding: 14px 12px !important;
    border-top-width: 4px !important;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: .9rem;
  }

  .timeline-outcome {
    font-size: .85rem;
    padding: .4rem .7rem;
  }
}

/* Methodology */
.methodology {
  background: var(--grey-bg);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.methodology-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.methodology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
}

.methodology-card:hover::before {
  left: 0;
}

.methodology-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.methodology-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Journey Steps */
.journey-steps {
  background: var(--white);
}

/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}

/* Center last two cards (desktop only) */
.steps-grid .step-card:nth-last-child(2),
.steps-grid .step-card:last-child {
  grid-column: span 1;
  justify-self: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* remove centering logic on mobile to avoid misalignment */
  .steps-grid .step-card:nth-last-child(2),
  .steps-grid .step-card:last-child {
    justify-self: stretch;
  }
}

/* Card */
.step-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.methodology-card, h3 {
  font-size: 20px;
}

.highlight-text-common {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #007BFF, #00BFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(247, 198, 108, 0.2);
}

/* Icon */
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}

/* Titles */
.step-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.step-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--grey-text);
  line-height: 1.6;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
}
