:root {
  --sdg-blue: #3080ff;
  --sdg-blue-dark: #2563eb;
  --sdg-red: #fb2c36;
  --sdg-purple: #a21caf;
  --sdg-dark: #0f172b;
  --sdg-muted: #62748e;
  --sdg-gradient: linear-gradient(90deg, #3080ff 0%, #a21caf 52%, #fb2c36 100%);
  --sdg-gradient-btn: linear-gradient(90deg, #2563eb 0%, #fb2c36 100%);
  --sdg-slate-50: #f8fafc;
}

/* ── Section divider (between dark / mixed sections) ── */
.sdg-section-divider {
  position: relative;
  z-index: 3;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.sdg-section-divider__inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(720px, 90%);
}

.sdg-section-divider__line {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--sdg-blue) 18%,
    var(--sdg-purple) 50%,
    var(--sdg-red) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 18px rgba(48, 128, 255, 0.35),
    0 0 32px rgba(162, 28, 175, 0.2);
}

.sdg-section-divider__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sdg-gradient-btn);
  box-shadow:
    0 0 0 4px rgba(15, 23, 43, 0.9),
    0 0 14px rgba(48, 128, 255, 0.55);
}

/* ── In-page anchor scroll offset (sticky header) ── */
#home,
#about,
#clients-area,
#brand-area,
#brand-section {
  scroll-margin-top: 96px;
}
#problems,
#services,
#pricing,
#process,
#feature,
#testimonials,
#portfolio,
#faq,
#contact,
#team,
#footer {
  scroll-margin-top: 96px;
}

/* ── Text accents ── */
span.color1,
span.color3,
.dreamit-section-title span {
  color: var(--sdg-blue) !important;
}

span.color2,
h5.color2 {
  color: var(--sdg-blue) !important;
}

/* Hero: gradient keyword text */
.slider-area span.color2,
.slider4.slider-area span.color2,
.slider-area.slider5 span.color2,
.slider-area.slider6 span.color2,
.about-area.style-three .dreamit-section-title span.color2,
.dreamit-section-title2 h1 span.color2,
#problems .dreamit-section-title h1 span.color2,
#services .dreamit-section-title h1 span.color2,
#pricing .dreamit-section-title h1 span.color2,
#pricing .pricing-pack-title__name {
  background: var(--sdg-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.about-area.style-three .dreamit-section-title.style-four.white h5 {
  color: var(--sdg-red) !important;
}

.about-area.style-three .dreamit-section-title.style-four.white h5::before {
  background: var(--sdg-red) !important;
}

.about-area.style-three .about-icon i {
  background: var(--sdg-gradient-btn) !important;
  color: #fff !important;
}

.about-area.style-three .about-name-title h2 {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #151423 !important;
  color: #151423 !important;
}

.about-area.style-three .about-name-title h2:hover {
  background: none !important;
  -webkit-text-fill-color: #151423 !important;
  color: #151423 !important;
}

.about-area.style-three .about-name-title h2::before {
  background: var(--sdg-red) !important;
}

/* About section: light slate background (bg-slate-50) */
.about-area.style-three {
  background: var(--sdg-slate-50) !important;
  background-image: none !important;
}

.about-area.style-three::before {
  display: none !important;
}

.about-area.style-three .dreamit-section-title.white h1,
.about-area.style-three .dreamit-section-title.white p,
.about-area.style-three .dreamit-section-title.white .pt-text,
.about-area.style-three .elementor-about-icon-box.white .elementor-about-title p,
.about-area.style-three .dreamit-about-thumb-box.white p {
  color: #151423 !important;
}

.about-area.style-three .techno-about-thumb-3 img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.about-area.style-three .techno-about-thumb-3 img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.dreamit-section-title h5.color2 {
  color: var(--sdg-blue) !important;
}

#services .section-text {
  margin-top: 0;
}

#services .dreamit-section-title h5 {
  color: var(--sdg-red) !important;
}

#services .dreamit-section-title h5::before {
  background: var(--sdg-red) !important;
}

/* ── Problems section ── */
#problems .dreamit-section-title h5 {
  color: var(--sdg-red) !important;
}

#problems .dreamit-section-title h5::before {
  background: var(--sdg-red) !important;
}

/* section1.png background behind VOS DÉFIS title, positioned on the h5 itself */
#problems .dreamit-section-title h5::after {
  content: "";
  position: absolute;
  left: -12px;
  top: -16px;
  background: url(../images/resource/section1.png);
  width: 63px;
  height: 63px;
  display: inline-block;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

#problems .dreamit-section-title::after {
  display: none !important;
}

