/* MOBILE: force vertical stacking and re-order IMPLEMENT before REVIEW */
@media (max-width: 900px) {

  /* ensure the wrapper becomes a column and children are flex items */
  .steps-wrap .steps {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    gap: 20px; /* optional spacing */
  }

  /* make each step full width and reset order baseline */
  .steps-wrap .steps .step {
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
    margin-bottom: 0 !important;
  }

  /* custom mobile order: implement before review (review becomes last) */
  .steps-wrap .steps .step--implement {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .steps-wrap .steps .step--review {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
}
  /*
    Fonts
    HEADINGS
        font-family: craw-modern-urw, serif;
        Regular - font-weight: 400;
        Bold - font-weight: 700;
        
        Body
        font-family: poppins, sans-serif;
        Light - font-weight: 300;
        Regular - font-weight: 400;
        Bold - font-weight: 700;

  */

/* ============================================
   RESET & GLOBAL STYLES
============================================ */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  background-color: #1e1e1e;
}

h1, h2, h3 {
  font-family: "craw-modern-urw", serif;
  font-weight: 300;
  font-style: bold;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  background-color: #111;
  padding: 1.2rem 0;
  text-align: center;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar li {
  text-align: center;
}

.navbar a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar a:hover {
  color: #e03a7d;
}

/* LOGO */
li.logo {
  position: relative;
  display: block;
  bottom: 10px;
}

.logo {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 5px;
}

.logo span {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  color: #ccc;
  font-family: "craw-modern-urw", serif;
  font-style: italic;
  position: relative;
  bottom: 3px;
  letter-spacing: 0;
}

.logo-icon {
  width: 260px;
  max-width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  background-color: #4d4d4d;
  text-align: center;
  padding: 300px 1rem 100px;
  position: relative;
}

.hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero .video-container video {
      width: 100%;
    height: 100%;
    display: block;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    image-rendering: auto;
          -o-object-fit: cover;
        font-family: "object-fit:cover;object-position:center";
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
}

.hero .video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20); /* 15% black tint */
  pointer-events: none;
}


.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
  font-style: italic;
}

.btn-primary {
  background-color: #db1f73;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 2rem;
  font-weight: 400;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #c82c68;
}

.hero p{
  padding-bottom: 20px;
}

/* ============================================
   TRUSTED SECTION
============================================ */
.trust-section {
  background-color: #db1f73;
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid #db1f73;
}

