@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-size: clamp(14px, 0.94vw, 16px);
  line-height: clamp(20px, 1.25vw, 24px);
}

.essence-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.essence-form-notice {
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 12px 14px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.essence-form-notice p {
  margin: 0;
}
.essence-form-notice p + p {
  margin-top: 6px;
}

.essence-form-notice-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
}

.essence-form-notice-error {
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
}

.essence-custom-form .inputWrapper {
  width: 100%;
  margin-top: 6px;
}
.essence-custom-form .field-error,
.essence-custom-form input[aria-invalid=true],
.essence-custom-form textarea[aria-invalid=true] {
  border-color: #d92d20 !important;
}
.essence-custom-form .phoneField.field-error {
  border-color: #d92d20 !important;
}
.essence-custom-form .formGroup.has-error label {
  color: #b42318;
}
.essence-custom-form .essence-field-error {
  margin: 6px 0 0;
  color: #b42318;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}
.essence-custom-form .submitBtn:disabled {
  cursor: wait;
  opacity: 0.55;
}

.essence-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  width: min(360px, 100vw - 32px);
  pointer-events: none;
}
@media (max-width: 580px) {
  .essence-toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

.essence-toast {
  pointer-events: auto;
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11, 20, 42, 0.18);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  animation: essence-toast-in 0.25s ease both;
}
.essence-toast p {
  margin: 0;
}
.essence-toast p + p {
  margin-top: 6px;
}
.essence-toast.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.essence-toast-success {
  border-left: 4px solid #12b76a;
  color: #067647;
}

.essence-toast-error {
  border-left: 4px solid #f04438;
  color: #b42318;
}

@keyframes essence-toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contactFormSection .submitBtn,
.careerFormSection .submitBtn {
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}

.container-fluid {
  width: 100%;
  max-width: min(90%, 1920px);
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container-fluid {
    max-width: min(95%, 1920px);
  }
}