#problems {
  background: var(--sdg-slate-50) !important;
}

#problems .problem-card {
  padding: 40px 30px;
  border-radius: 15px;
  background: #ffffff;
  height: 100%;
  transition: 0.3s ease-in-out;
  border: 1px solid rgba(48, 128, 255, 0.2);
  box-shadow:
    0 10px 30px rgba(48, 128, 255, 0.1),
    0 4px 12px rgba(162, 28, 175, 0.06);
}

#problems .problem-card .problem-icon {
  margin-bottom: 25px;
}

#problems .problem-card .problem-icon i {
  font-size: 50px;
  transition: color 0.3s ease;
}

#problems .problem-card--pme .problem-icon i {
  color: var(--sdg-blue);
}

#problems .problem-card--freelance .problem-icon i {
  color: var(--sdg-purple);
}

#problems .problem-card--ecom .problem-icon i {
  color: var(--sdg-red);
}

#problems .problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sdg-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}

#problems .problem-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--sdg-gradient);
  border-radius: 1px;
}

#problems .problem-card--pme h3 {
  color: var(--sdg-blue-dark);
}

#problems .problem-card--freelance h3 {
  color: var(--sdg-purple);
}

#problems .problem-card--ecom h3 {
  color: var(--sdg-red);
}

#problems .problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#problems .problem-list li {
  color: var(--sdg-muted);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

#problems .problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

#problems .problem-card--pme .problem-list li::before {
  background: var(--sdg-blue);
}

#problems .problem-card--freelance .problem-list li::before {
  background: var(--sdg-purple);
}

#problems .problem-card--ecom .problem-list li::before {
  background: var(--sdg-red);
}

#problems .problem-card--pme {
  border-color: rgba(48, 128, 255, 0.25);
}

#problems .problem-card--freelance {
  border-color: rgba(162, 28, 175, 0.22);
}

#problems .problem-card--ecom {
  border-color: rgba(251, 44, 54, 0.22);
}

#problems .problem-card:hover {
  border-width: 3px !important;
  box-shadow:
    0 15px 40px rgba(48, 128, 255, 0.18),
    0 8px 24px rgba(251, 44, 54, 0.1) !important;
  transform: translateY(-4px) !important;
}

#problems .problem-card--pme:hover {
  border-color: var(--sdg-blue) !important;
}

#problems .problem-card--freelance:hover {
  border-color: var(--sdg-purple) !important;
}

#problems .problem-card--ecom:hover {
  border-color: var(--sdg-red) !important;
}

#problems .problem-card--pme:hover .problem-icon i {
  color: var(--sdg-blue) !important;
}

#problems .problem-card--freelance:hover .problem-icon i {
  color: var(--sdg-purple) !important;
}

#problems .problem-card--ecom:hover .problem-icon i {
  color: var(--sdg-red) !important;
}

#problems .problem-card--pme:hover h3 {
  color: var(--sdg-blue-dark) !important;
}

#problems .problem-card--freelance:hover h3 {
  color: var(--sdg-purple) !important;
}

#problems .problem-card--ecom:hover h3 {
  color: var(--sdg-red) !important;
}

.solution-cta-strip {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../images/resource/skill-bg-two.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.solution-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.55);
  z-index: 0;
  pointer-events: none;
}

.solution-cta-strip .container {
  position: relative;
  z-index: 1;
}

.solution-cta-box {
  color: #fff;
  padding: 3rem 0;
}

.solution-cta-box h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.solution-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 8px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .solution-cta-box p {
    white-space: normal;
    text-align: center;
    max-width: 36rem;
    padding: 0 12px;
  }
}

.solution-cta-box .slider-button2 a {
  margin-top: 20px;
}

/* ── Navigation ── */
.techno_menu > ul > li > a {
  background: none !important;
  background-size: unset !important;
  background-position: unset !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}

.techno_menu > ul > li > a:hover {
  color: var(--sdg-blue) !important;
  -webkit-text-fill-color: var(--sdg-blue) !important;
}

.techno_nav_manu.sticky .techno_menu > ul > li > a:hover,
.sticky .techno_menu > ul > li > a:hover {
  color: var(--sdg-blue) !important;
  -webkit-text-fill-color: var(--sdg-blue) !important;
}

.style-two .slider-button-text p,
.style-two .slider-button-text h2,
.style-two .slider-button-text h2 a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

#sticky-header .techno_menu {
  overflow: visible;
}

