/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ============================================================
   KTECHARA DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand Palette */
  --color-pink:        #D76AB3;
  --color-blue:        #7EC7E8;
  --color-purple:      #C89AE8;
  --color-lavender:    #E5C5F4;
  --color-peach:       #F5B38A;
  --color-gold:        #F7D46B;
  --color-lime:        #C8E86A;
  --color-cream:       #FFF8E8;
  --color-dark:        #2B2B2B;

  /* Semantic roles */
  --color-bg-primary:   #FFFFFF;
  --color-bg-cream:     #FFF8E8;
  --color-bg-soft:      #F7F0FF;      /* faint purple tint for alternating sections */
  --color-bg-accent:    rgba(126, 199, 232, 0.08); /* whisper blue */

  --color-text-primary: #2B2B2B;
  --color-text-muted:   #6B6B6B;
  --color-text-light:   #9B9B9B;

  --color-link:         #C89AE8;
  --color-link-hover:   #D76AB3;
  --color-link-active:  #7EC7E8;

  --color-border:       rgba(43, 43, 43, 0.12);
  --color-border-light: rgba(200, 154, 232, 0.25);

  /* CTA gradient — used on all primary buttons */
  --gradient-cta: linear-gradient(135deg, #D76AB3 0%, #C89AE8 40%, #7EC7E8 75%, #F5B38A 100%);

  /* Supporting gradients */
  --gradient-hero:    linear-gradient(135deg, rgba(215,106,179,0.12) 0%, rgba(200,154,232,0.10) 50%, rgba(126,199,232,0.12) 100%);
  --gradient-card:    linear-gradient(160deg, #FFF8E8 0%, #FFFFFF 100%);
  --gradient-section: linear-gradient(180deg, #FFFFFF 0%, #FFF8E8 100%);
  --gradient-footer:  linear-gradient(135deg, #1a1a2e 0%, #2B2B2B 30%, #3a1f3a 55%, #1f2a3a 80%, #2B2B2B 100%);

  /* Gradient border (for cards) */
  --gradient-border: linear-gradient(135deg, #D76AB3, #C89AE8, #7EC7E8, #F5B38A);

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(43,43,43,0.06);
  --shadow-sm:  0 2px 8px rgba(43,43,43,0.08);
  --shadow-md:  0 4px 20px rgba(215,106,179,0.10), 0 2px 8px rgba(43,43,43,0.06);
  --shadow-lg:  0 8px 40px rgba(200,154,232,0.18), 0 4px 16px rgba(43,43,43,0.08);
  --shadow-glow: 0 0 0 3px rgba(200,154,232,0.30);

  /* Typography */
  --font-body:    "adelle", Georgia, serif;
  --font-display: "adelle", Georgia, serif;

  /* Spacing */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 40px;

  /* Motion */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================================
   BASE / RESET
   ============================================================ */

body {
  max-width: 2560px;
  width: 100%;
  margin: 0 auto !important;
  float: none !important;
  overflow-x: hidden;
  box-sizing: border-box;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* ============================================================
   LINKS
   ============================================================ */

a {
  color: var(--color-link);
  transition: color var(--transition);
}
a:hover {
  color: var(--color-link-hover);
}
a:active {
  color: var(--color-link-active);
}

/* ============================================================
   GLOBAL INTERACTIVE — BUTTON / INPUT HOVER
   ============================================================ */

/* Scoped only to actual form submit/input buttons — NOT nav toggle buttons */
[type=submit]:focus,
[type=submit]:hover {
  background: var(--gradient-cta);
  color: #fff !important;
  transition: all var(--transition);
}

/* Exclude nav dropdown toggles, menu toggles, accordion toggles */
[type=button]:focus:not(.e-n-menu-dropdown-icon):not(.e-n-menu-toggle):not([class*="accordion"]):not([class*="tab"]),
[type=button]:hover:not(.e-n-menu-dropdown-icon):not(.e-n-menu-toggle):not([class*="accordion"]):not([class*="tab"]) {
  background: var(--gradient-cta);
  color: #fff !important;
  transition: all var(--transition);
}

/* ============================================================
   BUTTON VARIANTS
   ============================================================ */

/* Outline — pink */
.red-outline-button a {
  border: 2px solid var(--color-pink) !important;
  background-color: transparent !important;
  color: var(--color-pink) !important;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.red-outline-button a:hover {
  border: 2px solid var(--color-purple) !important;
  background-color: transparent !important;
  color: var(--color-purple) !important;
  box-shadow: var(--shadow-glow);
}

/* Outline — white */
.white-outline-button a {
  border: 2px solid #ffffff !important;
  background-color: transparent !important;
  color: #ffffff !important;
  transition: background-color var(--transition), color var(--transition);
}
.white-outline-button a.elementor-button:hover {
  background-color: #fff !important;
  color: var(--color-pink) !important;
}

/* Soft filled */
.pink-button a {
  background-color: var(--color-lavender) !important;
  color: var(--color-dark) !important;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.pink-button a:hover {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  box-shadow: var(--shadow-md);
}

/* Primary Elementor button */
.elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  line-height: 1 !important;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
/* Shine effect only on real buttons, not nav toggles */
.elementor-button:not(.e-n-menu-dropdown-icon):not(.e-n-menu-toggle)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}
.elementor-button:not(.e-n-menu-dropdown-icon):not(.e-n-menu-toggle):hover::after {
  opacity: 1;
}

/* Explicitly reset nav dropdown toggle buttons — no background, no glow */
.e-n-menu-dropdown-icon,
.e-n-menu-toggle,
button.e-n-menu-dropdown-icon,
button.e-n-menu-toggle {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}
.e-n-menu-dropdown-icon:hover,
.e-n-menu-dropdown-icon:focus,
.e-n-menu-toggle:hover,
.e-n-menu-toggle:focus {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.elementor-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.elementor-button {
  height: 50px;
}
a.elementor-button.elementor-button-link.elementor-size-sm {
  height: 44px !important;
}
.elementor-size-md .elementor-button {
  height: 48px;
  padding: 0 24px;
}
.elementor-size-lg .elementor-button {
  height: 50px;
  padding: 0 32px;
}

/* Cards-style ghost button */
.cards-btn .elementor-button {
  background-color: transparent !important;
  color: var(--color-text-primary);
  padding: 0;
  border-radius: 0;
}
.cards-btn .elementor-button:hover {
  color: var(--color-pink);
  background-color: transparent !important;
  box-shadow: none;
  transform: none;
}
.cards-btn span.elementor-button-icon svg {
  color: var(--color-pink) !important;
  font-size: 20px;
  transition: transform var(--transition);
}
.cards-btn:hover span.elementor-button-icon svg {
  transform: translateX(4px);
}

/* Transparent button variant */
.transparent-button .elementor-button.elementor-size-sm {
  background-color: transparent;
}

/* Arrow underline link */
.underline-with-arrow.hide-text {
  position: relative !important;
}
.underline-with-arrow a {
  background-image: url('../../uploads/2023/09/arrow-left.svg');
  background-repeat: no-repeat;
  background-position: right -2px;
  padding-right: 20px;
  padding-bottom: 14px;
}
.underline-with-arrow.hide-text a {
  font-size: 0;
}

@media screen and (min-width: 768px) {
  .underline-with-arrow {
    position: absolute !important;
  }
  .underline-with-arrow a,
  .underline-with-arrow.hide-text a {
    background-image: url('../../uploads/2023/09/arrow-left.svg');
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-pink);
    font-size: initial;
  }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.sub-headline {
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

/* ============================================================
   CAROUSEL / SWIPER
   ============================================================ */

.swiper-pagination-bullet-active {
  background: var(--color-purple) !important;
}
.elementor-swiper-button.elementor-swiper-button-next:hover path,
.elementor-swiper-button.elementor-swiper-button-prev:hover path {
  fill: #fff;
}
.board-members .elementor-swiper-button.elementor-swiper-button-next:hover path,
.board-members .elementor-swiper-button.elementor-swiper-button-prev:hover path {
  fill: var(--color-pink) !important;
}

/* Social icons */
i.fab.fa-twitter {
  content: url(../../uploads/2023/10/twitter-x-logo.svg);
}
i.fab.fa-linkedin {
  content: url(../../uploads/2023/10/linkedin-logo-up.svg);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

span.e-n-menu-item-icon {
  margin-left: 4px;
}

/* Mega-menu image-box cards */
.menu-box .elementor-image-box-content {
  padding: 20px 30px 50px 20px;
  background: var(--color-blue);
  width: 290px !important;
  margin-top: -10px;
}
.orange .elementor-image-box-content {
  background: var(--color-peach);
  color: var(--color-dark);
}
.green .elementor-image-box-content {
  background: var(--color-lime);
  color: var(--color-dark);
}

.pink-hover a:hover {
  color: var(--color-pink) !important;
  font-weight: 500 !important;
}
.white-hover a:hover {
  font-weight: 700 !important;
}

.e-con-full.mega-insights-type.e-flex.e-con.e-child {
  background: #fff !important;
}

span.e-n-tab-title-text {
  text-transform: none;
}

/* Ecosystem & links */
.ecosystem a,
.links a {
  color: var(--color-pink) !important;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  span.e-n-accordion-item-title-icon {
    justify-content: flex-end !important;
    flex-grow: 1 !important;
  }
  .lightnav svg path {
    fill: #fff !important;
  }
  .lightnav .elementor-13 .elementor-element.elementor-element-1940c27.elementor-view-default .elementor-icon svg {
    fill: #fff !important;
  }
  .footer-menu .fa-chevron-up:before,
  .footer-menu .fa-chevron-down:before {
    color: #fff !important;
  }
  .footer-menu.elementor-widget-n-accordion.e-n-accordion-item[open].e-n-accordion-item-title-icon span>i {
    color: #fff !important;
  }
  .footer-menu.elementor-widget-n-accordion.e-n-accordion-item.e-n-accordion-item-title-icon span>i {
    color: #fff !important;
  }
}

@media screen and (max-width: 350px) {
  .mobile-menu .elementor-widget-n-tabs .e-n-tabs-heading {
    gap: 4px !important;
  }
  .mobile-menu .elementor-widget-n-tabs .e-n-tab-title-text {
    font-size: 11px !important;
  }
}

/* ============================================================
   RESOURCES MODULE
   ============================================================ */

.premium-blog-entry-meta i {
  display: none !important;
}

/* ============================================================
   AWARDS CAROUSEL
   ============================================================ */

.awards-carousel img.swiper-slide-image {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter var(--transition);
}
.awards-carousel img.swiper-slide-image:hover {
  -webkit-filter: none;
  filter: none;
}
.awards-carousel .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

@media screen and (min-width: 1024px) {
  .awards-carousel .swiper-pagination {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .awards-carousel .swiper-pagination {
    top: 125px !important;
  }
}

/* ============================================================
   CASE STUDIES CAROUSEL
   ============================================================ */

@media screen and (min-width: 1024px) {
  .hp-carousel ul.slick-dots {
    display: none !important;
  }
}

.related-studies .elementor-post__badge {
  top: 265px !important;
  left: 12px !important;
  margin: 0 !important;
}

/* Read-more pill */
a.elementor-post__read-more {
  padding: 12px 22px !important;
  border-radius: var(--radius-pill) !important;
  background-color: var(--color-lavender) !important;
  color: var(--color-dark) !important;
  line-height: 16px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
a.elementor-post__read-more:hover {
  color: #ffffff !important;
  background: var(--gradient-cta) !important;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-cards a {
  color: var(--color-text-primary);
  transition: color var(--transition);
}
.service-cards a:hover {
  color: var(--color-pink) !important;
}
.service-cards .elementor-button-text {
  text-align: left !important;
}
.service-cards span.elementor-button-icon.elementor-align-icon-right {
  margin-top: 15px;
  color: var(--color-pink) !important;
}
.service-cards .elementor-widget-icon-box.elementor-mobile-position-right .elementor-icon-box-wrapper {
  align-items: center;
}

/* ============================================================
   EXPLORE SERVICES CARDS
   ============================================================ */

.arrow-btn .elementor-button:hover {
  border-color: var(--color-purple) !important;
}

@media screen and (max-width: 960px) {
  .expsv-cards h4.elementor-heading-title.elementor-size-default {
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
}

/* ============================================================
   SOLUTIONS TABS
   ============================================================ */

.e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="true"] {
  border: 0px !important;
}
.industry .e-n-tab-title-text {
  flex-grow: 1 !important;
}
.elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="true"] {
  border-style: solid !important;
  border-width: 0px 0px 1px 0px !important;
  border-color: var(--color-border) !important;
}
button#e-n-tabs-title-1306 {
  border-bottom: 0px !important;
}

@media screen and (max-width: 767px) {
  .industry .e-n-tab-title {
    padding: 0 0 25px 0 !important;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1366px) {
  .industry .elementor-post__badge {
    top: 170px !important;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .industry .elementor-post__badge {
    top: 195px !important;
  }
}

/* ============================================================
   ABOUT US TIMELINE
   ============================================================ */

.timeline .tab-current .premium-tab-link svg {
  border: 1px var(--color-pink) !important;
}
.timeline ul.premium-tabs-nav-list.premium-tabs-horizontal {
  background: url(../../uploads/2023/10/timeline-line.png) repeat-x;
  background-position-y: 35%;
}
.timeline .premium-tabs-nav-list a.carousel-arrow {
  top: 36% !important;
}
.timeline [type=button]:hover {
  background-color: transparent;
  color: var(--color-pink) !important;
}
.timeline .fas {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .timeline .e-con.e-flex {
    --width: 100% !important;
  }
  .timeline .fas {
    font-size: 20px;
  }
}

/* ============================================================
   CONTACT US / LOCATION TABS
   ============================================================ */

.locations-tabs a {
  color: var(--color-pink) !important;
}

@media screen and (min-width: 1024px) {
  svg.svg-inline--fa.fa-chevron-down.fa-w-14.premium-title-icon.premium-svg-nodraw {
    display: none;
  }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */

.policies .elementor-text-editor.elementor-clearfix {
  padding-bottom: 30px !important;
}

/* ============================================================
   HUBSPOT FORMS
   ============================================================ */

.hbspt-form input[type=date],
.hbspt-form input[type=number],
.hbspt-form input[type=password],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-sm) !important;
  height: 52px;
  margin: 12px 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hbspt-form input[type=email] {
  margin: 12px 0;
  height: 52px;
  border-radius: var(--radius-sm) !important;
  transition: border-color var(--transition), box-shadow var(--transition);
}
select {
  color: var(--color-text-muted);
}

/* Form submit button */
input.hs-button.primary.large {
  background: var(--gradient-cta);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
input.hs-button.primary.large:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}

/* Focus states */
.hbspt-form input[type=date]:focus,
.hbspt-form input[type=number]:focus,
.hbspt-form input[type=password]:focus,
.hbspt-form input[type=tel]:focus,
.hbspt-form input[type=text]:focus,
.hbspt-form input[type=url]:focus,
.hbspt-form select:focus,
.hbspt-form textarea:focus,
.hbspt-form input[type=date]:active,
.hbspt-form input[type=number]:active,
.hbspt-form input[type=password]:active,
.hbspt-form input[type=tel]:active,
.hbspt-form input[type=text]:active,
.hbspt-form input[type=url]:active,
.hbspt-form select:active,
.hbspt-form textarea:active {
  border-color: var(--color-purple) !important;
  box-shadow: var(--shadow-glow);
  outline: none;
}

.rc-anchor-invisible-text {
  background: var(--color-purple) !important;
}
input.hs-button.primary.large,
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin-top: 20px !important;
}

/* Subscribe newsletter form */
.subscribe input#email-ada8b458-bd48-4c00-83e6-73e523eabb21::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
}
.subscribe input.hs-button.primary.large {
  background-color: transparent !important;
  border: 2px solid #fff !important;
  padding: 10px 28px !important;
}
.subscribe form#hsForm_ada8b458-bd48-4c00-83e6-73e523eabb21 {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
}
.subscribe input#email-ada8b458-bd48-4c00-83e6-73e523eabb21 {
  width: 360px !important;
  background-color: transparent !important;
  padding: 10px 20px;
  border: none !important;
  border-bottom: 2px solid #fff !important;
}
.subscribe input.hs-button.primary.large:hover {
  color: var(--color-pink) !important;
  background: #fff !important;
}
.subscribe-form-container label.hs-error-msg.hs-main-font-element,
.subscribe-form-container ul.no-list.hs-error-msgs.inputs-list {
  color: #fff !important;
}

/* Contact form */
.contact form#hsForm_705331a5-cb3e-472c-8e6b-122ac630e4b3 {
  width: 1000px !important;
}
.contact fieldset.form-columns-2,
.contact fieldset.form-columns-1 {
  max-width: 990px !important;
}
.contact textarea#how_can_we_help-705331a5-cb3e-472c-8e6b-122ac630e4b3 {
  height: 125px !important;
}
.contact fieldset.form-columns-2 .hs-form-field {
  width: 48% !important;
  margin: 0 5px !important;
}
.contact fieldset.form-columns-1 .hs-input {
  width: 950px !important;
  margin: 0 5px !important;
}

/* Form errors */
ul.no-list.hs-error-msgs.inputs-list {
  color: #E01913 !important;
  margin-left: 15px !important;
}
fieldset .input .hs-input.invalid.error {
  border: 2px solid #E01913 !important;
}

/* Submitted messages */
.submitted-message.hs-main-font-element.hs-form-705331a5-cb3e-472c-8e6b-122ac630e4b3.hs-form-705331a5-cb3e-472c-8e6b-122ac630e4b3_5f1431b8-3daa-4d44-91cf-2ac3d183089a {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-pink) !important;
}
.mailing-list ul.no-list.hs-error-msgs.inputs-list {
  color: #fff !important;
  margin-left: 20px !important;
}
.mailing-list .submitted-message.hs-main-font-element {
  color: #fff !important;
  font-size: 20px !important;
  margin: 30px 0 0 60px !important;
}
.mailing-list a {
  color: #fff;
}
.mailing-list a:hover {
  font-weight: 600;
}
.submitted-message.hs-main-font-element p {
  font-weight: 700 !important;
  font-size: 24px;
}

fieldset.form-columns-2 .hs-form-field:nth-child(2n+1) {
  padding: 0 10px 0 0;
}

/* GDPR checkbox fixes */
ul.inputs-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 !important;
}
li.hs-form-booleancheckbox {
  display: inline-flex;
}
li.hs-form-checkbox span {
  margin-left: 6px !important;
}
ul.inputs-list.multi-container li.hs-form-checkbox {
  list-style-type: none;
  margin-bottom: 0 !important;
}

fieldset.form-columns-1 {
  max-width: 100% !important;
}
fieldset.form-columns-2 {
  max-width: 600px !important;
}

input#LEGAL_CONSENT\.subscription_type_245847260-705331a5-cb3e-472c-8e6b-122ac630e4b3,
input#LEGAL_CONSENT\.subscription_type_3260847-ada8b458-bd48-4c00-83e6-73e523eabb21 {
  display: inline-flex;
  justify-content: left;
  width: 15px !important;
  margin-right: 5px;
}
label.hs-form-booleancheckbox-display span {
  margin-left: 24px !important;
}

.subscribe form#hsForm_ada8b458-bd48-4c00-83e6-73e523eabb21,
.subscribe,
.subscribe .legal-consent-container {
  color: #fff !important;
}
div#hbspt-form-5cb598f7-7971-4a87-b6a2-841b77c767bb {
  color: #fff !important;
}

label.hs-error-msg.hs-main-font-element,
ul.no-list.hs-error-msgs.inputs-list {
  color: var(--color-pink) !important;
}
.legal-consent-container {
  font-size: 14px !important;
  line-height: 1.2em !important;
}
.legal-consent-container .hs-form-booleancheckbox-display input {
  float: left;
  width: 4% !important;
}

.mailing-list input.hs-button.primary.large,
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin: 10px 0 20px 0 !important;
}

/* Checkboxes accented */
input[type=checkbox]:checked,
input[type=radio]:checked {
  accent-color: var(--color-purple);
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .contact-form .hs-richtext,
  ul.inputs-list {
    width: 350px !important;
  }
}

@media screen and (max-width: 767px) {
  .subscribe input#email-ada8b458-bd48-4c00-83e6-73e523eabb21 {
    width: 300px !important;
    padding: 10px 20px 10px 0 !important;
  }
  .mailing-list .submitted-message.hs-main-font-element {
    margin: 30px 30px 0 0 !important;
  }
  .location-tabs span.premium-tab-title {
    flex-grow: 1 !important;
    text-align: left !important;
  }
  .location-tabs svg.svg-inline--fa.fa-chevron-down.fa-w-14.premium-title-icon.premium-svg-nodraw {
    flex-grow: 1 !important;
  }
  .contact fieldset.form-columns-2,
  .contact fieldset.form-columns-1 {
    max-width: 335px !important;
  }
  fieldset.form-columns-2 .hs-form-field:nth-child(2n+1) {
    padding: 0px;
  }
  .hs-richtext,
  .contact-form .hs-richtext {
    width: 100% !important;
  }
  .legal-consent-container .hs-form-booleancheckbox-display>span {
    max-width: 100% !important;
  }
  input#country-705331a5-cb3e-472c-8e6b-122ac630e4b3,
  .hs_how_can_we_help.hs-how_can_we_help.hs-fieldtype-textarea.field.hs-form-field {
    width: 100% !important;
  }
  .form-columns-1 .input,
  .form-columns-2 .input {
    margin-right: 0px !important;
  }
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .hs-fieldtype-text.field.hs-form-field input {
    width: 100% !important;
  }
}
@media screen and (max-width: 375px) {
  .subscribe input#email-ada8b458-bd48-4c00-83e6-73e523eabb21 {
    width: 268px !important;
  }
}
@media screen and (max-width: 400px) and (min-device-width: 320px) and (max-device-width: 480px) {
  form.hs-form-705331a5-cb3e-472c-8e6b-122ac630e4b3_49942bd1-8418-42aa-bd35-d9f5bd2a9956:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
  form.hs-form-705331a5-cb3e-472c-8e6b-122ac630e4b3_49942bd1-8418-42aa-bd35-d9f5bd2a9956:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    width: 290px !important;
  }
}