.trust-section h2 {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.trust-section p {
  max-width: 1280px;
  margin: 1rem auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
  text-align: center;
  padding: 4rem 1.5rem;
  background-image: url(../Images/forbespattern_aw.png);
  background-size: 101%;
  background-size: auto;   /* ← keeps original image size */
  background-repeat: repeat; /* optional, if you want the pattern to tile */
}

.about h2 {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about p {
  max-width: 1280px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.7;
}

.about-buttons {
  margin: 2rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1300px;
}

.btn-secondary {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-align: center;
  width: 100%;
}

.btn-secondary:hover {
  background-color: #e03a7d;
}

/* ============================================
   TEAM SECTION
============================================ */
.team-dropdown {
  display: none;
  background: #e03a7d;
  padding: 40px 0;
  margin: 2rem auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  max-width: 1300px;
  width: 100%;   /* responsive */
}


.team-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  width: 90%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}


.team-card {
  background: none !important;
  padding: 0 !important;
  cursor: pointer;
  text-align: left;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 23%;
  margin: 1%;
  position: relative;
  height: auto;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.team-card:before{
  content: "";
  background: #1c1c1c;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.team-card:after{
  content: "";
  width: 0px;
   height: 0px;
   border-style: solid;
   border-width: 0 25px 40px 25px;
   border-color: transparent transparent #2B2B2B transparent;
   -webkit-transform: rotate(0deg);
       -ms-transform: rotate(0deg);
           transform: rotate(0deg);
      position: absolute;
    left: calc(50% - 25px);
    bottom: -50px;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.team-card.active:after {
  opacity: 1;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

@media only screen and (min-width:1000px){
  .team-card:hover {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

.team-card img {
  width: 70%;
  margin: 0 auto;
  display: block;
  position: relative;
  left: 55px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.Team {
  text-align: left;
  position: relative;
  bottom: 0;
}

.meet-close {
  position: absolute;
  cursor: pointer;
  font-size: 26px;
  color: white;
  right: 20px;
  top: 20px;
}

.team-inner {
  position: relative;
   /* your grey box */
  overflow: hidden;
  border-radius: 4px;
}

.team-inner .text {
  padding: 20px;
  background: #1c1c1c;
}

.team-inner .image {
  display: block;
  position: relative;
  border-bottom: 4px solid #646464;
}

.team-inner .image:before{
  content: "";
  background: #1c1c1c;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
}

.meet-button-wrap {
  position: relative;
  display: inline-block;
  width: 48%;
}

/* SHARED BIO BOX BELOW GRID */
.team-bio {
  max-width: 1300px;
  left: 6%;
  background: #2b2b2b;
  padding: 3rem 2rem;
  border-radius: 0px;
  display: none;
  color: #fff;
  line-height: 1.6;
  width: 88%;
  position: absolute;
}

.team-bio .close{
  position: absolute;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: white;
    right: 15px;
    top: 15px;
}

.role {
  font-style: italic;
  color: #555;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0px;
}

.desc-content {
  display: none;
  background: #ffffff;
  padding: 16px 20px;
  margin-top: 14px;
  border-radius: 6px;
  -webkit-box-shadow: 0 6px 18px rgba(0,0,0,0.15);
          box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: left;
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
  width: 100%;
}

.name{
  bottom: 0px;
  position: relative;
}

/* ============================================
   WHAT WE DO SECTION
============================================ */
.what-we-do {
  border-top: 5px solid #db1f73;
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.what-we-do h2 {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.what-we-do .subtitle {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-family: "Poppins";
}

.what-we-do p {
  max-width: 1300px;
  margin: 0.8rem auto;
  line-height: 1.6;
  color: #ffffff;
}

.pop-p {
  color: white;
  position: relative;
  text-align: left;
}

.pop-h3 {
  color: white;
  position: relative;
  text-align: left;
  font-family: "Poppins";
  max-width: 1300px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cv-button-wrap{
  position: relative;
  display: inline-block;
  width: 48%;
}

/* ============================================
   TIMELINE SECTION (Pink Diamonds)
============================================ */
.timeline {
  width: 100vw;          
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;    
  margin-right: -50vw;
  padding: 3rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #db1f73;
  z-index: 0;
  top: 49%;
}

.timeline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background-color: #555; 
  z-index: 0;
  opacity: 0.4; 
  width: 100%;
  bottom: 35%;
}

.timeline-inner {
  max-width: 1300px;      
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  position: relative;
  z-index: 2;
  padding-top: 40px;             
}

.diamond {
  background-color: #db1f73;
  color: #fff;
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  z-index: 999;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 4px solid #000000; 
  -webkit-box-sizing: border-box; 
          box-sizing: border-box;  
}

.diamond span {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); 
  display: inline-block;
  line-height: 17px;
}

.diamond:hover {
  background-color: rgb(163, 14, 71);
  -webkit-transform: rotate(45deg) scale(1.05);
      -ms-transform: rotate(45deg) scale(1.05);
          transform: rotate(45deg) scale(1.05);
}

@media (max-width: 2200px) {
  .timeline::before,
  .timeline::after {
    display: none;
  }
}

/* ============================================
   HOW WE DO IT SECTION
============================================ */
.how-we-do-it {
  background-color: #f7f7f7;
  color: #333;
  padding: 4rem 2rem;
  position: relative;
}

.how-we-do-it::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid #f7f7f7;
}

.how-we-do-it h2 {
  color: #db1f73;
  font-style: italic;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: "craw-modern-urw", serif;
}

.how-we-do-it .subtitle {
text-transform: uppercase;
font-size: 1.1rem;
letter-spacing: 1px;
margin-bottom: 1.5rem;
color: #1c1c1c;
font-family: "Poppins";
}

.how-we-do-it p {
  max-width: 800px;
  margin: 0.5rem auto 2rem auto;
  line-height: 1.6;
  text-align: center;
}

.icons {
  position: relative;
  position: block;
  bottom: 120px;
  right: 145px;
}

img.implement {
  right: 10px;
  position: relative;
}



/* ============================================
   STEPS & TRIANGLES SECTION
============================================ */
.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 1300px;   
  width: 100%;         
  margin: 0 auto;      
  justify-items: center; 
  -webkit-box-pack:justify; 
      -ms-flex-pack:justify; 
          justify-content:space-between;
}

.steps .step {
  position: relative;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  padding: 44px 48px;
  border-radius: 6px;
  overflow: visible; 
  -webkit-box-shadow: 0 12px 30px rgba(0,0,0,0.12); 
          box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  color: #fff;
  height: auto;
}

.step--tr, .step--bl { background: #e25987; }
.step--tl, .step--br { background: #db1f73; }

.steps .step h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.steps .step p {
  margin: 0; 
  line-height: 1.35; 
  font-size: 0.98rem; 
  color: rgba(255,255,255,0.95); 
  position: relative; 
  text-align: left;
  z-index: 4;
}

/* Triangle elements for visual design */
.triangleDiscover, .triangleDiscover2,
.triangleDesign, .triangleDesign2,
.triangleImplement, .triangleImplement2,
.triangleR-A, .triangleR-A2,
.triangle-pop, .triangle-meet {
  width: 0;
  height: 0;
  border-style: solid;
}

/* ─────────────── DISCOVER → DESIGN ─────────────── */

.triangleDiscover {
  position: absolute;
  top: calc(50% - 25px);
  right: -35px;
  border-width: 35px 0 35px 35px;
  border-style: solid;
  border-color: transparent transparent transparent #db1f73;
  z-index: 2;
}

.triangleDiscover2 {
  position: absolute;
  top: calc(50% - 28px);
  right: -42px;
  border-width: 38px 0 38px 42px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}


/* ─────────────── DESIGN → REVIEW (BOTTOM ARROW) ─────────────── */

.triangleDesign {
  position: absolute;
  left: calc(10% - 25px);
  bottom: -35px;
  border-width: 35px 35px 0 35px;
  border-style: solid;
  border-color: rgb(226, 89, 135) transparent transparent transparent;
  z-index: 2;
}

.triangleDesign2 {
  position: absolute;
  left: calc(10% - 30px);
  bottom: -42px;
  border-width: 42px 40px 0 40px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}


/* ─────────────── IMPLEMENT → REVIEW (LEFT ARROW) ─────────────── */

.triangleImplement {
  position: absolute;
  top: calc(50% - 25px);
  left: -35px;
  border-width: 35px 35px 35px 0;
  border-style: solid;
  border-color: transparent #db1f73 transparent transparent;
  z-index: 2;
}

.triangleImplement2 {
  position: absolute;
  top: calc(50% - 28px);
  left: -42px; 
  border-width: 38px 42px 38px 0;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
  z-index: 1;
}


/* ─────────────── REVIEW → DISCOVER (TOP ARROW) ─────────────── */

.triangleR-A {
  position: absolute;
  top: -35px;
  left: calc(10% - 25px);
  border-width: 0 35px 35px 35px;
  border-style: solid;
  border-color: transparent transparent #e25987 transparent;
  z-index: 2;
}

.triangleR-A2 {
  position: absolute;
  top: -42px;
  left: calc(10% - 30px);
  border-width: 0 40px 42px 40px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  z-index: 1;
}



.triangle-meet {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 30px;
  border-color: transparent transparent #e03a7d transparent;

  position: absolute;
  top: 108%;          /* sits directly under the button */
  left: 50%;          /* center horizontally */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);  /* perfect centering */
  z-index: 999;
  display: none;      /* hidden until popup opens */
}

/* When popup is open, show arrow */
#teamDropdown.active + .triangle-meet {
  display: block;
}

.triangle-cv {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 30px;
  border-color: transparent transparent #e03a7d transparent;

  position: absolute;
  top: 108%;          /* sits directly under the button */
  left: 50%;          /* center horizontally */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);  /* perfect centering */
  z-index: 999;
  display: none;
}

.solution-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px; /* size */
  border-color: transparent transparent #ffffff transparent;

  position: absolute;
  bottom: -18px;  /* sits under tile */
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;   /* hidden until tile clicked */
  z-index: 999;
}

.help-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 28px 22px; /* triangle size */
  border-color: transparent transparent #ffffff transparent;

  position: absolute;
  bottom: -28px;
  left: 50%;         /* center it */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  display: none;     /* hidden until clicked */                               
}


/* ============================================
   VOUCHEDFOR SECTION
============================================ */
.vouchedfor {
  width: 100%;
  background-color: #ffffff;
  padding: 3rem 0;
}

.vouchedfor-img {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: block;
}

/* ============================================
   WHO WE HELP SECTION
============================================ */
.who-we-help {
  background: #db1f73;
  padding: 4rem 2rem;
  text-align: center;
}

.who-we-help h2 {
  font-family: "craw-modern-urw", serif;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #fff;
}

.help-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.help-card {
  background: #111;
  border-radius: 2px;
  -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.2);
          box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  position: relative;
  cursor: pointer;
  display:inline;
}

/* White active state */
.help-card.active-button .help-text {
  background: #ffffff;
}

.help-card.active-button .help-text h3,
.help-card.active-button .help-text p {
  color: #000;
}

.help-card.active{
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.help-card:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  cursor: pointer;
}

.help-card img {
  width: 100%;
  height: auto;
  display: block;
}

.help-text {
  background: #111;
  padding: 1.8rem 1rem;
  color: #fff;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.active .help-text {
  color:#fff;
  background: #111;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.help-text h3 {
  font-family: "craw-modern-urw", serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-style: italic;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.help-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
   -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.active .help-text p{
  color: #ffffff;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  cursor: pointer;
}

.help-card img:hover {
  cursor: pointer;
}

.help-info-box {
  display: none;
  max-width: 1300px;
  margin: 10px auto 0;
  background: #fff;
  padding: 50px 50px 50px 50px;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 18px rgba(0,0,0,0.15);
          box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: left;
  position: absolute;
  z-index: 100;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); /* centres it */
  width: 93.5%;
}

.help-card.active-button .help-text {
  background: #ffffff !important;
  color: #000 !important;
}

.help-card.active-button .help-text h3,
.help-card.active-button .help-text p {
  color: #000 !important;
}

.help-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  color: #1c1c1c;
  cursor: pointer;
  z-index: 10;
}

/* ============================================
   FINANCIAL SOLUTIONS SECTION
============================================ */
.financial-solutions {
  background: #000000;
  color: #fff;
  padding: 48px 0;
  border-top: 6px solid #db1f73;
}

.financial-solutions .container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.solutions-title {
  font-family: "craw-modern-urw", serif;
  font-style: italic;
  color: #fff;
  text-align: center;
  margin: 0 0 28px;
  font-size: 1.6rem;
  font-weight: 400;
}

.solutions-tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.tile {
  background: #424242;
  color: #fff;
  padding: 18px 28px;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  -webkit-box-shadow: 0 6px 18px rgba(0,0,0,0.25);
          box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}

.tile span {
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3;
  font-size: 0.95rem;
  color: #ffffff;
}

.tile-info {
  display: none;
  background: #fff;
  color: #000;
  padding: 18px;
  margin-top: 12px;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 18px rgba(0,0,0,0.18);
          box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  text-align: left;
  width: 100%;
}

.solutions-info-box{
  color: black;
  background-color: white;
  margin-top: 10px;
  position: absolute;
  z-index: 1000;
  max-width: 1300px;
  padding: 50px;
  display: none;
}

.tile-info p { margin: 0; line-height: 1.6; font-size: 0.95rem; }

.tile::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  height: 6px;
  background: #db1f73;
  bottom: 0px;
}