#sticky-header .sdg-header-contact {
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  #sticky-header .row.align-items-center {
    flex-wrap: nowrap;
    align-items: center !important;
  }

  #sticky-header .col-lg-3 {
    flex: 0 0 auto;
    width: auto;
    max-width: 28%;
  }

  #sticky-header .col-lg-9 {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  #sticky-header .logo img {
    max-width: 190px;
    width: 70%;
    height: auto;
  }

  #sticky-header .techno_menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    text-align: inherit;
  }

  #sticky-header .techno_menu > ul.nav_scroll {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
    list-style: none;
  }

  #sticky-header .techno_menu > ul > li {
    flex-shrink: 1;
    min-width: 0;
  }

  #sticky-header .techno_menu > ul > li > a {
    margin: 30px 7px !important;
    padding: 0;
    font-size: 15px !important;
    line-height: 1;
    white-space: nowrap;
  }

  #sticky-header .sdg-header-contact {
    float: none;
    margin-top: 0;
    gap: 10px;
    flex-shrink: 0;
    align-self: center;
    grid-column: 2;
    margin-left: 0;
  }

  /* Icon + lang only until xl — phone text steals nav space */
  #sticky-header .sdg-header-contact .slider-button-text {
    display: none;
  }

  #sticky-header .sdg-header-contact .header-button i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 22px;
  }

  #sticky-header .sdg-lang-select-box__trigger {
    height: 36px;
    min-width: 58px;
    padding: 0 28px 0 10px;
    font-size: 13px;
    background-position:
      calc(100% - 12px) calc(50% - 1px),
      calc(100% - 8px) calc(50% - 1px);
  }

  .sticky.style-two .sdg-header-contact {
    margin-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #sticky-header .techno_menu > ul > li > a {
    margin: 30px 5px !important;
    font-size: 14px !important;
  }

  #sticky-header .sdg-header-contact {
    gap: 8px;
  }
}

@media (min-width: 1200px) {
  #sticky-header .col-lg-3 {
    max-width: 25%;
  }

  #sticky-header .logo img {
    max-width: none;
    width: 70%;
  }

  #sticky-header .techno_menu {
    column-gap: 20px;
  }

  #sticky-header .techno_menu > ul > li > a {
    margin: 30px 10px !important;
    font-size: 17px !important;
  }

  #sticky-header .techno_menu > ul > li {
    flex-shrink: 0;
  }

  #sticky-header .sdg-header-contact {
    gap: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  #sticky-header .techno_menu > ul > li > a {
    margin: 30px 7px !important;
    font-size: 16px !important;
  }
}

@media (min-width: 1400px) {
  #sticky-header .techno_menu {
    column-gap: 100px;
  }

  #sticky-header .techno_menu > ul > li > a {
    margin: 30px 13px !important;
    font-size: 18px !important;
  }

  #sticky-header .sdg-header-contact .slider-button-text {
    display: block;
  }

  #sticky-header .sdg-header-contact .slider-button-text p {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
  }

  #sticky-header .sdg-header-contact .slider-button-text h2 {
    font-size: 20px;
  }
}

#sticky-header .sdg-header-contact .header-button {
  float: none !important;
  margin: 0 !important;
}

#sticky-header .sdg-header-contact .header-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#sticky-header .sdg-header-contact .slider-button-text {
  float: none !important;
  margin: 0 !important;
  text-align: left;
  white-space: nowrap;
}

#sticky-header .sdg-header-contact .slider-button-text h2 {
  font-size: 18px;
  line-height: 1.2;
}

#sticky-header .sdg-header-contact .slider-button-text h2 a {
  text-decoration: none;
  transition: color 0.2s ease;
}

#sticky-header .sdg-header-contact .slider-button-text h2 a:hover {
  color: var(--sdg-blue) !important;
  -webkit-text-fill-color: var(--sdg-blue) !important;
}

.sticky.style-two .sdg-header-contact {
  margin-top: 0;
}

.sticky.style-two .sdg-header-contact .slider-button-text {
  display: block !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sticky.style-two .sdg-header-contact .slider-button-text {
    display: block !important;
  }
}

#sticky-header .sdg-lang-select-box {
  position: relative;
  flex-shrink: 0;
  margin-left: 10px;
}

#sticky-header .sdg-lang-select-box__trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  background-color: transparent;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% - 1px),
    calc(100% - 8px) calc(50% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  height: 36px;
  min-width: 58px;
  padding: 0 28px 0 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

#sticky-header .sdg-lang-select-box__trigger:hover,
#sticky-header .sdg-lang-select-box.is-open .sdg-lang-select-box__trigger {
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

#sticky-header .sdg-lang-select-box__trigger .sdg-lang-select-box__value {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#sticky-header .sdg-lang-select-box__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  min-width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  border: 1px solid rgba(48, 128, 255, 0.28);
  border-radius: 4px;
  background: rgba(15, 23, 43, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 43, 0.35);
}

