/* ============================== Home page CSS ============================== */
.carousel-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-cta {
  padding: 10px 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 99px;
  transition: background-color 0.3s ease;
}

.carousel-cta:hover {
  background-color: var(--color-blue-hover);
  color: var(--color-white);
}
  
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--color-white);
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;  
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
  
.prev {
  left: 10px;
}

.next {
  right: 10px;
}
  
.carousel-title {
  color: var(--color-neutral-dark-blue);
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 
      -1px -1px 2px rgba(255, 255, 255, 0.8), 
      1px -1px 2px rgba(255, 255, 255, 0.8), 
      -1px  1px 2px rgba(255, 255, 255, 0.8), 
      1px  1px 2px rgba(255, 255, 255, 0.8);
}
  
.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  color: var(--color-white);
  text-align: center; 
  transition: opacity 1s ease-in-out;
  width: 90%;           
  max-width: 1200px;
}

.where-we-go {
  margin: 48px 0;
}

.where-we-go-right {
  padding-left: 60px;
}

.where-we-go-left {
  padding-right: 60px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-blue-light);
  border-radius: 16px;
  padding: 32px;
  gap: 24px;
  flex-wrap: wrap;
  height: 80vh;
}

.author {
  font-weight: 500;
  margin-top: 16px;
  color: var(--color-blue);
}
  
.testimonial-image {
  display: flex;
  align-items: center;
}
  
.testimonial-image .image-wrapper {
  border-left: 8px solid var(--yellow);
  border-bottom: 8px solid var(--yellow);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
  
.highlighted-quotes {
  position: relative;
  padding: 40px 24px;
  max-width: 600px;
  z-index: 1; 
}

.highlighted-quotes p {
  line-height: 1.8;
  margin: 12px 0;
}

.highlighted-quotes::before,
.highlighted-quotes::after {
  content: "“";
  font-size: 140px;
  color: var(--color-blue);
  font-weight: bold;
  font-family: serif;
  line-height: 1;
  position: absolute;
  z-index: 0; 
  pointer-events: none; 
}
  
.highlighted-quotes::before {
  top: -20px;
  left: -10px;
}

.highlighted-quotes::after {
  content: "”";
  bottom: -65px;
  right: -10px; 
}

/* ============================== COMPANY PAGE CSS ============================== */
.team-item {
  position: relative;
}
 
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: var(--color-white);
  padding: 20px 10px 30px;
  text-align: center;
  box-sizing: border-box;
}
 
.carousel-caption .name {
  font-weight: bold;
  text-align: center;
  margin: 0;
}
 
.carousel-caption .role {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  margin: 4px 0 0;
  font-weight: normal;
  color: var(--color-white);
}
 
.section-padding{
  width:100%;
  margin: 0 auto;
}

.team_slider .owl-item .team-item {
  transform: translate3d(0, 0, 0);
  margin: 50px 0; 
}
 
.team_slider .owl-item .team-item img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  transform: scale(1);
  -o-transition: 0.3s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}

.team_slider .owl-item.center .team-item img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.team_slider .owl-item.center .team-item img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.team_slider .owl-nav button.owl-prev,
.team_slider .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
 
.team_slider .owl-nav button.owl-prev {
  left: -30px;
  background-image: url('../images/transparent-prev-arrow.png');
}

.team_slider .owl-nav button.owl-next {
  right: -30px;
  background-image: url('../images/transparent-next-arrow.png');
}

.team_slider .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.team_slider .image-wrapper img {
  width: 100%;
  display: block;
}

.team_slider .details {
  display: none;
  text-align: center;
  margin-top: 50px;
}

.team_slider .owl-item.center .details {
  display: block;
}

.owl-item .team-item .image-wrapper {
  transition: transform 0.3s;
  transform: scale(0.8);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.team_slider .owl-item.center .team-item .image-wrapper {
  transform: scale(1.1);
}

.globalMapOutter {
  border: 1px solid var(--color-light-grey);
  padding: 15px 0;
}

.map-buttons {
  text-align: center;
}

.map-buttons > ul {
  list-style: none;
}
 
#mapContainer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  margin: auto;
  overflow: hidden;
}

#worldMap {
  width: 100%;
  height: 100%;
}

.region-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px;
  background-color: var(--yellow);
  color: #26354E;
  padding: 10px;
  font-family: sans-serif;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 10;
}

.region-box.campaigns {
  background-color: #5AC8FA;
}


/* ============================== SERVICES PAGE CSS ============================== */
.service-group {
  margin-top: 30px;
}
  
.service-group .wp-block-columns > .wp-block-column:nth-child(1) {
  padding-right: 20px;
}

.service-group .wp-block-columns > .wp-block-column:nth-child(2) {
  padding-left: 20px;
}
  
.service-group .wp-block-list {
  padding-left: 25px;
}
  