.tile.active span {
  color: #000 !important;
}

.tile.active{
  background: #ffffff !important;
}

.protectionp, .investmentp, .retirementp,
.womenp, .inheritencep {
  position: relative;
  padding: 10px;
}

.pinktitles{
  color: #db1f73;
  font-weight: 600;
}

.tile:hover { -webkit-transform: translateY(-6px); -ms-transform: translateY(-6px); transform: translateY(-6px); -webkit-transition: -webkit-transform .22s ease; transition: -webkit-transform .22s ease; transition: transform .22s ease; transition: transform .22s ease, -webkit-transform .22s ease; }

.solutions-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  color: #2e2e2e; /* your pink */
  cursor: pointer;
  z-index: 10;
}


/* ============================================
   FINANCIAL ADVICE SECTION
============================================ */
.financial-advice {
  background-color: black;
  color: white;
  text-align: center;
  position: relative;
  padding: 4rem 2rem;
  border-bottom: 6px solid #db1f73;
}

.financial-advice h2 {
  font-family: "craw-modern-urw", serif;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #fff;
}

.api {
  max-width: 1300px;
  width: 100%;
}

.map-desc {
  max-width: 1300px;
  margin: 0.8rem auto;
  color: #ccc;
  line-height: 1.7;
  font-size: 19px;
}

