/* Global styles */
.hero-section, .faq-section, .banner-section, .success-stories-section, .team-member-detail, .team-section, .podcast-section {
  caret-color: transparent;
}
body {
    overflow-x: hidden; /* Hide horizontal scrollbar */
  }
  
  .header__sticky-left .header__brands-button {
    color: black !important;
  }
  .header__brands-button svg path {
    fill: rgb(0, 0, 0) !important;
    transition: fill 0.3s ease !important;
  }
  .header__sticky-left .header__brands-button svg path {
    fill: #000 !important;
    transition: fill 0.3s ease !important;
  }
  /* Hero Section */
  .hero-section {
    background-color: #000 !important;
      color: #fff;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 10% 0 5%;
  }
  .hero-content {
    max-width: 60%;
    padding-left: calc((100% - 1390px) / 2 + 15px)!important;
  }
  .hero-content .pre-text {
    font-size: 1rem;
    margin: 20px 0;
    color: #ffffff;
  }
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
  }
  .hero-content span {

    font-weight: 900;
    color: #BCD900;
  }
  .hero-content p {
    font-size: 1.5rem;
    margin: 20px 0 30px 0;
  }
  .btn-inquire {
    background-color: #BCD900;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration:none;
  }
  .btn-inquire:hover {
    background-color: #a8c800;
  }
  /* Stats Box Wrapper */
  .hero-stats-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding: 0 24px;
  }

  .hero-stat-box {
    background-color: #BAD31E;
    color: black;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .stat-number {
    font-size: 3.5rem;;
    font-weight: bold;
    flex-shrink: 0;
  }

  .stat-description {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Responsive: stack vertically */
  @media (max-width: 767px) {
    .hero-stats-wrapper {
      flex-direction: column;
      gap: 15px;
      padding: 0px;
    }

    .hero-stat-box {
      flex-direction: column;
      align-items: center;
    }

    .stat-number {
      font-size: 2rem;
      text-align: center;
    }

    .stat-description {
      font-size: 0.95rem;
      text-align: center;
    }
  }
  /* Info Section */
  .info-section {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
  }
  .info-section p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .info-section p strong {
    font-weight: bold;
  }

  /* Team Section */
  .team-section {
    padding: 80px 20px 100px 20px;
    background-color: #f9f9f9;
    position: relative;
  }

  /* Team Header Styles */
  .team-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .team-title-container {
    margin-right: 30px;
    margin-bottom: 20px;
  }

  .team-description {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .team-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
  }

  .company-label {
    display: inline-block;
    background-color: #BCD900;
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .team-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
  }

  .team-title span {
    color: #BCD900;
    display: inline;
  }

  .highlight {
    font-weight: bold;
  }

  .region-content-top {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 10%;
    justify-content: center;
    width: 85%;
  }

#region-content-top-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#region-content-top-wrapper h2 {
  font-size: 50px;
  font-weight: bold;
  width: auto;
}
#region-content-top-wrapper p {
  width: auto;
}

.region-content-top[data-region="all"] {
  align-items: center;   
  text-align: center;
  padding: 25px 0px;
}