:root {
  --dark-blue-gradient: linear-gradient(82.74deg, #3949e0 46%, #ad73ff 78.77%);
  --light-blue-gradient: linear-gradient(308.17deg, #8cd9ff 26.68%, #ffffff 87.7%);
  --purple-gradient: linear-gradient(83.24deg, #CCA8FF 7.63%, #CDD1FF 46.22%);
  --dark-blue: #0b142a;
  --blue: #00379b;
  --bg-blue: #F3F9FC;
  --bg-gray: #F5F7FA;
  --white: #ffffff;
  --black: #0A0A0A;
  --light-black: #5C6066;
  --border-color: #C3C3C3;
  --insight: #038CA4;
  --technology: #FF6C72;
  --news: #8763DD;
  --wellness: #00A0F9;
}

.careerPage {
  background-color: var(--bg-blue);
}

.heroSection {
  position: relative;
}
.heroSection .site-header {
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
}
.heroSection .site-header .heroSection-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .heroSection .site-header .heroSection-inner {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.heroSection .site-header .heroSection-inner {
  justify-content: space-between;
  height: 80px;
}
.heroSection .site-header .heroSection-inner .logo img {
  display: block;
  max-height: 40px;
}
.heroSection .site-header .heroSection-inner .main-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--dark-blue);
    padding: 30px;
    flex-direction: column;
    transform: translateY(-100%);
    transition: 0.4s;
    z-index: 99;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
  }
  .heroSection .site-header .heroSection-inner .main-nav.active {
    transform: none;
  }
  .heroSection .site-header .heroSection-inner .main-nav .header-cta {
    margin-top: auto;
    margin-left: 0;
  }
  .heroSection .site-header .heroSection-inner .main-nav .serviceDropdown {
    position: static;
    background: none;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .heroSection .site-header .heroSection-inner .main-nav .serviceDropdown a {
    color: white;
    padding-left: 20px;
    font-weight: 400;
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: clamp(20px, 1.25vw, 24px);
    font-family: "Lato", sans-serif;
    margin-bottom: 0;
  }
  .heroSection .site-header .heroSection-inner .main-nav .has-dropdown.open .serviceDropdown {
    position: static;
    background-color: var(--dark-blue);
    box-shadow: none;
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .heroSection .site-header .heroSection-inner .main-nav ul {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul {
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .main-nav ul {
    flex-direction: column;
    width: 100%;
    margin-bottom: 50px;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.heroSection .site-header .heroSection-inner .main-nav ul li a:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li a {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 540px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li a {
    font-size: 16px;
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown {
  position: relative;
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceToggle {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceToggle {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceToggle {
  gap: 6px;
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown {
  position: absolute;
  top: 50px;
  left: 0;
  width: 550px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}
@media (max-width: 1366px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown {
    width: 500px;
  }
}
@media (max-width: 580px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown {
    width: 100%;
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown a {
  padding: 10px 20px;
  color: var(--dark-blue);
  text-decoration: none;
  transition: all ease 0.5s;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown a:hover {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown a {
    color: var(--white);
  }
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown .megaMenu .megaMenuInner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown .serviceDropdown .megaMenu .megaMenuInner a {
  display: block;
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown.open .serviceDropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown.open img {
  transform: rotate(180deg);
}
.heroSection .site-header .heroSection-inner .main-nav ul li.has-dropdown img {
  transition: 0.3s ease;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta {
  margin-left: 24px;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta svg {
  fill: var(--white);
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta:hover {
  opacity: 1;
  color: var(--black);
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta:hover svg {
  fill: var(--black);
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta span {
  display: flex;
}
.heroSection .site-header .heroSection-inner .main-nav .header-cta .btn-cta span img {
  fill: var(--black);
}
.heroSection .site-header .heroSection-inner .menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
}
.heroSection .site-header .heroSection-inner .menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
}
@media (max-width: 1024px) {
  .heroSection .site-header .heroSection-inner .menu-toggle {
    display: flex !important;
  }
}
.heroSection .site-header .heroSection-inner .mobileNavHeader {
  display: none;
}
@media (max-width: 991px) {
  .heroSection .site-header .heroSection-inner .mobileNavHeader {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) and (max-width: 840px) {
  .heroSection .site-header .heroSection-inner .mobileNavHeader {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 991px) {
  .heroSection .site-header .heroSection-inner .mobileNavHeader button {
    background: none;
    border: 0 solid var(--border-color);
    color: var(--white);
    font-size: 30px;
    width: 20px;
    height: 100px;
    padding: 0;
  }
}
.heroSection .site-header .heroSection-inner .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.heroSection .site-header .heroSection-inner .menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}
.heroSection .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .heroSection .hero {
    height: 600px;
  }
}
.heroSection .hero .hero-wrapper {
  position: relative;
  height: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .heroSection .hero .hero-wrapper::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4392156863);
    inset: 0;
    z-index: 1;
  }
}
.heroSection .hero .hero-wrapper .slides {
  height: calc(100% - 80px);
}
.heroSection .hero .hero-wrapper .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .heroSection .hero .hero-wrapper .slide {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.heroSection .hero .hero-wrapper .slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.heroSection .hero .hero-wrapper .slide.active {
  opacity: 1;
  pointer-events: auto;
}
.heroSection .hero .hero-wrapper .caption {
  position: relative;
  color: var(--white);
  z-index: 2;
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  .heroSection .hero .hero-wrapper .caption {
    max-width: min(95%, 1920px);
  }
}
.heroSection .hero .hero-wrapper .caption h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.heroSection .hero .hero-wrapper .caption h2 span {
  background: var(--light-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-size: clamp(48px, 4vw, 76px);
  line-height: clamp(56px, 4.6vw, 88px);
  font-family: "Sora", sans-serif;
  max-width: 50%;
  display: block;
}
@media (max-width: 767px) {
  .heroSection .hero .hero-wrapper .caption h2 span {
    max-width: 80%;
  }
}
@media (max-width: 540px) {
  .heroSection .hero .hero-wrapper .caption h2 span {
    max-width: 100%;
  }
}
.heroSection .hero .hero-wrapper .caption p {
  opacity: 0.9;
  max-width: clamp(300px, 36vw, 500px);
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-block: 20px;
}
.heroSection .hero .hero-wrapper .caption a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.heroSection .hero .hero-wrapper .caption a svg {
  fill: var(--white);
}
.heroSection .hero .hero-wrapper .caption a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.heroSection .hero .hero-wrapper .caption a:hover {
  opacity: 1;
  color: var(--black);
}
.heroSection .hero .hero-wrapper .caption a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.heroSection .hero .hero-wrapper .caption a:hover svg {
  fill: var(--black);
}
.heroSection .hero .hero-wrapper .caption a span {
  display: flex;
}
.heroSection .hero .hero-wrapper .hero-nav {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .heroSection .hero .hero-wrapper .hero-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.heroSection .hero .hero-wrapper .hero-nav {
  justify-content: space-between;
  height: 80px;
  z-index: 2;
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  .heroSection .hero .hero-wrapper .hero-nav {
    max-width: min(95%, 1920px);
  }
}
@media (max-width: 767px) {
  .heroSection .hero .hero-wrapper .hero-nav {
    justify-content: center;
    bottom: 0px !important;
  }
}
@media (max-height: 768px) {
  .heroSection .hero .hero-wrapper .hero-nav {
    bottom: 0;
  }
}
.heroSection .hero .hero-wrapper .hero-nav .nav-item {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0 0 10px;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.heroSection .hero .hero-wrapper .hero-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 1.5px;
  width: 10%;
  background: var(--white);
  transition: width 0.4s ease;
}
.heroSection .hero .hero-wrapper .hero-nav .nav-item.active {
  opacity: 1;
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.heroSection .hero .hero-wrapper .hero-nav .nav-item.active::after {
  width: 100%;
}
@media (max-width: 767px) {
  .heroSection .hero .hero-wrapper .hero-nav .nav-item {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
  }
  .heroSection .hero .hero-wrapper .hero-nav .nav-item.active {
    background: var(--white);
    font-size: 0;
    transform: scale(1.2);
    border: 0;
  }
  .heroSection .hero .hero-wrapper .hero-nav .nav-item::after {
    width: 0 !important;
  }
}

.subHeaderSection {
  height: 550px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 580px) {
  .subHeaderSection {
    padding-bottom: 50px;
  }
}
.subHeaderSection .container-fluid {
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .subHeaderSection .container-fluid {
    max-width: min(95%, 1920px);
  }
}
.subHeaderSection .container-fluid .subHeaderInnerSection {
  max-width: 65%;
}
@media (max-width: 991px) {
  .subHeaderSection .container-fluid .subHeaderInnerSection {
    max-width: 100%;
  }
}
.subHeaderSection .container-fluid .subHeaderInnerSection h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.subHeaderSection .container-fluid .subHeaderInnerSection h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 400;
}
.subHeaderSection .container-fluid .subHeaderInnerSection h2 span {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ourServices {
  background-image: url("../images/homepage-images/our-service-bgelements.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .ourServices {
    background-position: right;
    padding: 50px 0;
  }
}
.ourServices .topArea {
  display: flex;
}
.ourServices .topArea .left {
  flex: 1 1 30%;
  max-width: 30%;
}
@media (max-width: 840px) {
  .ourServices .topArea .left {
    flex: 1 1 0;
    max-width: 0;
  }
}
.ourServices .topArea .center {
  flex: 1 1 50%;
  max-width: 50%;
}
@media (max-width: 840px) {
  .ourServices .topArea .center {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.ourServices .topArea .center h3 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
  margin-bottom: 80px;
}
.ourServices .topArea .center h3 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .ourServices .topArea .center h3 {
    margin-bottom: 40px;
  }
}
.ourServices .topArea .center .ourServices-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .ourServices .topArea .center .ourServices-inner {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.ourServices .topArea .center .ourServices-inner {
  gap: 70px;
}
@media (max-width: 540px) {
  .ourServices .topArea .center .ourServices-inner {
    gap: 30px;
  }
}
.ourServices .topArea .center .ourServices-inner h4 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.ourServices .topArea .center .ourServices-inner p {
  font-weight: 400;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
}
.ourServices .topArea .right {
  flex: 1 1 20%;
  max-width: 20%;
}
@media (max-width: 840px) {
  .ourServices .topArea .right {
    flex: 1 1 0;
    max-width: 0;
  }
}
.ourServices .bottomArea {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .ourServices .bottomArea {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.ourServices .bottomArea {
  margin-top: 100px;
  gap: 50px;
}
@media (max-width: 840px) {
  .ourServices .bottomArea {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ourServices .bottomArea {
    margin-top: 50px;
  }
}
.ourServices .bottomArea .left {
  max-width: clamp(280px, 18vw, 350px);
  flex: 1;
}
@media (max-width: 840px) {
  .ourServices .bottomArea .left {
    max-width: max-content;
  }
}
.ourServices .bottomArea .left h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.ourServices .bottomArea .left h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ourServices .bottomArea .left p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-block: 20px;
  color: var(--light-black);
}
.ourServices .bottomArea .left a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.ourServices .bottomArea .left a svg {
  fill: var(--blue);
}
.ourServices .bottomArea .left a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.ourServices .bottomArea .left a:hover {
  opacity: 1;
  color: var(--white);
}
.ourServices .bottomArea .left a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.ourServices .bottomArea .left a:hover svg {
  fill: var(--white);
}
.ourServices .bottomArea .left a span {
  display: flex;
}
.ourServices .bottomArea .right {
  flex: 1;
}
@media (max-width: 480px) {
  .ourServices .bottomArea .right {
    width: 100%;
  }
}
.ourServices .bottomArea .right .bottomAreaRight-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .ourServices .bottomArea .right .bottomAreaRight-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ourServices .bottomArea .right .bottomAreaRight-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ourServices .bottomArea .right .bottomAreaRight-inner .cards {
  position: relative;
}
.ourServices .bottomArea .right .bottomAreaRight-inner .cards img {
  width: 100%;
}
.ourServices .bottomArea .right .bottomAreaRight-inner .cards h5 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--white);
  position: absolute;
  left: 15%;
  top: 15%;
  transform: translate(-10%, -10%);
}
.ourServices .bottomArea .right .bottomAreaRight-inner .cards span {
  position: absolute;
  left: 10%;
  bottom: 15%;
  transform: translate(-10%, -10%);
}
@media (max-width: 580px) {
  .ourServices .bottomArea .right .bottomAreaRight-inner .cards span {
    width: 10%;
  }
}
@media (max-width: 480px) {
  .ourServices .bottomArea .right .bottomAreaRight-inner .cards span {
    width: 5%;
  }
}

.projectSection {
  padding: 100px 0;
  background-image: url("../images/homepage-images/execution-bgelements.png");
  background-size: 100%;
  background-position: top;
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .projectSection {
    padding: 50px 0;
  }
}
.projectSection .headingArea {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .projectSection .headingArea {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.projectSection .headingArea {
  justify-content: space-between;
}
.projectSection .headingArea .left h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  max-width: clamp(550px, 40vw, 800px);
}
.projectSection .headingArea .left h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projectSection .headingArea .right a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.projectSection .headingArea .right a svg {
  fill: var(--blue);
}
.projectSection .headingArea .right a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.projectSection .headingArea .right a:hover {
  opacity: 1;
  color: var(--white);
}
.projectSection .headingArea .right a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.projectSection .headingArea .right a:hover svg {
  fill: var(--white);
}
.projectSection .headingArea .right a span {
  display: flex;
}
.projectSection .projectTabs {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}
@media (max-width: 580px) {
  .projectSection .projectTabs {
    flex-direction: column;
  }
}
.projectSection .projectTabs .innerCard {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .projectSection .projectTabs .innerCard {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.projectSection .projectTabs .innerCard {
  background-color: var(--white);
  cursor: pointer;
  padding: 25px 15px;
  border-radius: 24px;
  gap: 20px;
  flex: 1;
  overflow: hidden;
  transition: all ease 0.5s;
}
.projectSection .projectTabs .innerCard .iconArea img {
  width: 100%;
}
.projectSection .projectTabs .innerCard .textArea p {
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.projectSection .projectTabs .innerCard .textArea .textArea-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .projectSection .projectTabs .innerCard .textArea .textArea-inner {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.projectSection .projectTabs .innerCard .textArea .textArea-inner {
  margin-top: 15px;
  gap: 20px;
}
.projectSection .projectTabs .innerCard .textArea .textArea-inner span {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .projectSection .projectTabs .innerCard .textArea .textArea-inner span {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.projectSection .projectTabs .innerCard .textArea .textArea-inner span {
  gap: 5px;
}
.projectSection .projectTabs .innerCard .textArea .textArea-inner span p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
}
.projectSection .projectTabs .innerCard.active {
  position: relative;
}
.projectSection .projectTabs .innerCard.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: var(--purple-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.projectSection .projectTabs .innerCard:hover {
  background: radial-gradient(100% 100% at 0% 0%, #F0E7FF 0%, #FFFFFF 100%);
}
.projectSection .projectDetailArea {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .projectSection .projectDetailArea {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.projectSection .projectDetailArea {
  gap: 50px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .projectSection .projectDetailArea {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .projectSection .projectDetailArea .left {
    flex: 1;
  }
  .projectSection .projectDetailArea .left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
  }
}
.projectSection .projectDetailArea .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.projectSection .projectDetailArea .right .client-logo {
  max-width: 100%;
}
.projectSection .projectDetailArea .right p {
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 10px;
  color: var(--black);
}
.projectSection .projectDetailArea .right span {
  color: var(--light-black);
}
.projectSection .projectDetailArea .right ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.projectSection .projectDetailArea .right ul li {
  margin-top: 10px;
  color: var(--black);
}
.projectSection .projectDetailArea .right a {
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  text-decoration: none;
  color: var(--blue);
}

.buildingBlockSection {
  padding: 100px 0;
  background-image: url("../images/homepage-images/buildingblocks-bgelements.png");
  background-position: center;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .buildingBlockSection {
    padding: 50px 0;
  }
}
.buildingBlockSection .container-fluid {
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  .buildingBlockSection .container-fluid {
    max-width: min(95%, 1920px);
  }
}
.buildingBlockSection .container-fluid .headingArea {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .buildingBlockSection .container-fluid .headingArea {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.buildingBlockSection .container-fluid .headingArea {
  justify-content: space-between;
}
.buildingBlockSection .container-fluid .headingArea .left h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  max-width: clamp(550px, 40vw, 800px);
  color: var(--black);
}
.buildingBlockSection .container-fluid .headingArea .left h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.buildingBlockSection .container-fluid .headingArea .left p {
  max-width: clamp(550px, 40vw, 800px);
  color: var(--light-black);
  margin: 0;
  margin-top: 20px;
}
.buildingBlockSection .container-fluid .headingArea .right a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.buildingBlockSection .container-fluid .headingArea .right a svg {
  fill: var(--blue);
}
.buildingBlockSection .container-fluid .headingArea .right a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.buildingBlockSection .container-fluid .headingArea .right a:hover {
  opacity: 1;
  color: var(--white);
}
.buildingBlockSection .container-fluid .headingArea .right a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.buildingBlockSection .container-fluid .headingArea .right a:hover svg {
  fill: var(--white);
}
.buildingBlockSection .container-fluid .headingArea .right a span {
  display: flex;
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner {
  display: flex;
  margin-top: 50px;
  gap: 50px;
}
@media (max-width: 991px) {
  .buildingBlockSection .container-fluid .buildingBlockSection-inner {
    gap: 25px;
  }
}
@media (max-width: 840px) {
  .buildingBlockSection .container-fluid .buildingBlockSection-inner {
    flex-direction: column;
  }
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner .innerCard {
  flex: 1;
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner .innerCard img {
  margin-bottom: 60px;
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner .innerCard p {
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 10px;
  color: var(--black);
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner .innerCard span {
  color: var(--light-black);
}
.buildingBlockSection .container-fluid .buildingBlockSection-inner .innerCard::after {
  content: "";
}

.weServeSection {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 600px;
  overflow: hidden;
  transition: background-image 0.4s ease;
}
.weServeSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 0;
}
@media (max-width: 991px) {
  .weServeSection {
    height: 550px;
  }
}
.weServeSection .weServeNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.weServeSection .weServeNav.prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.weServeSection .weServeNav.next {
  right: 20px;
}
.weServeSection .weServeNav img {
  width: 25px;
}
.weServeSection h2 {
  position: absolute;
  z-index: 9;
  top: 100px;
  left: 2.5%;
  background: var(--light-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .weServeSection h2 {
    top: 40px;
  }
}
.weServeSection .weServeViewport {
  height: 100%;
  overflow: hidden;
}
.weServeSection .weServeViewport .weServeSectionInner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner {
  flex: 0 0 20%;
  height: 100%;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .weServeSection .weServeViewport .weServeSectionInner .flex-inner {
    padding-left: 10px;
  }
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner h4 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: -80px;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner p {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a svg {
  fill: var(--white);
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a:hover {
  opacity: 1;
  color: var(--black);
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner a:hover svg {
  fill: var(--black);
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner.active {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0.7) 100%);
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .weServeSection .weServeViewport .weServeSectionInner .flex-inner.active {
    padding-bottom: 25px;
  }
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner.active h4 {
  margin-bottom: 0px;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner.active p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-bottom: 30px;
}
.weServeSection .weServeViewport .weServeSectionInner .flex-inner.active a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .weServeSection .weServeViewport .weServeSectionInner .flex-inner {
    flex: 1 1 200px;
  }
}

.freshThinkingSection {
  padding: 100px 0;
  background-image: url("../images/homepage-images/fresh-bgelements.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .freshThinkingSection {
    padding: 50px 0;
  }
}
.freshThinkingSection .headingArea {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .freshThinkingSection .headingArea {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.freshThinkingSection .headingArea {
  justify-content: space-between;
}
.freshThinkingSection .headingArea .left h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  max-width: clamp(550px, 40vw, 800px);
  color: var(--black);
}
.freshThinkingSection .headingArea .left h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.freshThinkingSection .headingArea .left p {
  max-width: clamp(550px, 40vw, 800px);
  color: var(--light-black);
  margin: 0;
  margin-top: 20px;
}
.freshThinkingSection .headingArea .right a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.freshThinkingSection .headingArea .right a svg {
  fill: var(--blue);
}
.freshThinkingSection .headingArea .right a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.freshThinkingSection .headingArea .right a:hover {
  opacity: 1;
  color: var(--white);
}
.freshThinkingSection .headingArea .right a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.freshThinkingSection .headingArea .right a:hover svg {
  fill: var(--white);
}
.freshThinkingSection .headingArea .right a span {
  display: flex;
}
.freshThinkingSection .cardsArea {
  display: flex;
  gap: 48px;
  margin-top: 60px;
}
@media (max-width: 840px) {
  .freshThinkingSection .cardsArea {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .freshThinkingSection .cardsArea {
    grid-template-columns: repeat(1, 1fr);
  }
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner {
  position: relative;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards {
  height: 100%;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards img {
  width: 100%;
  height: 100%;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardOne .cardsInner {
  position: absolute;
  padding: 40px;
  top: 0;
  left: 0;
  color: var(--white);
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardOne .cardsInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardOne .cardsInner p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardTwo .cardsInner {
  position: absolute;
  padding: 40px;
  bottom: 40px;
  left: 0;
  color: var(--white);
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardTwo .cardsInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner .cards.cardTwo .cardsInner p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree {
  display: grid;
  gap: 48px;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards {
  position: relative;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardThree img {
  height: 100%;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardThree .cardsInner {
  position: absolute;
  padding: 40px;
  top: 0;
  left: 0;
  color: var(--white);
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardThree .cardsInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardThree .cardsInner p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardFour img {
  height: 100%;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardFour .cardsInner {
  position: absolute;
  padding: 40px;
  top: 0;
  left: 0;
  color: var(--white);
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardFour .cardsInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.freshThinkingSection .cardsArea .freshThinkingSectionInner.freshThinkingSectionInnerThree .cards.cardFour .cardsInner p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}

.builtSection {
  padding: 100px 0;
  background: var(--bg-gray);
}
@media (max-width: 991px) {
  .builtSection {
    padding: 50px 0;
  }
}
.builtSection .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.builtSection .introGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .builtSection .introGrid {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 840px) {
  .builtSection .introGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.builtSection .introGrid .introLeft h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.builtSection .introGrid .introLeft h2 .gradientText {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.builtSection .introGrid .introRight {
  display: grid;
  gap: 16px;
}
.builtSection .introGrid .introRight p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
  opacity: 0.8;
}
.builtSection .featureCard {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .builtSection .featureCard {
    margin-bottom: 50px;
  }
}
.builtSection .featureCard .featureContent {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .builtSection .featureCard .featureContent {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.builtSection .featureCard .featureContent {
  gap: 40px;
}
.builtSection .featureCard .featureContent .featureText {
  width: 35%;
}
@media (max-width: 840px) {
  .builtSection .featureCard .featureContent .featureText {
    width: 100%;
  }
}
.builtSection .featureCard .featureContent .featureText h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 8px;
}
.builtSection .featureCard .featureContent .featureText p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 24px;
  color: var(--black);
  opacity: 0.8;
}
.builtSection .featureCard .featureContent .featureImage {
  position: relative;
  width: 65%;
}
@media (max-width: 840px) {
  .builtSection .featureCard .featureContent .featureImage {
    width: 100%;
  }
}
.builtSection .featureCard .featureContent .featureImage img {
  width: 100%;
  border-radius: 20px;
}
.builtSection .featureCard .featureContent .featureImage .stats {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .builtSection .featureCard .featureContent .featureImage .stats {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.builtSection .featureCard .featureContent .featureImage .stats {
  gap: 40px;
  max-width: 50%;
}
@media (max-width: 991px) {
  .builtSection .featureCard .featureContent .featureImage .stats {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .builtSection .featureCard .featureContent .featureImage .stats {
    max-width: 90%;
  }
}
.builtSection .featureCard .featureContent .featureImage .stats h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--white);
}
.builtSection .featureCard .featureContent .featureImage .stats p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--white);
}
.builtSection .globalSection {
  text-align: center;
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
.builtSection .globalSection h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
  margin-bottom: 60px;
}
.builtSection .globalSection h2.gradientText {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.builtSection .globalSection .countryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 1240px) {
  .builtSection .globalSection .countryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 840px) {
  .builtSection .globalSection .countryGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .builtSection .globalSection .countryGrid {
    gap: 30px;
  }
}
.builtSection .globalSection .countryCard {
  display: flex;
  gap: 20px;
}
.builtSection .globalSection .countryCard .content {
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  height: 450px;
}
.builtSection .globalSection .countryCard h4 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.builtSection .globalSection .countryCard .address {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .builtSection .globalSection .countryCard .address {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.builtSection .globalSection .countryCard p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 12px;
}
.builtSection .globalSection .countryCard .focus {
  margin-top: 16px;
}
.builtSection .globalSection .countryCard {
  /* Flag strip */
}
.builtSection .globalSection .countryCard .flag {
  display: flex;
  width: 200px;
}
@media (max-width: 840px) {
  .builtSection .globalSection .countryCard .flag {
    width: 150px;
  }
}
.builtSection .globalSection .countryCard .flag img {
  width: 100%;
}
.builtSection .imageCollageArea {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .builtSection .imageCollageArea {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.builtSection .imageCollageArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.builtSection .imageCollageArea {
  /* LEFT BIG IMAGE */
}
.builtSection .imageCollageArea .collageLeft {
  height: 480px;
}
@media (max-width: 991px) {
  .builtSection .imageCollageArea .collageLeft {
    height: 400px;
  }
}
.builtSection .imageCollageArea {
  /* RIGHT SIDE */
}
.builtSection .imageCollageArea .collageRight {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.builtSection .imageCollageArea .collageRight .smallImage {
  height: 228px;
}
@media (max-width: 991px) {
  .builtSection .imageCollageArea .collageRight .smallImage {
    height: 260px;
  }
}

.trustedSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
@media (max-width: 991px) {
  .trustedSection {
    padding: 50px 0;
  }
}
.trustedSection .container-fluid {
  max-width: min(85%, 1920px);
  margin: 0 auto;
  text-align: center;
}
.trustedSection h2 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
  margin-bottom: 50px;
}
.trustedSection h2 .gradientText {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trustedSection .logoGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 840px) {
  .trustedSection .logoGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .trustedSection .logoGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .trustedSection .logoGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trustedSection .logoCard {
  background: var(--white);
  border-radius: 12px;
  height: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .trustedSection .logoCard {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.trustedSection .logoCard {
  justify-content: center;
  overflow: hidden;
}
.trustedSection .logoCard img {
  width: 60%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .trustedSection .logoCard img {
    width: 100%;
  }
}
.trustedSection .logoCard.addLogo {
  border: 1px solid var(--blue);
  background: transparent;
}
.trustedSection .logoCard.addLogo span {
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.assistSection {
  padding: 100px 0;
  background-image: url("../images/aboutpage-images/assist-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .assistSection {
    padding: 50px 0;
  }
}
.assistSection .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.assistSection .assistWrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 991px) {
  .assistSection .assistWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .assistSection .assistWrapper {
    gap: 30px;
  }
}
.assistSection .assistWrapper .assistLeft h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.assistSection .assistWrapper .assistLeft h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.assistSection .assistWrapper .assistGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .assistSection .assistWrapper .assistGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.assistSection .assistWrapper .assistGrid .assistCard {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardTop {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardTop .iconCircle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-blue-gradient);
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .assistSection .assistWrapper .assistGrid .assistCard .cardTop .iconCircle {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.assistSection .assistWrapper .assistGrid .assistCard .cardTop .iconCircle {
  justify-content: center;
  flex-shrink: 0;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardTop .iconCircle img {
  width: 18px;
  height: 18px;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardTop p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
  opacity: 0.75;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardBottom {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .assistSection .assistWrapper .assistGrid .assistCard .cardBottom {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.assistSection .assistWrapper .assistGrid .assistCard .cardBottom {
  justify-content: space-between;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardBottom h4 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.assistSection .assistWrapper .assistGrid .assistCard .cardBottom .number {
  text-align: right;
}
.assistSection .assistWrapper .assistGrid .assistCard .cardBottom .number img {
  width: 80%;
}
.assistSection .timelineSection {
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .assistSection .timelineSection {
    padding: 80px 0 0;
  }
}
.assistSection .timelineSection .timelineRow {
  position: relative;
}
@media (max-width: 991px) {
  .assistSection .timelineSection .timelineRow {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport {
  overflow: hidden;
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .assistSection .timelineSection .timelineRow .timelineSlider .viewport .track {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track {
  gap: 44px;
  height: 500px;
  transform: translateX(0);
}
@media (max-width: 840px) {
  .assistSection .timelineSection .timelineRow .timelineSlider .viewport .track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 580px) {
  .assistSection .timelineSection .timelineRow .timelineSlider .viewport .track {
    height: 350px;
  }
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track .slide {
  flex-shrink: 0;
  width: 185px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease 0.5s;
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track .slide.hero {
  width: 400px;
  height: 500px;
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track .slide.hero img {
  transform: scale(1.05);
}
@media (max-width: 580px) {
  .assistSection .timelineSection .timelineRow .timelineSlider .viewport .track .slide.hero {
    width: 280px;
    height: 350px;
  }
}
.assistSection .timelineSection .timelineRow .timelineSlider .viewport .track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.assistSection .timelineSection .timelineRow .timelineContent {
  position: absolute;
  top: 0;
  left: 700px;
}
@media (max-width: 991px) {
  .assistSection .timelineSection .timelineRow .timelineContent {
    position: static;
  }
}
.assistSection .timelineSection .timelineRow .timelineContent h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: 40px;
}
.assistSection .timelineSection .timelineRow .timelineContent h4 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: 4px;
  color: var(--black);
}
.assistSection .timelineSection .timelineRow .timelineContent p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
}
.assistSection .timelineSection .timelineRow .flexInner {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .assistSection .timelineSection .timelineRow .flexInner {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.assistSection .timelineSection .timelineRow .flexInner {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .assistSection .timelineSection .timelineRow .flexInner {
    position: relative;
  }
}
.assistSection .timelineSection .timelineRow .flexInner .timelineDots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  opacity: 0;
}
@media (max-width: 991px) {
  .assistSection .timelineSection .timelineRow .flexInner .timelineDots {
    position: absolute;
    right: 0;
    opacity: 1;
  }
}
.assistSection .timelineSection .timelineRow .flexInner .timelineDots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.assistSection .timelineSection .timelineRow .flexInner .timelineDots .dot.active {
  background: #000;
  transform: scale(1.3);
}

.contactFormSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
@media (max-width: 991px) {
  .contactFormSection {
    padding: 50px 0;
  }
}
.contactFormSection .container-fluid {
  max-width: min(85%, 1920px);
}
.contactFormSection .contactFormWrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .contactFormSection .contactFormWrapper {
    gap: 0;
  }
}
.contactFormSection {
  /* LEFT TEXT */
}
.contactFormSection .leftContent h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.contactFormSection .leftContent h3 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contactFormSection .leftContent p {
  margin-top: 20px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.contactFormSection {
  /* FORM CARD */
}
.contactFormSection .formCard {
  background: var(--white);
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  /* OFFSET EFFECT */
  margin-top: -380px;
  position: relative;
  z-index: 2;
}
.contactFormSection .formCard form h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: 32px;
  color: var(--black);
}
.contactFormSection {
  /* FORM STRUCTURE */
}
.contactFormSection .formRow {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.contactFormSection .formGroup {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contactFormSection .formGroup label {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--light-black);
}
.contactFormSection .formGroup .inputWrapper input,
.contactFormSection .formGroup .inputWrapper textarea {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  outline: none;
  width: 100%;
}
.contactFormSection .formGroup .inputWrapper input:focus,
.contactFormSection .formGroup .inputWrapper textarea:focus {
  border-color: var(--blue);
}
.contactFormSection .formGroup .inputWrapper .phoneField {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.contactFormSection .formGroup .inputWrapper .phoneField span {
  padding: 12px;
  border-right: 1px solid var(--border-color);
}
.contactFormSection .formGroup .inputWrapper .phoneField input {
  border: none;
  flex: 1;
}
.contactFormSection .formGroup.full {
  width: 100%;
  margin-bottom: 20px;
}
.contactFormSection {
  /* BUTTON */
}
.contactFormSection .submitBtn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.contactFormSection .submitBtn svg {
  fill: var(--blue);
}
.contactFormSection .submitBtn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.contactFormSection .submitBtn:hover {
  opacity: 1;
  color: var(--white);
}
.contactFormSection .submitBtn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.contactFormSection .submitBtn:hover svg {
  fill: var(--white);
}
.contactFormSection .submitBtn {
  margin-top: 10px;
}
.contactFormSection {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  .contactFormSection .contactFormWrapper {
    grid-template-columns: 1fr;
  }
  .contactFormSection .formCard {
    margin-top: 40px;
    padding: 20px;
  }
}
@media (max-width: 580px) {
  .contactFormSection .formRow {
    flex-direction: column;
  }
}

.top-blog-lists-area {
  margin: -320px 0 0;
}
.top-blog-lists-area .container-fluid {
  max-width: min(85%, 1920px);
}
@media (max-width: 767px) {
  .top-blog-lists-area .container-fluid {
    max-width: min(95%, 1920px);
  }
}
.top-blog-lists-area .container-fluid .grid-inner-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 1040px) {
  .top-blog-lists-area .container-fluid .grid-inner-area {
    grid-template-columns: 1fr;
  }
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  padding: 30px;
  width: 100%;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: all ease 0.5s;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .floating-btn-area {
  position: absolute;
  top: 20px;
  right: 20px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .floating-btn-area img {
  width: 30px;
  height: 30px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area {
  gap: 16px;
  margin-block: 16px;
  width: 100%;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 50px;
  gap: 5px;
  color: var(--white);
  text-transform: uppercase;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a img {
  width: 16px;
  height: 16px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a.technology {
  background: var(--technology);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a.insights {
  background: var(--insight);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a.news {
  background: var(--news);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area a.wellness {
  background: var(--wellness);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area span {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area span {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area span {
  gap: 5px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .inner-flex-area span img {
  opacity: 0.6;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs h5 a {
  text-decoration: none;
  color: inherit;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-block: 16px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .author-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .author-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .author-area img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .author-area img:nth-child(2), .top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .author-area img:nth-child(3) {
  margin-left: -5px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child {
  background: var(--dark-blue);
  color: var(--white);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child h3,
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child p {
  color: var(--white);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn svg {
  fill: var(--white);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn:hover {
  opacity: 1;
  color: var(--black);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn:hover svg {
  fill: var(--black);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs:first-child .readmore-btn {
  z-index: 0;
  margin-top: 20px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn svg {
  fill: var(--blue);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn:hover {
  opacity: 1;
  color: var(--white);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn:hover svg {
  fill: var(--white);
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn {
  margin-top: 20px;
}
.top-blog-lists-area .container-fluid .grid-inner-area .inner-blogs .readmore-btn img {
  width: 20px;
  height: 20px;
}

.latest-insights-area {
  padding: 100px 0;
  background-color: var(--bg-blue);
}
@media (max-width: 991px) {
  .latest-insights-area {
    padding: 50px 0;
  }
}
.latest-insights-area .container-fluid {
  max-width: min(85%, 1920px);
}
.latest-insights-area .container-fluid .flex-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .flex-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .flex-area {
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.latest-insights-area .container-fluid .flex-area .left-area h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.latest-insights-area .container-fluid .flex-area .left-area h6 {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.latest-insights-area .container-fluid .flex-area .right-area a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.latest-insights-area .container-fluid .flex-area .right-area a svg {
  fill: var(--blue);
}
.latest-insights-area .container-fluid .flex-area .right-area a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.latest-insights-area .container-fluid .flex-area .right-area a:hover {
  opacity: 1;
  color: var(--white);
}
.latest-insights-area .container-fluid .flex-area .right-area a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.latest-insights-area .container-fluid .flex-area .right-area a:hover svg {
  fill: var(--white);
}
.latest-insights-area .container-fluid .main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1040px) {
  .latest-insights-area .container-fluid .main-content {
    grid-template-columns: 1fr;
  }
}
.latest-insights-area .container-fluid .pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .latest-insights-area .container-fluid .pagination {
    justify-content: center;
  }
}
.latest-insights-area .container-fluid .pagination .page-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.latest-insights-area .container-fluid .pagination .page-nav img {
  width: 15px;
  height: 15px;
}
.latest-insights-area .container-fluid .pagination .page-nav:hover {
  background: var(--blue);
}
.latest-insights-area .container-fluid .pagination .page-nav.prev {
  background: var(--border-color);
}
.latest-insights-area .container-fluid .articles-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.latest-insights-area .container-fluid .article-card {
  display: flex;
  gap: 24px;
  border-radius: 20px;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
}
.latest-insights-area .container-fluid .article-card:hover {
  background-color: var(--white);
}
.latest-insights-area .container-fluid .article-image {
  width: 400px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .latest-insights-area .container-fluid .article-image {
    width: 300px;
    height: 200px;
  }
}
.latest-insights-area .container-fluid .article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.latest-insights-area .container-fluid .article-tags {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .article-tags {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .article-tags {
  gap: 8px;
  margin-bottom: 12px;
}
.latest-insights-area .container-fluid .tag {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  padding: 5px 15px;
  border-radius: 50px;
  text-transform: uppercase;
  color: var(--white);
}
.latest-insights-area .container-fluid .tag.insights {
  background: var(--insight);
}
.latest-insights-area .container-fluid .tag.wellness {
  background: var(--wellness);
}
.latest-insights-area .container-fluid .tag.tech {
  background: var(--technology);
}
.latest-insights-area .container-fluid .tag.education {
  background: var(--news);
}
.latest-insights-area .container-fluid .article-title {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 12px;
}
.latest-insights-area .container-fluid .article-title a {
  text-decoration: none;
  color: inherit;
}
.latest-insights-area .container-fluid .article-meta {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .article-meta {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .article-meta {
  gap: 16px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 10px;
}
.latest-insights-area .container-fluid .article-author {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .article-author {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .article-author {
  gap: 8px;
}
.latest-insights-area .container-fluid .author-avatar {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .author-avatar {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .author-avatar img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.latest-insights-area .container-fluid .author-avatar img:nth-child(2), .latest-insights-area .container-fluid .author-avatar img:nth-child(3) {
  margin-left: -5px;
}
.latest-insights-area .container-fluid .article-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .article-icons {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .article-icons {
  gap: 8px;
}
.latest-insights-area .container-fluid .icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .icon-btn {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .icon-btn {
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.latest-insights-area .container-fluid .icon-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.latest-insights-area .container-fluid {
  /* SIDEBAR */
}
.latest-insights-area .container-fluid .sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.latest-insights-area .container-fluid .trending-title {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.latest-insights-area .container-fluid .category-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
}
.latest-insights-area .container-fluid .category-item {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .category-item {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .category-item {
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.latest-insights-area .container-fluid .category-item:last-child {
  border-bottom: 0;
}
.latest-insights-area .container-fluid .category-item:hover {
  background: rgba(0, 0, 0, 0.03);
}
.latest-insights-area .container-fluid .category-info {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .category-info {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .category-info {
  gap: 12px;
}
.latest-insights-area .container-fluid .category-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .latest-insights-area .container-fluid .category-icon {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.latest-insights-area .container-fluid .category-icon {
  justify-content: center;
}
.latest-insights-area .container-fluid .category-icon img {
  width: 70%;
}
.latest-insights-area .container-fluid .category-details h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 2px;
}
.latest-insights-area .container-fluid .category-details p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.latest-insights-area .container-fluid .exclusive-access {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
}
.latest-insights-area .container-fluid .exclusive-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}
.latest-insights-area .container-fluid .exclusive-title {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 12px;
}
.latest-insights-area .container-fluid .exclusive-description {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.85;
  margin-bottom: 20px;
}
.latest-insights-area .container-fluid .subscribe-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.latest-insights-area .container-fluid .subscribe-btn svg {
  fill: var(--blue);
}
.latest-insights-area .container-fluid .subscribe-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.latest-insights-area .container-fluid .subscribe-btn:hover {
  opacity: 1;
  color: var(--white);
}
.latest-insights-area .container-fluid .subscribe-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.latest-insights-area .container-fluid .subscribe-btn:hover svg {
  fill: var(--white);
}
.latest-insights-area .container-fluid .subscribe-btn {
  z-index: 0;
}
.latest-insights-area .container-fluid {
  /* MOBILE */
}
@media (max-width: 768px) {
  .latest-insights-area .container-fluid .main-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .latest-insights-area .container-fluid .article-card {
    flex-direction: column;
  }
  .latest-insights-area .container-fluid .article-image {
    width: 100%;
    height: 200px;
  }
}

.knowledgeHubSection {
  padding: 100px 0;
  background-color: var(--bg-blue);
}
@media (max-width: 991px) {
  .knowledgeHubSection {
    padding: 50px 0;
  }
}
.knowledgeHubSection .container-fluid {
  max-width: min(85%, 1920px);
}
.knowledgeHubSection .container-fluid .hubHeader {
  margin-bottom: 40px;
}
.knowledgeHubSection .container-fluid .hubHeader h2 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.knowledgeHubSection .container-fluid .hubHeader p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  max-width: 520px;
  margin-top: 10px;
}
.knowledgeHubSection .container-fluid .hubGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .knowledgeHubSection .container-fluid .hubGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .knowledgeHubSection .container-fluid .hubGrid {
    grid-template-columns: 1fr;
  }
}
.knowledgeHubSection .container-fluid .hubCard {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: all ease 0.5s;
  cursor: pointer;
}
.knowledgeHubSection .container-fluid .hubCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.knowledgeHubSection .container-fluid .hubCard .imageArea {
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
  border-radius: 15px;
}
.knowledgeHubSection .container-fluid .hubCard .imageArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all ease 0.5s;
  overflow: hidden;
}
.knowledgeHubSection .container-fluid .hubCard .imageArea img:hover {
  transform: scale(1.1);
}
.knowledgeHubSection .container-fluid .hubCard .content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.knowledgeHubSection .container-fluid .hubCard .content h4 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.knowledgeHubSection .container-fluid .hubCard .content h4 a {
  text-decoration: none;
  color: inherit;
}
.knowledgeHubSection .container-fluid .hubCard .content .meta {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.7;
  display: flex;
  gap: 10px;
}
.knowledgeHubSection .container-fluid .hubCard .content .article-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.knowledgeHubSection .container-fluid .hubCard .content .article-author .author-avatar img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.knowledgeHubSection .container-fluid .hubCard .content .article-author .author-avatar img:nth-child(2) {
  margin-left: -5px;
}
.knowledgeHubSection .container-fluid .hubCard .tags {
  display: flex;
  gap: 6px;
}
.knowledgeHubSection .container-fluid .hubCard .tags .tag {
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.knowledgeHubSection .container-fluid .hubCard .tags .tag.insights {
  background: var(--insight);
}
.knowledgeHubSection .container-fluid .hubCard .tags .tag.tech {
  background: var(--technology);
}
.knowledgeHubSection .container-fluid .hubCard .tags .tag.news {
  background: var(--news);
}
.knowledgeHubSection .container-fluid .hubCard .tags .tag.wellness {
  background: var(--wellness);
}
.knowledgeHubSection .container-fluid .loadMoreArea {
  margin-top: 40px;
  text-align: center;
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn svg {
  fill: var(--blue);
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn:hover {
  opacity: 1;
  color: var(--white);
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn:hover svg {
  fill: var(--white);
}
.knowledgeHubSection .container-fluid .loadMoreArea .loadMoreBtn {
  z-index: 0;
}

.blog-detail-page {
  padding: 50px 0;
  background: var(--bg-blue);
}
.blog-detail-page .container-fluid {
  max-width: min(95%, 1920px);
  /* ======================= MAIN GRID ======================= */
}
.blog-detail-page .container-fluid .main-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .blog-detail-page .container-fluid .main-content {
    grid-template-columns: 1fr;
  }
}
.blog-detail-page .container-fluid .insights-section {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.blog-detail-page .container-fluid .articles-grid {
  padding: 30px;
  background: var(--white);
  border-radius: 30px;
  margin-top: -300px;
  z-index: 1;
}
@media (max-width: 991px) {
  .blog-detail-page .container-fluid .articles-grid {
    padding: 15px;
  }
}
.blog-detail-page .container-fluid {
  /* ======================= ARTICLE ======================= */
}
.blog-detail-page .container-fluid .article-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  padding-bottom: 20px;
}
.blog-detail-page .container-fluid .article-image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  object-fit: cover;
}
.blog-detail-page .container-fluid .article-tags {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .article-tags {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .article-tags {
  gap: 15px;
  margin-bottom: 15px;
}
.blog-detail-page .container-fluid .tag {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  padding: 5px 14px;
  border-radius: 50px;
  color: var(--white);
  text-transform: uppercase;
}
.blog-detail-page .container-fluid .tag.tag-insights {
  background: var(--insight);
}
.blog-detail-page .container-fluid .tag.tag-wellness {
  background: var(--wellness);
}
.blog-detail-page .container-fluid .tag.tag-technology {
  background: var(--technology);
}
.blog-detail-page .container-fluid .tag.tag-education {
  background: var(--news);
}
.blog-detail-page .container-fluid .article-title {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.blog-detail-page .container-fluid .article-meta {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .article-meta {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .article-meta {
  gap: 16px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .container-fluid .article-meta span {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .article-meta span {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .article-meta span {
  gap: 4px;
}
.blog-detail-page .container-fluid .article-author {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .article-author {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .article-author {
  gap: 4px;
}
.blog-detail-page .container-fluid .article-author .author-avatar img {
  width: 24px;
  height: 24px;
  border-radius: 50px;
}
.blog-detail-page .container-fluid .article-desc {
  margin-block: 16px;
}
.blog-detail-page .container-fluid .article-desc p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 16px;
}
.blog-detail-page .container-fluid .inner-image-area img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-block: 32px;
}
.blog-detail-page .container-fluid {
  /* ======================= QUOTE ======================= */
}
.blog-detail-page .container-fluid .quote-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .quote-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .quote-area {
  gap: 16px;
}
.blog-detail-page .container-fluid .quote-area h2 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .container-fluid .quote-area span {
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.7;
}
.blog-detail-page .container-fluid {
  /* ======================= ARTICLE LISTING ======================= */
}
.blog-detail-page .container-fluid .article-listing-area h4 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: 8px;
}
.blog-detail-page .container-fluid .article-listing-area h6 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 12px;
}
.blog-detail-page .container-fluid .article-listing-area p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 16px;
}
.blog-detail-page .container-fluid {
  /* ======================= AUTHOR ======================= */
}
.blog-detail-page .container-fluid .written-by {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .written-by {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .written-by {
  gap: 20px;
  padding: 20px 0;
}
.blog-detail-page .container-fluid .written-by .author-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-detail-page .container-fluid .written-by .author-desc {
  display: flex;
  flex-direction: column;
}
.blog-detail-page .container-fluid .written-by .author-desc h6 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .container-fluid .written-by .author-desc span {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  max-width: 85%;
}
.blog-detail-page .container-fluid .written-by .author-desc a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .container-fluid {
  /* ======================= ICON BUTTONS ======================= */
}
.blog-detail-page .container-fluid .article-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .article-icons {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .article-icons {
  gap: 8px;
}
.blog-detail-page .container-fluid .icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .icon-btn {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .icon-btn {
  justify-content: center;
  transition: 0.3s;
}
.blog-detail-page .container-fluid .icon-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.blog-detail-page .container-fluid {
  /* ======================= SIDEBAR ======================= */
}
.blog-detail-page .container-fluid .sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-detail-page .container-fluid .search-area .search-title {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.blog-detail-page .container-fluid .search-area form {
  width: 100%;
  background: #fff;
  padding: 10px;
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.blog-detail-page .container-fluid .search-area form input {
  border: 0;
  width: 100%;
}
.blog-detail-page .container-fluid .search-area form input:focus {
  border: 0;
  outline: 0;
}
.blog-detail-page .container-fluid .search-area form a {
  position: absolute;
  right: 10px;
}
.blog-detail-page .container-fluid .search-area form a img {
  width: 24px;
}
.blog-detail-page .container-fluid .trending-title {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.blog-detail-page .container-fluid .category-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
}
.blog-detail-page .container-fluid .category-item {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .category-item {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .category-item {
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.blog-detail-page .container-fluid .category-item:last-child {
  border-bottom: 0;
}
.blog-detail-page .container-fluid .category-item:hover {
  background: rgba(0, 0, 0, 0.03);
}
.blog-detail-page .container-fluid .category-info {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .category-info {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .category-info {
  gap: 12px;
}
.blog-detail-page .container-fluid .category-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .container-fluid .category-icon {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .container-fluid .category-icon {
  justify-content: center;
}
.blog-detail-page .container-fluid .category-icon img {
  width: 100%;
}
.blog-detail-page .container-fluid .category-details h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 2px;
}
.blog-detail-page .container-fluid .category-details p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .container-fluid .exclusive-access {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
}
.blog-detail-page .container-fluid .exclusive-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}
.blog-detail-page .container-fluid .exclusive-title {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 12px;
}
.blog-detail-page .container-fluid .exclusive-description {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.85;
  margin-bottom: 20px;
}
.blog-detail-page .container-fluid .subscribe-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-detail-page .container-fluid .subscribe-btn svg {
  fill: var(--blue);
}
.blog-detail-page .container-fluid .subscribe-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.blog-detail-page .container-fluid .subscribe-btn:hover {
  opacity: 1;
  color: var(--white);
}
.blog-detail-page .container-fluid .subscribe-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.blog-detail-page .container-fluid .subscribe-btn:hover svg {
  fill: var(--white);
}
.blog-detail-page .container-fluid .subscribe-btn {
  z-index: 0;
}
.blog-detail-page .container-fluid {
  /* MOBILE */
}
@media (max-width: 768px) {
  .blog-detail-page .container-fluid .main-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-detail-page .container-fluid .article-card {
    flex-direction: column;
  }
  .blog-detail-page .container-fluid .article-image {
    width: 100%;
    height: 200px;
  }
}
.blog-detail-page {
  /* ======================= ARCHIVED AREA ======================= */
}
.blog-detail-page .archived-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-detail-page .archived-area .archived-title {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  text-transform: uppercase;
}
.blog-detail-page .archived-area .inner-blogs {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  position: relative;
}
.blog-detail-page .archived-area .inner-blogs h6 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 10px;
}
.blog-detail-page .archived-area .inner-blogs h6 a {
  text-decoration: none;
  color: inherit;
}
.blog-detail-page .archived-area .inner-blogs .inner-flex-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .archived-area .inner-blogs .inner-flex-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .archived-area .inner-blogs .inner-flex-area {
  gap: 16px;
  margin-block: 16px;
}
.blog-detail-page .archived-area .inner-blogs p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.blog-detail-page .archived-area .inner-blogs .author-area {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .blog-detail-page .archived-area .inner-blogs .author-area {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.blog-detail-page .archived-area .inner-blogs .author-area {
  gap: 8px;
}
.blog-detail-page .archived-area .inner-blogs:first-child {
  background: var(--dark-blue);
  color: var(--white);
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn svg {
  fill: var(--white);
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn:hover {
  opacity: 1;
  color: var(--black);
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.blog-detail-page .archived-area .inner-blogs:first-child .readmore-btn:hover svg {
  fill: var(--black);
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn svg {
  fill: var(--blue);
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn:hover {
  opacity: 1;
  color: var(--white);
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.blog-detail-page .archived-area .inner-blogs .readmore-btn:hover svg {
  fill: var(--white);
}

.partnershipSection {
  padding: 100px 0;
  background-color: var(--bg-gray);
}
@media (max-width: 991px) {
  .partnershipSection {
    padding: 50px 0;
  }
}
.partnershipSection .partnershipGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .partnershipSection .partnershipGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .partnershipSection .partnershipGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.partnershipSection .partnerCard {
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.partnershipSection .partnerCard h3 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.partnershipSection .partnerCard h6 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.partnershipSection .partnerCard p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 320px;
}
.partnershipSection .partnerCard .divider {
  width: 100px;
  height: 2px;
  background: var(--purple-gradient);
  margin-block: 20px;
  opacity: 0.7;
}
.partnershipSection .partnerCard .arrowBtn {
  margin-top: 20px;
}
.partnershipSection .partnerCard .arrowBtn img {
  width: 44px;
  height: 44px;
}
.partnershipSection {
  /* Gradient Variants */
}
.partnershipSection .blueCard {
  background-image: url("../images/partnerpage-images/staff-bg.png");
}
.partnershipSection .purpleCard {
  background-image: url("../images/partnerpage-images/project-bg.png");
}
.partnershipSection .violetCard {
  background-image: url("../images/partnerpage-images/hiring-bg.png");
}

.whyPartnerSection {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .whyPartnerSection {
    padding: 50px 0;
  }
}
.whyPartnerSection .container-fluid {
  max-width: min(85%, 1920px);
}
@media (max-width: 767px) {
  .whyPartnerSection .container-fluid {
    max-width: min(95%, 1920px);
  }
}
.whyPartnerSection .container-fluid .headingArea {
  margin-bottom: 60px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .whyPartnerSection .container-fluid .headingArea {
    margin-bottom: 20px;
  }
}
.whyPartnerSection .container-fluid .headingArea h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.whyPartnerSection .container-fluid .headingArea h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.whyPartnerSection .container-fluid .partnerGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.whyPartnerSection .container-fluid .partnerItem {
  padding: 40px;
  position: relative;
}
.whyPartnerSection .container-fluid .partnerItem h4 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin: 14px 0 10px;
}
.whyPartnerSection .container-fluid .partnerItem p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.whyPartnerSection .container-fluid .partnerItem .icon {
  width: 42px;
}
.whyPartnerSection .container-fluid .partnerItem .icon img {
  width: 100%;
}
.whyPartnerSection .container-fluid .partnerItem {
  /* ===================== VERTICAL DIVIDER ===================== */
}
.whyPartnerSection .container-fluid .partnerItem:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-image: url("../images/icons/verticle-gradient-line.png");
  background-repeat: no-repeat;
  background-position: center;
}
.whyPartnerSection .container-fluid .partnerItem {
  /* ===================== HORIZONTAL DIVIDER ===================== */
}
.whyPartnerSection .container-fluid .partnerItem:nth-child(-n+3)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background-image: url("../images/icons/horizontal-gradient-line.png");
  background-repeat: no-repeat;
  background-position: center;
}
.whyPartnerSection .container-fluid {
  /* ===================== TABLET ===================== */
}
@media (max-width: 991px) {
  .whyPartnerSection .container-fluid .partnerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyPartnerSection .container-fluid .partnerItem::after, .whyPartnerSection .container-fluid .partnerItem::before {
    display: none;
  }
}
.whyPartnerSection .container-fluid {
  /* =====================
  MOBILE
  ===================== */
}
@media (max-width: 576px) {
  .whyPartnerSection .container-fluid .partnerGrid {
    grid-template-columns: 1fr;
  }
}

.talentCtaSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
@media (max-width: 991px) {
  .talentCtaSection {
    padding: 50px 0;
  }
}
.talentCtaSection .talentWrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .talentCtaSection .talentWrapper {
    grid-template-columns: 1fr;
  }
}
.talentCtaSection {
  /* LEFT IMAGE */
}
.talentCtaSection .imageArea {
  border-radius: 24px;
  overflow: hidden;
  height: 530px;
}
.talentCtaSection .imageArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.talentCtaSection {
  /* RIGHT SIDE */
}
.talentCtaSection .ctaCards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 530px;
}
.talentCtaSection .ctaCard {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .talentCtaSection .ctaCard {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.talentCtaSection .ctaCard {
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  flex: 1;
}
.talentCtaSection .ctaCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.talentCtaSection .ctaCard .textArea h3 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.talentCtaSection .ctaCard .textArea p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  max-width: 260px;
}
.talentCtaSection .ctaCard .arrowBtn img {
  width: 44px;
  height: 44px;
}
.talentCtaSection .ctaCard:hover .arrowBtn {
  transform: translateX(6px);
}

.rolesSection {
  padding: 100px 0;
  background: var(--bg-blue);
  /* HEADER */
}
.rolesSection .rolesHeader {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .rolesSection .rolesHeader {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.rolesSection .rolesHeader {
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.rolesSection .rolesHeader h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.rolesSection .rolesHeader h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rolesSection .rolesHeader p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-top: 10px;
  max-width: 520px;
}
.rolesSection .rolesHeader select {
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
  color: var(--blue);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512.02 319.26"><path d="M5.9 48.96 48.97 5.89c7.86-7.86 20.73-7.84 28.56 0l178.48 178.48L434.5 5.89c7.86-7.86 20.74-7.82 28.56 0l43.07 43.07c7.83 7.84 7.83 20.72 0 28.56l-192.41 192.4-.36.37-43.07 43.07c-7.83 7.82-20.7 7.86-28.56 0l-43.07-43.07-.36-.37L5.9 77.52c-7.87-7.86-7.87-20.7 0-28.56z"/></svg>') no-repeat right 20px center;
  background-size: 10px;
  padding-right: 30px;
  /* Make space for the icon */
}
.rolesSection .rolesHeader select:focus {
  outline: 0;
}
.rolesSection {
  /* JOB LIST */
}
.rolesSection .rolesList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rolesSection .roleCard {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .rolesSection .roleCard {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.rolesSection .roleCard {
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.rolesSection .roleCard:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .rolesSection .roleCard {
    flex-direction: column;
  }
}
.rolesSection .roleCard .roleContent {
  flex: 1;
}
.rolesSection .roleCard .roleContent h4 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 8px;
}
.rolesSection .roleCard .roleContent .meta {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .rolesSection .roleCard .roleContent .meta {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.rolesSection .roleCard .roleContent .meta {
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.rolesSection .roleCard .roleContent .meta span {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.rolesSection .roleCard .roleContent p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  max-width: 700px;
}
.rolesSection .roleCard .applyArea {
  display: flex;
  align-items: center;
}
.rolesSection .roleCard .applyBtn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.rolesSection .roleCard .applyBtn svg {
  fill: var(--blue);
}
.rolesSection .roleCard .applyBtn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.rolesSection .roleCard .applyBtn:hover {
  opacity: 1;
  color: var(--white);
}
.rolesSection .roleCard .applyBtn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.rolesSection .roleCard .applyBtn:hover svg {
  fill: var(--white);
}
.rolesSection .roleCard .applyBtn img {
  width: 15px;
}

.careerFormSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
@media (max-width: 991px) {
  .careerFormSection {
    padding: 0 0 50px;
  }
}
.careerFormSection .careerFormWrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 991px) {
  .careerFormSection .careerFormWrapper {
    grid-template-columns: 1fr;
  }
}
.careerFormSection {
  /* LEFT */
}
.careerFormSection .leftArea h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.careerFormSection .leftArea h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.careerFormSection .leftArea p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-top: 16px;
}
.careerFormSection {
  /* FORM CARD */
}
.careerFormSection .rightArea {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.careerFormSection .formRow {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.careerFormSection .formGroup {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.careerFormSection .formGroup label {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.careerFormSection .formGroup input,
.careerFormSection .formGroup textarea {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  outline: none;
  width: 100%;
}
.careerFormSection .formGroup input:focus,
.careerFormSection .formGroup textarea:focus {
  border-color: var(--blue);
}
.careerFormSection .formGroup input[type=file] {
  min-height: 54px;
  color: #5f6673;
  cursor: pointer;
  padding: 8px 14px;
}
.careerFormSection .formGroup input[type=file]::file-selector-button {
  border: 0;
  border-radius: 4px;
  background: #f3f6fb;
  color: #3f4653;
  cursor: pointer;
  font-family: inherit;
  margin-right: 12px;
  padding: 9px 14px;
  transition: background 0.2s ease;
}
.careerFormSection .formGroup input[type=file]:hover::file-selector-button {
  background: #e8edf5;
}
.careerFormSection .formGroup.full {
  width: 100%;
  margin-bottom: 20px;
}
.careerFormSection {
  /* PHONE FIELD */
}
.careerFormSection .phoneField {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.careerFormSection .phoneField span {
  padding: 12px;
  border-right: 1px solid var(--border-color);
}
.careerFormSection .phoneField input {
  border: none;
  flex: 1;
}
.careerFormSection {
  /* BUTTON */
}
.careerFormSection .submitBtn {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.careerFormSection .submitBtn svg {
  fill: var(--blue);
}
.careerFormSection .submitBtn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.careerFormSection .submitBtn:hover {
  opacity: 1;
  color: var(--white);
}
.careerFormSection .submitBtn:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.careerFormSection .submitBtn:hover svg {
  fill: var(--white);
}
.careerFormSection .submitBtn {
  z-index: 0;
  margin-top: 10px;
}
.careerFormSection {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  .careerFormSection .contactFormWrapper {
    grid-template-columns: 1fr;
  }
  .careerFormSection .formCard {
    margin-top: 40px;
  }
}
@media (max-width: 580px) {
  .careerFormSection .formRow {
    flex-direction: column;
  }
}

.mobileAppBuildSection {
  padding: 100px 0;
  background: var(--bg-blue);
  position: relative;
}
@media (max-width: 767px) {
  .mobileAppBuildSection {
    padding: 50px 0;
  }
}
.mobileAppBuildSection .buildWrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .mobileAppBuildSection .buildWrapper {
    grid-template-columns: 1fr;
  }
}
.mobileAppBuildSection {
  /* IMAGE */
}
.mobileAppBuildSection .imageArea {
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mobileAppBuildSection .imageArea {
    display: none;
  }
}
.mobileAppBuildSection .imageArea img {
  width: 100%;
  height: 914px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .mobileAppBuildSection .imageArea img {
    height: 500px;
  }
}
.mobileAppBuildSection {
  /* CONTENT */
}
.mobileAppBuildSection .contentArea {
  padding-top: 75px;
}
@media (max-width: 767px) {
  .mobileAppBuildSection .contentArea {
    padding-top: 0;
  }
}
.mobileAppBuildSection .contentArea h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 16px;
}
.mobileAppBuildSection .contentArea p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.mobileAppBuildSection {
  /* FLOATING STRIP */
}
.mobileAppBuildSection .featureStrip {
  background: var(--white);
  border-radius: 24px;
  padding: 30px 40px;
  margin-top: -80px;
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  right: 5%;
  bottom: 25%;
  width: 80%;
}
@media (max-width: 991px) {
  .mobileAppBuildSection .featureStrip {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .mobileAppBuildSection .featureStrip {
    position: relative;
    left: 0;
    width: 100%;
  }
}
.mobileAppBuildSection .featureItem {
  text-align: left;
  position: relative;
  padding-right: 20px;
}
.mobileAppBuildSection .featureItem img {
  width: 40px;
  margin-bottom: 12px;
}
.mobileAppBuildSection .featureItem h5 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.mobileAppBuildSection .featureItem p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.mobileAppBuildSection .featureItem {
  /* vertical divider */
}
.mobileAppBuildSection .featureItem:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .mobileAppBuildSection .featureItem::after {
    display: none;
  }
}

.mobileServiceSection {
  padding: 120px 0;
  position: relative;
  color: var(--white);
  background-image: url("../images/servicepage-images/mobileapp-dev-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .mobileServiceSection {
    padding: 50px 0;
  }
}
.mobileServiceSection .container-fluid {
  position: relative;
  z-index: 1;
}
.mobileServiceSection .serviceWrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .mobileServiceSection .serviceWrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.mobileServiceSection {
  /* LEFT */
}
.mobileServiceSection .serviceLeft h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--white);
}
.mobileServiceSection {
  /* RIGHT */
}
.mobileServiceSection .serviceRight {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobileServiceSection .serviceItem {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .mobileServiceSection .serviceItem {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.mobileServiceSection .serviceItem {
  gap: 20px;
}
.mobileServiceSection .icon {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .mobileServiceSection .icon {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.mobileServiceSection .icon {
  justify-content: center;
}
.mobileServiceSection .icon img {
  width: 100px;
}
.mobileServiceSection .text h4 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--white);
  margin-bottom: 6px;
}
.mobileServiceSection .text p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.85;
}

.processSection {
  padding: 100px 0;
  background-color: var(--bg-gray);
}
@media (max-width: 767px) {
  .processSection {
    padding: 50px 0;
  }
}
.processSection .processHeader {
  text-align: center;
  margin: 0 auto 80px;
}
.processSection .processHeader h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
  margin-bottom: 10px;
}
.processSection .processHeader p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.processSection .processTimeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.processSection .processTimeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}
.processSection .processTimeline .processTimelineInner {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.processSection .processTimeline .processTimelineInner .processItem {
  flex: 1;
}
.processSection .processTimeline .processTimelineInner .processItem.left {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .processSection .processTimeline .processTimelineInner .processItem.left {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.processSection .processTimeline .processTimelineInner .processItem.left {
  justify-content: flex-end;
}
.processSection .processTimeline .processTimelineInner .processItem.left .content {
  text-align: right;
}
.processSection .processTimeline .processTimelineInner .processItem.center {
  position: relative;
  overflow: hidden;
  max-width: 2px;
  height: auto;
}
.processSection .processTimeline .processTimelineInner .processItem.center.active {
  background: var(--dark-blue-gradient);
}
.processSection .processTimeline .processTimelineInner .processItem.right {
  max-width: 50%;
}
.processSection .processTimeline .processTimelineInner .processItem .content h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.processSection .processTimeline .processTimelineInner .processItem .content p {
  color: var(--light-black);
}

.caseStudySlider {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .caseStudySlider {
    padding: 50px 0;
  }
}
.caseStudySlider .container-fluid {
  max-width: min(100%, 1920px);
  padding-left: 0;
  padding-right: 0;
}
.caseStudySlider .container-fluid h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  margin-bottom: 80px;
  padding-left: 150px;
}
.caseStudySlider .container-fluid h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid h2 {
    padding-left: 60px;
    margin-bottom: 30px;
  }
}
@media (max-width: 510px) {
  .caseStudySlider .container-fluid h2 {
    margin-bottom: 50px;
  }
}
.caseStudySlider .container-fluid .sliderWrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .sliderWrapper {
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .caseStudySlider .container-fluid .sliderWrapper {
    gap: 100px;
  }
}
.caseStudySlider .container-fluid {
  /* LEFT SIDE */
}
.caseStudySlider .container-fluid .contentArea {
  width: 35%;
  padding-left: 150px;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .contentArea {
    width: 100%;
    padding-left: 40px;
  }
}
.caseStudySlider .container-fluid .navArea {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
.caseStudySlider .container-fluid .arrow {
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .arrow {
    position: absolute;
    right: 0;
  }
  .caseStudySlider .container-fluid .arrow.prev {
    right: 50px;
  }
}
.caseStudySlider .container-fluid {
  /* vertical line */
}
.caseStudySlider .container-fluid .progressLine {
  width: 2px;
  height: 500px;
  background: var(--border-color);
  position: relative;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .progressLine {
    display: none;
  }
}
.caseStudySlider .container-fluid .progressBar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--dark-blue-gradient);
  transition: top 0.5s ease;
}
.caseStudySlider .container-fluid {
  /* TEXT SLIDE */
}
.caseStudySlider .container-fluid .textSlider {
  overflow: hidden;
  top: 50%;
  position: absolute;
  left: 80px;
  max-width: 75%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .textSlider {
    left: 0;
    margin-top: 15px;
  }
}
.caseStudySlider .container-fluid .textTrack {
  display: flex;
  transition: transform 0.6s ease;
}
.caseStudySlider .container-fluid .textSlide {
  min-width: 100%;
}
.caseStudySlider .container-fluid .textSlide h3 {
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: clamp(30px, 2.3vw, 44px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.caseStudySlider .container-fluid .textSlide a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.caseStudySlider .container-fluid .textSlide a svg {
  fill: var(--blue);
}
.caseStudySlider .container-fluid .textSlide a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.caseStudySlider .container-fluid .textSlide a:hover {
  opacity: 1;
  color: var(--white);
}
.caseStudySlider .container-fluid .textSlide a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.caseStudySlider .container-fluid .textSlide a:hover svg {
  fill: var(--white);
}
.caseStudySlider .container-fluid {
  /* RIGHT IMAGE */
}
.caseStudySlider .container-fluid .imageArea {
  width: 65%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .caseStudySlider .container-fluid .imageArea {
    width: 100%;
  }
}
.caseStudySlider .container-fluid .imageTrack {
  display: flex;
  transition: transform 0.7s ease;
}
.caseStudySlider .container-fluid .imageSlide {
  min-width: 100%;
}
.caseStudySlider .container-fluid .imageSlide img {
  width: 100%;
  display: block;
  border-radius: 0;
  height: 500px;
}
@media (max-width: 580px) {
  .caseStudySlider .container-fluid .imageSlide img {
    height: 400px;
    object-fit: cover;
  }
}

.techStackSection {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .techStackSection {
    padding: 0px 0;
  }
}
.techStackSection .container-fluid {
  max-width: min(85%, 1920px);
}
@media (max-width: 767px) {
  .techStackSection .container-fluid {
    max-width: min(95%, 1920px);
  }
}
.techStackSection {
  /* Heading */
}
.techStackSection .headingArea {
  margin-bottom: 60px;
}
.techStackSection .headingArea h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.techStackSection .headingArea h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.techStackSection {
  /* Grid */
}
.techStackSection .techGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .techStackSection .techGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .techStackSection .techGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .techStackSection .techGrid {
    grid-template-columns: 1fr;
  }
}
.techStackSection {
  /* Card */
}
.techStackSection .techCard {
  position: relative;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* vertical divider */
}
.techStackSection .techCard .icon {
  height: 40px;
}
.techStackSection .techCard .icon img {
  height: 100%;
  object-fit: contain;
}
.techStackSection .techCard .line {
  width: 2px;
  height: 60px;
  background: rgba(0, 55, 155, 0.25);
}
.techStackSection .techCard h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.techStackSection .techCard p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}

.caseStudySection {
  padding: 100px 0 0;
  background: var(--bg-blue);
  position: relative;
}
.caseStudySection .container-fluid {
  max-width: min(85%, 1920px);
}
.caseStudySection .caseWrapper {
  position: relative;
  margin-top: -280px;
}
@media (max-width: 480px) {
  .caseStudySection .caseWrapper {
    margin-top: -150px;
  }
}
.caseStudySection .caseWrapper img {
  width: 100%;
}

.foundationSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
@media (max-width: 767px) {
  .foundationSection {
    padding: 50px 0;
  }
}
.foundationSection .container-fluid {
  max-width: min(85%, 1920px);
}
.foundationSection {
  /* HEADER */
}
.foundationSection .foundationHeader {
  text-align: center;
  margin-bottom: 60px;
}
.foundationSection .foundationHeader h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
}
.foundationSection .foundationHeader h2 span {
  background: var(--dark-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.foundationSection {
  /* GRID */
}
.foundationSection .foundationGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .foundationSection .foundationGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .foundationSection .foundationGrid {
    grid-template-columns: 1fr;
  }
}
.foundationSection {
  /* CARD */
}
.foundationSection .foundationCard {
  transition: 0.3s ease;
  cursor: pointer;
}
.foundationSection .foundationCard .cardImage {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
}
.foundationSection .foundationCard .cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.5s;
}
.foundationSection .foundationCard .cardImage img:hover {
  transform: scale(1.1);
}
.foundationSection .foundationCard .cardImage .badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  box-shadow: 0 5px 15px var(--border-color);
  color: var(--dark-blue);
}
.foundationSection .foundationCard .cardContent h4 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 12px;
}
.foundationSection .foundationCard .cardContent .meta {
  display: flex;
  gap: 16px;
}
.foundationSection .foundationCard .cardContent .meta span {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .foundationSection .foundationCard .cardContent .meta span {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.foundationSection .foundationCard .cardContent .meta span {
  gap: 4px;
}

.caseDetailSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
.caseDetailSection .container-fluid {
  max-width: min(85%, 1920px);
}
.caseDetailSection {
  /* TOP ROW */
}
.caseDetailSection .topRow {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 250px;
}
@media (max-width: 991px) {
  .caseDetailSection .topRow {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.caseDetailSection .aboutLeft h2 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.caseDetailSection .aboutLeft p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 16px;
}
.caseDetailSection .aboutRight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.caseDetailSection .aboutRight .infoItem .label {
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.caseDetailSection .aboutRight .infoItem p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-top: 4px;
}
.caseDetailSection .aboutRight .infoItem a {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  text-decoration: none;
}

.problemSection {
  background: var(--bg-blue);
}
.problemSection .container-fluid {
  max-width: min(100%, 1920px);
  margin-left: 0;
  padding-left: 0;
}
.problemSection .bottomRow {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .problemSection .bottomRow {
    grid-template-columns: 1fr;
  }
}
.problemSection .imageArea img {
  width: 100%;
  object-fit: contain;
}
.problemSection .problemArea {
  padding-right: 120px;
}
.problemSection .problemArea h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.problemSection .problemArea p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 16px;
}
.problemSection .problemArea .colorBlocks {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: flex-end;
}
.problemSection .problemArea .colorBlocks span {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--dark-blue-gradient);
}

.solutionSection {
  background: var(--bg-blue);
}
.solutionSection .container-fluid {
  max-width: min(100%, 1920px);
  margin-right: 0;
  padding-right: 0;
}
.solutionSection .solutionWrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .solutionSection .solutionWrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.solutionSection {
  /* LEFT SIDE */
}
.solutionSection .solutionLeft {
  padding-left: 120px;
}
.solutionSection .solutionLeft h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.solutionSection .solutionLeft p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 24px;
}
.solutionSection .solutionList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solutionSection .solutionList li {
  position: relative;
  padding-left: 28px;
}
.solutionSection .solutionList li::before {
  content: "";
  background-image: url("../images/icons/double-tick.svg");
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  width: 20px;
  height: 20px;
}
.solutionSection .solutionList li h6 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 4px;
}
.solutionSection .solutionList li p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin: 0;
}
.solutionSection {
  /* RIGHT SIDE */
}
.solutionSection .solutionRight {
  position: relative;
}
.solutionSection .mockupArea img {
  width: 100%;
  object-fit: contain;
}

.statsHighlightSection {
  padding: 100px 0;
  background: var(--bg-blue);
}
.statsHighlightSection .container-fluid {
  max-width: min(85%, 1920px);
}
.statsHighlightSection .statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 991px) {
  .statsHighlightSection .statsGrid {
    grid-template-columns: 1fr;
  }
}
.statsHighlightSection .statCard {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.statsHighlightSection .statCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statsHighlightSection .statCard {
  /* Dark overlay */
}
.statsHighlightSection .statCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}
.statsHighlightSection .statCard .overlayContent {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: var(--white);
  z-index: 2;
}
.statsHighlightSection .statCard .overlayContent h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--white);
  margin-bottom: 4px;
}
.statsHighlightSection .statCard .overlayContent h5 {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.statsHighlightSection .statCard .overlayContent p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  opacity: 0.85;
  max-width: 280px;
}

.projectShowcaseSection {
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .projectShowcaseSection {
    padding: 50px 0 0;
  }
}
.projectShowcaseSection .container-fluid {
  max-width: min(100%, 1920px);
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 767px) {
  .projectShowcaseSection .container-fluid {
    padding: revert-layer;
    max-width: min(95%, 1920px);
  }
}
.projectShowcaseSection .projectRow {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  justify-content: space-between;
}
.projectShowcaseSection .projectRow .projectContent:nth-child(1), .projectShowcaseSection .projectRow .projectContent:nth-child(3) {
  padding-left: 120px;
}
@media (max-width: 767px) {
  .projectShowcaseSection .projectRow .projectContent:nth-child(1), .projectShowcaseSection .projectRow .projectContent:nth-child(3) {
    padding-left: 0;
  }
}
.projectShowcaseSection .projectRow .projectContent:nth-child(2), .projectShowcaseSection .projectRow .projectContent:nth-child(4) {
  padding-right: 120px;
}
@media (max-width: 767px) {
  .projectShowcaseSection .projectRow .projectContent:nth-child(2), .projectShowcaseSection .projectRow .projectContent:nth-child(4) {
    padding-right: 0;
  }
}
.projectShowcaseSection .projectRow .projectContent h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.projectShowcaseSection .projectRow .projectContent .projectTag {
  display: block;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: clamp(20px, 1.35vw, 26px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  color: var(--border-color);
  margin-bottom: 16px;
  font-style: italic;
}
.projectShowcaseSection .projectRow .projectContent p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 20px;
  max-width: 550px;
}
.projectShowcaseSection .projectRow .projectContent .features h6 {
  font-weight: 700;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 8px;
}
.projectShowcaseSection .projectRow .projectContent .features ul {
  list-style: none;
  padding: 0;
}
.projectShowcaseSection .projectRow .projectContent .features ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-bottom: 6px;
}
.projectShowcaseSection .projectRow .projectContent .features ul li:before {
  content: "";
  background-image: url("../images/icons/double-tick.svg");
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .projectShowcaseSection .projectRow .projectContent {
    order: 2;
  }
}
.projectShowcaseSection .projectRow .projectImage img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .projectShowcaseSection .projectRow .projectImage {
    order: 1;
  }
}
.projectShowcaseSection .projectRow:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .projectShowcaseSection .projectRow {
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .projectShowcaseSection .projectRow {
    flex-direction: column;
  }
}

.topBar {
  background-color: var(--dark-blue);
}
.topBar .topBar-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .topBar .topBar-inner {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.topBar .topBar-inner {
  justify-content: space-between;
  height: 40px;
}
@media (max-width: 580px) {
  .topBar .topBar-inner {
    justify-content: center;
  }
}
@media (max-width: 440px) {
  .topBar .topBar-inner {
    padding: 0;
    height: 60px;
  }
}
.topBar .topBar-inner .contact-links {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .topBar .topBar-inner .contact-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.topBar .topBar-inner .contact-links {
  gap: 40px;
}
@media (max-width: 440px) {
  .topBar .topBar-inner .contact-links {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
}
.topBar .topBar-inner .contact-links .left,
.topBar .topBar-inner .contact-links .right {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .topBar .topBar-inner .contact-links .left,
  .topBar .topBar-inner .contact-links .right {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.topBar .topBar-inner .contact-links .left,
.topBar .topBar-inner .contact-links .right {
  gap: 8px;
}
@media (max-width: 440px) {
  .topBar .topBar-inner .contact-links .left,
  .topBar .topBar-inner .contact-links .right {
    flex-wrap: nowrap;
  }
}
.topBar .topBar-inner .contact-links .left img,
.topBar .topBar-inner .contact-links .right img {
  width: 16px;
}
.topBar .topBar-inner .contact-links .left a,
.topBar .topBar-inner .contact-links .right a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
}
.topBar .topBar-inner .country-flags {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .topBar .topBar-inner .country-flags {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.topBar .topBar-inner .country-flags {
  gap: 18px;
}
.topBar .topBar-inner .country-flags img {
  width: 20px;
}
@media (max-width: 580px) {
  .topBar .topBar-inner .country-flags {
    display: none;
  }
}

.darkCta {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .darkCta {
    padding: 50px 0;
  }
}
.darkCta .darkCtaInner {
  background-image: url("../images/dark-CTA.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border-radius: 24px;
}
@media (max-width: 840px) {
  .darkCta .darkCtaInner {
    padding: 50px;
    text-align: center;
  }
}
.darkCta .darkCtaInner h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.darkCta .darkCtaInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-top: 22px;
}
.darkCta .darkCtaInner a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.darkCta .darkCtaInner a svg {
  fill: var(--white);
}
.darkCta .darkCtaInner a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.darkCta .darkCtaInner a:hover {
  opacity: 1;
  color: var(--black);
}
.darkCta .darkCtaInner a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.darkCta .darkCtaInner a:hover svg {
  fill: var(--black);
}
.darkCta .darkCtaInner a {
  margin-top: 60px;
  z-index: 0;
}

.lightCta {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .lightCta {
    padding: 50px 0;
  }
}
.lightCta .lightCtaInner {
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border-radius: 24px;
}
@media (max-width: 840px) {
  .lightCta .lightCtaInner {
    padding: 50px;
    text-align: center;
  }
}
.lightCta .lightCtaInner h2 {
  font-weight: 500;
  font-size: clamp(32px, 3vw, 60px);
  line-height: clamp(40px, 3.6vw, 72px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
  color: var(--black);
}
.lightCta .lightCtaInner h5 {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.8vw, 34px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-top: 22px;
  color: var(--black);
}
.lightCta .lightCtaInner a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.lightCta .lightCtaInner a svg {
  fill: var(--blue);
}
.lightCta .lightCtaInner a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.lightCta .lightCtaInner a:hover {
  opacity: 1;
  color: var(--white);
}
.lightCta .lightCtaInner a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
.lightCta .lightCtaInner a:hover svg {
  fill: var(--white);
}
.lightCta .lightCtaInner a {
  margin-top: 60px;
  z-index: 0;
}

footer {
  background-image: url(../images/footer-bgimage.jpg);
  padding: 40px 0;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
footer .container-fluid {
  width: 100%;
  max-width: min(85%, 1920px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  footer .container-fluid {
    max-width: min(95%, 1920px);
  }
}
footer .container-fluid .footer-inner {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 991px) {
  footer .container-fluid .footer-inner {
    flex-wrap: wrap;
  }
}
footer .container-fluid .footer-inner .footer-col {
  flex: 1 1 25%;
  max-width: 25%;
}
footer .container-fluid .footer-inner .footer-col h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 50px);
  line-height: clamp(30px, 3.2vw, 62px);
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  footer .container-fluid .footer-inner .footer-col {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  footer .container-fluid .footer-inner .footer-col {
    flex: 1 1 40%;
  }
}
@media (max-width: 480px) {
  footer .container-fluid .footer-inner .footer-col {
    flex: 1 1 100%;
  }
}
@media (max-width: 1199px) {
  footer .container-fluid .footer-inner .footer-col:nth-child(1) {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  footer .container-fluid .footer-inner .footer-col:nth-child(1) {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) p {
  max-width: 75%;
  margin-top: 50px;
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a {
  font-size: clamp(15px, 1.05vw, 20px);
  position: relative;
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a svg {
  fill: var(--white);
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.35s ease;
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a:hover {
  opacity: 1;
  color: var(--black);
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a:hover::after {
  transform: translateY(-100%) scaleY(1);
  z-index: -1;
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a:hover svg {
  fill: var(--black);
}
footer .container-fluid .footer-inner .footer-col:nth-child(1) a {
  z-index: 0;
}
footer .container-fluid .footer-inner .footer-col > * {
  margin-block: 10px;
  color: var(--white);
}
footer .container-fluid .footer-inner .footer-col .footer-logo img {
  max-width: 200px;
}
footer .container-fluid .footer-inner .footer-col ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
footer .container-fluid .footer-inner .footer-col ul li a {
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  footer .container-fluid .footer-inner .footer-col ul li a {
    flex-wrap: wrap;
    gap: 14px;
  }
}
footer .container-fluid .footer-inner .footer-col ul li a {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  gap: 6px;
  transition: all ease 0.5s;
}
footer .container-fluid .footer-inner .footer-col ul li a img {
  width: 8%;
}
footer .container-fluid .footer-inner .footer-col ul li a:hover {
  font-weight: 600;
}
footer .container-fluid .footer-inner .footer-col:nth-child(2) ul, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
footer .container-fluid .footer-inner .footer-col:nth-child(2) ul li, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul li, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul li {
  margin-bottom: 0px;
}
footer .container-fluid .footer-inner .footer-col:nth-child(2) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul li h6 {
  font-weight: 400;
  font-size: clamp(14px, 1.15vw, 22px);
  line-height: clamp(20px, 1.65vw, 32px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  footer .container-fluid .footer-inner .footer-col:nth-child(2) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul li h6 {
    flex-wrap: wrap;
    gap: 14px;
  }
}
footer .container-fluid .footer-inner .footer-col:nth-child(2) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul li h6, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul li h6 {
  gap: 4px;
}
footer .container-fluid .footer-inner .footer-col:nth-child(2) ul li p, footer .container-fluid .footer-inner .footer-col:nth-child(3) ul li p, footer .container-fluid .footer-inner .footer-col:nth-child(4) ul li p {
  font-weight: 400;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  margin-top: 4px;
}
@media (max-width: 991px) {
  footer .container-fluid .footer-inner .footer-col:nth-child(3) {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

/*# sourceMappingURL=style.css.map */