/* Small downward triangle (shared mobile style) */
.mobileArrow {
  position: absolute;
  left: calc(10% - 30px);
  bottom: -42px;
  border-width: 42px 40px 0 40px;
  border-style: solid;
  border-color: #db1f73 transparent transparent transparent;
  z-index: 999;
  display: none;
}

.step:nth-child(2) .mobileArrow {
  border-color: rgb(226, 89, 135) transparent transparent transparent;  
}

.mobileArrow2 {
  position: absolute;
  left: calc(10% - 30px);
  bottom: -47px;
  border-width: 42px 40px 0 40px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
  display: none;
}


/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 4rem 0rem;
  max-width: 1300px;
  width: 100%;
  position: relative;
  display: block;
  margin: 0 auto; 
  font-size: 12px;
}

@media (max-width:1200px){
  .footer {
    padding: 4rem 20px 0;
  }
}

.signiture {
  font-weight: 600;
}

.SJP-Logo {
  width: 150px;
  height: 150px;
  float: right;
  position: relative;
  top: -80px;
}

.footer-link{
  font-size: 14px;
  color: white;
}

.contact{
  color: white;
}

/* ============================================
   CORE VALUES POPUP
============================================ */
.core-values-popup {
  display: none;
  width: 100%;
  margin: 2rem auto;
  background: #e03a7d;
  padding: 60px;
  color: #fff;
  position: relative;
  position: absolute;
  border-radius: 4px;
  z-index: 1000;
  left: 50%;                       /* move it to the center */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1300px;
}