#sticky-header .sdg-lang-select-box__option {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #bcc7cd;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

#sticky-header .sdg-lang-select-box__option:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

#sticky-header .sdg-lang-select-box__option.is-active {
  color: var(--sdg-blue) !important;
  -webkit-text-fill-color: var(--sdg-blue) !important;
  background: rgba(48, 128, 255, 0.12);
}

.sdg-mobile-lang {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}

/* ── Mobile header (replaces meanmenu bar) ── */
@media (max-width: 991px) {
  .techno_nav_manu {
    display: block !important;
    margin-bottom: -72px;
  }

  .mobile-menu-area {
    display: none !important;
  }

  #sticky-header .container {
    position: relative;
  }

  #sticky-header .sdg-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    padding: 8px 0;
    background: transparent;
  }

  #sticky-header .sdg-mobile-header .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  #sticky-header .sdg-mobile-header .logo img {
    max-width: min(52vw, 168px);
    width: auto;
    height: auto;
  }

  #sticky-header .sdg-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  #sticky-header .sdg-mobile-header .sdg-lang-select-box__trigger {
    height: 36px;
    min-width: 58px;
    padding: 0 28px 0 10px;
    font-size: 13px;
  }

  .sdg-mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .sdg-mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .sdg-mobile-menu-toggle:hover,
  .sdg-mobile-menu-toggle.is-open {
    border-color: var(--sdg-blue);
    background: rgba(48, 128, 255, 0.12);
  }

  .sdg-mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .sdg-mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .sdg-mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sdg-mobile-nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(15, 23, 43, 0.97);
    border-bottom: 1px solid rgba(48, 128, 255, 0.22);
    box-shadow: 0 12px 28px rgba(15, 23, 43, 0.35);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .sdg-mobile-nav-panel.is-open {
    display: block;
  }

  .sdg-mobile-nav-panel .nav_scroll {
    display: block;
    margin: 0 !important;
    padding: 8px 0 12px;
    list-style: none;
  }

  .sdg-mobile-nav-panel .nav_scroll > li {
    display: block;
  }

  .sdg-mobile-nav-panel .nav_scroll > li > a {
    display: block;
    margin: 0 !important;
    padding: 14px 20px;
    font-size: 17px !important;
    font-weight: 600;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .sdg-mobile-nav-panel .nav_scroll > li > a:hover {
    color: var(--sdg-blue) !important;
    -webkit-text-fill-color: var(--sdg-blue) !important;
    background: rgba(48, 128, 255, 0.08) !important;
  }

  #sticky-header .lines.style-three {
    bottom: 0;
  }

  #sticky-header .style-three.lines .line {
    left: 0;
    width: 100%;
  }

  #sticky-header .style-three.lines .line:nth-child(1) {
    margin-left: 0;
  }

  #home,
  #about,
  #brand-area,
  #brand-section,
  #problems,
  #services,
  #pricing,
  #process,
  #feature,
  #testimonials,
  #portfolio,
  #faq,
  #team,
  #contact,
  #footer {
    scroll-margin-top: 72px;
  }
}

@media (min-width: 992px) {
  .sdg-mobile-header,
  .sdg-mobile-nav-panel {
    display: none !important;
  }
}

.mobile-menu .sdg-lang-select-box__trigger {
  border-color: rgba(48, 128, 255, 0.35);
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, #151423 50%),
    linear-gradient(135deg, #151423 50%, transparent 50%);
}

.mobile-menu .sdg-lang-select-box__menu {
  background: #ffffff;
  border-color: rgba(48, 128, 255, 0.22);
}

.mobile-menu .sdg-lang-select-box__option {
  color: #4b5563;
}

.mobile-menu .sdg-lang-select-box__option:hover {
  color: #151423;
  background: rgba(48, 128, 255, 0.08);
}

.mobile-menu .sdg-lang-select-box__option.is-active {
  background: rgba(48, 128, 255, 0.1);
  color: var(--sdg-blue);
}

.mobile-menu .sdg-lang-select-box__trigger .sdg-lang-select-box__value {
  color: var(--sdg-blue) !important;
  -webkit-text-fill-color: var(--sdg-blue) !important;
}

.style-two .header-button i {
  background: var(--sdg-gradient-btn) !important;
  color: #fff !important;
}

.slider-socail-icon2 a:hover {
  color: var(--sdg-blue) !important;
}

.style-three.lines .line::after {
  background-color: var(--sdg-blue) !important;
}

.techno_menu ul .sub-menu {
  border-top-color: var(--sdg-blue) !important;
}

.techno_menu ul .sub-menu li:hover > a,
.techno_menu ul .sub-menu .sub-menu li:hover > a,
.techno_menu ul .sub-menu .sub-menu .sub-menu li:hover > a,
.techno_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover > a {
  background: var(--sdg-blue) !important;
}

.techno_nav_manu.sticky {
  position: fixed !important;
  z-index: 999 !important;
  background: url(../images/resource/faq2.jpg) center center / cover no-repeat !important;
  border-bottom: 1px solid rgba(48, 128, 255, 0.22) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 43, 0.28) !important;
}

