/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.gemba-nav-header {
    position: sticky;
    top: 0;
    z-index: 999;

    padding: 16px 20px;
    border-bottom: 1px solid transparent;

    background: transparent;
    transition: all 0.3s ease;
}

/* Added when scrolling */
.gemba-nav-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.gemba-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.gemba-nav-logo img {
    max-width: 250px;
}
.gemba-nav-logo {
    max-width: 250px;
}


.gemba-nav-title {
  font-size: 20px;
  font-weight: 600;
}

.gemba-nav-blue {
  color: #1E3A8A;
}

.gemba-nav-green {
  color: #16A34A;
  margin-left: 4px;
}

.gemba-nav-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  color: #666;
}

/* Menu */
.gemba-nav-menu {
  display: flex;
  gap: 40px;
}

.gemba-nav-menu a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.gemba-nav-menu a.active {
  color: #16A34A;
}

/* CTA */
.gemba-nav-btn {
  background: #16A34A;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.gemba-nav-arrow {
  background: #fff;
  color: #16A34A;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 14px;
}

/* Hamburger */
.gemba-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.gemba-nav-toggle span {
  width: 22px;
  height: 2px;
  background: #000;
}



/* Mobile 
@media (max-width: 768px) {
  .gemba-nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .gemba-nav-menu.active {
    display: flex;
  }

  .gemba-nav-cta {
    display: none;
  }

  .gemba-nav-toggle {
    display: flex;
  }
}

*/

/* MOBILE NAV */
@media screen and (max-width: 991px){

  .gemba-nav-container{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .gemba-nav-toggle{
    display:flex;
    width:30px;
    height:22px;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:9999;
    position:relative;
  }

  .gemba-nav-toggle span{
    width:100%;
    height:2px;
    background:#000;
    transition:0.3s ease;
  }

  /* HIDDEN BY DEFAULT */
  .gemba-nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;

    background:#0C0C31;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    transition:0.4s ease;
    z-index:9998;
  }

  /* OPEN STATE */
  .gemba-nav-menu.active{
    right:0;
  }

  .gemba-nav-menu a{
    color:#fff;
    font-size:24px;
    text-decoration:none;
  }

  /* CLOSE ICON */
  .gemba-nav-toggle.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
    background:#fff;
  }

  .gemba-nav-toggle.active span:nth-child(2){
    opacity:0;
  }

  .gemba-nav-toggle.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
    background:#fff;
  }

  .gemba-nav-cta{
    display:none;
  }
}


.gemba-hero {
  background: #0C0C31;
  color: #fff;
  padding: 80px 20px;
}