.cv-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 26px;
  color: white;
}

.core-hr {
  border: none;
  border-bottom: 1px solid #fff;
  margin: 40px 0;
  width: 100%;
  position: relative;
}

.core-arrow {
  display: none;
  font-size: 28px;
  margin-left: 10px;
  color: #e03a7d;
  position: relative;
  top: 3px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.active-button,
.active-button button {
  background: #ffffff !important;
  color: #000000 !important;
}

/* Bottom fixed banner */
#contact-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ff4081; /* bright/pink banner */
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 300;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

#contact-banner a {
  color: #ffffff;
  text-decoration: none;
}

#contact-banner.hidden {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}



/* ============================================
   MOBILE / RESPONSIVE RULES
============================================ */



@media (max-width: 1000px) {
 

  .triangle-pop {
    display: none !important;
  }
}

@media (max-width:1300px) {
  .triangle-meet{
    position: relative;
  }
}

@media (max-width:950px){
  .team-card {
    width: 31.333%;
  }
}

@media (max-width:900px){
.cv-button-wrap,.meet-button-wrap{
  width: 100%;
}

  .desc-content { display: none; }

 

  .pop-h3 { right: 0px; position: relative; font-weight: 600; }

  .timeline { gap: 0; }
  .diamond { width: 90px; height: 90px; font-size: 0.8rem; }


}