.techno_nav_manu.sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.72);
  z-index: 0;
  pointer-events: none;
}

.techno_nav_manu.sticky > .container,
.techno_nav_manu.sticky > .lines {
  position: relative;
  z-index: 1;
}

.techno_nav_manu.sticky a.dtbtn {
  background: var(--sdg-blue-dark) !important;
  border-color: var(--sdg-blue-dark) !important;
}

.techno_nav_manu.sticky a.dtbtn:hover {
  color: var(--sdg-blue) !important;
}

#sticky-header {
  position: relative;
}

#sticky-header .container {
  position: relative;
  z-index: 1;
}

#sticky-header .lines.style-three {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: auto;
  width: 100%;
  margin: 0;
  pointer-events: none;
  z-index: 2;
}

#sticky-header .style-three.lines .line:nth-child(1) {
  margin-left: -24%;
}

#sticky-header .style-three.lines .line {
  top: auto;
  bottom: 0;
  left: 24%;
  width: 100%;
  height: 3px;
  background: transparent;
}

#sticky-header .style-three.lines .line::after {
  height: 3px !important;
  top: 0;
}

/* ── Buttons ── */
.slider-button2 a {
  background: var(--sdg-gradient-btn) !important;
}

.slider-button2 a:hover {
  color: var(--sdg-blue-dark) !important;
}

.slider-button2 a:hover i {
  color: var(--sdg-blue-dark) !important;
}

.from-box2 button,
.style-three.upper8 .from-box2 button {
  background: var(--sdg-gradient-btn) !important;
}

.from-box2 button:hover {
  color: #fff !important;
}

.row.subscribe-bg .from-box button,
.subscribe-area .from-box button {
  background: var(--sdg-gradient-btn) !important;
}

/* ── FAQ accordion ── */
.style-two .accordion li a.active,
.style-two .accordion a.active,
.accordion li a.active,
a.active.accordion-toggle {
  background: var(--sdg-gradient-btn) !important;
  color: #fff !important;
}

.style-two .accordion a:before,
.style-two .accordion li a.active:before {
  background: var(--sdg-gradient-btn) !important;
}

.style-two .accordion a.active:before {
  background: #fff !important;
}

/* ── Services style-four (legacy boxes without .service-card) ── */
.style-four .techno-sinlge-service-box:not(.service-card) .techno-service-icon i {
  color: var(--sdg-blue) !important;
  background: rgba(48, 128, 255, 0.08) !important;
}

.style-four .techno-sinlge-service-box:not(.service-card) .techno-service-icon i:after {
  background: var(--sdg-blue) !important;
}

.style-four .techno-sinlge-service-box:not(.service-card) .techno-service-title h2:before {
  background: var(--sdg-blue) !important;
}

.style-four .techno-sinlge-service-box:not(.service-card):hover:before {
  background: var(--sdg-gradient-btn) !important;
}

.style-four .techno-sinlge-service-box:not(.service-card):hover .techno-service-icon i::after {
  background: var(--sdg-purple) !important;
}

.style-four .active.techno-sinlge-service-box:not(.service-card) .techno-service-icon i {
  color: #fff !important;
}

.style-four .active.techno-sinlge-service-box:not(.service-card) .techno-service-icon i:after {
  background: var(--sdg-blue) !important;
}

/* ── Counters style-three ── */
.counter-area.style-three .counter-text h1,
.counter-area.style-three .counter-text span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.counter-area.style-three .counter-icon i {
  display: inline-block;
  font-size: 50px;
  line-height: 1;
}

.counter-area.style-three .counter-icon--blue i {
  color: var(--sdg-blue) !important;
}

.counter-area.style-three .counter-icon--purple i {
  color: var(--sdg-purple) !important;
}

.counter-area.style-three .counter-icon--red i {
  color: var(--sdg-red) !important;
}

/* ── Footer ── */
h4.widget-title span,
.widget-title span {
  color: var(--sdg-blue) !important;
}