/* ============================================================
   INSIGHTS / BLOG TYPOGRAPHY
   ============================================================ */

.insights-template-default h2 {
  margin: 40px 0 30px 0 !important;
  font-size: 32px;
  line-height: 1.2em;
}
.insights-template-default h3 {
  margin: 30px 0 20px 0 !important;
  font-size: 28px;
  line-height: 1.2em;
}
.insights-template-default h5 {
  font-size: 21px;
  line-height: 1.2em;
  text-transform: none !important;
}
.elementor-widget-theme-post-content a {
  color: var(--color-pink);
}
.elementor-widget-theme-post-content a:hover {
  font-weight: 700 !important;
}

/* Search forms */
input#elementor-search-form-db6aa60,
.elementor-search-form__input {
  border-bottom: 2px solid var(--color-border) !important;
  border-radius: 0 !important;
  margin: 0 10px !important;
  transition: border-color var(--transition);
}
input#elementor-search-form-db6aa60:focus,
.elementor-search-form__input:focus {
  border-bottom-color: var(--color-purple) !important;
}
.insight-search button.elementor-search-form__submit {
  min-width: 120px !important;
  border-radius: var(--radius-pill) !important;
  border: 2px solid var(--color-pink) !important;
  padding: 12px 22px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.insight-search button.elementor-search-form__submit:hover {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-md);
}

