html, body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
.fullwidth-slider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 60px;
  margin-bottom: 60px;
}
.slider {
  position: relative;
  overflow: visible;
}

.slick-slide {
  margin: 0 20px;
}
.slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.vertical-center-4 .slick-prev,
.vertical-center-4 .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5d1c9c;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.vertical-center-4 .slick-prev:hover,
.vertical-center-4 .slick-next:hover {
  background-color: rgba(93, 28, 156, 0.8);
}
.vertical-center-4 .slick-prev:before,
.vertical-center-4 .slick-next:before {
  display: none;
}
.vertical-center-4 .slick-prev::after,
.vertical-center-4 .slick-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 28px;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}
.vertical-center-4 .slick-prev::after { content: "\f104"; transform: rotate(0deg); }
.vertical-center-4 .slick-next::after { content: "\f105"; transform: rotate(0deg); }
.vertical-center-4 .slick-prev { left: 10px; }
.vertical-center-4 .slick-next { right: 10px; }
@media (max-width: 768px) {
  .vertical-center-4 .slick-prev,
  .vertical-center-4 .slick-next {
    width: 40px;
    height: 40px;
  }
  .vertical-center-4 .slick-prev::after,
  .vertical-center-4 .slick-next::after {
    font-size: 22px;
  }
  .vertical-center-4 .slick-prev { left: 5px; }
  .vertical-center-4 .slick-next { right: 5px; }
}
.custom-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.custom-card img {
  width: 100%;
  height: auto;
  display: block;
}
.custom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #ffffff;
  z-index: 2;
}
.slide-subtitle {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.slide-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.slide-text {
  opacity: 0.85;
  margin-bottom: 20px;
}
.slide-btn {
  display: inline-block;
  background-color: #5d1c9c;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.3s ease;
}
.slide-btn:hover {
  filter: brightness(1.2);
}
.orange-wave-section {
  background-color: #ff9e00;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 60px;
}
.wave-top.wave-bottom {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100vw;
  height: 150px;
  z-index: 0; 
}
.wave-top.wave-overlay {
   position: absolute;
  top: -50px;
  left: 0;
  width: 100vw;
  height: 150px;
  z-index: 1;
}
.orange-wave-section .industry-card {
  z-index: 2;  
  position: relative;
}
.wave-top {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100vw;
  height: 150px;
  z-index: 0;
}
.wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fill-first { fill: #ffffff; }
.fill-second { fill: #ff9e00; }
.industry-card {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-width: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 300px;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.border-top-purple {
  border-top-color: #9d4edd;
}
.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-top: 0.5rem;
}
.hashtags {
  font-size: 0.75rem;
  font-style: italic;
  color: #fff9c4;
  margin-top: 0.5rem;
}
.text-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
  margin: 0.5rem 0;
}
.orange-wave-section .slide-btn {
  display: none !important;
}
.fullwidth-orange-factoid {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: #ff9e00;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.fullwidth-orange-factoid .highlight {
  background-color: #7b1fa2;
  color: #ffffff;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 2rem;
  display: inline-block;
}
.fullwidth-orange-factoid .factoid-number-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fullwidth-orange-factoid .factoid-number {
  font-weight: 700;
  font-size: 5.7rem;
  color: #ffffff;
  line-height: 1;
}
.fullwidth-orange-factoid .factoid-number-text {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 0;
}
.logo-wave-divider {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  line-height: 0;
  margin-bottom: 20px;
}
.logo-wave-divider svg {
  width: 100%;
  height: 120px;
  display: block;
}
.client-logos-section {
  background: #ffffff;
  padding: 40px 0;
  text-align: center;
}
.logo-carousel .slick-list {
  overflow: hidden !important;
}
.logo-carousel .slick-track {
  display: flex !important;
  align-items: center;
}
.logo-carousel .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 0 20px;
}
.logo-carousel img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.logo-carousel img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.logo-carousel .slick-prev:before,
.logo-carousel .slick-next:before {
  content: none !important;
}
.logo-carousel .slick-prev,
.logo-carousel .slick-next {
  background: transparent !important;
  border: none !important;
  width: 60px;
  height: 60px;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-carousel .slick-prev::after,
.logo-carousel .slick-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 36px;
  color: #888888;
  transition: color 0.3s ease, transform 0.3s ease;
  transform-origin: center center;
}
.logo-carousel .slick-prev::after {
  content: "\f104";
  transform: rotate(0deg);
}
.logo-carousel .slick-next::after {
  content: "\f105";
  transform: rotate(0deg);
}
.logo-carousel .slick-prev:hover::after,
.logo-carousel .slick-next:hover::after {
  color: #7b1fa2;
}
.logo-carousel .slick-prev { left: -40px !important; }
.logo-carousel .slick-next { right: -40px !important; }
@media (max-width: 768px) {
  .logo-carousel .slick-prev { left: -25px !important; }
  .logo-carousel .slick-next { right: -25px !important; }
}
.testimonials-section {
  padding-top: 40px 0;
  padding-bottom: 40px 0;
}
.testimonials-slider .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 10px;
}
.testimonials-slider .testimonial-card blockquote {
  background: #ffffff;
  border-radius: 12px;
  color: #555555;
  padding: 25px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonials-slider .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.testimonials-slider .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.testimonials-slider .testimonial-author h4 {
  font-size: 15px;
  margin: 0;
}
.testimonials-slider .testimonial-author span {
  font-size: 13px;
  color: #777;
}
.testimonials-slider .slick-dots {
  bottom: -20px;
}
.testimonials-slider .slick-dots li {
  margin: 0 2px;
}
.testimonials-slider .slick-dots li button:before {
  font-size: 11px !important;
  color: #bdbdbd !important;
  opacity: 1 !important;
  transition: color 0.3s ease, transform 0.3s ease;
}
.testimonials-slider .slick-dots li.slick-active button:before {
  color: #7b1fa2 !important;
  transform: scale(1.2);
}
.testimonials-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-slider .slick-slide {
  display: flex !important;
  flex-direction: column;
  padding: 0 5px;
}
.fullwidth-gray-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f7f7f7;
}
.feedback-section {
  position: relative;
  padding: 60px;
}
.feedback-section .feedback-title {
  animation: fadeInDown 0.8s ease forwards;
}
.feedback-section .feedback-text {
  animation: fadeIn 1s ease forwards;
}
.feedback-section .btn {
  transition: all 0.3s ease;
}
.feedback-section .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
@media (max-width: 768px) {
  .feedback-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contact-section {
  background-color: #ffffff;
}
.contact-icon {
  font-size: 2.5rem; /* ~40px */
  margin-bottom: 8px;
  color: #ff6d00; /* replaces filter + fill */
}
.contact-card {
  background-color: #ffffff;
  transition: none;
}
.contact-value {
  color: #000000;
}
.contact-value:hover {
  text-decoration: underline;
  cursor: pointer;
}
.cookie-btn {
  background-color: #7b2cbf;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.cookie-btn:hover {
  background-color: #9c46e0;
}
#cookie-notice p { margin-bottom: 0; font-size: 0.95rem; }
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.85);
  color: #6c6a67;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 9999;
  text-decoration: none;
}
#scrollTopBtn:focus,
#scrollTopBtn:hover {
  background-color: #5a189a;
  color: #ffffff;
  outline: none;
}