.company_icon a:hover:before {
  background: var(--sdg-blue) !important;
  transform: scale(1) !important;
}

.company_icon a:hover {
  color: #fff !important;
}

/* ── Portfolio filters ── */
.portfolio_menu ul li:hover {
  color: var(--sdg-blue) !important;
}

li.current_menu_item:before {
  background: var(--sdg-blue) !important;
  border-color: var(--sdg-blue) !important;
}

.portfolio_menu ul li a:hover:before {
  background: var(--sdg-blue) !important;
}

/* ── Loader ── */
.loader {
  border-top-color: var(--sdg-blue) !important;
}

.loader:before {
  border-left-color: var(--sdg-red) !important;
}

.loader:after {
  border-right-color: var(--sdg-purple) !important;
}

/* ── Scroll to top + WhatsApp float ── */
.scroll-area .top-wrap .go-top-btn-wraper {
  position: fixed;
  right: 30px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#scrollUp,
.scroll-area .go-top,
.top-wrap .go-top-button {
  background: var(--sdg-gradient-btn) !important;
  color: #fff !important;
}

.scroll-area .go-top.go-top-button {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-area .go-top.go-top-button.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-area .go-top::before {
  background: var(--sdg-gradient-btn) !important;
}

.top-wrap .go-top-button::after {
  background: var(--sdg-gradient-btn) !important;
}

.top-wrap .go-top-button:hover {
  background: var(--sdg-gradient) !important;
  color: #fff !important;
}

.sdg-whatsapp-float {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #25d366;
  line-height: 0;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.sdg-whatsapp-float svg {
  display: block;
  width: 52px;
  height: 52px;
  overflow: visible;
  transform-origin: center center;
  animation: sdg-whatsapp-pulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgb(0 0 0 / 30%));
}

.sdg-whatsapp-float .sdg-whatsapp-float__silhouette {
  filter: drop-shadow(0 1px 3px rgb(0 0 0 / 18%));
}

.sdg-whatsapp-float:hover,
.sdg-whatsapp-float:focus {
  color: #128c7e;
  background: transparent;
  transform: translateY(-2px);
  opacity: 0.92;
}

.sdg-whatsapp-float:hover svg,
.sdg-whatsapp-float:focus svg {
  animation: none;
}

@keyframes sdg-whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sdg-whatsapp-float svg {
    animation: none;
  }
}

/* ── Cal.com booking modal ── */
.sdg-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sdg-booking-modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sdg-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 43, 0.78);
  cursor: pointer;
}

.sdg-booking-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 960px);
  height: min(90vh, 720px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sdg-booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: var(--sdg-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sdg-booking-modal__close:hover,
.sdg-booking-modal__close:focus {
  color: var(--sdg-dark);
  border-color: var(--sdg-blue);
  background: rgba(48, 128, 255, 0.06);
}

.sdg-booking-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 767px) {
  .sdg-booking-modal {
    padding: 0;
    align-items: stretch;
  }

  .sdg-booking-modal__panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .sdg-booking-modal__close {
    top: 10px;
    right: 10px;
  }
}

/* ── Team social hovers ── */
.team-icon a:before {
  background: var(--sdg-blue) !important;
}

.team-socail-icon a:hover {
  color: var(--sdg-blue) !important;
}

.team-icon span:hover:before {
  background: var(--sdg-blue) !important;
}

.style-two .team-socail-icon a:hover {
  background: var(--sdg-dark) !important;
  color: var(--sdg-blue) !important;
}

/* ── Contact form accents (#FF4500 / #ed2*) ── */
.style-three .from-box input:focus,
.style-three .from-box textarea:focus,
.style-three.upper8 input:focus,
.style-three.upper8 textarea:focus {
  box-shadow: 0 0 0 0.2rem rgb(48 128 255 / 50%) !important;
}

.contact-form-title h5 {
  color: var(--sdg-blue) !important;
}

/* ── Section BG tint overlays (interim until images recolored) ── */
.brand-area.style-two,
.feture-area.style-two,
.counter-area.style-three,
.style-two.faq-area,
.footer-middle,
.row.subscribe-bg {
  position: relative !important;
}

.slider4.slider-area,
.slider-area.slider5,
.slider-area.slider6 {
  position: relative;
}

.slider4.slider-area::before,
.slider-area.slider5::before,
.slider-area.slider6::before,
.brand-area.style-two::before,
.feture-area.style-two::before,
.counter-area.style-three::before,
.style-two.faq-area::before,
.footer-middle::before,
.row.subscribe-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.55);
  z-index: 0;
  pointer-events: none;
}