.elementor-27030 .elementor-element.elementor-element-db6aa60 .elementor-search-form__container {
  min-height: 45px !important;
}
.elementor-27135 .elementor-element.elementor-element-fa787a8 .elementor-search-form__container {
  min-height: 40px !important;
}
.elementor-27135 .elementor-element.elementor-element-a53a88c .elementor-search-form__container {
  min-height: 40px !important;
}

/* Load more button */
.e-loop__load-more.elementor-button-wrapper .elementor-button {
  border: 2px solid var(--color-pink) !important;
}

/* ============================================================
   INSIGHTS FILTER
   ============================================================ */

form#search-filter-form-27250 {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  margin-left: -1.5em !important;
}
.searchandfilter ul {
  display: flex !important;
  padding: 0 !important;
}
.searchandfilter ul li {
  display: flex;
  flex-flow: column;
  padding: 0 !important;
}
li.sf-field-taxonomy-insights-type {
  width: 220px !important;
  margin-right: 15px !important;
}
li.sf-field-taxonomy-service,
li.sf-field-taxonomy-business-need {
  width: 227px !important;
  margin-right: 15px !important;
}
li.sf-field-search {
  width: 310px !important;
  justify-content: flex-end !important;
  margin-left: 40px !important;
  margin-right: 10px !important;
  border-bottom: 2px solid var(--color-border) !important;
}
li.sf-field-search input[type=text] {
  border: 0px !important;
}
.insight-filter h4 {
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: 700;
}
select {
  padding: 0.5rem 1.5rem 0.5rem 0.25rem !important;
}
.insight-filter select {
  color: var(--color-text-primary) !important;
  border: 0px !important;
  height: 50px !important;
  font-size: 14px !important;
}
.searchandfilter select.sf-input-select {
  min-width: 145px !important;
  background-color: var(--color-cream) !important;
  padding: 1em 2em 1em 0.5em !important;
  border-right: 12px solid transparent !important;
}
li.sf-field-reset {
  justify-content: flex-end !important;
}
li.sf-field-search {
  margin-right: 0px !important;
}
a.search-filter-reset {
  font-weight: bold;
  color: var(--color-text-primary);
}
.read-estimate {
  font-weight: 700 !important;
}