#region-content-bottom-wrapper {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}
  /* Region tabs navigation */
  .region-nav {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #BAD31E;
  }

  .region-label {
    font-weight: bold;
    margin-right: 70px;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-bottom: 0;
  }

  .region-tabs {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab-button {
    background-color: #BCD900;
    color: #000000;
    font-weight: bold;
    border: none;
    border-radius: 20px 20px 0px 0px;
    padding: 10px 10px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  .tab-button:hover {
    background-color:rgb(159, 184, 2);
    cursor: pointer;
  }

  .tab-button.active {
    background-color: #D8D8D8;
  }

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.team-grid .team-card {
  flex: 0 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
}
#team-swiper-mobile .swiper-wrapper {
  display: flex;
}

@media (max-width: 992px) {
  .team-grid .team-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  #team-grid.swiper-wrapper {
    display: flex !important;
  }

  #team-grid-wrapper .swiper-slide {
    width: 85%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  #team-grid-wrapper .team-card {
    width: 100%;
    max-width: 100%;
  }

  #team-grid-wrapper .swiper-pagination {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .swiper-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .member-right h2 {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
  }
}








  .swiper-container {
    overflow: hidden; /* Prevent horizontal scrolling */
    padding-bottom: 1px; /* Add space for pagination */
    width: 100%;

  }
  @media (min-width: 768px) {
  .swiper-wrapper.centered {
    justify-content: center !important;
  }

  }

  .swiper-slide {
    height: auto;
    display: flex;
  }
  .team-card {
    background-color: #BCD900;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .team-card .img-container {
    width: 100%;
    height: 220px; /* Fixed height for all images */
    overflow: hidden;
    position: relative;
    padding: 10px 10px 0px 10px;
    background-color: white;
  }
  .team-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center; /* Position from the top */
    filter: grayscale(1);
  }
  .team-card:hover img,
.team-card.active img {
    filter: grayscale(0);
  }
  .team-card .info {
    padding: 25px 15px 15px 15px;
    background-color: #BCD900;
    color: #4A5600;
    min-height: 80px; /* Minimum height instead of fixed height */
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: left; /* Left align text */
  }
  .team-card .info h5 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 0px;
  }
  .team-card .info p {
    font-size: 1rem;
    margin: 0;
    text-align: left;
  }

  .personal-testimonials-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  #personal-testimonials-title{
    font-size: 2.5rem;
    color: #BCD900;
    
  }


.personal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}