.gemba-container {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.gemba-container-caro {
  max-width: 1250px;
  margin: 0 auto;
	position: relative;
  align-items: center;
}
/* LEFT */
.gemba-left {
  max-width: 480px;
	position:relative;
}

.gemba-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

/* Rotating pill */
.gemba-rotator {
    display: inline-block;
    /* margin-top: 16px; */
    /* padding: 0px 28px; */
    /* border: 1px solid #16A34A; */
    /* border-radius: 40px; */
    overflow: hidden;
    height: 60px;
    vertical-align: middle;
}

.gemba-logo-item img {width:200px;}
.gemba-words {
  display: flex;
  flex-direction: column;
  animation: gembaRotate 6s infinite;
}

.gemba-words span {
  height: 60px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  color: #16A34A;
  font-size: 50px;
  font-weight: 800;
  text-align:left;
}

/* Animation */
@keyframes gembaRotate {
  0%, 20% { transform: translateY(0); }
  33%, 53% { transform: translateY(-60px); }
  66%, 86% { transform: translateY(-120px); }
  100% { transform: translateY(0); }
}

.gemba-subtext {
  margin-top: 24px;
  font-size: 14px;
  color: #ccc;
}

/* GRID */
.gemba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
.gemba-nav-container img {width:90%;height:auto;}
	
.gemba-container {
    flex-direction: column;
    text-align: center;
  }

  .gemba-title {
    font-size: 36px;
  }

  .gemba-words span {
    font-size: 30px;
  }

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

@media (max-width: 900px){
  .gemba-nav-container{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

@media (max-width: 500px) {
  .gemba-grid {
    grid-template-columns: 1fr;
  }
}

.gemba-lead-section {
  background: #1E3A5F;
  padding: 100px 20px;
  color: #ffffff;
}

.gemba-lead-left {
  max-width: 520px;
  position: relative;
}

.gemba-lead-heading {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 500;
}

.gemba-lead-heading .green {
  color: #16A34A;
  font-weight: 600;
}

.gemba-lead-subtext {
  margin-top: 24px;
  font-size: 14px;
  color: #cbd5e1;
}

.gemba-pill {
  margin-top: 16px;
  display: inline-block;
  background: #16A34A;
  color: #0C0C31;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.gemba-lead-right {
  position: relative;
}

.gemba-lead-right img {
  width: 100%;
  max-width: 600px;
}

/* Accent Corners */
.gemba-accent-top {
    width: 24px;
    height: 24px;
    border-top: 4px solid #16A34A;
    border-left: 4px solid #16A34A;
    margin-bottom: 20px;
    position: absolute;
    left: -20px;
    top: 20px;
}

.gemba-accent-bottom {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 24px;
  height: 24px;
  border-bottom: 4px solid #16A34A;
  border-right: 4px solid #16A34A;
}

/* Responsive (only section-specific adjustments) */
@media (max-width: 900px) {
  .gemba-lead-heading {
    font-size: 34px;
  }

  .gemba-lead-right img {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .gemba-lead-heading {
    font-size: 28px;
  }
}

.gemba-values-section {
  background: #0C0C31;
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

.gemba-values-heading {
  font-size: 34px;
  font-weight: 500;
}

.gemba-values-heading .green {
  color: #16A34A;
}

.gemba-values-subtext {
  margin-top: 16px;
  font-size: 14px;
  color: #cbd5e1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Image */
.gemba-values-image-wrap {
  margin-top: 40px;
  position: relative;
}

.gemba-values-image-wrap img {
  width: 100%;
  border-radius: 4px;
}

.gemba-values-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-top: 6px solid #16A34A;
  border-right: 6px solid #16A34A;
}

/* Grid */
.gemba-values-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.gemba-values-col h3 {
  color: #16A34A;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
}

/* top divider line */
.gemba-values-col h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #16A34A;
  margin-bottom: 12px;
}

.gemba-values-col p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-values-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gemba-values-col {
    max-width: 500px;
    margin: 0 auto;
  }
}

.gemba-stats-section {
  background: #1E3A5F;
  padding: 80px 20px;
  color: #ffffff;
}

.gemba-stats-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left */
.gemba-stats-heading {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}

.gemba-stats-heading .green {
  color: #16A34A;
}

/* Right */
.gemba-stats-grid {
  display: flex;
  gap: 60px;
}

.gemba-stat {
  max-width: 180px;
}

.gemba-stat-number {
  font-size: 36px;
  color: #16A34A;
  font-weight: 600;
}

.gemba-stat-line {
  width: 100%;
  height: 2px;
  background: #16A34A;
  margin: 10px 0 14px;
}

.gemba-stat p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-stats-wrap {
    flex-direction: column;
    text-align: center;
  }

  .gemba-stats-grid {
    flex-direction: column;
    gap: 30px;
  }

  .gemba-stat {
    max-width: 300px;
    margin: 0 auto;
  }
}


.gemba-portfolio-section {
  background: #0C0C31;
  padding: 100px 20px;
  color: #ffffff;
}

.gemba-portfolio-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.gemba-portfolio-heading .green {
  color: #16A34A;
}

/* Grid */
.gemba-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.gemba-card {
  background: #1E3A5F;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top row */
.gemba-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 14px;
}

.gemba-status {
  color: #16A34A;
}

.gemba-tag {
  background: #16A34A;
  color: #0C0C31;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
}

/* Logo */
.gemba-card-logo {
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
}

.gemba-card-logo img {
  max-width: 100%;
}

/* Text */
.gemba-card-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Footer */
.gemba-card-footer {
  margin-top: 16px;
  font-size: 14px;
  color: #16A34A;
}

/* Responsive */
@media (max-width: 1000px) {
  .gemba-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gemba-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/*
.gemba-logo-strip {
  background: #1E3A5F;
  padding: 30px 20px;
}

.gemba-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.gemba-logo-item {
  color: #cbd5e1;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gemba-logo-row {
    justify-content: center;
    gap: 24px;
  }

  .gemba-logo-item {
    font-size: 16px;
  }
}
*/
.gemba-logo-strip {
  width: 100%;
  overflow: hidden;
  background: #1E3A5F;
  padding: 30px 20px;

}

.gemba-logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gemba-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: gembaLogoScroll 20s linear infinite;
}

.gemba-logo-slider:hover .gemba-logo-track {
  animation-play-state: paused;
}

.gemba-logo-item {
  flex: 0 0 auto;
  padding: 0 50px;
}

.gemba-logo-item img {
  width: auto;
  height: 100px;
  object-fit: contain;
  display: block;
}

/* Infinite scrolling */
@keyframes gembaLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gemba-logo-item {
    padding: 0 30px;
  }

  .gemba-logo-item img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .gemba-logo-item {
    padding: 0 20px;
  }

  .gemba-logo-item img {
    height: 32px;
  }
}

.gemba-team-section {
  background: #0C0C31;
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

.gemba-team-heading {
  font-size: 32px;
  margin-bottom: 60px;
}

.gemba-team-heading .green {
  color: #16A34A;
}

/* Grid */
.gemba-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.gemba-team-card {
  background: #1E3A5F;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

/* Image */
.gemba-team-image {
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.gemba-team-image img {
  width: 100%;
}

/* Content */
.gemba-team-content h3 {
  color: #16A34A;
  margin-bottom: 12px;
}

.gemba-team-content ul {
  padding-left: 16px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.gemba-team-content li {
  margin-bottom: 6px;
}

.gemba-team-content hr {
  border: none;
  border-top: 1px solid #3b5a7a;
  margin: 16px 0;
}

/* Blocks */
.gemba-team-block {
  margin-bottom: 12px;
}

.gemba-team-block .label {
  color: #16A34A;
  font-size: 14px;
  margin-bottom: 4px;
}

.gemba-team-block p {
  font-size: 14px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-team-grid {
    grid-template-columns: 1fr;
  }

  .gemba-team-heading {
    font-size: 26px;
  }
}

.gemba-advisors-section {
  background: #0C0C31;
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

.gemba-advisors-heading {
  font-size: 30px;
  margin-bottom: 60px;
}

.gemba-advisors-heading .green {
  color: #16A34A;
}

/* Grid */
.gemba-advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.gemba-advisor-card {
  background: #1E3A5F;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

/* Image */
.gemba-advisor-image {
  border-radius: 10px;
  margin-bottom: 16px;
	overflow: hidden;
}

.gemba-advisor-image img {
  width: 100%;
}

/* Content */
.gemba-advisor-content h3 {
  color: #16A34A;
  margin-bottom: 10px;
}

.gemba-advisor-content ul {
  padding-left: 16px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.gemba-advisor-content li {
  margin-bottom: 6px;
}

/* CTA */
.gemba-advisors-cta {
  margin-top: 40px;
	text-align:center;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-advisors-grid {
    grid-template-columns: 1fr;
  }

  .gemba-advisors-heading {
    font-size: 24px;
  }
}

.gemba-testimonial-section {
  background: #1E3A5F;
  padding: 100px 20px;
  color: #ffffff;
}

.gemba-testimonial-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left */
.gemba-testimonial-left h2 {
  font-size: 30px;
  line-height: 1.3;
}

.green {
  color: #16A34A;
}

/* Carousel */
.gemba-testimonial-carousel {
  overflow: hidden;
  flex: 1;
}

.gemba-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gemba-testimonial-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.gemba-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #2b4a6f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gemba-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */

.gemba-testimonial-content {
  /* max-width: 420px; */
  padding-bottom: 4rem;
}

.gemba-quote {
  font-size: 60px;
  color: #16A34A;
  margin-bottom: 10px;
}

.gemba-testimonial-content p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
	font-weight:500;
}

.gemba-author {
  margin-top: 16px;
  font-size: 16px;
}

.gemba-author .green {font-size: 22px!important;}


/* Dots */
.gemba-dots {
  margin-top: 20px;
  text-align: center;
}

.gemba-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b8aa8;
  margin: 0 4px;
  cursor: pointer;
}

.gemba-dots .active {
  background: #16A34A;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-testimonial-wrap {
    flex-direction: column;
    text-align: center;
  }

  .gemba-testimonial-slide {
    flex-direction: column;
  }

  .gemba-testimonial-content {
    max-width: 100%;
  }
}

.gemba-insights-section {
  background: #0C0C31;
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

.gemba-insights-heading {
  font-size: 32px;
}

.gemba-insights-heading .green {
  color: #16A34A;
}

.gemba-insights-subtext {
  margin-top: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

/* Grid */
.gemba-insights-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.gemba-insight-card {
  background: #1E3A5F;
  padding: 20px;
  border-radius: 14px;
  text-align: left;
}

/* Label */
.gemba-insight-label {
  color: #16A34A;
  font-size: 11px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Image */
.gemba-insight-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Text */
.gemba-insight-text {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* Outline Button */
.gemba-outline-btn {
  border: 1px solid #16A34A;
  color: #16A34A;
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
	text-decoration: none;
}

/* CTA */
.gemba-insights-cta {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-insights-grid {
    grid-template-columns: 1fr;
  }

  .gemba-insights-heading {
    font-size: 26px;
  }
}


.gemba-footer {
  background: #1E3A5F;
  padding: 60px 20px 30px;
  color: #cbd5e1;
  font-size: 13px;
}

/* Top */
.gemba-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.gemba-footer-logo {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.gemba-footer-logo .tag {
  font-size: 10px;
  letter-spacing: 2px;
  color: #9fb3c8;
}

.gemba-footer-address {
  margin: 12px 0;
}

.gemba-footer-email {
  color: #16A34A;
}

/* Links */
.gemba-footer-links {
  display: flex;
  gap: 60px;
}

.gemba-footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  text-decoration: none;
}

/* Right Box */
.gemba-footer-box {
  width: 260px;
  height: 120px;
  background: #0C0C31;
  border-radius: 10px;
}

/* Divider */
.gemba-footer-divider {
  height: 1px;
  background: #3b5a7a;
  margin: 30px 0;
}

/* Bottom Info */
.gemba-footer-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.gemba-footer-info p {
  max-width: 260px;
}

/* Bottom Bar */
.gemba-footer-bar {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.gemba-footer-social span {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #cbd5e1;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.gemba-footer-copy {
  font-size: 11px;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-footer-links {
    gap: 30px;
  }

  .gemba-footer-info {
    flex-direction: column;
  }

  .gemba-footer-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.gemba-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #16A34A;
  color: #0C0C31;
  padding: 14px 20px 14px 30px;
  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Arrow circle */
.gemba-cta-link .gemba-cta-arrow {
  background: #ffffff;
  color: #0C0C31;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover */
.gemba-cta-link:hover {
  transform: translateY(-2px);
}

.gemba-cta-link:hover .gemba-cta-arrow {
  transform: translateX(4px);
}

/* Remove default link states */
.gemba-cta-link:visited,
.gemba-cta-link:active {
  color: #0C0C31;
}
.gemba-team-page {
  background: #0C0C31;
  color: #ffffff;
  padding: 80px 20px;
}

.gemba-breadcrumb {
  font-size: 14px;
  color: #6b8aa8;
  margin-bottom: 20px;
}

.gemba-page-title {
  font-size: 40px;
  margin-bottom: 50px;
}

.green {
  color: #16A34A;
}

/* MEMBER */
.gemba-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.gemba-member:nth-child(even) {
  /* flex-direction: row-reverse; */
}

.gemba-member-text {
  max-width: 520px;
}

.gemba-member-text h3 {
  color: #16A34A;
  margin-bottom: 12px;
}

.gemba-member-text p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Buttons */
.gemba-member-actions {
  margin: 20px 0;
  display: flex;
  gap: 12px;
}

/* Investments */
.gemba-invest-label {
  margin-top: 20px;
  font-size: 14px;
  color: #16A34A;
}

.gemba-logo-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #cbd5e1;
}

/* Image */
.gemba-member-image img {
  width: 80%;
  border-radius: 12px;
  background: #16A34A;
}
.gemba-member-image {
    display: flex;
    justify-content: flex-end;
}
/* Subtitles */
.gemba-subtitle {
  font-size: 28px;
  margin: 80px 0 40px;
}

/* CTA */
.gemba-team-cta {
  margin-top: 80px;
  text-align: center;
}
hr {
    color: green;
    border-color: green;
    margin-bottom: 4rem;
}
.gemba-team-cta p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #cbd5e1;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-member {
    flex-direction: column;
    text-align: center;
  }

  .gemba-member:nth-child(even) {
    flex-direction: column;
  }

  .gemba-member-image img {
    width: 100%;
    max-width: 320px;
  }

  .gemba-page-title {
    font-size: 30px;
  }
}
.gemba-portfolio-page {
  background: #0C0C31;
  padding: 80px 20px;
  color: #fff;
}

.gemba-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gemba-portfolio-header h1 {
  font-size: 36px;
}

/* Tabs */
.gemba-tabs span {
  margin-left: 30px;
  cursor: pointer;
  color: #cbd5e1;
  position: relative;
}

.gemba-tabs .active {
  color: #16A34A;
}

.gemba-tabs .active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #16A34A;
}

/* Filters */
.gemba-filters {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gemba-filters button {
  background: transparent;
  border: 1px solid #16A34A;
  color: #16A34A;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

.gemba-filters button.active {
  background: #16A34A;
  color: #0C0C31;
}

/* Grid */
.gemba-portfolio-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.gemba-p-card {
  border: 1px solid #16A34A;
  border-radius: 16px;
  padding: 20px;
}

.gemba-p-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.tag {
  background: #16A34A;
  color: #0C0C31;
  padding: 3px 10px;
  border-radius: 12px;
}

.status {
  color: #16A34A;
}

.status.exit {
  color: #9fb3c8;
}

/* Logo */
.gemba-p-logo {
  margin: 20px 0;
  text-align: center;
}

/* Text */
.gemba-p-card p {
  font-size: 13px;
  color: #cbd5e1;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .gemba-portfolio-header {
    flex-direction: column;
    gap: 20px;
  }
}
.gemba-insights-hero {
  background: #294561;
  padding: 80px 20px;
  color: #ffffff;
}

.gemba-insights-hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
}

/* Left */
.gemba-insights-left {
  max-width: 520px;
}

.gemba-insights-left h1 {
  font-size: 40px;
  line-height: 1.3;
}

.gemba-insights-left p {
  margin-top: 20px;
  font-size: 16px;
  color: #d1d5db;
}

/* Right */
.gemba-insights-right img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
}

/* Highlight */
.green {
  color: #16A34A;
}

/* Responsive */
@media (max-width: 900px) {
  .gemba-insights-hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .gemba-insights-left h1 {
    font-size: 30px;
  }

  .gemba-insights-right img {
    max-width: 100%;
  }
}
.gemba-cta-link-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #16A34A;
    color: #ffffff !important;
    padding: 7px 10px 9px 30px;
    /* color: #fff; */
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

body#insights .nav-insights,
body#index .nav-index,
body#portfolio .nav-portfolio,
body#team .nav-team {
  color: #0d863a;
}

.gemba-media-section {
  background: #0C0C31;
  padding: 20px 20px;
  color: #fff;
}

.gemba-media-title {
  color: #16A34A;
  margin-bottom: 30px;
  font-size: 24px;
}
.gemba-carousel {
  position: relative;
  overflow: hidden;
}

/* Carousel */


.gemba-track-wrapper {
  overflow: hidden;
}

.gemba-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* Cards */
.gemba-media-card {
  min-width: 280px;
  background: #1E3A5F;
  padding: 16px;
  border-radius: 12px;
	 flex: 0 0 300px;
	  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.gemba-media-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Arrows */
.gemba-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}

.gemba-arrow.left { left: 10px; }
.gemba-arrow.right { right: 10px; }

/* Fade edges */
.gemba-fade {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.gemba-fade.left {
  left: 0;
  background: linear-gradient(to right, rgba(12,12,49,1) 0%, transparent 100%);
}

.gemba-fade.right {
  right: 0;
  background: linear-gradient(to left, rgba(12,12,49,1) 0%, transparent 100%);
}
/*
.gemba-fade.left {
  background: linear-gradient(
    to right,
    rgba(12,12,49,1) 0%,
    rgba(12,12,49,0.9) 40%,
    transparent 100%
  );
}

.gemba-fade.right {
  background: linear-gradient(
    to left,
    rgba(12,12,49,1) 0%,
    rgba(12,12,49,0.9) 40%,
    transparent 100%
  );
}
*/


/* Responsive */
@media (max-width: 900px) {
  .gemba-media-card {
    min-width: 240px;
  }
}


  .vks-carousel-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
  }

  .vks-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .vks-carousel-slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
  }

  .vks-carousel-slide:nth-child(1) {
    /* background: #0C0C31; */
  }

  .vks-carousel-slide:nth-child(2) {
    /* background: #4a90e2; */
  }

  .vks-carousel-slide:nth-child(3) {
    /* background: #27ae60; */
  }

  .vks-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .vks-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
  }

  .vks-carousel-dot.vks-active-dot {
    background: #fff;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .vks-carousel-slide {
        height: 700px;
        font-size: 28px;
        padding: 0 2rem;
    }
  }




  @media (max-width: 480px) {
    .vks-carousel-slide {
        height: 700px;
        font-size: 22px;
        padding: 0 2rem;
    }

    .vks-carousel-dots {
      bottom: 12px;
    }
  }


/* NAV CONTAINER */
.gemba-nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* HAMBURGER */
.gemba-nav-toggle{
  display:none;
  width:30px;
  height:22px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:1001;
  margin-left:auto;
}

.gemba-nav-toggle span{
  width:100%;
  height:2px;
  background:#000000;
  transition:0.3s ease;
}

/* MOBILE */
@media screen and (max-width: 991px){

  .gemba-nav-toggle{
    display:flex;
  }

  /* HIDE MENU BY DEFAULT */
  .gemba-nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#0C0C31;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
    transition:0.4s ease;
    z-index:1000;
  }

  /* OPEN MENU */
  .gemba-nav-menu.active{
    right:0;
  }

  .gemba-nav-menu a{
    color:#fff;
    font-size:24px;
    text-decoration:none;
  }

  /* HAMBURGER → X */
  .gemba-nav-toggle.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
  }

  .gemba-nav-toggle.active span:nth-child(2){
    opacity:0;
  }

  .gemba-nav-toggle.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
  }

  .gemba-nav-cta{
    display:none;
  }
}