/* hide triangle on mobile for clean stacking */
@media (max-width: 900px) {
  .help-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .steps .step {
    width: 100% !important;
    padding: 40px 20px;
  }
}


/* Hide side diamonds on mobile */
@media (max-width: 900px) {

  .step--tl::before, .step--tr::before, .step--bl::after, .step--br::after {
    display: none;
  }

}

@media (max-width: 768px) {
  /* Timeline smaller adjustments already covered */

  .triangle-meet,.triangle-cv {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .mobile-bio { display: block; }
  .footer {
    padding: 2rem 1rem;
    font-size: 10px;
    width: 100%;
    max-width: 800px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
  }
  .footer p { line-height: 1.4; margin-bottom: 1rem; }
}

@media (max-width: 520px) {
  .solutions-tiles { gap: 12px; }
  .tile { min-width: 0; max-width: 100%; }
  .tile::after { left: 24px; right: 24px; }
}

@media (max-width: 900px) {
  .solutions-info-box {
    width: 90%;
    left: 5%;
    display: block;  /* default */
    margin-top: 10px;
  }
}

@media (max-width: 1300px) {
  .solutions-info-box {
    width: 90%;
        left: 5%;
    display: block;  /* default */
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
.triangle-meet {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 30px 20px;
  border-color: transparent transparent #e03a7d transparent;

  position: absolute;
  top: 108%;          /* sits directly under the button */
  left: 50%;          /* center horizontally */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);  /* perfect centering */
  z-index: 999;
  display: none;      /* hidden until popup opens */
}

.mobileArrow {
  display: block;
}
.mobileArrow2 {
  display: block;
}


}

@media (max-width: 1300px) {
.triangle-meet {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 30px;
  border-color: transparent transparent #e03a7d transparent;

  position: absolute;
  top: 108%;          /* sits directly under the button */
  left: 50%;          /* center horizontally */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);  /* perfect centering */
  z-index: 999;
  display: none;      /* hidden until popup opens */
}
}