.service-group .wp-block-columns:not(:first-child) {
  margin-top: 30px;
}

/* ============================== WHY THE POINT COMPANY PAGE CSS ============================== */
.trend-group {
  border: 1px solid var(--color-blue);
  padding: 30px;
}

.trends-list {
  line-height: 1.5rem;
  padding-left: 30px;
}
  
.trends-list li {
  margin-bottom: 10px;
}

.focus-on-you.wp-block-image img {
  width: 100%;
  height: auto;
}
  
/* ============================== CONTACT US PAGE CSS ============================== */
.contact-grid {
  background: 
      radial-gradient(
          circle at top right,
          rgba(255, 255, 255, 0.5) 0%,
          rgba(255, 255, 255, 0.3) 5%,
          rgba(255, 255, 255, 0.1) 20%,
          rgba(255, 255, 255, 0) 100%
      ),
      #3B7FB2;
  padding: 20px;
  border-radius: 10px;
}

.contact-icon {
  background-color: var(--color-yellow);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 3px;
}

/* ============================== MARKETS SINGLE PAGE CSS ============================== */
.cybersecurity-approach-bg {
  background: url('../images/markets/cybersecurity-aproach-bg.webp') no-repeat right center;
}

.healthcare-approach-bg {
  background: url('../images/markets/healthcare-aproach-bg.webp') no-repeat right center;
}

.telecom-approach-bg {
  background: url('../images/markets/telecom-aproach-bg.webp') no-repeat right center;
}

.technology-approach-bg {
  background: linear-gradient(to right, #f0f2f5, #40ACD7);
}

.approach-banner {
  background-size: cover;    
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
}

.approach-banner h2 {
  color: var(--color-white);
  font-size: 28px;
  text-align: center;
}

.approach-text {
  color: var(--color-white);
  font-weight: 600;
  text-shadow: -2px -2px 2px rgba(38, 53, 78, 0.8), 1px -1px 2px rgba(38, 53, 78, 0.8), -1px 1px 2px rgba(38, 53, 78, 0.8), 1px 1px 2px rgba(38, 53, 78, 0.8);
}

.approach-banner .box {
  padding: 10px;
}

.market .grid {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin-top: 25px;
  list-style: none;
}

.market .grid li {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.market .wp-block-list {
  padding-left: 30px;
  margin-bottom: 20px;
}

.market .read-more-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-blue); 
  background-color: var(--color-white);
  border: 2px solid #dce1e7; 
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), inset 0 0 5px rgba(0, 0, 0, 0.1); 
  transition: all 0.3s ease;
  margin-top: auto;
  }

.market .read-more-btn:hover {
  background-color: #f5faff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ============================== CONTACT US PAGE CSS ============================== */
.contact-section {
  padding: 25px 250px 80px;
  background: linear-gradient(180deg, #ffffff, #d5eaf1, #489dd9);
}

@media (max-width: 1024px) {
  .contact-section {
    padding-right: 100px;
    padding-left: 100px;
  }

}

@media (max-width: 767px) {
  .mt-48, body:not(.page-id-3448) .home-intro {
    margin-top: 40px;
  }

  .carousel-cta {
    font-size: 10px;
  }

  .carousel-content {
    width: 85%;
  }

  .where-we-go-right {
    padding-left: 0;
  }

  .service-group {
    margin-top: 40px;
  }
  
  .service-group .wp-block-columns > .wp-block-column:nth-child(2) {
    padding: 0;
  }

  .service-group .wp-block-columns {
    gap: 1rem;
  }

  .service-group .wp-block-spacer {
    height: 1px !important;
  }

  .trends {
    display: block !important;
  }

  .category-content-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important; 
    margin-top: 26px;
    gap: 2rem;
  }

  .category-excerpt {
    margin-bottom: 20px;
  }

  .animated-button {
    display: none;
  }

  .contact-section {
    padding: 30px;
  }

  .wpcf7-form {
    padding-right: 0;
  }

  .wpcf7-form-control-wrap input,
  .wpcf7-form-control-wrap textarea {
      width: 100%;
  }

  .paragraph-sm {
    font-size: 14px !important;
  }

  .where-we-go-left {
    padding-right: 0;
  }

  .btn-base > a {
    font-size: 14px;
  }

  .testimonial-container .row {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .testimonial-image {
    justify-content: center;
  }

  .highlighted-quotes::before, .highlighted-quotes::after {
    font-size: 80px;
  }

  .highlighted-quotes::before {
    top: -10px;
  }

  .highlighted-quotes::after {
    bottom: -25px;
  }

  .testimonial-container {
    height: auto;
  }

  .approach-banner {
    padding: 0;
  }

  .market .grid {
    grid-template-columns: 1fr;
  }

}

@media (min-width:61.25em){
  .o-services__left{
    position:sticky;
    position:-webkit-sticky;
    top:100px;
    padding-top: 28px;
  }
}