/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 23 2025 | 13:25:42 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* ============================== */
/* HERO SECTION — FULLSCREEN FIXED */
/* ============================== */
.wp-site-blocks > *,
.wp-site-blocks > * > *,
.wp-site-blocks > * > * > * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-slider {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 600px;
  margin: 0 !important;
  padding: 0 !important;
  background: url('https://team-isla.com/wp-content/uploads/2020/03/jeshoots-com-fzOITuS1DIQ-unsplash-scaled.jpg')
    center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
	
/* override parent constraints */
  max-width: 100vw !important;
  left: 0;
  right: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Dark overlay */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-slider > * {
  position: relative;
  z-index: 2;
}

/* TEXT PADDING INSIDE (your request) */
.hero-content {
    padding: 2rem;
    color: #F8F8F4;
    text-align: center;
}

/* Headline */
.hero-slider h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #F8F8F4;
  line-height: 1.2;
}

.hero-slider h1 span {
	color: #31d200; 
	font-family: 'Playfair Display', serif !important;
	font-weight: 700;
}

/* Button */
.hero-btn {
  margin-top: 2rem;
}

.hero-btn .btn-primary {
  background: transparent;
  color: #F8F8F4;
  border: 2px solid #F8F8F4;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-weight: 600;
}

.hero-btn .btn-primary:hover {
  background: #31D200;
  color: #F8F8F4;
  border-color: #31D200;
  /* subtle lift effect */
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.hero-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn.hero-animate {
  transition-delay: 0.4s; /* button appears slightly after headline */
}

/* Responsive */
@media(max-width:1023px){
  .nav-pill { display:none; }
  .mobile-actions { display:flex; }
  .hero-slider h1 { font-size: 2rem; }
  .hero-btn .btn-primary { padding:0.75rem 1.5rem; font-size:0.9rem; }
}
@media(min-width:1024px){ .mobile-actions { display:none; }
}
/* Hero Section */
/* ============================== */
/* Unlock Your Organization's Potential Section */
/* ============================== */
.business-insights {
  background-color: #f4f0eb;
  padding: 60px 20px;
  width: 100%;
  max-width: 100% !important; /* override theme constraints */
  margin: 0 !important;
  box-sizing: border-box;
  text-align: center;
  color: #333;
  line-height: 1.7;
}

.business-insights h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #101820;
}

.business-insights h1 span {
    color: #31D200; /* bright accent */
	font-family: 'Playfair Display', serif !important;
	font-weight: 700;
}


.business-insights h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #101820;
}

/* Change color of spans inside h2 */
.business-insights h2 span {
  color: #31D200; /* change to your desired color */
  font-family: 'Playfair Display', serif !important;
  font-weight: 600;
}


.business-insights p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #101820;
}

.insight-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* keeps them grouped together */
  gap: 20px; /* consistent spacing */
  max-width: 1400px; /* prevents extreme spreading on wide screens */
  margin: 0 auto; /* center the whole row */
}

/* Individual cards */
.insight-card {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px); /* three cards in a row */
	max-width: 450px; /* limit card width */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  box-sizing: border-box;
  text-align: center; /* center text inside the card */
}

/* Direction-specific classes */
.insight-card.from-left { transform: translateX(-50px); }
.insight-card.from-right { transform: translateX(50px); }
.insight-card.from-bottom { transform: translateY(50px); }

.insight-card.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Add Font Awesome icons above each H2 */
.insight-card h2::before {
    content: "\f0ad"; /* default icon, e.g., cog (adjust per card below) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 4rem;  /* big icon */
    display: block;
    margin-bottom: 15px;
    color: #31D200; /* accent color for icons */
}

/* Specific icons for each card using nth-child */
.insight-row .insight-card:nth-child(1) h2::before { content: "\f0e0"; } /* envelope icon */
.insight-row .insight-card:nth-child(2) h2::before { content: "\f0ae"; } /* tasks/checklist icon */
.insight-row .insight-card:nth-child(3) h2::before { content: "\f201"; } /* rocket icon */

