/* =============================================================
   Chain Reaction Theme – Custom Styles
   Header: white bar · black text · blue CTA · burger always on
   Mega-menu: dark purple slide-in from left
   ============================================================= */



/* ── Fonts ──
   CSS is at:   assets/css/style.css
   Fonts are at: assets/fonts/
   Relative path from CSS → fonts = ../fonts/
   ─────────────────────────────────────────── */

@font-face {
  font-family: "GoodHeadlinePro-Bold";
  src: url(../fonts/GoodHeadlinePro-Bold.ttf) format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700
}

@font-face {
  font-family: "GoodHeadlinePro";
  src: url(../fonts/GoodHeadlinePro.ttf) format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400
}

:root {
  --font-main: 'GoodHeadlinePro';
  --font-main-bold: 'GoodHeadlinePro-Bold';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: var(--text-base);
}


.font-bold {
  font-family: var(--font-main-bold);
  font-weight: 700;
}



img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E8ECF0;
  transition: color 0.3s ease;
}

.site-header.bg-trans {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header>.container {
  height: 72px;
}

.site-logo img {
  display: block;
  transition: 0.4s ease;
}

.site-header.bg-trans .site-logo img {
  filter: brightness(0) invert(1);
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-nav li {
  display: flex;
}

.site-nav a:not(.btn) {
  font-size: 16px;
  font-weight: 700;
  color: #292929;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.4s ease;
}

.site-header.bg-trans .site-nav a:not(.btn) {
  color: var(--color-white);
}
.site-header .btn-main {
  border: 1px solid transparent;
    transition: 0.4s ease;
}
.site-header.bg-trans .btn-main {
    background-color: transparent;
    border: 1px solid white;
}

.site-header.bg-trans .btn-main:hover {
  color: #E40B3E;
    background-color: transparent;
    border: 1px solid #E40B3E;
}

.site-nav a:not(.btn):hover ,.site-header.bg-trans .site-nav a:not(.btn):hover {
  color: #E40B3E;
}

/* ── Burger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary-color-dark);
  border-radius: 3px;
  transition: 0.5s ease;
}

.nav-burger span:nth-child(2) {
  width: 20px;
}

.nav-burger span:last-child {
  width: 15px;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 26px;
}

/* ── Responsive: single nav collapses at 992px ── */
@media (max-width: 992px) {
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #E8ECF0;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 400px;
    padding: 24px;
  }

  .nav-burger {
    display: flex;
    align-items: flex-end;
  }
}


.sec_nav {
  background-color: #F3F6F9;
  padding-block: 16px;
  color: var(--primary-color-dark);
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  position: sticky;
  top: 73px;
  font-weight: bold;
}

.sec_nav .container {
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid #00000014;
  position: relative;
}

.sec_nav::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.sec_nav::after {
    right: 0;
      background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.sec_nav::before, .sec_nav::after {
    content: '';
      position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(70px, 16vw, 160px);
    z-index: 2;
    pointer-events: none;
}

.sec_nav .nav_active {
  border-bottom: 2px #E40B3E solid;
}

.sec_nav a {
  padding-bottom: 5px;
  transition: 0.4s ease;
}

.sec_nav a:hover {
  color: #E40B3E;
}

.topbar_home {
  height: 100vh;
  min-height: 450px;
}

.src_topbar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  filter: brightness(0.5);
}

.contant_topbar {
  position: absolute;
  bottom: 32px;
  padding-bottom: 27px;
}

.title_topbar {
  color: #fff;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  gap: clamp(0.625rem, 2vw, 1.875rem);
}

.desc_topbar {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.title_topbar ul {
  position: relative;
  height: clamp(3rem, 10vw, 5.5rem);
  overflow: hidden;

}

.title_topbar .swap_words {
  height: 88px;
  list-style: none;
  animation: swap_words_up 6s infinite;
}

.title_topbar .swap_words li {
  height: 166px;
  line-height: 166px;
}

@media (max-width: 992px) {
  .topbar_home {
    height: 70vh;
    min-height: 450px;
    position: relative;
  }

  .src_topbar {
    height: 70vh;
  }

  .site-header.bg-trans {
    background-color: white !important;
  }

  .site-header.bg-trans .site-logo img {
    filter: unset;
  }

  .site-header.bg-trans .site-nav a:not(.btn) {
    color: #292929 !important;
  }

  .site-header.bg-trans .btn-main {
    background-color: var(--secondary-color);
  }
}

@media (max-width: 768px) {
  .topbar_home {
    height: fit-content;
    min-height: fit-content;
    position: relative;
  }

  .src_topbar {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: fill;
    height: auto;
    display: block;
  }

  .contant_topbar {
    display: none;
  }

  .topbar_home .container {
    padding: 0 !important;
    max-width: unset;
  }
}

@keyframes swap_words_up {
  0% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  22% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  28% {
    transform: translateY(-88px);
    animation-timing-function: ease;
  }

  47% {
    transform: translateY(-88px);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  53% {
    transform: translateY(-178px);
    animation-timing-function: ease;
  }

  72% {
    transform: translateY(-178px);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  78% {
    transform: translateY(0);
    animation-timing-function: ease;
  }

  100% {
    transform: translateY(0);
  }
}

.src_SubSec {
  width: 100%;
  max-width: 590px;
  aspect-ratio: 1/1;
  border-radius: 32px;
  overflow: hidden;
}

.src_SubSec img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.html-editor h1,
.html-editor h2,
.html-editor h3,
.html-editor h4,
.html-editor h5,
.html-editor h6 {

  color: #292929;
  font-size: 39px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.52px;
  text-transform: capitalize;
  margin-top: clamp(32px, 4vw, 64px);
  margin-bottom: 13px;

}

.html-editor p,
.html-editor ul,
.html-editor li,
.html-editor span,
.html-editor span {
  margin-bottom: 10px;
}


.twoSubSec:nth-of-type(even) .container {
  flex-direction: row-reverse;
}

@media (max-width:992px) {
  .twoSubSec:nth-of-type(even) .container {
    flex-direction: column;
  }
}

.nav_Sections .twoSubSec {
  background-color: #fff;
}

.nav_Sections .twoSubSec:nth-child(6n+2) {
  background-color: var(--primary-color-dark);
}

.nav_Sections .twoSubSec:nth-child(6n+4) {
  background-color: #E40B3E;
}

.nav_Sections .twoSubSec:nth-child(6n) {
  background-color: #142B4D;
}

.nav_Sections .twoSubSec:nth-child(6n+2) .section-title,
.nav_Sections .twoSubSec:nth-child(6n+4) .section-title,
.nav_Sections .twoSubSec:nth-child(6n) .section-title {
  color: #fff;
}

.nav_Sections .twoSubSec:nth-child(6n+2) .desc-section,
.nav_Sections .twoSubSec:nth-child(6n+4) .desc-section,
.nav_Sections .twoSubSec:nth-child(6n) .desc-section {
  color: rgba(255, 255, 255, 0.75);
}

.nav_Sections .padding-section {
  padding-block: 99px;
}

.box {
  background: rgba(243, 246, 249, 0.88);
  /* background-blend-mode: multiply; */
}

.section-padding-x {
  padding-inline: var(--padding-section);
}

.section-padding-b {
  padding-bottom: var(--padding-section);
}

.partners-slider .swiper-slide {
  width: 220px;
  /* adjust as needed */
}

.partner_item {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partners-slider .swiper-slide {
  transform: scale(.8);
  opacity: .5;
  transition: .35s ease;
}

.partners-slider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.partners-slider .swiper-slide img {
  width: 90px;
  height: auto;
  transition: .4s ease-in-out;
}

.our-Clints .swiper-slide {
  opacity: 0.5;
}

.our-Clints .swiper-slide.padding-section {
  margin-top: 80px;
  transition: 0.5s ease;
      height: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-Clints .swiper-slide.swiper-slide-active {
  opacity: 1;
  margin-bottom: 80px !important;
  margin-top: 0 !important;
}

.ourClint-swiper img {
  height: 32px;
  width: fit-content;
}

.line-card {
  border: 1px solid #C3C8CF;
  width: 100%;
}

.ourClint-swiper .section-title {
  max-width: 80%;
  margin-left: calc(clamp(32px, 4vw, 40px) + 15px);
  width: fit-content;
}

.ourClint-swiper .section-title::before,
.ourClint-swiper .section-title::after {
  content: '';
  display: block;
  width: clamp(32px, 4vw, 40px);
  height: clamp(28px, 3.5vw, 35px);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.ourClint-swiper .section-title::before {
    left: clamp(-55px, -4vw, -37px);
    top: 0;
}

.ourClint-swiper .section-title::after {
    right: clamp(-55px, -4vw, -37px);
    bottom: 0;
}

.ourClint-swiper .section-title::after {
  background-image: url('../img/topqutaion.svg');
  margin-top: 16px;
}

.ourClint-swiper .section-title::before {
  background-image: url('../img/botqutation.svg');
  margin-bottom: 16px;
}

.ourClint-swiper {
  padding-bottom: 32px;
}
.ourClint-pagination .swiper-pagination-bullet {
  border: 2px solid #142B4D;
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
}

.ourClint-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #142B4D;
}


.src_sec {
  min-height: 35rem;
  height: 55vh;
  overflow: hidden;
  margin-top: 24px;
}

.src_sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.src_topbar-column {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ── Member Card ── */
.member-card {
  width: calc(25% - 24px);
  min-width: 140px;
  text-align: center;
}

.member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #F3F6F9;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.member-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color-dark);
}

.member-role {
  font-size: 14px;
  color: #5A5A5A;
}

/* ── Our People Accordion ── */
.people-accordion {
  overflow: hidden;
}

.people-accordion summary {
  cursor: pointer;
  list-style: none;
}

.people-accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-chevron {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--primary-color-dark);
  border-bottom: 3px solid var(--primary-color-dark);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 8px;
}

.people-accordion[open] .accordion-chevron {
  transform: rotate(-135deg);
}

/* ── FAQs Accordion ── */
.faq-item {
  overflow: hidden;
  padding: 32px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-weight: 700;
}

.faq-item[open] .accordion-chevron {
  transform: rotate(-135deg);
}

@media (max-width: 768px) {
  .member-card {
    width: calc(50% - 16px);
  }
}


.service-link-btn {
  width: calc(33.333% - 16px);
  padding: 24px;
  background-color: #F3F6F9;
  border-radius: var(--main-radius);
  color: var(--primary-color-dark);
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  justify-content: space-between;
  align-items: flex-end;
  transition: 0.3s ease;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .service-link-btn {
    width: calc(50% - 24px);
  }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
  .service-link-btn {
    width: 100%;
  }
}

.arrow-btn {
  min-width: 20px;
  height: 37px;
}

.arrow-btn::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 7px;
  width: 12.25px;
  height: 12.25px;
  border-top: 4px solid #f00;
  border-right: 4px solid #f00;
  border-radius: 3px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}

.service-link-btn:hover {
  color: var(--secondary-color);
}

.service-link-btn:hover .arrow-btn::after {
  right: 0px;
}



.card-SEO-Pillar {
  width: calc(33.333% - 16px);
}

.img_Card-Pillars {
  max-height: 350px;
  border-radius: var(--main-radius);
  overflow: hidden;
}

.img_Card-Pillars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title_Card-Pillars {
  color: var(--primary-color-dark);
  font-size: 39px;
  text-transform: capitalize;
  font-weight: bold;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .card-SEO-Pillar {
   width: calc(50% - 24px);
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .card-SEO-Pillar {
    width: 100%;
  }
}

.partners-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.partners-5>* {
  flex: 0 0 calc((100% - (40px * 4)) / 5);
}

.partners-6>* {
  flex: 0 0 calc((100% - (40px * 5)) / 6);
}

.card-partner .src-partner {
  transition: 0.4s ease;
}
.card-partner:hover .src-partner {
  scale: 1.1;
  filter: unset;
}


.partners .src-partner {
  min-height: 100px;
  max-width: 120px;
  filter: grayscale(1);
  display: flex;
  align-items: center;
}

/* Tablet */
@media (max-width: 991px) {

  .partners-5>*,
  .partners-6>* {
    flex-basis: calc((100% - (40px * 2)) / 3);
  }
}

/* Mobile */
@media (max-width: 575px) {

  .partners-5>*,
  .partners-6>* {
    flex-basis: calc((100% - 40px) / 2);
  }
}

.cards-our-workflow-section {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cards-our-workflow-section::-webkit-scrollbar {
  height: 0;
}



.card-our-workflow {
  min-width: 390px;
  height: stretch;
  justify-content: space-between;
  flex: auto;
}

.card-our-workflow:first-of-type {
  min-width: 250px;
  text-align: center;
  height: auto;
}

.card-our-workflow:first-of-type .dot-icon {
  background-color: transparent;
}

.contant-workflow {

  padding: 0 32px 16px 12px;
}

.icon-workflow {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.icon-workflow img {
  object-fit: cover;
}

.title-workflow {
  color: #292929;
  font-size: 18px;
  font-family: GoodHeadlinePro;
  font-weight: bold;
  line-height: 25.20px;
}

.desc-workflow {
  color: #292929;
  font-size: 14px;
  line-height: 25.20px;
  max-width: 300px;
}

.sub-workflow {
  color: #292929;
  font-size: 12px;
  font-family: GoodHeadlinePro;
  font-weight: bold;
  line-height: 25.20px;
}

.card-our-workflow--cta {
  min-width: 320px;
}

.title-work-together {
  color: #142B4D;
  font-size: 40px;
  font-family: GoodHeadlinePro-Bold;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 300px;
}

@media (max-width: 767px) {
  .title-work-together {
    font-size: 32px;
  }
}

.dot-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.step-number-sec {
  position: relative;
}

.step-number-sec:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  width: 100%;
  transform: translateY(-50%);
  border-bottom: 2px dashed var(--primary-color-dark);
  z-index: -1;
}

.stepNumber {
  color: #142B4D;
  font-size: 24px;
  font-family: GoodHeadlinePro-Bold;
  font-weight: 700;
  line-height: 25.20px;
}

.stepNumber span {
  color: var(--secondary-color);
}

.image-section {
  padding-block: 48px;
}

.image-section .card-img-section {
  border-radius: var(--main-radius);
  overflow: hidden;
  height: 445.5px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section {
  padding-block: 48px;
}

.video-section .card-video-section {
  border-radius: var(--main-radius);
  overflow: hidden;
  height: 590px;
}

.card-our-service {
  padding: 32px;
  width: calc(50% - 24px);
}

@media (max-width: 992px) {
  .card-our-service {
    padding: 32px;
    width: 100%;
  }
}

/* ── Case Studies ── */
.case-study-img {
  height: 350px;
  overflow: hidden;
  background-color: #F3F6F9;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-img img {
  transform: scale(1.04);
}

.case-study-tag {
  color: #292929;
  font-size: 16px;
  font-weight: bold;
  line-height: 25.20px;
  opacity: 0.50;

}

.case-study-title {
  color: #292929;
  font-size: 24px;
  font-weight: bold;
  line-height: 25.20px;
}

.case-study-client {
  color: #292929;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.20px;
}

.case-studies-nav {
  justify-content: center;
  width: fit-content;
  margin: 32px auto 0;
}

.case-studies-prev,
.case-studies-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
  color: #292929;
}

.case-studies-prev::after,
.case-studies-next::after {
  font-size: 16px;
  font-weight: 700;
  color: #292929;
}

.case-studies-pagination {
  position: static;
  width: auto;
}

.case-studies-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #292929;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  opacity: 1;
}

.case-studies-pagination .swiper-pagination-bullet-active {
  background: #E40B3E;
  color: #fff;
}

.breadcrumb-nav {
  padding-block: var(--space-6) 0;
}

.breadcrumb {
  list-style: none;
  font-size: var(--text-base);
}

.breadcrumb li a {
  color: var(--primary-color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: var(--secondary-color);
}

.breadcrumb .breadcrumb-sep {
  color: var(--primary-color-dark);
}

.breadcrumb .breadcrumb-current {
  color: var(--secondary-color);
  font-weight: 600;
}

/* ── Footer CTA ── */
.site-footer {
  overflow: hidden;
}

.footer-cta {
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply, normal;
  background-color: rgba(20, 43, 77, 0.88);
  padding-block: 80px;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.footer-cta-title {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 520px;
  font-family: GoodHeadlinePro-Bold;
}

.dot-red {
  color: #E40B3E;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 320px;
  max-width: 420px;
}

.footer-newsletter-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsletter-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.newsletter-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 16px;
  padding-block: 8px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-bottom-color: #fff;
}

/* Social icons */
.footer-socials {
  margin-top: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.social-icon:hover {
  border-color: #E40B3E;
  background: #E40B3E;
}

/* ── Footer Bottom ── */
.footer-bottom {
  background-color: #142B4D;
  padding-block: 64px;
}

.footer-bottom-inner {
  display: flex;
  gap: 64px;
  align-items: start;
  justify-content: space-between;
}

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 48px 64px;
  align-items: start;
  justify-content: space-between;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-city {
  color: #E40B3E;
  font-size: 18px;
  font-weight: bold;
  font-family: GoodHeadlinePro-Bold;
  margin-bottom: 8px;
}

.footer-contact-item p {
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #E40B3E;
}

.footer-contact-label {
  font-family: GoodHeadlinePro-Bold;
  font-weight: bold;
}

.footer-contact-item a,
.footer-contact-email a {
  transition: color 0.2s;
}

.footer-contact-item a:hover,
.footer-contact-email a:hover {
  color: #E40B3E;
}

.footer-contact-email {
  color: rgb(255, 255, 255);
  font-size: 15px;
  margin-top: 20px;
}

.footer-logo {
  margin-bottom: 16px;
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
}

.footer-desc {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 1.7;
}

.footer-col-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: GoodHeadlinePro-Bold;
}

.footer-links-grid {
  display: flex;
  gap: 0 32px;
}

.footer-links-grid a {
  color: rgb(255, 255, 255);
  font-size: 17px;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-links-grid a:hover {
  color: #E40B3E;
}

/* ── Copyright ── */
.footer-copy {
  background-color: #091C37;
  padding-block: 28px;
}

.footer-copy p {
  color: white;
  font-size: 18px;
  text-align: center;
}

.footer-brand {
  max-width: clamp(330px, 28vw, 400px);
}

/* ── Responsive ── */
@media (max-width: 1115px) {
  .footer-cta-inner {
    flex-direction: column;
    gap: 48px;
  }

  .footer-cta-title {
    font-size: 36px;
    max-width: 100%;
  }

  .footer-newsletter {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .footer-cta-title {
    font-size: 28px;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.pagination-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  margin: 32px auto 0;
}

/* Prev / Next */
.case-studies-prev,
.case-studies-next {
  position: static;
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  color: #292929;
}

.case-studies-prev.disabled,
.case-studies-next.disabled {
  opacity: .35;
  pointer-events: none;
  cursor: default;
}

/* Swiper pagination */
.case-studies-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
}

/* Numbers */
.case-studies-pagination .pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;

  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #292929;
  cursor: pointer;
  transition: .3s;
}

.case-studies-pagination .pagination-number:hover {
  color: #E40B3E;
  border-bottom: 1px solid #E40B3E;
}

.case-studies-pagination .pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  color: #292929;
  font-size: 14px;
  font-weight: 600;
}

.case-studies-pagination .pagination-number.active,
.case-studies-pagination .pagination-number:hover.active {
  background: #E40B3E;
  color: #fff;
  border-radius: 50%;
  border: none;
}

/* Swiper arrows */
.case-studies-prev::after,
.case-studies-next::after {
  font-family: swiper-icons;
  font-size: 24px;
  line-height: 1;
}

.case-studies-prev::after {
  content: "prev";
}

.case-studies-next::after {
  content: "next";
}

.filter-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
  height: 0;
}

.filter-tab {
  color: #000;
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  padding: 16px;
  border-radius: 16px;
  min-width: 158px;
  width: fit-content;
  text-align: center;
  cursor: pointer;
  display: flex;
    justify-content: center;
    align-items: center;
}

.filter-tab:hover {
  color: #E40B3E;
}

.filter-tab.active,
.filter-tab:hover.active {
  background: rgba(0, 0, 0, 0.10);
  color: #000;
}

.insight-cards {
  gap: 56px 24px;
}

.card-insight {
  width: calc(33.333% - 16px);
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .card-insight {
    width: calc(50% - 24px);
  }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
  .card-insight {
    width: 100%;
  }
}


.topbar-tab {
  border-radius: 200px;
  border: 1px solid #142B4D;
  padding: 4px 16px;
  color: #142B4D;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -0.7px;
}

.section-img-testWithImg {
  max-width: 372px;
  width: 100%;
  height: stretch;
  border-radius: 32px;
  overflow: hidden;
}

.img_card-testWithImg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.three-card-details-section .img-card {
  height: 343px;
}

.three-card-details-section .section-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.4375rem);
}

.three-card-details-section .card-details {
  flex: 0 0 calc(33.333% - 21.33px);
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .three-card-details-section .card-details {
    flex-basis: calc(50% - 32px);
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .three-card-details-section .card-details {
    flex-basis: 100%;
  }

  .three-card-details-section .img-card {
    height: 100%;
    max-height: 280px;
    aspect-ratio: 1/1;
  }
}


.ourClint-sec .section-title::before,
.ourClint-sec .section-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.ourClint-sec .section-title::before {
  left: -45px;
  top: 0;
}

.ourClint-sec .section-title::after {
  right: -10px;
  bottom: 0;
}

.ourClint-sec .section-title::after {
  background-image: url('../img/topqutaion.svg');
  margin-top: 16px;
}

.ourClint-sec .section-title::before {
  background-image: url('../img/botqutation.svg');
  margin-bottom: 16px;
}

.ourClint-sec .padding-sectionX {
  padding-inline: calc(clamp(32px, 5vw, 64px) + 32px);
}



.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card {
  padding: 32px;
}

.job-meta {
  color: #292929;
  font-size: 18px;
  font-weight: bold;
  line-height: 25.2px;
  letter-spacing: -0.7px;
}

@media (max-width: 768px) {
  .jobs-list {
    grid-template-columns: 1fr;
  }
}

 .title-partner {
        color: #292929;
        font-size: 20px;
    }

    .location-partner {
        color: #777;
        font-size: 16px;
    }


    .job-detail-location {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: bold;
}

.job-detail-content .container {
  align-items: flex-start;
}

.job-detail-col {
  flex: 1 1 400px;
}

.job-detail-col-divider {
  border-left: 1px solid #E5E5E5;
  padding-left: 64px;
  height: stretch;
}

@media (max-width: 768px) {
  .job-detail-col-divider {
    border-left: none;
    padding-left: 0;
  }
}

.job-detail-subtitle {
  color: var(--secondary-color);
  font-family: var(--font-main-bold);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
}

.job-detail-list li {
  color: #5A5A5A;
  font-size: 16px;
  line-height: 25.2px;
  list-style: disc;
  margin-left: 18px;
}

.job-apply-section .apply-form {
  padding: 40px;
}

.apply-form-col {
  flex: 1 1 380px;
}

.form-col-title {
  color: var(--primary-color-dark);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.form-style input[type="text"],
.form-style input[type="email"],
.form-style input[type="tel"],
.form-style input[type="url"] {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--primary-color-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-style input::placeholder {
  color: #8C8C8C;
}

.form-style input:focus {
  border-color: var(--secondary-color);
}

.form-style label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-color-dark);
  cursor: pointer;
}

.form-style input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary-color);
  cursor: pointer;
}

.apply-form-col .form-upload {
  width: fit-content;
  background: rgba(228, 11, 62, 0.08);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.apply-form-col .form-upload:hover {
  background: rgba(228, 11, 62, 0.15);
}


.contact-hero .container {
  align-items: flex-start;
}

.contact-intro {
  flex: 0.75;
  height: stretch;
    position: relative;
}
.contact-intro .section-title {
  position: sticky;
    top: 100px;
}

.contact-form-wrap {
  flex: 1;
}

.contact-form-title {
  color: var(--secondary-color);
  font-family: var(--font-main-bold);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.form-col-title {
  color: var(--primary-color-dark);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.form-style input[type="text"],
.form-style input[type="email"],
.form-style input[type="tel"],
.form-style textarea,
.form-style select {
  width: 100%;
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--primary-color-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-style textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.form-style input::placeholder,
.form-style textarea::placeholder {
  color: #8C8C8C;
}

.form-style input:focus,
.form-style textarea:focus,
.form-style select:focus {
  border-color: var(--secondary-color);
}

.form-style .contact-code-select {
  flex: 0 0 110px;
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23292929' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.contact-clear-btn {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
}

.pillar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 calc(50% - 4px);
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: #5A5A5A;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pillar-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.pillar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #B0B7C0;
  transition: color 0.2s ease;
}

.pillar-btn.is-active {
  background: rgba(0, 0, 0, 0.08);
  color: var(--primary-color-dark);
  font-weight: bold;
}

.pillar-btn.is-active .pillar-icon {
  fill: var(--secondary-color);
}

@media (max-width: 500px) {
  .pillar-btn {
    flex-basis: 100%;
  }
}

.cart-brief {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid #E5E9EF;
  border-radius: 16px;
  padding: 20px;
}

.cart-brief.is-visible {
  display: flex;
}

.cart-brief-label {
  color: #8C8C8C;
  font-size: 13px;
}

.cart-brief-count {
  border: 1px solid #E5E9EF;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--primary-color-dark);
}

.cart-brief-chip {
  border: 1px solid #E5E9EF;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--primary-color-dark);
  background: transparent;
  cursor: pointer;
}

.cart-brief-divider {
  height: 1px;
  background: #EDEFF2;
}

.cart-brief-advice {
  color: var(--primary-color-dark);
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
}

.budget-field {
  position: relative;
}

.budget-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: bold;
  color: var(--primary-color-dark);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.required-star {
  color: var(--secondary-color);
  margin-left: 2px;
}

.budget-field select {
  padding: 16px 20px;
}

.budget-field.has-value label {
  opacity: 0;
}

.form-style label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-color-dark);
  cursor: pointer;
}

.form-style input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-submit {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .contact-form-wrap {
    max-width: none;
    flex-basis: 100%;
  }

  .sub-pillars label {
    flex-basis: 100%;
  }
}


.awardsCard .fig {
  max-width: 285px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.awardsCard .fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card {
  width: calc(25% - 18px);
  flex-grow: 1;
  text-align: center;
}

@media (max-width:992px) {
  .result-card {
    width: calc(50% - 24px);
  }
}

@media (max-width:500px) {
  .result-card {
    width: 100%;
  }
}

.services-section:nth-child(odd) {
  background:#f3f6f9;
}

/* ── Awards Repository (accordion by year) ── */
.awards-repo-year-item {
  overflow: hidden;
  padding: 15px 20px;
}

.awards-repo-year-item summary {
  cursor: pointer;
  list-style: none;
}

.awards-repo-year-item summary::-webkit-details-marker {
  display: none;
}

.awards-repo-year-title {
  color: #292929;
  font-size: 22px;
  font-weight: 700;
  font-family: GoodHeadlinePro-Bold;
}

.awards-repo-count {
  color: #8A8F98;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-main);
}

.awards-repo-year-item[open] .accordion-chevron {
  transform: rotate(-135deg);
}

.awards-repo-rows {
  display: flex;
  flex-direction: column;
}

.awards-repo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  border-top: 1px solid #E1E6EC;
  flex-wrap: wrap;
}

.awards-repo-row-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.awards-repo-category {
  color: #292929;
  font-size: 17px;
  font-weight: 700;
  font-family: GoodHeadlinePro-Bold;
  line-height: 1.35;
}

.awards-repo-partner {
  color: #5A5A5A;
  font-size: 15px;
}

.awards-repo-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.awards-repo-type {
  color: #5A5A5A;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.awards-repo-department {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(228, 11, 62, 0.08);
  color: #E40B3E;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .awards-repo-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


.faqs-section .desc-section{
    max-width: 100%;
    margin-top: 20px;
}

/* ── Request Free Audit CTA ── */
.free-audit-cta__card {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  padding: 34px 40px;
  background: var(--primary-color-dark);
}

.free-audit-cta__intro {
  flex: 1 1 220px;
  min-width: 210px;
}

.free-audit-cta__intro h2 {
  margin: 0 0 6px;
  color: var(--color-white);
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.free-audit-cta__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.free-audit-cta__text > :last-child {
  margin-bottom: 0;
}

.free-audit-cta__form {
  flex: 3 1 700px;
  min-width: 0;
}

.free-audit-cta__fields {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(190px, 1.2fr) minmax(170px, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.free-audit-cta__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1;
}

.free-audit-cta__field input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: var(--color-white);
  color: var(--primary-color-dark);
  font: inherit;
  font-size: 16px;
  line-height: 1;
}

.free-audit-cta__field input:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.free-audit-cta__field input::placeholder {
  color: #8a8a8a;
}

.free-audit-cta__required {
  color: var(--secondary-color);
}

.free-audit-cta__submit {
  min-height: 44px;
  padding: 13px 30px;
  border: 0;
  border-radius: 7px;
  background: var(--primary-color);
  color: var(--color-white);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.free-audit-cta__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.free-audit-cta__submit:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.free-audit-cta__submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.free-audit-cta__status {
  display: none;
  margin: 12px 0 0;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.4;
}

.free-audit-cta__status.is-visible {
  display: block;
}

.free-audit-cta__status.is-error {
  color: #ffb3b3;
}

.free-audit-cta__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  .free-audit-cta__card {
    align-items: stretch;
  }

  .free-audit-cta__intro,
  .free-audit-cta__form {
    flex-basis: 100%;
  }
}

@media (max-width: 700px) {
  .free-audit-cta__fields {
    grid-template-columns: 1fr;
  }

  .free-audit-cta__submit {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .free-audit-cta__card {
    gap: 22px;
    padding: 26px 22px;
  }
}