/* DESKTOP */
.gemba-hero-container{
  max-width:1200px;
  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;

  width:100%;
}

/* MOBILE */
@media (max-width:900px){

  .gemba-hero-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }
.gemba-footer-logo img {width:90%!important;}
}


/* Team page*/

h3.team-name {
    padding: 0px;
    margin: 0px;
    font-size: 24px;
}

h4.team-desc {
    padding: 10px 0px 20px 0px;
    margin: 0px;
    font-size: 14px;
	color:#ffffff;
}
	.gemba-card-logo img {
    height: 100px;
    background: #000;
    width: 100%;
    border-radius: .5rem;
}

	.gemba-card {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(30, 58, 95);
    padding: 20px;
    border-radius: 12px;
}
	@media (max-width: 767px) {
    .gemba-footer-info p {
        max-width: 95%;
    }
		.gemba-footer-box {
    width: 100%;
    height: 150px;
    background: #0C0C31;
    border-radius: 10px;
}
		
}
/* portfolio */
.gemba-p-logo img {width:65%;}

@media (max-width: 767px) {
.gemba-invest-label {
    margin-top: 20px;
    font-size: 14px;
    color: #16A34A !important;
    text-align: left;
}
}

/* Desktop Image */
	.ood {
    display: block!important;
}

.oom {
    display: none!important;
}

/* Mobile */
@media (max-width: 767px) {
    .ood {
        display: none!important;
    }

    .oom {
		display: block!important;
        width: 95%;
        margin: 0 auto;
        padding: 1rem;
    }
}