/* Adjust spacing if needed */
.insight-card h2 {
    margin-top: 10px; /* reduce spacing because icon adds extra */
}


@media (max-width: 1023px) {
  .business-insights {
    padding: 40px 15px;
  }

  .business-insights h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .business-insights h2 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .business-insights p {
    font-size: 0.95rem;
  }

  /* Make cards stack vertically and center them */
  .insight-row {
    flex-direction: column;  /* stack cards */
    gap: 20px;
    align-items: center;     /* center cards horizontally */
    flex-wrap: nowrap;       /* no wrapping needed */
  }

  .insight-card {
    flex: 0 0 100%;          /* full width of container */
    max-width: 400px;        /* optional, prevents cards from being too wide */
    text-align: center;      /* keep text centered */
  }
}
/* Unlock Your Organization's Potential Section */
/* ============================== */
/* Our Approach Section */
/* ============================== */
.neuroscience-process {
  padding: 2rem 1rem;
  margin-bottom: 5rem; /* adjust the value as needed */
  position: relative;
  overflow: hidden;
}

.neuroscience-process::before {
  content: "";
  position: fixed; /* overlay follows section height */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:     
	linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
	url('/wp-content/uploads/2025/12/home-page_parallax-background_any-section.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1; /* behind content */
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #101820;
  font-weight: 700;
}

.section-title span {
  color: #31D200;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
}

/* Process Flow */
.process-flow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Icons / steps */
.process-labels {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.process-labels li {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  font-size: 3rem;
  color: #101820;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  position: relative;
  text-align: center;
  flex: 1;
}

.process-labels li::before {
  display: block;
  text-align: center;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.process-labels li.unearthed::before { content: "\f002"; }
.process-labels li.converted::before { content: "\f021"; }
.process-labels li.harvested::before { content: "\f4d8"; }

.process-labels li.active { color: #31D200; }
.process-labels li.active::before { transform: scale(1.5); color: #31D200; }

/* Line under icons */
.line-container {
  position: relative;
  margin: 1.5rem 0 2rem;
  height: 2px;
  background: #ccc;
}

.line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: #31D200;
  width: 0%;
  transition: width 0.3s ease; /* only width changes on click */
}

/* Step content */
.process-content {
  position: relative;   /* container for absolute children */
  min-height: 120px;    /* ensure enough height for tallest paragraph */
  text-align: center;
  margin-top: 2rem;
}

.process-item {
  position: absolute;   /* stack all paragraphs on top of each other */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(0); /* horizontal sliding, not vertical */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  pointer-events: none; /* prevent clicking hidden paragraphs */
}

.process-item.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px; /* large enough for content */
  pointer-events: auto;
}

.process-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #101820;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif !important;
}

.process-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #101820;
  margin: 0;   
}

.step-image {
  margin-top: 2.0rem;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.5rem; /* Adjust radius as preferred */
}


/* Scroll animations for the section */
.neuroscience-process > * {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.neuroscience-process > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Line static on scroll (fade in with section) */
.line-container,
.line-progress {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.neuroscience-process > *.visible .line-container,
.neuroscience-process > *.visible .line-progress {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .process-content {
    min-height: 500px; /* adjust based on image height */
  }

  .step-image {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Responsive */
@media (max-width: 1023px) {
  .neuroscience-process {
	  overflow: visible;
    margin-bottom: 27rem; /* adjust the value as needed */
  }
	
  .process-labels {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .process-labels li {
    font-size: 2rem;
    flex: 1;
    text-align: center;
  }

  .process-labels li h3 {
    font-size: 1rem;
  }

  .process-labels li::before {
    margin-bottom: 0.25rem;
  }

  .line-container {
    height: 2px;
    margin: 1rem 0;
  }

  .line-progress {
    height: 2px;
  }

  .process-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;        /* remove extra margins inside p */
    padding-top: 1rem; /* consistent top spacing for all paragraphs */
  }
}


/* Large Mobile / Big Portrait Phones (~700px and below) */
@media (max-width: 700px) {
  .neuroscience-process {
    margin-bottom: 24rem;
  }

  .step-image {
    max-width: 90%;
  }
}

/* ≤ 650px — Middle mobile zone */
@media (max-width: 650px) {
  .neuroscience-process {
    margin-bottom: 22.5rem;
  }

  .step-image {
    max-width: 95%;
  }
}

/* Regular Mobile (~600px and below) */
@media (max-width: 600px) {
  .neuroscience-process {
    margin-bottom: 21rem;
  }

  .step-image {
    max-width: 100%;
  }
}
/* Our Approach Section */
/* ============================== */
/* Social Proof Section */
/* ============================== */
.social-proof {
  background-color: #f4f0eb;
  padding: 2rem 1rem;
  text-align: center;
  /* Make background span entire viewport */
  width: 100vw;      /* full viewport width */
  max-width: 100vw;  /* prevent any horizontal constraint */
  margin: 0;
  box-sizing: border-box; 
  overflow-x: hidden; /* prevents accidental horizontal scroll */
}

.social-proof .section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.social-proof .section-title span {
  color: #31D200;
}

/* Carousel and testimonial cards */
.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  width: 100%;          /* make it span full width up to max */
  margin: 0 auto;       /* keeps it centered */
  padding: 0 2rem;      /* spacing from left and right edges */
  box-sizing: border-box; /* ensures padding doesn’t break max-width */
}


.testimonial-carousel {
  position: relative;
  width: 100%; /* full width inside wrapper */
  max-width: 900px; /* inner max width */
  margin: 0 auto;
  overflow: visible;
  min-height: 300px;
  display: flex;
  height: 450px; /* consistent height for tallest slide */
}

.testimonial-slide {
  display: flex !important;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 450px; /* explicit height */
  align-items: stretch;
  justify-content: space-between; /* ensures content and image are pushed to edges */
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.06),
    0 12px 24px rgba(0,0,0,0.04);	  
  box-sizing: border-box;
}

.testimonial-slide.active {
  display: flex; 
  opacity: 1;
  pointer-events: auto;
  position: relative;
  align-items: stretch; /* ensures both halves fill slide height */
  transform: translateX(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.testimonial-content {
  flex: 1 1 50%;   
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* author will stick at bottom later */
  padding: 2rem; /* add padding inside */
  box-sizing: border-box;
}

.testimonial-content blockquote {
  width: 100%;    
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding: 0;
}

/* Custom sizes per author */
.testimonial-content blockquote.quote-JM-Matienzo {
  font-size: 1.10rem;
}

.testimonial-content blockquote.quote-Raghu-Krishnan {
  font-size: 1.15rem;  
}

.testimonial-content blockquote.quote-Kernan-Motoomull {
  font-size: 1.35rem;
}

.testimonial-content blockquote.quote-Balachander-Pitchai {
  font-size: 1.15rem;
}

.testimonial-content blockquote.quote-Marjorie-Mallari {
  font-size: 1.30rem;
}


/* Default: image on the left */
.testimonial-slide:not(.reverse) .testimonial-image {
  border-radius: 0 1.5rem 1.5rem 0; /* TR, BR only */
}

/* Reversed: image on the right */
.testimonial-slide.reverse .testimonial-image {
  border-radius: 1.5rem 0 0 1.5rem; /* TL, BL only */
}

/* Author */
.testimonial-author {
  margin-top: auto;  
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Normal slide: author on left */
.testimonial-slide:not(.reverse) .testimonial-author {
  justify-content: flex-start;
}

/* Reverse slide: author on right */
.testimonial-slide.reverse .testimonial-author {
  right: 0;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.testimonial-author img {
  width: 120px;
  height: 120px;
  border-radius: 1.5rem;
  object-fit: cover;
}

.author-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.author-info .name {
  font-weight: 700;
  margin: 0;
}

.author-info .position {
  font-size: 0.9rem;
  color: #101820;
  margin: 1px 0 0 0;
  line-height: 1.4;
}

.author-info .position .job-title {
  font-weight: 600;
  color: #101820;
  display: block;
}

.author-info .position .company {
  font-weight: 400;
  color: #999;
  display: block;
}

/* Image container */
/* Keep the flex container at 50% */
.testimonial-image {
  flex: 1 1 50%;
  display: flex;           /* important: allow inner image to behave properly */
  align-items: stretch;    /* fill container height */
  justify-content: center; /* center horizontally if needed */
  overflow: hidden;        /* crop edges */
  position: relative;
}

.img-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start; /* allows horizontal positioning */
  align-items: stretch;
}

.testimonial-image img {
  width: 100%;             /* fill container width */
  height: 100%;    
  object-fit: cover;  /* zoom + crop */
}

.testimonial-image .img-broll-1 {
  object-position: 0% center;  /* horizontal 20%, vertical center */
}

.testimonial-image .img-broll-2 {
  object-position: 25% center;  /* horizontal 20%, vertical center */
}

.testimonial-image .img-broll-3 {
  object-position: 65% center;  /* horizontal 20%, vertical center */
}

.testimonial-image .img-broll-4 {
  object-position: 50% center;  /* horizontal 20%, vertical center */
}

.testimonial-image .img-broll-5 {
  object-position: 45% center;  /* horizontal 20%, vertical center */
}

.testimonial-image .img-broll-6 {
  object-position: 50% center;  /* horizontal 20%, vertical center */
}


/* Reverse slides */
.testimonial-slide.reverse {
  flex-direction: row-reverse; /* flip layout */
}

.testimonial-slide.reverse .testimonial-content {
  text-align: right; /* right-align text */
}

/* Ensure image stays near edge */
.testimonial-slide .testimonial-image {
  margin: 0; /* remove unnecessary margins */
}

.testimonial-content {
  text-align: left; /* default for normal slides */
}

/* Reverse slide: image right, author text aligns with blockquote */
.testimonial-slide.reverse .testimonial-author {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.testimonial-slide.reverse .author-info {
  text-align: right;
}

/* Carousel navigation buttons */
/* Navigation arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0.7rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 48px;         
  height: 48px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(16, 24, 32, 0.4); /* dark glass */
  backdrop-filter: blur(10px); /* frosted effect */
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(49, 210, 0, 0.3); /* green glass effect */
  box-shadow: 0 8px 40px rgba(49, 210, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Pagination dots */
.carousel-pagination {
  position: relative; /* stays in normal flow */
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 12px;
  margin-top: 30px; /* moves it down naturally */
  z-index: 10;
  text-align: center;
}

.carousel-pagination .dot {
  width: 12px;
  height: 12px;
  background: rgba(16, 24, 32, 0.4); /* dark glassy base */
  backdrop-filter: blur(6px);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.carousel-pagination .dot:hover {
  transform: scale(1.2);
}

.carousel-pagination .dot.active {
  background: rgba(49, 210, 0, 0.5); /* green glassy active */
  box-shadow: 0 0 8px rgba(49, 210, 0, 0.7);
  transform: scale(1.3);
}

/* Slide animations */
.testimonial-slide.slide-in-right {
  transform: translateX(100%);
  animation: slideInFromRight 0.6s forwards;
}

.testimonial-slide.slide-in-left {
  transform: translateX(-100%);
  animation: slideInFromLeft 0.6s forwards;
}

.testimonial-slide.slide-out-right {
  animation: slideOutToRight 0.6s forwards;
}

.testimonial-slide.slide-out-left {
  animation: slideOutToLeft 0.6s forwards;
}

@keyframes slideInFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

@keyframes slideOutToLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}



@media (max-width: 1023px) {
  .carousel-wrapper {
    padding: 0;          /* no horizontal padding on mobile */
  }
	
  .testimonial-carousel {
    max-height: 1000px;      /* allow height to grow with content */
	max-width: 600px;
	overflow: show;
	  height: 750px;
  }

  /* Stack slides vertically and center content */
  .testimonial-slide,
  .testimonial-slide.reverse {
    display: flex;
    flex-direction: column;      /* stack content vertically */
    justify-content: space-between;  /* push author row to bottom */
    width: 100%;
    box-sizing: border-box;
	  height: 750px;
  }
	
.testimonial-content blockquote.quote-JM-Matienzo {
  font-size: 1.20rem;
}

.testimonial-content blockquote.quote-Raghu-Krishnan {
  font-size: 1.30rem;  
}

.testimonial-content blockquote.quote-Kernan-Motoomull {
  font-size: 1.45rem;
}

.testimonial-content blockquote.quote-Balachander-Pitchai {
  font-size: 1.30rem;
}

.testimonial-content blockquote.quote-Marjorie-Mallari {
  font-size: 1.30rem;
}

.testimonial-content {
  flex: 1 1 auto;              /* content grows naturally */
}

.testimonial-content,
.testimonial-slide.reverse .testimonial-content {
  width: 100%;
  flex: 1 1 50%;
  box-sizing: border-box;
  text-align: left;    /* keep your right alignment */
    justify-content: space-between; /* pushes children to edges with space in between */
  margin: 0 auto;
}

.testimonial-image,
.testimonial-slide.reverse .testimonial-image {
  width: 100%;
  flex: 1 1 50%;
  overflow: hidden;
  border-radius: 0 0 1.5rem 1.5rem;
}
	

  .testimonial-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
	
.testimonial-image .img-broll-1 {
  object-position: 0% 0%;  
}

.testimonial-image .img-broll-2 {
  object-position: 25% 70%;  
}

.testimonial-image .img-broll-3 {
  object-position: 65% 70%;  
}

.testimonial-image .img-broll-4 {
  object-position: 50% 30%;  
}

.testimonial-image .img-broll-5 {
  object-position: 45% 60%;  
}
	
  /* Apply bottom-corner rounding regardless of reversed or not */
  .testimonial-slide .testimonial-image,
  .testimonial-slide.reverse .testimonial-image {
    border-radius: 0 0 1.5rem 1.5rem !important;
  }

.testimonial-author,
.testimonial-slide.reverse .testimonial-author {
  flex-direction: row-reverse;    /* image goes on the right */
  justify-content: flex-end;      /* push the row to the right edge */
  align-items: center;            /* vertically align text + image */
  gap: 0.5rem;                    /* spacing between text and image */
  margin-top: 0.5rem;             /* optional spacing above author block */
  text-align: right;              /* text inside aligns right */
}

.testimonial-author img {
  width: 60px;                     /* smaller size for mobile */
  height: 60px;
  border-radius: 0.5rem;           /* optional rounding */
}

	.testimonial-slide.reverse .author-info {
    text-align: right !important;  /* force right alignment for reverse slides */
  }

  /* Carousel buttons closer to center and smaller */
  .carousel-prev,
  .carousel-next {
    width: 30px;         /* smaller size */
    height: 30px;
    font-size: 1.00rem;     /* smaller arrow symbol */
    padding: 0;
    position: absolute;  /* ensure they are positioned inside the carousel wrapper */
    top: 50%;            /* vertically center relative to carousel */
    z-index: 10;   
  }
	
  .carousel-prev {
    left: 5%;      /* position left arrow to the left of pagination */
	top: 50%; /* move down from 50% to 70% */
    transform: translateX(-50%) translateY(-50%); /* horizontal + vertical centering */
  }

  .carousel-next {
    left: 95%;      /* position right arrow to the right of pagination */
	top: 50%; /* move down from 50% to 70% */
    transform: translateX(-50%) translateY(-50%); /* horizontal + vertical centering */
  }
	
/* Remove hover movement */
  .carousel-prev:hover,
  .carousel-next:hover {
    transform: translateX(-50%) translateY(-50%); /* no scale */
  }


  /* Pagination dots smaller and centered */
  .carousel-pagination {
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }

  .carousel-pagination .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 632px) {
  .testimonial-carousel {
	  height: 575px;
  }

  /* Stack slides vertically and center content */
  .testimonial-slide,
  .testimonial-slide.reverse {
	  height: 575px;
  }

	
  .testimonial-content blockquote.quote-JM-Matienzo {
    font-size: 0.9rem;
  }

  .testimonial-content blockquote.quote-Raghu-Krishnan {
    font-size: 1rem;
  }

  .testimonial-content blockquote.quote-Kernan-Motoomull {
    font-size: 1.1rem;
  }

  .testimonial-content blockquote.quote-Balachander-Pitchai {
    font-size: 0.9rem;
  }

  .testimonial-content blockquote.quote-Marjorie-Mallari {
    font-size: 1rem;
  }

  .testimonial-image .img-broll-5 {
    object-position: 45% 50%;  
  }
	
  .carousel-prev {
    left: 2.5%;      /* position left arrow to the left of pagination */
	top: 50%; /* move down from 50% to 70% */
    transform: translateX(-50%) translateY(-50%); /* horizontal + vertical centering */
  }

  .carousel-next {
    left: 97.5%;      /* position right arrow to the right of pagination */
	top: 50%; /* move down from 50% to 70% */
    transform: translateX(-50%) translateY(-50%); /* horizontal + vertical centering */
  }
}


/* Section title initial state */
.section-title {
  opacity: 0;
  transform: translateY(20px);
}

/* Animate in when class added */
.section-title.fade-in-up {
  animation: fadeInUp 0.8s forwards ease-out;
}

/* Initial hidden state for slides (scroll fade-in) */
.testimonial-slide {
  opacity: 0;                /* hidden initially for fade-in */
  transform: translateY(20px); /* move slightly down for animation */
}

/* Animate slide in when class added */
.testimonial-slide.fade-in-slide {
  animation: fadeInUp 0.6s forwards ease-out;
}

/* Keyframes for fade-in effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Proof Section */
/* ============================== */
/* CTA Section */
/* ============================== */
.cta-section {
  position: relative !important;
  width: 100% !important;               /* full viewport width */
  max-width: 100% !important;           /* ensure no max-width restriction */
  margin-left: 0 !important;     
  margin-top: 0 !important;  
  padding-top: 4rem;     /* space above the card */
  padding-bottom: 4rem;  /* space below the card *//* reset any previous left shift */
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-height: 600px !important;          /* adjust height */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  background: 
    url('/wp-content/uploads/2025/12/home-page_cityscape-night_CTA-section-scaled.png') 
    center center / cover no-repeat !important;
}

/* Dark overlay on the background */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

/* Glass card */
.cta-card {
  position: relative; /* keeps card above overlay */
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.cta-photo {
  display: block;
  width: calc(100% + 6rem); /* card padding left + right = 3rem + 3rem */
  margin: -4rem -3rem 1rem;     /* negative margins match card padding */
  height: auto;
  border-top-left-radius: 22px;   /* match card's radius */
  border-top-right-radius: 22px;
  object-fit: cover;
}

.cta-card h2 {
  font-size: 2.5rem;
  color: #f8f8f4;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card h2 span {
  color: #31D200;            /* brand green */
  font-family: 'Playfair Display', serif !important;
  transition: color 0.3s ease;
  font-weight: 700;
}

.cta-card p {
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;   /* makes the button a flex container */
  align-items: center;    /* vertical centering */
}

.btn-primary {
  background: #31D200;
  border: none;
  color: #0A0A0A;
  text-decoration: none; /* removes underline */
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: #31D200;
  border: 2px solid #31D200;
}

.btn-secondary:hover {
  background: #31D200;
  color: #0A0A0A;
}

@media (max-width: 1023px) {
  .cta-card {
    padding: 3rem 1.5rem;     /* smaller padding on mobile */
    max-width: 80%;           /* keeps card from touching viewport edges */
    margin: 1.5rem auto;   /* centers card */
  }

  .cta-photo {
    width: calc(100% + 3rem);   /* padding left + right = 1.5rem + 1.5rem */
    margin: -3rem -1.5rem 1rem; /* negative margins match new padding */
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    object-fit: cover;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .cta-card p {
    font-size: 1rem;
  }
}