.brand-area.style-two > *,
.feture-area.style-two > *,
.counter-area.style-three > *,
.style-two.faq-area > *,
.footer-middle > *,
.row.subscribe-bg > * {
  position: relative;
  z-index: 1;
}

/* ── Brand section (clients + partners) ── */
#brand-section.brand-section {
  position: relative;
  background: url(../images/resource/counterbg.jpg) center center / cover no-repeat;
  overflow: hidden;
}

#brand-section.brand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.72);
  z-index: 0;
  pointer-events: none;
}

#brand-section .brand-strip.brand-area.style-two {
  position: relative;
  z-index: 1;
  background: transparent !important;
  margin-top: 0 !important;
  padding: 32px 0 24px !important;
  min-height: 0 !important;
}

#brand-section .brand-strip.brand-area.style-two::before {
  display: none !important;
}

#brand-section .brand-strip--partners {
  padding-bottom: 32px !important;
}

#brand-section .brand-section__divider {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

#brand-section .brand-section__divider-line {
  display: block;
  width: min(520px, 88%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(48, 128, 255, 0.45) 20%,
    rgba(162, 28, 175, 0.45) 50%,
    rgba(251, 44, 54, 0.45) 80%,
    transparent 100%
  );
}

#brand-section .brand-strip__title {
  margin-bottom: 16px;
}

#brand-section .brand-strip__title h1 {
  margin: 0;
  padding: 0 !important;
  font-size: 36px;
  line-height: 1.1;
  color: #ffffff;
}

#brand-section .brand-strip__nos {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700;
}

#brand-section .brand-strip__carousel-row {
  margin: 0;
}

#brand-section .brand-strip__carousel.owl-carousel {
  width: 100%;
}

#brand-section .brand-strip__carousel .owl-stage-outer {
  overflow: hidden;
}

#brand-section .brand-strip__carousel .owl-item {
  overflow: hidden;
  box-sizing: border-box;
}

#brand-section .brand-strip__slide {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 6px 4px;
  box-sizing: border-box;
  overflow: hidden;
}

#brand-section .brand-strip__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 68px;
  padding: 6px 6px !important;
  margin: 0 !important;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

#brand-section .brand-strip__logo-card:hover {
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

#brand-section .brand-strip--partners .brand-strip__logo-card:hover {
  border: none;
}

#brand-section .brand-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  margin: 0 auto;
  overflow: hidden;
}

#brand-section .brand-strip--clients .brand-thumb img {
  max-height: 44px;
  max-width: min(100%, 120px);
}

#brand-section .brand-strip--partners .brand-thumb img {
  max-height: 40px;
  max-width: min(100%, 104px);
}

#brand-section .brand-thumb img {
  width: auto !important;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

#brand-section .brand-strip--clients .brand-strip__logo-card:hover .brand-thumb img {
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.03);
}

#brand-section .brand-strip--partners .brand-strip__logo-card:hover .brand-thumb img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Legacy selectors (outside combined section) */
#brand-area.brand-area.style-two,
#clients-area.brand-area.style-two {
  padding: 0 !important;
  min-height: 140px !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

#brand-area .dreamit-section-title2 h1,
#clients-area .dreamit-section-title2 h1 {
  padding-top: 30px;
}

#brand-area .dreamit-single-brand,
#clients-area .dreamit-single-brand {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

#brand-area .brand-thumb,
#clients-area .brand-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#brand-area .brand-thumb {
  width: 220px;
  min-height: 80px;
}

#clients-area .brand-thumb {
  width: 220px;
  min-height: 80px;
}

#brand-area .brand-thumb img {
  max-height: 80px;
  max-width: 240px;
  width: auto !important;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

#brand-area .brand-thumb img:hover {
  filter: grayscale(0%);
}

#clients-area .brand-thumb img {
  max-height: 80px;
  max-width: 240px;
  width: auto !important;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

#clients-area .brand-thumb img:hover {
  filter: grayscale(0%);
}

@media (max-width: 991px) {
  #brand-section .brand-strip.brand-area.style-two {
    padding: 24px 0 20px !important;
  }

  #brand-section .brand-strip__title h1 {
    font-size: 30px;
  }

  #brand-section .brand-strip__logo-card {
    min-height: 56px;
    padding: 4px 4px !important;
  }

  #brand-section .brand-strip--clients .brand-thumb img {
    max-height: 38px;
    max-width: min(100%, 100px);
  }

  #brand-section .brand-strip--partners .brand-thumb img {
    max-height: 34px;
    max-width: min(100%, 88px);
  }
}