@media screen and (max-width: 767px) {
  form#search-filter-form-27250 {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    margin-left: 0 !important;
  }
  li.sf-field-taxonomy-insights-type,
  li.sf-field-taxonomy-service,
  li.sf-field-taxonomy-business-need {
    width: 100% !important;
    margin-right: 0px !important;
  }
  .searchandfilter ul,
  .searchandfilter ul li {
    display: block !important;
    padding: 0 !important;
    width: 100%;
  }
  .searchandfilter ul li {
    margin-top: 20px;
  }
  .searchandfilter label {
    width: 100%;
  }
  li.sf-field-search {
    margin-left: 0 !important;
  }
  .searchandfilter ul li option {
    width: 300px !important;
  }
  .insights-sidebar h6 {
    font-size: 16px !important;
  }
}

/* ============================================================
   LEADERSHIP
   ============================================================ */

.elementor-element.elementor-element-e4eec6f.lead-photo.e-flex.e-con-boxed.e-con.e-child {
  background-size: cover !important;
}
a.popupSection_arrowNav.popupSection_leftArrow.popupSection_leftArrow_ready svg,
a.popupSection_arrowNav.popupSection_rightArrow.popupSection_rightArrow_ready svg {
  height: 50px;
}
a.popupSection_arrowNav.popupSection_leftArrow.popupSection_leftArrow_ready svg path:hover,
a.popupSection_arrowNav.popupSection_rightArrow.popupSection_rightArrow_ready svg path:hover {
  fill: #fff !important;
}
.popupSection_closePopup {
  right: 40px !important;
  top: 50px !important;
  width: 45px !important;
  height: 45px !important;
}
.popupSection_closePopup:before,
.popupSection_closePopup:after {
  left: 21px !important;
  height: 32px !important;
}