/* Tablets */
@media (max-width: 900px) {
  .team-card img {
    width: 60%;
    bottom: 10px;
  }

  .triangleDiscover,
.triangleDiscover2,
.triangleDesign,
.triangleDesign2,
.triangleImplement,
.triangleImplement2,
.triangleR-A,
.triangleR-A2 {
  display: none !important;
}

.steps {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .steps .step {
    width: 100% !important;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; /* default */
  }

  /* Mobile re-order */
  .step--implement {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .step--review {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

}

/* Mobile Phones */
@media (max-width: 600px) {
  .team-dropdown {
    padding: 20px 0;
  }

  .team-card img {
    width: 55%;
    bottom: 5px;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* keep layout */
  }
  .navbar li:not(.logo) {
    display: none; /* hide all EXCEPT logo */
  }

  

  .core-values-popup {
    width: calc(100% - 40px);
  }

  .logo-icon {
    width: 180px !important;
  }

  .help-arrow,.solution-arrow {
    display: none !important;
  }
  
  .help-info-box {
    width: calc(100% - 4rem);
    padding: 50px 20px;
  }
}

@media (max-width: 900px) {
  .about-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .triangle-meet {
    display: none !important;
  }
}


/* ============================================
   FONT / TYPOGRAPHY CLASSES
============================================ */
.Protection, .Investment, .Retirement, .Women {
  font-family: Poppins;
  font-weight: 600;
  padding: 10px;
}

.Protectionp, .Investmentp, .Retirementp, .Womenp {
  font-family: Poppins;
  padding: 10px;
}

.Retire-pink { font-weight: 600; color: #db1f73; }
.families { color: black; }



/************** MOBILE NAV STYLES ***************/
#mobile-header {
    display: none;
   
}

#mobile-header svg {
    width: 80px;
    height: 100%;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#mobile-header path {
    fill: none;
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    stroke-width: 60px;
    stroke-linecap: round;
    stroke: #fff;
    stroke-dashoffset: 0px;
}

#mobile-header .cross path#top, #mobile-header .cross path#bottom {
    stroke-dashoffset: -650px;
    stroke-dashoffset: -650px;
}

#mobile-header .cross path#middle {
    stroke-dashoffset: -115px;
    stroke-dasharray: 1px 220px;
}

#mobile-header path#top, #mobile-header path#bottom {
    stroke-dasharray: 240px 950px;
}

#mobile-header path#middle {
    stroke-dasharray: 240px 240px;
}

#mobile-header .cross path#top, #mobile-header .cross path#bottom {
    stroke-dashoffset: -650px;
    stroke-dashoffset: -650px;
}

#mobile-header .cross path#middle {
    stroke-dashoffset: -115px;
    stroke-dasharray: 1px 220px;
}

.sidr {
    position: fixed;
    top: 134px;
    min-height: 100vh;
    min-height: calc(100dvh - 134px);
    height: 100%;
    z-index: 9999999;
    width: 80%;
    left: -100%;
    overflow-x: none;
    overflow-y: auto;
    background: #000;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.sidr .main {
    height: 100dvh;
    height: calc(100dvh - 134px);
    padding: 30px;
    overflow: scroll;
    margin: 0;
}

.sidr .main .menu {
    padding: 0;
    margin: 0;
}

.sidr .main .menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidr .main .menu li a {
    display: block;
    text-align: left;
    padding: 10px 0;
    position: relative;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255, 0.6);
}



@media (max-width: 768px) {
#mobile-header {
    display: block;
  }

  li.logo {
    bottom: 0;
  }

  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.2rem 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  body {
    padding-top: 134px;
  }

  .solutions-info-box {
    width: 100%;
    left: auto;
    right: auto;
    padding: 10px;
  }
}


@media (max-width:800px){
  .team-dropdown {
    position: relative;
  }

  .team-card {
    width: 48%;
  }

  .team-card.active {
    opacity: 1;
    -webkit-transition: all ease 0.6s;
    transition: all ease 0.6s;
  }

  .team-card.inactive {
    opacity: 0.4;
    -webkit-transition: all ease 0.6s;
    transition: all ease 0.6s;
  }
}

@media (max-width:750px){
  .team-card {
    width: 98%;
  }

}

/*************************************************************************/

/************************** Cookie Law STYLES ****************************/

/*************************************************************************/

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 10px;
}
.col-1-5 {
    width: 18%;
    margin: 1%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.col-4-5 {
    width: 78%;
    margin: 1%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
@media only screen and (max-width: 600px) {
    .col-1-5, .col-4-5 {
        width: 98%;
        margin: 1%;
        margin-bottom: 40px;
    }
  }

#cookie-law {
    border-top: 1px solid #D5502D;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: #000;
}
#cookie-law p, #cookie-law p a {
    color: #fff;
    font-size: 12px;
    line-height: 14px;
}

#cookie-law .button{
    width:auto;
}