.personal-grid .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  width: 100%;        
  height: auto;       
  box-sizing: border-box;
}







  /* Custom pagination styles */
  .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 3%;

  }
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    display: inline-block;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    opacity: 0.7;
  }
  .swiper-pagination-bullet-active {
    background: #BCD900 !important;
    opacity: 1;
  }
  /* Banner Section */
  .banner-section {
    background-color: #000000;
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .banner-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .banner-content p {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .banner-content .highlight {
    color: #BCD900;
  }
  .btn-contact {
    display: inline-block;
    background-color: #BCD900;
    color: #000000;
    font-weight: bold;
    padding: 15px 100px;
    margin-top: 15px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  .btn-contact:hover {
    background-color: #a8c800;
    color: #000000;
    text-decoration: none;
  }
/* Success Stories Section */
.success-stories-section {
padding: 60px 0;
background-color: #f9f9f9;
position: relative; /* Add this to contain the pagination */
overflow: hidden; /* Prevents horizontal scroll */
}

.success-header {
margin-bottom: 40px;
max-width: 93%;
padding-left: 15px; /* Maintains left spacing */
}

.success-title {
font-size: 2.5rem;
font-weight: bold;
margin: 10px 0 20px;
line-height: 1.2;
width: 30%;
}

.success-green {
color: #BCD900;
display: inline;
}

.stories-black {
color: #000;
display: inline;
}

.success-description {
font-size: 1.1rem;
line-height: 1.6;
color: #333;
}

/* Testimonial Cards */
.testimonials-swiper {
overflow: visible;
padding-bottom: 50px;
position: relative;
margin-right: -100px;
/* Add padding to ensure last slide is fully visible */
padding-right: 100px;
}
.testimonials-swiper .swiper-slide {
height: auto; /* Allow variable heights */
display: flex;
}
.testimonials-swiper .swiper-wrapper {
padding-right: 15px; /* Add padding to prevent cut-off */
padding-bottom: 50px;
}

.testimonial-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 25px;
display: flex;
flex-direction: column;
margin: 10px;
margin-right: 0;
height: auto;
align-items: center;
}

.quote-icon {
margin-bottom: 15px;
}

.quote-icon img {
width: 30px;
height: auto;
}

.testimonial-content {
flex-grow: 1;
margin-bottom: 20px;
/* Allow content to determine its own height */
height: auto;
}

.testimonial-content p {
font-size: 1rem;
line-height: 1.6;
color: #333;
text-align: center;
}

.testimonial-author {
margin-bottom: 15px;
}

.author-name {
font-weight: bold;
font-size: 1.1rem;
margin-bottom: 5px;
color: #000;
text-align: center;
}

.author-logo {
  margin-top: 10px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-logo img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


.rating img {
height: 20px;
width: auto;
}

/* Swiper customization for testimonials */
.testimonials-swiper .swiper-pagination {
position: absolute; /* Ensure proper positioning */
bottom: 0;
left: -5%;
width: 100%;
text-align: center; /* Center the pagination dots */
z-index: 10; /* Ensure it's above other elements */
}

.testimonials-swiper .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: #ddd;
opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
background: #BCD900;
}

/* Container adjustments for right alignment */
.success-stories-section .container {
padding-right: 0; /* Removes right padding from container */
padding-left: 15px; /* Standard Bootstrap padding */
}
/* FAQ Section Styles */
.faq-section {
  background-color: #F4F4F4;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.faq-background-image {
  position: absolute;
  bottom: -70px;
  left: 10%;
  width: 550px;
  z-index: 0;
  pointer-events: none;
}
.faq-container {
  position: relative;
  z-index: 1;
}
.faq-left {
  position: relative;
  margin-bottom: 40px;
}

.faq-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.faq-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #555;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-link:hover {
  color:#BCD900;
}

.faq-chat-icon {
  display: none;
}

.faq-right {
  padding-left: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s ease;
}

.faq-toggle .plus {
  display: block;
}

.faq-toggle .minus {
  display: none;
}

.faq-item.active .faq-toggle .plus {
  display: none;
}

.faq-item.active .faq-toggle .minus {
  display: block;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-answer-inner {
  padding-bottom: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.faq-answer a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}
/* Podcast Section Styles */
.podcast-section {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.podcast-left {
  padding-right: 30px;
}

.podcast-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000;
}

.podcast-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #333;
}

.podcast-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.podcast-btn:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.podcast-right {
  position: relative;
  padding-left: 80px;
}

.podcast-image {
  position: relative;
  text-align: right;
}

.podcast-image img {
  max-width: 100%;
  height: auto;
}

.listen-icons {
    display: inline-flex;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: .5rem;
    }
    .listen-icons span{
    color:#fff;
    }

    .listen-icons img {
    height: 30px;
    }

    .listen-icons a:hover img {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
    }

    .logos-container{
        display: flex;
        justify-content: center;
        background-color: #000;
        padding-bottom: 60px;
    }

@media (min-width: 1200px) {
.success-stories-section .container {
  padding-left: calc((100% - 1140px) / 2 + 15px); /* Match Bootstrap container left padding for larger screens */
}
}

/* Responsive adjustments */
@media (min-width: 992px) {
.success-stories-section .container {
  max-width: none;
  width: 100%; /* Full width */
  margin-left: auto; /* Standard Bootstrap margin */
  margin-right: 0; /* Flush with right edge */
  padding-left: calc((100% - 1390px) / 2 + 15px); /* Match Bootstrap container left padding */
}
.faq-container {
      flex-direction: column;
  }
  
  .faq-left, .faq-right {
      flex: 0 0 100%;
  }
  
  .faq-chat-icon {
      position: relative;
      bottom: auto;
      margin-top: 40px;
  }
  .faq-section {
      background-position: left bottom;
  }
  
  .faq-right {
      padding-left: 35px;
  }
  .podcast-left {
      margin-bottom: 40px;
      padding-right: 15px;
  }
  
  .podcast-image {
      text-align: center;
  }
  
  .podcast-left h2 {
      font-size: 36px;
  }
}

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .hero-section {
        height: auto;
        background-position-x: center !important;
        padding: 25% 5% 20%;
      }
  
    .hero-content {
      max-width: 100%;
    }
    .hero-content h1 {
      font-size: 2rem;
      line-height: 2.5rem;
    }
    .team-title {
        font-size: 1.5rem;
    }
    .region-nav {
      flex-direction: column;
      align-items: flex-start;
      border-bottom: none;
    }
    .team-description p {
        font-size: 0.9rem;
    }
    .region-label {
      margin-bottom: 10px;
    }

    .region-tabs {
      width: 100%;
    }
    .region-tabs *:first-child{
      width: 100%;
    }
    .region-content-top {
      flex-direction: column !important;
      width: 100%;
    }
    .region-content-top[data-region="all"] {
    padding: 0px 0px;
    }
    #region-content-top-wrapper h2 {
    font-size: 35px;
    line-height: 35px;
    margin: 0;
    }
    #region-content-top-wrapper p {
    text-align: center;
    }
    #personal-testimonials-title {
    font-size: 2rem;
    }
    .personal-testimonials-section {
      margin-top: 30px;
    }
    .tab-button {
        border-radius: 60px;
    }
    .team-title-container {
      flex: 0 0 100%;
      margin-right: 0;
    }
    .banner-content h2 {
        font-size: 1.5rem;
    }
    .banner-content p {
        font-size: 1.5rem;
    }
    .btn-contact {
        padding: 15px 50px;
    }
    .success-title {
      font-size: 1.5rem;
      width: 100%;
    }
    
    .testimonial-card {
      padding: 20px;
    }
    
    .testimonials-swiper {
      margin-right: 0;
      padding-right: 0;
      overflow: hidden;
    }
    
    .testimonial-card {
      margin: 10px 15px; 
      max-width: 90%;   
    }
    
    .testimonials-swiper .swiper-pagination {
      left: 0;          
      width: 100%;
    }
    
    .success-stories-section .container {
      padding-right: 15px; /* Restore padding on mobile */
    }
    .faq-section {
      padding: 60px 0;
    }
    .faq-background-image {
        display:none;
    }
    
    .faq-left h2 {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    .podcast-section {
      padding: 60px 0;
  }
  
  .podcast-left h2 {
    font-size: 1.5rem;
  }
  .podcast-right {
      position: relative;
      padding-left: 20px;
  }
  
  .podcast-btn {
      padding: 14px 28px;
      font-size: 13px;
  }
  }


  /* team-member-detail CSS */
  .team-member-detail {
    background: #fff;
    padding: 60px 20px;
    border-top: 1px solid #eee;
    position: relative;
  }
  
  .member-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    position: relative;
  }
  
  .member-left img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    background: #BCD900 !important;
  }
  
  .member-right {
    flex: 1;
    position: relative;
  }
  
  .member-right h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0px;
  }
  .green-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #BCD900;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

  .member-right h4 {
    font-size: 1em;
    color: #000000;
    margin-bottom: 0px;
  }
  
  .member-right p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0px;
  }
  
  .location-label {
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    color: #000;
    border-radius: 50px;
    margin-bottom: 10px;
  }
  
  .member-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  
  .btn-action {
    background-color: #BCD900;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
  }
  
  .btn-action:hover {
    background-color: #a8c800;
    color: #000;
  }
  
  .btn-action img {
    width: 20px;
    height: 20px;
    display: inline-block;
  }

.btn-action.linkedin-btn {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.btn-action.linkedin-btn img {
  width: 40px; 
  height: 40px;
  transition: filter 0.3s ease;
}

.btn-action.linkedin-btn:hover img {
  filter: grayscale(100%) brightness(70%);
}
  
  .member-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 28px;
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .member-close-btn:hover {
    color: #000;
  }
  
  @media (max-width: 768px) {
    .member-card {
      flex-direction: column;
    }
  
    .member-left img {
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
  