.techno-logo img {
  max-width: 360px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile: section images — clients white on dark strip, partners full color */
@media (max-width: 991px) {
  .about-area.style-three .techno-about-thumb-3 img,
  #feature .dreamit-department-thumb img,
  #portfolio .portfolio-carousel .single_portfolio_thumb img,
  #team .single-team-thumb img,
  #brand-section .brand-strip--partners .brand-thumb img,
  #brand-area .brand-thumb img {
    -webkit-filter: grayscale(0%) !important;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
  }

  #brand-section .brand-strip--clients .brand-thumb img,
  #clients-area .brand-thumb img {
    -webkit-filter: grayscale(100%) brightness(0) invert(1) !important;
    filter: grayscale(100%) brightness(0) invert(1) !important;
    opacity: 1 !important;
  }

  #about .row.about-left {
    text-align: left !important;
  }

  #about .elementor-about-icon-box.white {
    text-align: left;
  }

  #about .elementor-about-icon-box.white .about-icon {
    float: left !important;
    text-align: left !important;
    margin-right: 10px;
  }

  #about .elementor-about-icon-box.white .elementor-about-title {
    text-align: left !important;
    overflow: hidden;
  }

  #about .elementor-about-icon-box.white .elementor-about-title p {
    text-align: left !important;
  }
}

/* About eyebrow — keep section1.png behind h5 on phone (responsive.css offsets ::after) */
@media (max-width: 599px) {
  #about .dreamit-section-title.style-four {
    text-align: left !important;
    position: relative;
  }

  #about .dreamit-section-title.style-four::after {
    display: none !important;
  }

  #about .dreamit-section-title.style-four h5 {
    position: relative;
    display: inline-block;
    z-index: 1;
  }

  #about .dreamit-section-title.style-four h5::after {
    content: "";
    position: absolute;
    left: -12px;
    top: -16px;
    background: url(../images/resource/section1.png);
    width: 63px;
    height: 63px;
    display: inline-block;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
  }
}

/* ── Hero slider — compact phone layout ── */
@media (max-width: 767px) {
  #home .slider4.slider-area,
  #home .slider-area.slider5,
  #home .slider-area.slider6 {
    height: auto !important;
    min-height: 0 !important;
    padding: 92px 0 36px !important;
    background-position: center center !important;
    background-size: cover !important;
    align-items: center !important;
  }

  #home .slider_list2.owl-carousel .owl-stage-outer,
  #home .slider_list2.owl-carousel .owl-stage,
  #home .slider_list2.owl-carousel .owl-item {
    height: auto !important;
  }

  #home .slider-content2 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 12px;
  }

  #home .slider-content2 h4 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  #home .slider-content2 h1 {
    font-size: clamp(1.65rem, 7.2vw, 2.15rem) !important;
    line-height: 1.18 !important;
    margin: 0 0 6px;
  }

  #home .slider-button2 {
    margin-top: 4px;
  }

  #home .slider-button2 a {
    margin-top: 14px;
    padding: 13px 20px;
    font-size: 14px;
  }

  #home .slider-button2 i {
    font-size: 18px;
    margin-left: 6px;
  }

  #home .slider_list2 .owl-nav {
    display: none !important;
  }
}

@media (max-width: 575px) {
  #home .slider4.slider-area,
  #home .slider-area.slider5,
  #home .slider-area.slider6 {
    padding: 84px 0 28px !important;
  }

  #home .slider-content2 h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem) !important;
  }
}

/*
 * MANUAL IMAGE RECOLOR CHECKLIST (CSS overlays applied as interim)
 * ─────────────────────────────────────────────────────────────────
 * Priority 1 — Section backgrounds:
 *   slider/slider-1.jpg, slider/slider-2.jpg, slider/slider-3.jpg
 *   resource/skill-bg-two.png, resource/services.jpg, resource/techno-4.jpg
 *   resource/counterbg.jpg, resource/counter-bg.jpg, resource/faq2.jpg
 *   resource/footer-bg.jpg
 *
 * Priority 2 — Slider decorative shapes:
 *   slider/shape-1.png, slider/shape-2.png, slider/round3.png, slider/line.png
 *
 * Priority 3 — Branded illustrations:
 *   about/about1.png, about/years1.png, resource/sign1.png
 *   resource/feature1.png, resource/img-2.png, resource/section1.png
 *
 * Priority 4 — Favicon and legacy logo:
 *   fav-icon/icon.png, logo.png (deprecated in favor of logo-sdgtechs.png)
 *
 * Do NOT modify: logo-sdgtechs.png, brand*.png, website*.png, flyer*.png,
 * poster1.png, saas*.png, crm*.png, team*.png, blog*.jpg, port*.jpg
 */