@media screen and (max-width: 767px) {
  .popupSection_closePopup {
    right: 10px !important;
    top: 10px !important;
  }
}

/* ============================================================
   CASE STUDIES — HP CAROUSEL
   ============================================================ */

.hp-carousel .elementor-widget-container a,
.hp-carousel .elementor-widget-container img {
  width: 100%;
}
.carousel-image-hover .elementor-widget-container {
  position: relative;
}
.case-studies-cta-container {
  width: 100%;
  position: absolute;
  bottom: 50px;
}

@media screen and (min-width: 900px) {
  .carousel-image,
  .carousel-image-hover {
    top: -8% !important;
  }
  .case-studies-cta-container {
    bottom: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .carousel-image,
  .carousel-image-hover {
    top: -8% !important;
  }
  .case-studies-cta-container {
    bottom: 100px;
  }
}
@media screen and (min-width: 1400px) {
  .carousel-image,
  .carousel-image-hover {
    top: -15% !important;
  }
  .case-studies-cta-container {
    bottom: 125px;
  }
}
@media screen and (min-width: 1600px) {
  .carousel-image,
  .carousel-image-hover {
    top: -24% !important;
  }
  .case-studies-cta-container {
    bottom: 150px;
  }
}
@media screen and (min-width: 1800px) {
  .carousel-image,
  .carousel-image-hover {
    top: -28% !important;
  }
  .case-studies-cta-container {
    bottom: 200px;
  }
}

.case-studies-cta {
  border: 2px solid #fff;
  background: transparent !important;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .hp-carousel .carousel-image {
    border-right: 1px solid var(--color-purple);
  }
}

@media screen and (max-width: 767px) {
  .hp-carousel {
    margin-top: 30px;
  }
  .hp-carousel .slick-dots {
    bottom: 25px !important;
  }
  h6 {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }
  .elementor-button.elementor-size-sm {
    padding: 18px 38px;
    font-size: 16px;
    line-height: 1em !important;
  }
  .carousel-image-hover img {
    height: 295px !important;
    width: 200px !important;
    margin-top: 9.5em;
  }
  .case-studies-cta-container {
    bottom: 30px !important;
  }
  button.case-studies-cta {
    font-size: 12px !important;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.main-footer {
  background: var(--gradient-footer);
  position: relative;
  overflow: hidden;
}

/* Brand-color shimmer layer over the dark gradient */
.main-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(215,106,179,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(126,199,232,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(200,154,232,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Top accent border — the full brand gradient stripe */
.main-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D76AB3, #C89AE8, #7EC7E8, #F5B38A, #D76AB3);
  pointer-events: none;
  z-index: 1;
}

/* Ensure footer content sits above the pseudo layers */
.main-footer > * {
  position: relative;
  z-index: 2;
}

.main-footer a * {
  color: #fff !important;
}
.main-footer a {
  transition: opacity var(--transition);
}
.main-footer a:hover {
  opacity: 0.8;
}

/* ============================================================
   INNER PAGE CAROUSEL
   ============================================================ */

.hp-carousel .elementor-widget-image {
  width: 100%;
}
.inner-page-carousel .fa-chevron-left:before,
.inner-page-carousel .fa-chevron-right:before {
  color: var(--color-text-primary);
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .inner-page-carousel .carousel-arrow {
    margin-top: 40% !important;
  }
  .inner-page-carousel .carousel-prev {
    right: auto;
    left: -12px !important;
  }
  .inner-page-carousel .carousel-next {
    left: 74px !important;
  }
}
@media screen and (min-width: 1024px) {
  .inner-page-carousel .carousel-arrow {
    margin-top: 28% !important;
  }
}

/* Employee experience cards */
.slick-active .emp-experience-template {
  box-shadow: var(--shadow-lg);
}
.emp-experience-template {
  width: 100%;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.emp-experience-template img {
  object-fit: cover;
  height: 180px;
}
.emp-experience-template h6 { height: 30px; }
.emp-experience-template h4 { height: 140px; }
.emp-experience-template p  { overflow: hidden; height: 100px; }

@media screen and (min-width: 768px) {
  .emp-experience-template { width: 300px; }
  .emp-experience-template img { height: 180px; }
  .emp-experience-template h6 { height: 30px; }
  .emp-experience-template h4 { height: 140px; }
  .emp-experience-template p  { height: 100px; }
}
@media screen and (min-width: 992px) {
  .emp-experience-template { width: 300px; }
  .emp-experience-template img { height: 180px; }
  .emp-experience-template h6 { height: 30px; }
  .emp-experience-template h4 { height: 140px; }
  .emp-experience-template p  { height: 100px; }
}
@media screen and (min-width: 1200px) {
  .emp-experience-template { width: 320px; }
  .emp-experience-template img { height: 180px; }
  .emp-experience-template h6 { height: 30px; }
  .emp-experience-template h4 { height: 140px; }
  .emp-experience-template p  { height: 100px; }
}
@media screen and (min-width: 1370px) {
  .emp-experience-template { width: 350px; }
  .emp-experience-template img { height: 230px; object-fit: cover; }
  .emp-experience-template h6 { height: 30px; }
  .emp-experience-template h4 { height: 140px; }
  .emp-experience-template p  { height: 100px; overflow: hidden; }
}

.services-block {
  height: 280px !important;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .services-block {
    height: 345px !important;
  }
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion-icon-spacing summary {
  justify-content: space-between !important;
}
.accordion-icon-spacing .e-child {
  border: none;
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span>i {
  color: var(--color-text-primary) !important;
  transition: color var(--transition);
}
.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon span>i {
  color: var(--color-purple) !important;
}

/* ============================================================
   LOCATION TABS
   ============================================================ */

.locations-tabs .e-n-tab-title-text {
  color: var(--color-text-primary) !important;
  transition: color var(--transition);
}
.locations-tabs .e-n-tab-title-text:hover,
[aria-selected="true"] .e-n-tab-title-text {
  color: var(--color-pink) !important;
}
.locations-tabs .premium-tabs .premium-tabs-nav {
  text-align: left !important;
  max-width: 550px !important;
}
.locations-tabs .tab-current a.premium-tab-link {
  border-bottom: 1px solid var(--color-pink) !important;
}
.locations-tabs ul.premium-tabs-nav-list.premium-tabs-horizontal:before {
  content: "REGIONS";
  margin-left: 106px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: rgba(43, 43, 43, 0.6);
}
@media screen and (max-width: 991px) {
  .locations-tabs ul.premium-tabs-nav-list.premium-tabs-horizontal:before {
    content: "REGIONS:";
    margin-bottom: 20px;
    margin-left: 0;
    font-size: 18px;
  }
  .locations-tabs ul.premium-tabs-nav-list.premium-tabs-horizontal .premium-tab-link {
    margin-left: 0 !important;
  }
  .locations-tabs .premium-tabs .premium-tab-content .elementor {
    margin-bottom: 2em;
  }
  .premium-tabs .premium-tab-content {
    margin-top: .5em !important;
  }
}

/* ============================================================
   MS PARTNERSHIP SCROLLER
   ============================================================ */

.partnership-carousel-container a.ver-carousel-arrow.carousel-prev {
  display: none !important;
}
.partnership-carousel-container a.ver-carousel-arrow.carousel-next {
  margin-left: 0 !important;
}
.partnership-carousel-container .slick-slide {
  margin-bottom: 18px;
}
.partnership-carousel-container a.carousel-arrow svg,
.premium-carousel-wrapper a.ver-carousel-arrow svg {
  width: 44px !important;
}
.partnership-carousel-container a.carousel-arrow svg,
.premium-carousel-wrapper a.ver-carousel-arrow:hover {
  background-color: transparent;
}
.partnership-carousel-container a.carousel-arrow svg,
.premium-carousel-wrapper a.ver-carousel-arrow path:hover {
  fill: var(--color-pink) !important;
}

@media screen and (max-width: 767px) {
  .partnership-carousel-container .slick-list {
    height: 580px !important;
  }
  .vertical-scroller-mobile .slick-dots {
    margin-top: -340px !important;
  }
}

/* ============================================================
   COMPLIANCE TABLES — COOKIE POLICY
   ============================================================ */

.html-table tr td {
  background-color: transparent !important;
}
.html-table tr td p {
  margin: 0;
}
.html-table tr:first-child td {
  background-color: var(--color-cream) !important;
}

@media screen and (max-width: 767px) {
  .html-table .table-container {
    width: 100%;
    overflow-x: auto;
  }
  .html-table table {
    width: auto;
    white-space: nowrap;
  }
  span.e-n-accordion-item-title-icon {
    flex-grow: 0 !important;
  }
}

.policy-page .e-n-accordion-item-title-text {
  font-size: 21px !important;
}
.policy-page .e-n-accordion-item > div[role="region"] {
  max-height: 400px;
  overflow-y: auto;
}

/* ============================================================
   BENEFITS / SCROLLING FEATURES
   ============================================================ */

.premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
.benefits a.elementor-button.elementor-size-sm:focus {
  background: var(--color-text-muted);
  color: #fff;
}
li.premium-tabs-nav-list-item.elementor-repeater-item-086a40e {
  margin-top: -5px !important;
}
.benefits-tabs ul.premium-tabs-nav-list.premium-tabs-vertical {
  margin-top: 7em !important;
}

@media screen and (max-width: 767px) {
  .benefits-header .e-con,
  .benefits .e-con {
    --container-max-width: 100% !important;
  }
  .benefits .e-con-inner,
  .benefits-header .e-con-inner {
    max-width: 100% !important;
  }
  .benefits-tabs ul.premium-tabs-nav-list.premium-tabs-vertical {
    margin-top: 0em !important;
    padding-bottom: 2em !important;
  }
  .elementor-28471 .elementor-element.elementor-element-62a2337:not(.premium-tabs-icon-column) .premium-tab-link {
    justify-content: space-between !important;
  }
}

.left-align-list ul {
  padding: 0 15px;
}
.tabbed-menu-carousel .elementor-widget-container {
  height: 250px !important;
}

/* ============================================================
   SERVICE PAGES v2
   ============================================================ */

.feature-cards ul {
  margin-left: -20px;
}
.feature-cards li {
  font-size: 14px;
  line-height: 1.5em;
}

/* ============================================================
   LANDING PAGES
   ============================================================ */

.e-landing-page-template ul {
  padding-inline-start: 15px !important;
}
.landing-page-template .elementor-nav-menu a {
  color: #fff !important;
}

/* ============================================================
   NEW INSIGHTS FILTER — COMBOBOX
   ============================================================ */

.search-filter-component-combobox--mode-single input[type=text],
.search-filter-input-text input[type=text].search-filter-input-text__input,
.search-filter-input-text input[type=text] {
  border: 0 !important;
  height: 44px !important;
  font-size: 14px !important;
}
.search-filter-label {
  font-family: "adelle" !important;
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 500;
}
.search-filter-input-text.search-filter-input-text.search-filter-field__input {
  border-bottom: 1px solid #BEBEBE;
  border-radius: 0;
  transition: border-color var(--transition);
}
.search-filter-input-text.search-filter-input-text.search-filter-field__input:focus-within {
  border-bottom-color: var(--color-purple);
}
.search-filter-component-combobox-base.search-filter-component-combobox.search-filter-field__input.search-filter-component-combobox--mode-multiple.search-filter-component-combobox--search-disabled,
.search-filter-component-combobox-base.search-filter-component-combobox-base--focused.search-filter-component-combobox.search-filter-field__input.search-filter-component-combobox--mode-multiple.search-filter-component-combobox--search-enabled,
.search-filter-component-combobox-base.search-filter-component-combobox.search-filter-field__input.search-filter-component-combobox--mode-multiple.search-filter-component-combobox--search-enabled {
  border-radius: 0;
  padding: 6px 10px;
}
.search-filter-component-combobox__selection-placeholder {
  font-size: 16px;
  line-height: 1.4em;
  color: var(--color-text-muted) !important;
}
.search-filter-component-combobox__listbox-toggle::before {
  border-left: 0 !important;
}
.search-filter-component-combobox-base__listbox-option--active:hover,
.search-filter-component-combobox-base__listbox-option--active.search-filter-component-combobox-base__listbox-option--selected {
  color: #fff !important;
  background: var(--gradient-cta);
}
.search-filter-component-combobox--mode-multiple .search-filter-component-combobox__selection-item {
  color: var(--color-text-primary);
  background-color: var(--color-lavender);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}
input#search-filter-input-combobox-0,
input#search-filter-input-combobox-1,
input#search-filter-input-combobox-2 {
  border: 0 !important;
}
.search-filter-input-text.search-filter-input-text.search-filter-field__input {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

/* ============================================================
   INSIGHT TYPE COLOUR BADGES
   ============================================================ */

.insight-color--blog              { color: var(--color-lime); }
.insight-color--webinars          { color: var(--color-purple); }
.insight-color--events            { color: var(--color-blue); }
.insight-color--reports-research  { color: var(--color-peach); }
.insight-color--news              { color: var(--color-dark); }
.insight-color--workshops         { color: var(--color-pink); }
.insight-color--microsoft-workshops { color: var(--color-blue); }
.insight-color--e-books           { color: var(--color-pink); }
.insight-color--latest            { color: var(--color-blue); }
.insight-color--podcast           { color: var(--color-lavender); }
.insight-color--info              { color: var(--color-lime); }

/* ============================================================
   SOLUTIONS CARDS
   ============================================================ */

.sol-link .elementor-button-icon {
  align-items: flex-start !important;
}
.elementor-widget-image a {
  display: block !important;
}

/* ============================================================
   CARDS WITH INDIVIDUAL LINKS
   ============================================================ */

.elementor-widget.elementor-list-item-link-full_width a {
  color: var(--color-dark) !important;
  font-weight: 600 !important;
  transition: color var(--transition);
}
.elementor-widget.elementor-list-item-link-full_width a:hover {
  color: var(--color-pink) !important;
}

/* ============================================================
   GRADIENT CARD BORDER UTILITY
   Wraps any .elementor-widget-container inside a .gradient-card
   ============================================================ */

.gradient-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gradient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.gradient-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION BACKGROUND UTILITIES
   ============================================================ */

.bg-cream   { background-color: var(--color-cream) !important; }
.bg-soft    { background-color: var(--color-bg-soft) !important; }
.bg-white   { background-color: #ffffff !important; }
.bg-hero    { background: var(--gradient-hero) !important; }

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */

*:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   GLOBAL OVERRIDE — Replace legacy #E3F4E4 (old mint green)
   This color is hardcoded across 53 Elementor post CSS files.
   These rules override it site-wide back to the new brand Cream.
   ============================================================ */

[style*="background-color:#E3F4E4"],
[style*="background-color: #E3F4E4"],
[style*="background-color:#e3f4e4"],
[style*="background-color: #e3f4e4"] {
  background-color: var(--color-cream) !important;
}

/* ============================================================
   NAV CHEVRON / DROPDOWN ICON COLOR FIX
   The dropdown arrow icons were showing purple/pink because
   they inherited from --e-global-color-accent or --e-global-color-primary.
   Force them to dark text color to match the nav item labels.
   ============================================================ */

/* Desktop nav chevron icons — default state */
.e-n-menu-dropdown-icon i,
.e-n-menu-dropdown-icon svg,
.e-n-menu-dropdown-icon .fas,
.e-n-menu-dropdown-icon .fa-chevron-down,
.e-n-menu-dropdown-icon .fa-chevron-up {
  color: var(--color-text-primary) !important;
  fill: var(--color-text-primary) !important;
}

/* Keep them dark on light-header (dark bg) pages too */
body.is-light-header header.darknav:not(.elementor-sticky--effects):not(.menu-hovering)
.e-n-menu-dropdown-icon i,
body.is-light-header header.darknav:not(.elementor-sticky--effects):not(.menu-hovering)
.e-n-menu-dropdown-icon svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Active/open dropdown chevron — use dark text, not accent purple */
.e-n-menu-item .e-n-menu-title.e-current .e-n-menu-dropdown-icon i,
.e-n-menu-item:hover .e-n-menu-dropdown-icon i {
  color: var(--color-pink) !important;
  fill: var(--color-pink) !important;
}

/* Elementor nav menu CSS variable override */
.elementor-31649 .elementor-element.elementor-element-5a9d43e4 {
  --n-menu-icon-color: var(--color-text-primary) !important;
}

/* ============================================================
   FOOTER BACKGROUND — keep dark regardless of bulk replacements
   ============================================================ */

.elementor-33272 .elementor-element.elementor-element-9c76b4,
.elementor-33272 .elementor-element.elementor-element-9c76b4:not(.elementor-motion-effects-element-type-background),
.elementor-33272 .elementor-element.elementor-element-9c76b4 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #1a1a2e !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #2B2B2B 30%, #3a1f3a 55%, #1f2a3a 80%, #2B2B2B 100%) !important;
}

/* ============================================================
   MEGA-MENU DROPDOWN COLUMN ALIGNMENT FIX
   ============================================================ */

/* Normalize top padding on the white content rows */
.elementor-31649 .elementor-element.elementor-element-6dfdc75,
.elementor-31649 .elementor-element.elementor-element-b5aea23,
.elementor-31649 .elementor-element.elementor-element-8aaa099,
.elementor-31649 .elementor-element.elementor-element-34bbdcf7 {
  --padding-top: 24px !important;
}

/* Column heading wrappers — same top spacing for all section titles */
.elementor-31649 .elementor-element.elementor-element-78c8d561,
.elementor-31649 .elementor-element.elementor-element-46a98ff,
.elementor-31649 .elementor-element.elementor-element-728bc8bd,
.elementor-31649 .elementor-element.elementor-element-6ee22b9d,
.elementor-31649 .elementor-element.elementor-element-ce9901b,
.elementor-31649 .elementor-element.elementor-element-7366b827 {
  --padding-top: 0px !important;
}

/* All columns in mega-menu rows start from top */
.elementor-nav-menu--dropdown .elementor-heading-widget,
.elementor-nav-menu--dropdown .elementor-widget-heading {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ============================================================
   OLD COLOR SAFETY NET — inline style overrides
   ============================================================ */

[style*="background-color:#4F0077"],
[style*="background-color: #4F0077"],
[style*="background-color:#4f0077"] {
  background-color: #D76AB3 !important;
}
[style*="color:#4F0077"],
[style*="color: #4F0077"],
[style*="color:#4f0077"] {
  color: #D76AB3 !important;
}
[style*="background-color:#98139C"],
[style*="background-color:#98139c"] {
  background-color: #D76AB3 !important;
}
[style*="color:#98139C"],
[style*="color:#98139c"] {
  color: #D76AB3 !important;
}
[style*="background-color:#2ABAD9"],
[style*="background-color:#2abad9"] {
  background-color: #7EC7E8 !important;
}
[style*="background-color:#D54328"],
[style*="background-color:#d54328"] {
  background-color: #F5B38A !important;
}
[style*="background-color:#45B649"],
[style*="background-color:#45b649"] {
  background-color: #C8E86A !important;
}
