/*!
Theme Name: PaxonTech
Theme URI: 
Author: Yash Katale
Author URI: 
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: paxontech
Tags: agency

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@700;900&family=Inter:wght@400;500;600&display=swap');

:root {

  /* =========================
     FONT SYSTEM (Bootstrap override)
  ========================= */
  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  /* 16px */
  --bs-body-line-height: 1.5;
  --bs-body-color: #000000;
  --bs-body-bg: #ffffff;

  /* Headings (we’ll override separately too) */
  --font-display: 'DM Sans', sans-serif;

  /* =========================
     COLORS (Mapped to Bootstrap)
  ========================= */

  --bs-primary: #2563EB;
  --bs-primary-rgb: 37, 99, 235;

  --bs-secondary: #64748B;
  --bs-secondary-rgb: 100, 116, 139;

  --bs-success: #10B981;
  --bs-success-rgb: 16, 185, 129;

  --bs-danger: #EF4444;
  --bs-danger-rgb: 239, 68, 68;

  --bs-light: #F1F5F9;
  --bs-light-rgb: 241, 245, 249;

  --bs-dark: #0F172A;
  --bs-dark-rgb: 15, 23, 42;

  /* Extra system colors */
  --color-border: #E5E7EB;
  --color-muted: #64748B;

  /* =========================
     BORDER / RADIUS
  ========================= */

  --bs-border-radius: 6px;
  --bs-border-radius-lg: 8px;
  --bs-border-color: #E5E7EB;

  /* =========================
     SHADOWS
  ========================= */

  --bs-box-shadow-sm: 0px 1px 3px rgba(0, 0, 0, 0.1);
  --bs-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  --bs-box-shadow-lg: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;

  /* =========================
     SPACING (Optional align)
  ========================= */

  --bs-spacer: 1rem;
  /* base 16px */

  /* =========================
     BUTTONS (GLOBAL OVERRIDE)
  ========================= */

  --bs-btn-padding-y: 12px;
  --bs-btn-padding-x: 32px;
  --bs-btn-font-weight: 400;
  --bs-btn-border-radius: 6px;

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

  --bs-input-padding-y: 12px;
  --bs-input-padding-x: 16px;
  --bs-input-border-color: #E5E7EB;
  --bs-input-border-radius: 6px;

  --bs-focus-ring-color: rgba(37, 99, 235, 0.25);
}


/* Common */

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35em 0.75em;
  font-size: .9rem;
  font-weight: 700;
  color: var(--bs-success);
  background-color: var(--bs-body-bg);
  border-radius: 50rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 0 1px #198754cc;
}

.online-icon {
  width: 4rem;
  height: 4rem;
  position: relative;
  z-index: 2;
}

/* Ripple */
.online-icon path {
  animation: blink 1.2s infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.25);
  }
}

.pill-badge span {
  font-family: var(--font-display);
}

/***************************
******rightAlign-Button*****
*****************************/
.rightAlign-btn-wrapper {
  display: flex;
  justify-content: right;
  align-items: right;
}

.rightAlign-btn {
  gap: 0.5rem;
  /* margin-top: 2rem; */
  padding: 0.75rem 1.1rem;
  width: fit-content;
  border-radius: 0.5rem;
  background: #2854d6;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.rightAlign-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.rightAlign-btn:hover {
  background: #1f47c4;
}

.rightAlign-btn:hover svg {
  transform: translateX(0.35rem);
}

.rightAlign-btn:active {
  transform: scale(0.98);
}

@media (max-width: 767px) {
  .cta-button {
    margin: 2rem auto;
    padding: 0.9em 1.8em;
    font-size: 1rem;
    gap: 0.5rem;
    display: flex;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .cta-button {
    margin: 1.5rem auto;
    padding: 0.8em 1.5em;
    font-size: 0.9rem;
    gap: 0.4rem;
  }
}


/***************************
********Center-Button********
*****************************/

.strategy-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategy-btn {
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  width: 20rem;
  border-radius: 0.5rem;
  background: #2854d6;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.strategy-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.strategy-btn:hover {
  background: #1f47c4;
}

.strategy-btn:hover svg {
  transform: translateX(0.35rem);
}

.strategy-btn:active {
  transform: scale(0.98);
}

/****************************
************Start-Button******
*******************************/

.leftAlign-btn-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}

.leftAlign-btn {
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  width: 20rem;
  border-radius: 0.5rem;
  background: #2854d6;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.leftAlign-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.leftAlign-btn:hover {
  background: #1f47c4;
}

.leftAlign-btn:hover svg {
  transform: translateX(0.35rem);
}

.leftAlign-btn:active {
  transform: scale(0.98);
}

@media (max-width: 767px) {
  .cta-button {
    margin: 2rem auto;
    padding: 0.9em 1.8em;
    font-size: 1rem;
    gap: 0.5rem;
    display: flex;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .cta-button {
    margin: 1.5rem auto;
    padding: 0.8em 1.5em;
    font-size: 0.9rem;
    gap: 0.4rem;
  }
}

.cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-0.4em);
  box-shadow: 0 1em 2.4em -0.6px rgba(37, 99, 235, 0.8);
}

.online-icon {
  width: 2em;
  height: 2em;
}

.arrow-icon {
  width: 2em;
  height: 2em;
}

body {
  background: #f8f9fa;
}


/* Hero section */

.hero-bg {
  padding: 12rem 0 6.8rem 0;
  background-color: var(--bs-body-bg);
  background-image:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 2.7rem 2.7rem;
  z-index: -1;
}

.hero-section .container {
  max-width: 77.1rem;
  position: relative;
}

.center-box {
  text-align: center;
}

.title-text span {
  display: block;
}

.title-text {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  padding-top: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, #4f46e5, #2563eb);
  background-clip: text;
  color: transparent;
}

.title-desc span {
  display: block;
}

.title-desc {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bs-secondary);
  padding-top: 1rem;
}


.stat-card {
  background: #ffffff;
  border-radius: 0.75em;
  padding: 0.7em;
  display: flex;
  align-items: center;
  gap: 0.75em;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
  width: 10em;
}

.stat-card--chart {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6em;
}

.stat-card__icon-wrap {
  width: 2.25em;
  height: 2.25em;
  border-radius: 0.5em;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.3em;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
  line-height: 1;
}

.stat-card__label {
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748B;
  margin: 0.3em 0 0;
}

.stat-card__title {
  font-size: 0.8em;
  font-weight: 600;
  color: #0F172A;
  margin: 0;
}

.stat-card__sub {
  font-size: 0.75em;
  color: #10B981;
  margin: 3px 0 0;
  font-weight: 500;
}

.stat-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25em;
  height: 2.75em;
  width: 100%;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #BFDBFE;
}

.bar--active {
  background: #2563EB;
}

.stat-card__check {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topleft {
  position: absolute;
  top: 5em;
  left: 1.5em;
  transform: rotate(-7deg);
}

.bottomleft {
  position: absolute;
  bottom: 11em;
  left: 1.5em;
  transform: rotate(6deg);
}

.bottomright {
  position: absolute;
  top: 20em;
  right: 1.5em;
  transform: rotate(4deg);
}

/* Responsive Fixes */

@media (max-width: 991px) {

  .hero-bg {
    padding: 9rem 0 4rem 0;
  }

  .hero-section .container {
    max-width: 77.1rem;
  }

  .title-text {
    font-size: 4.5rem;
    margin: 2rem 1rem;
  }

  .title-desc {
    font-size: 1.4rem;
  }

  .topleft,
  .bottomleft,
  .bottomright {
    transform: scale(0.9);
  }
}

@media (max-width: 767px) {

  .hero-bg {
    padding: 9rem 0 4rem 0;
  }

  .title-text {
    font-size: 3rem;
    margin: 1.5rem 0;
  }

  .title-desc {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .title-desc span {
    display: inline;
  }

  .topleft,
  .bottomleft,
  .bottomright {
    display: none;
  }
}

@media (max-width: 480px) {

  .hero-bg {
    padding: 9rem 0 4rem 0;
  }

  .title-text {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .title-desc {
    font-size: 1rem;
  }
}

/*Trusted Brands Carousel*/

.trusted-brands {
  background: rgb(255 255 255);
  padding: 4.5rem 0;
  overflow: hidden;
}

.trusted-brands .container {
  max-width: 77.1rem;
}

#brand-slider img {
  max-width: 11.25rem;
  opacity: .5;
  filter: grayscale(100%);
  transition: all .3s ease;
}

#brand-slider img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

#brand-slider .splide__track {
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  letter-spacing: 4px;
  color: rgb(148 163 184);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

#brand-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#brand-slider img {
  max-width: 7rem;
  width: 100%;
  opacity: 0.6;
  transition: .3s;
  filter: grayscale(100%);
}

#brand-slider img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* =========================
   PERFORMANCE SECTION
========================= */

.performance {
  padding: 5rem 0;
  width: 100%;
  overflow: hidden;
}

.performance .container {
  width: 100%;
  max-width: 77.1rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.performance h2 {
  padding-top: 0.7em;
  margin: 1.5rem 0;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.2;
}

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

.performance .card {
  width: 100%;
  height: 18rem;
  margin-top: 1rem;
  padding: 2rem;

  border: none;
  border-radius: 1rem;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: transform 0.4s ease;
  box-sizing: border-box;
}

.performance .card:hover {
  transform: translateY(-7px);
  cursor: pointer;
}

.performance .card-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.performance .card-title {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
}

.performance .card-desc {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-muted);
}


/* =========================
   TABLET
   768px - 991px
========================= */

@media (max-width: 991px) {

  .performance {
    padding: 5rem 0;
  }

  .performance .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .performance h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .performance .card {
    height: auto;
    min-height: 18rem;
    margin-top: 1.5rem;
    padding: 1.75rem;
  }

  .performance .card-desc{
    font-size: 0.8rem;
  }

  .performance .card-title {
    font-size: 1.8rem;
  }

}


/* =========================
   MOBILE
   576px - 767px
========================= */

@media (max-width: 767px) {

  .performance {
    padding: 5rem 0;
  }

  .performance .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .performance h2 {
    padding-top: 0;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .performance .card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 1.25rem;
    padding: 1.5rem;
  }

  .performance .card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .performance .card-title {
    margin-top: 0.9rem;
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
  }

  .performance .card-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

}


/* =========================
   SMALL MOBILE
   480px AND BELOW
========================= */

@media (max-width: 480px) {

  .performance {
    padding: 4rem 0;
  }

  .performance .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .performance h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .performance .card {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .performance .card-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .performance .card-title {
    font-size: 1.3rem;
  }

  .performance .card-desc {
    font-size: 0.75rem;
  }

}


/* =========================
   EXTRA SMALL DEVICES
   360px AND BELOW
========================= */

@media (max-width: 360px) {

  .performance {
    padding: 3rem 0;
  }

  .performance .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .performance h2 {
    font-size: 1.6rem;
  }

  .performance .card {
    padding: 1rem;
  }

  .performance .card-title {
    font-size: 1.2rem;
  }

  .performance .card-desc {
    font-size: 0.9rem;
  }

}


/* ========================================
   CONVERSION CHALLENGE SECTION
======================================== */

.Conversion-Challenge {
  width: 100%;
  padding: 0 0 5rem;
  overflow: hidden;
}

.Conversion-Challenge .container {
  width: 100%;
  max-width: 75.8rem;
  margin: 5rem auto 0;
  padding: 0;
  border-radius: 2rem;
  background: #ffffff;
  box-sizing: border-box;
}

.Conversion-Challenge .row {
  padding: 4rem;
}

/* ========================================
   TITLE
======================================== */

.Conversion-Challenge .section-title,
.section-title {
  margin: 0;
  padding: 0;
  font-size: clamp(1.8rem, 6vw, 4rem);
  line-height: 1.15;
  font-weight: 900;
}

.Conversion-Challenge .section-desc,
.section-desc {
  margin: 0;
  padding-top: 1rem;
  color: var(--color-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.Conversion-Challenge .bold {
  color: #000000;
}

/* ========================================
   VERTICAL LINE
======================================== */

.Conversion-Challenge .vertical-line {
  width: 10px;
  height: 2rem;
}

/* ========================================
   LEFT BORDER CONTENT
======================================== */

.Conversion-Challenge .left-border {
  min-height: 2rem;
  margin-top: 3rem;
  padding: 2rem;

  border-left: 0.25rem solid #000000;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;

  background: #f8f9fa;
  text-align: left;
  box-sizing: border-box;
}

.Conversion-Challenge .h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

.Conversion-Challenge .card {
  width: 100%;
  min-height: 0;
  margin-top: 1rem;
  padding: 2rem;

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;

  border: 0;
  border-radius: 2rem;
  background: rgb(255 247 247);

  box-sizing: border-box;
}

.Conversion-Challenge .cancel-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.Conversion-Challenge .icon-para {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 900;
}


/* ========================================
   TABLET
   768px - 991px
======================================== */

@media (max-width: 991px) {

  .Conversion-Challenge {
    padding: 4rem 0 5rem;
  }

  .Conversion-Challenge .container {
    width: calc(100% - 2rem);
    margin: 1rem auto 0;
    border-radius: 1.75rem;
  }

  .Conversion-Challenge .row {
    padding: 3rem 2rem;
  }

  .Conversion-Challenge .section-title,
  .section-title {
    font-size: 3rem;
  }

  .Conversion-Challenge .section-desc,
  .section-desc {
    font-size: 1.1rem;
  }

  .Conversion-Challenge .left-border {
    margin-top: 2rem;
    padding: 2rem;
    height: auto;
  }

  .Conversion-Challenge .card {
    padding: 1.75rem;
  }

}


/* ========================================
   MOBILE
   576px - 767px
======================================== */

@media (max-width: 767px) {

  .Conversion-Challenge {
    padding: 3rem 0 4rem;
  }

  .Conversion-Challenge .container {
    width: calc(100% - 1.5rem);
    margin: 2rem auto 0;
    border-radius: 1.5rem;
  }

  .Conversion-Challenge .row {
    padding: 2rem 1.5rem;
  }

  .Conversion-Challenge .section-title,
  .section-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .Conversion-Challenge .section-desc,
  .section-desc {
    padding-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .Conversion-Challenge .left-border {
    margin-top: 1.5rem;
    padding: 1.5rem;

    border-left-width: 0.2rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .Conversion-Challenge .card {
    margin-top: 1rem;
    padding: 1.5rem;

    gap: 0.9rem;
    border-radius: 1.25rem;
  }

  .Conversion-Challenge .cancel-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .Conversion-Challenge .icon-para {
    font-size: 1rem;
    line-height: 1.4;
  }

}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

  .Conversion-Challenge {
    padding: 2.5rem 0 3rem;
  }

  .Conversion-Challenge .container {
    width: calc(100% - 1rem);
    margin-top: 1.5rem;
    border-radius: 1.25rem;
  }

  .Conversion-Challenge .row {
    padding: 1.5rem 1rem;
  }

  .Conversion-Challenge .section-title,
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .Conversion-Challenge .section-desc,
  .section-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .Conversion-Challenge .left-border {
    margin-top: 1.5rem;
    padding: 1.25rem;

    border-left-width: 0.2rem;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }

  .Conversion-Challenge .h4 {
    font-size: 0.95rem;
  }

  .Conversion-Challenge .card {
    padding: 1rem;
    gap: 0.75rem;
    border-radius: 1rem;
  }

  .Conversion-Challenge .cancel-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .Conversion-Challenge .icon-para {
    font-size: 0.9rem;
    line-height: 1.4;
  }

}


/* ========================================
   EXTRA SMALL MOBILE
   360px AND BELOW
======================================== */

@media (max-width: 360px) {

  .Conversion-Challenge {
    padding: 2rem 0 2.5rem;
  }

  .Conversion-Challenge .container {
    width: calc(100% - 0.75rem);
  }

  .Conversion-Challenge .row {
    padding: 1.25rem 0.75rem;
  }

  .Conversion-Challenge .section-title,
  .section-title {
    font-size: 1.6rem;
  }

  .Conversion-Challenge .left-border {
    padding: 1rem;
  }

  .Conversion-Challenge .card {
    padding: 0.9rem;
    gap: 0.6rem;
  }

  .Conversion-Challenge .cancel-icon {
    width: 2rem;
    height: 2rem;
  }

  .Conversion-Challenge .icon-para {
    font-size: 0.85rem;
  }

}




/*Revenue Growth*/

.Revenue-Growth {
  background: #ffffff;
  padding: 5rem 0;
}

.Revenue-Growth .container {
  max-width: 77.1rem;
}

.Revenue-Growth .card {
  border: none;
  border-radius: 1rem;
  margin-top: 5em;
  padding: 2em;
  height: 20em;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.Revenue-Growth .card:hover {
  transform: translateY(-7px);
  transition: 0.5s;
  cursor: pointer;
}

.Revenue-Growth .icon {
  height: 3.3rem;
  width: 3.3rem;
}

.Revenue-Growth .card-desc {
  color: var(--color-muted);
}


/*Strategy Action*/

.Strategy-Action {
  background: #f8f9fa;
  padding: 5rem 0;
}

.Strategy-Action .container {
  max-width: 77.1rem;
}

.analytics-widget {
  width: 100%;
  max-width: 35rem;
  height: 25rem;
  margin-top: 5rem;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #1a2436, #020b35);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, .15);
}

.browser-bar {
  background: rgb(30 35 43);
  padding: 0.2rem 1rem;
  border-radius: 1rem 1rem 0 0;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.red {
  background: #ff4d6d;
}

.yellow {
  background: #ffb703;
}

.green {
  background: #20c997;
}

.widget-content {
  background: #0f1522;
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem;
}

.stats-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #1a2232;
  border: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 30px;
}

.label {
  display: block;
  color: #8fa3c7;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: .5px;
  margin-bottom: 0.5rem;
}

.stats-box h2 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
  font-weight: 700;
}

.signal-icon {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-ring {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #5b5cf6;
  border-right-color: #5b5cf6;
  animation: spin-cw 4s linear infinite;
  opacity: 7;
  filter: drop-shadow(0 0 8px rgba(91, 92, 246, .5));
}

.inner-ring {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #22c55e;
  border-left-color: #22c55e;
  animation: spin-ccw 3s linear infinite;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, .6));
}

@keyframes spin-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.metric {
  margin-bottom: 1rem;
}

.metric:last-child {
  margin-bottom: 0;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  color: rgb(203 213 225);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blue {
  color: #59a8ff;
}

.green-text {
  color: #34d399;
}

.purple {
  color: #ff4dff;
}

.track {
  width: 100%;
  height: 0.59rem;
  background: #1e2433;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .04);
}

.fill {
  height: 100%;
  border-radius: 1.8rem;
}

.blue-fill {
  width: 72%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.green-fill {
  width: 85%;
  background: linear-gradient(90deg, #10b981, #4ade80);
}

.purple-fill {
  width: 63%;
  background: linear-gradient(90deg, #c026d3, #e879f9);
}

.section-heading {
  font-size: 4rem;
  font-weight: 900;
}

.Strategy-Action .icon {
  height: 3.3rem;
  width: 3.3rem;
}

.Strategy-Action .search-animation-svg {
  height: 3.3rem;
  width: 3.3rem;
}

.Strategy-Action .card2 {
  border: none;
  border-radius: 1rem;
  margin-top: 5rem;
  padding: 2rem;
  min-height: 24rem;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.card2 .icon {
  transition: all 0.3s ease;
}

.card2:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  transition: 0.3s;
}

.Strategy-Action .card-desc {
  font-size: 1.2rem;
}

@media (max-width: 991px) {

  .Strategy-Action {
    padding: 5rem 1rem;
  }

  .analytics-widget {
    margin: 3.5rem 0;
  }

  .Strategy-Action .row {
    padding: 0;
  }

  .section-heading {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {

  .Strategy-Action {
    padding: 4rem 1rem;
  }

  .analytics-widget {
    height: auto;
    margin: 3.5rem 0;
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .Strategy-Action .card2 {
    margin: 2rem 0;
  }

  .Strategy-Action .card-desc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .section-heading {
    font-size: 1.8rem;
  }

  .analytics-widget {
    padding: 1rem;
    margin: 3.5rem 0;
  }

  .stats-box {
    padding: 0.8rem 1rem;
  }

  .stats-box h2 {
    font-size: 1.25rem;
  }
}


/* ========================================
   MARKETING INFRASTRUCTURE
======================================== */

.Marketing-Infrastructure {
  width: 100%;
  padding: 5rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

.Marketing-Infrastructure .container {
  width: 100%;
  max-width: 77.1rem;
  margin: 0 auto;
}


/* ========================================
   BORDER CONTENT
======================================== */

.Marketing-Infrastructure .border {
  width: 100%;
  max-width: 85%;
  margin-top: 2rem;
  padding: 2rem;

  text-align: left;
  border-radius: 2rem;
  box-sizing: border-box;
}


/* ========================================
   SYSTEM WRAPPER
======================================== */

.system-wrapper {
  position: relative;

  width: 100%;
  max-width: 40rem;
  margin: 6rem auto 0;

  background: rgb(248 250 252);
  border: 1px solid #e9edf5;
  border-radius: 1.5rem;

  overflow: hidden;
  box-sizing: border-box;
}


/* ========================================
   BROWSER HEADER
======================================== */

.browser-header {
  width: 100%;
  height: 3.2rem;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0 1.2rem;

  background: #ffffff;
  border-bottom: 1px solid #edf1f7;
  box-sizing: border-box;
}

.dots {
  display: block;

  width: 0.75rem;
  height: 0.75rem;

  flex: 0 0 auto;

  border-radius: 50%;
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #febc2e;
}

.green {
  background: #28c840;
}


/* ========================================
   SYSTEM GRID
======================================== */

.system-grid {
  position: relative;

  width: calc(100% - 3rem);
  max-width: 26rem;

  margin: 2rem auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;

  box-sizing: border-box;
}


/* ========================================
   CONNECTING LINES
======================================== */

.system-grid::before,
.system-grid::after {
  content: "";

  position: absolute;

  background: #dfe6f1;

  z-index: 0;
}

.system-grid::before {
  width: 2px;
  height: 18.75rem;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
}

.system-grid::after {
  width: 18.75rem;
  height: 2px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
}


/* ========================================
   SYSTEM CARDS
======================================== */

.card-box {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 10rem;

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

  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 1.12rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);

  box-sizing: border-box;
}

.card-content {
  width: 100%;
  text-align: center;
}

.card-content h6 {
  margin: 0.75rem 0 0;

  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;

  color: #3d4658;
}

.Marketing-Infrastructure .icon {
  width: 3rem;
  height: 3rem;

  max-width: 100%;
}


/* ========================================
   CENTER ICON
======================================== */

.center-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

  width: 4.1rem;
  height: 4.1rem;

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

  background: #10182b;
  border: 4px solid #ffffff;
  border-radius: 1.3rem;

  transform: translate(-50%, -50%) rotate(45deg);
  box-sizing: border-box;
}

.center-icon svg {
  width: 1.75rem;
  height: 1.75rem;

  stroke: #ffffff;

  transform: rotate(-45deg);
}


/* ========================================
   CENTER CIRCLE
======================================== */

.center-circle {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 1;

  width: 6rem;
  height: 6rem;

  border: 2px dashed #bcbdbe;
  border-radius: 50%;

  transform: translate(-50%, -50%);

  animation: rotateClockwise 11s linear infinite;
}

@keyframes rotateClockwise {

  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }

}


/* ========================================
   TABLET
   768px - 991px
======================================== */

@media (max-width: 991px) {

  .Marketing-Infrastructure {
    padding: 5rem 1rem;
  }

  .Marketing-Infrastructure .container {
    max-width: 100%;
  }

  .Marketing-Infrastructure .border {
    max-width: 100%;
    padding: 1.75rem;
  }

  .system-wrapper {
    max-width: 40rem;
    margin: 4rem auto 0;
  }

  .system-grid {
    width: calc(100% - 3rem);
    gap: 1rem;
  }

  .card-box {
    height: 8rem;
  }

  .Marketing-Infrastructure .icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .system-grid::before {
    height: 14rem;
  }

  .system-grid::after {
    width: 14rem;
  }

  .center-icon {
    width: 3.5rem;
    height: 3.5rem;

    border-radius: 1rem;
  }

  .center-circle {
    width: 5rem;
    height: 5rem;
  }

}


/* ========================================
   MOBILE
   576px - 767px
======================================== */

@media (max-width: 767px) {

  .Marketing-Infrastructure {
    padding: 4rem 1rem;
  }

  .Marketing-Infrastructure .border {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .system-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 3rem auto 0;

    border-radius: 1.25rem;
  }

  .browser-header {
    height: 2.75rem;
    padding: 0 1rem;
  }

  .dots {
    width: 0.6rem;
    height: 0.6rem;
  }

  .system-grid {
    width: calc(100% - 2rem);
    max-width: 26rem;

    margin: 1.5rem auto;

    gap: 0.75rem;
  }

  .card-box {
    height: 7rem;
    border-radius: 1rem;
  }

  .Marketing-Infrastructure .icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .card-content h6 {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  .system-grid::before {
    height: 11rem;
  }

  .system-grid::after {
    width: 11rem;
  }

  .center-icon {
    width: 3rem;
    height: 3rem;

    border-radius: 0.9rem;
  }

  .center-icon svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .center-circle {
    width: 4rem;
    height: 4rem;
  }

}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

  .Marketing-Infrastructure {
    padding: 3rem 0.75rem;
  }

  .Marketing-Infrastructure .border {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .system-wrapper {
    margin-top: 2.5rem;
    border-radius: 1rem;
  }

  .browser-header {
    height: 2.5rem;
    padding: 0 0.75rem;
  }

  .dots {
    width: 0.55rem;
    height: 0.55rem;
  }

  .system-grid {
    width: calc(100% - 1.25rem);
    gap: 0.5rem;

    margin: 1.25rem auto;
  }

  .card-box {
    height: 6.5rem;
    border-radius: 0.85rem;
  }

  .Marketing-Infrastructure .icon {
    width: 2rem;
    height: 2rem;
  }

  .card-content h6 {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .system-grid::before {
    height: 9rem;
  }

  .system-grid::after {
    width: 9rem;
  }

  .center-icon {
    width: 2.7rem;
    height: 2.7rem;

    border-radius: 0.8rem;
    border-width: 3px;
  }

  .center-icon svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .center-circle {
    width: 3.5rem;
    height: 3.5rem;
  }

}


/* ========================================
   EXTRA SMALL
   360px AND BELOW
======================================== */

@media (max-width: 360px) {

  .Marketing-Infrastructure {
    padding: 2.5rem 0.5rem;
  }

  .Marketing-Infrastructure .border {
    padding: 1rem;
  }

  .system-wrapper {
    margin-top: 2rem;
  }

  .system-grid {
    width: calc(100% - 1rem);
    gap: 0.4rem;
  }

  .card-box {
    height: 6rem;
    border-radius: 0.75rem;
  }

  .Marketing-Infrastructure .icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .card-content h6 {
    font-size: 0.65rem;
  }

  .system-grid::before {
    height: 8rem;
  }

  .system-grid::after {
    width: 8rem;
  }

  .center-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .center-icon svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .center-circle {
    width: 3rem;
    height: 3rem;
  }

}


/* ========================================
   GROWTH SECTION
======================================== */

.growth-section {
  width: 100%;
  padding: 5rem 0;
  background: #f8f9fa;
  overflow: hidden;
  box-sizing: border-box;
}

.growth-section .container {
  width: 100%;
  max-width: 77.1rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.growth-section .row {
  width: 100%;
  margin: 0;
}


/* ========================================
   GROWTH CARD WRAPPER
======================================== */

.growth-card {
  position: relative;

  width: 100%;
  min-height: 32rem;

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

  margin-top: 4.5rem;

  box-sizing: border-box;
}


/* ========================================
   MAIN CARD
======================================== */

.main-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 24rem;
  min-height: 28rem;
  padding: 2.8rem 1.8rem;
  background: #ffffff;
  border-radius: 1.75rem;
  text-align: center;
  box-sizing: border-box;
}

.main-card h5 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 900;
}


/* ========================================
   TOP ICON
======================================== */

.top-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8efff;
  color: #2563eb;
  border-radius: 0.8rem;
  font-size: 1.7rem;
}


/* ========================================
   HIGHLIGHT
======================================== */

.highlight-text {
  display: inline-block;
  margin-bottom: 1.8rem;
  padding: 0.1rem 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
}


/* ========================================
   STATUS
======================================== */

.status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1.8rem;
  padding: 1rem;
  background: #e7f6ee;
  color: #059669;
  border-radius: 2.5rem;
  font-weight: 600;
  box-sizing: border-box;
}

.growth-section .dot {
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  background: #10b981;
  border-radius: 50%;
}

.growth-section .dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.35);

  animation: pulse 1.2s infinite;
}

@keyframes pulse {

  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }

}


/* ========================================
   PLACEHOLDER LINES
======================================== */

.line {
  width: 100%;
  height: 0.6rem;
  margin-bottom: 0.8rem;
  background: #edf0f5;
  border-radius: 1.2rem;
}

.line.small {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.line.tiny {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   FLOATING ICONS
======================================== */

.floating-icon {
  position: absolute;
  z-index: 3;

  width: 4.8rem;
  height: 4.8rem;

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

  background: #ffffff;
  border-radius: 50%;

  font-size: 1.5rem;

  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease;

  cursor: pointer;

  box-sizing: border-box;
}

.floating-icon:hover {
  transform: scale(1.12);
}


/* Desktop positions */

.icon-1 {
  left: 2.7rem;
  top: 0.8rem;
}

.icon-2 {
  left: 0.5rem;
  bottom: 3.75rem;
}

.icon-3 {
  right: 2.5rem;
  top: 5.6rem;
}

.icon-4 {
  right: 2.69rem;
  bottom: 1.8rem;
}


/* ========================================
   RIGHT SIDE CONTENT
======================================== */

.tag {
  display: inline-block;

  margin-bottom: 1.25rem;
  padding: 0.5rem 0.8rem;

  border: 1px solid #dbe3ff;
  border-radius: 1.8rem;

  color: #2563eb;

  font-size: 0.75rem;
  font-weight: 700;
}

.main-title {
  margin: 0 0 1.56rem;

  font-size: clamp(1.9rem, 6vw, 4.25rem);
  line-height: 1;
  font-weight: 800;
}

.main-title span {
  color: #4f6df5;
}

.description {
  margin: 0 0 1.25rem;

  color: #6b7280;

  font-size: 1rem;
  line-height: 1.8;
}

.custom-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.custom-list li {
  position: relative;

  margin-bottom: 1rem;
  padding-left: 2.2rem;

  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
}

.custom-list li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.2rem;

  width: 1.25rem;
  height: 1.25rem;

  background: url("../../uploads/2026/06/check-svgrepo-com.svg");
  background-size: contain;
  background-repeat: no-repeat;
}


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

.audit-btn {
  padding: 1rem 1.75rem;

  background: #2563eb;
  color: #ffffff;

  border: none;
  border-radius: 2.5rem;

  font-size: 1rem;
  font-weight: 600;

  box-shadow: 0 0.75rem 1.8rem rgba(37, 99, 235, 0.25);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.audit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.4rem -0.6px rgba(37, 99, 235, 0.8);
}


/* ========================================
   TABLET
   768px - 991px
======================================== */

@media (max-width: 991px) {

  .growth-section {
    padding: 5rem 1rem;
  }

  .growth-section .container {
    max-width: 100%;
  }

  .growth-card {
    min-height: 30rem;
    margin-top: 3.5rem;
  }

  .main-title {
    font-size: 3.2rem;
  }

  .main-card {
    max-width: 22rem;
    min-height: 26rem;
    padding: 2.5rem 1.5rem;
  }

  .floating-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.3rem;
  }

  .icon-1 {
    left: 1.5rem;
    top: 1rem;
  }

  .icon-2 {
    left: 0;
    bottom: 2.5rem;
  }

  .icon-3 {
    right: 1.5rem;
    top: 4.5rem;
  }

  .icon-4 {
    right: 1rem;
    bottom: 1.5rem;
  }

}


/* ========================================
   MOBILE
   576px - 767px
======================================== */

@media (max-width: 767px) {

  .growth-section {
    padding: 4rem 1rem;
  }

  .growth-card {
    min-height: 26rem;
    margin-top: 2.5rem;
  }

  .main-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .main-card {
    max-width: 20rem;
    min-height: 24rem;
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .main-card h5 {
    font-size: 1.25rem;
  }

  .top-icon {
    width: 2.9rem;
    height: 2.9rem;

    margin-bottom: 1.2rem;

    font-size: 1.4rem;
  }

  .status-box {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .floating-icon {
    width: 3.5rem;
    height: 3.5rem;

    font-size: 1.1rem;
  }

  .icon-1 {
    left: 0.5rem;
    top: 0;
  }

  .icon-2 {
    left: 0;
    bottom: 1.5rem;
  }

  .icon-3 {
    right: 0.5rem;
    top: 3rem;
  }

  .icon-4 {
    right: 0;
    bottom: 0.5rem;
  }

  .custom-list li {
    font-size: 1rem;
    padding-left: 2rem;
  }

}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

  .growth-section {
    padding: 3rem 0.75rem;
  }

  .growth-card {
    min-height: 23rem;
    margin-top: 2rem;
  }

  .main-title {
    font-size: 1.9rem;
  }

  .tag {
    margin-bottom: 1rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
  }

  .main-card {
    max-width: 18rem;
    min-height: 22rem;
    padding: 1.75rem 1rem;
  }

  .main-card h5 {
    font-size: 1.15rem;
  }

  .top-icon {
    width: 2.7rem;
    height: 2.7rem;

    font-size: 1.25rem;
  }

  .highlight-text {
    margin-bottom: 1.3rem;
    font-size: 0.7rem;
  }

  .status-box {
    gap: 0.5rem;
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .growth-section .dot {
    width: 0.6rem;
    height: 0.6rem;
  }

  .floating-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0.95rem;
  }

  .icon-1 {
    left: 0;
    top: 0;
  }

  .icon-2 {
    left: 0;
    bottom: 1rem;
  }

  .icon-3 {
    right: 0;
    top: 2.5rem;
  }

  .icon-4 {
    right: 0;
    bottom: 0;
  }

  .custom-list li {
    font-size: 0.95rem;
    padding-left: 1.8rem;
  }

  .custom-list li::before {
    width: 1.1rem;
    height: 1.1rem;
  }

  .audit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

}


/* ========================================
   EXTRA SMALL
   360px AND BELOW
======================================== */

@media (max-width: 360px) {

  .growth-section {
    padding: 2.5rem 0.5rem;
  }

  .growth-card {
    min-height: 21rem;
  }

  .main-title {
    font-size: 1.6rem;
  }

  .main-card {
    max-width: 16rem;
    min-height: 20rem;
    padding: 1.5rem 0.9rem;
  }

  .main-card h5 {
    font-size: 1rem;
  }

  .top-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .floating-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .icon-1 {
    left: 0;
  }

  .icon-2 {
    left: 0;
  }

  .icon-3 {
    right: 0;
  }

  .icon-4 {
    right: 0;
  }

  .custom-list li {
    font-size: 0.9rem;
  }

}



/*Lead Generation*/

.lead-generation {
  background: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.lead-generation .container {
  max-width: 77.1rem;
}

.lead-generation .lead {
  align-items: center;
  padding-top: 6rem;
}


/* =========================
   COMMON CARD STYLES
========================= */

.conversion-card,
.pipeline-card,
.analytics-card {
  width: 100%;
  transition: all 0.4s ease;
}

.conversion-card:hover,
.pipeline-card:hover,
.analytics-card:hover {
  transform: translateY(-5px);
}

/*CARD 1*/

.conversion-card {
  max-width: 35rem;
  margin-left: auto;
  background: rgb(248 249 252);
  border: 1px solid #e5e7eb;
  border-radius: 1.1rem;
  overflow: hidden;
  margin-top: 6rem;
  box-shadow: 0 30px 50px rgba(0, 0, 0, .12);
}

.browser-header {
  height: 2.7rem;
  background: #fff;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
}

.dots {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}

.red {
  background: #f87171;
}

.yellow {
  background: #fbbf24;
}

.green {
  background: #34d399;
}

.conversion-box {
  margin: 1.6rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.label {
  font-size: .8rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 6px;
}

.conversion-box h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.growth-badge {
  background: #d1fae5;
  color: #059669;
  font-size: .7rem;
  font-weight: 700;
  padding: .5rem .8rem;
  border-radius: .5rem;
}

.chart-area {
  padding: 0 2.2rem 1.7rem;
  display: flex;
  align-items: flex-end;
  gap: .6rem;
  height: 8.5rem;
}

.conversion-card .bar {
  flex: 1;
  border-radius: .3rem .3rem 0 0;
  position: relative;
}

.bar-1 {
  height: 6.625rem;
  background: #f4e7ea;
}

.bar-2 {
  height: 5rem;
  background: #f4c5cf;
}

.bar-3 {
  height: 3.25rem;
  background: #f6b76f;
}

.bar-4 {
  height: 2.25rem;
  background: #ff7a11;
  box-shadow: 0 10px 20px rgba(255, 122, 17, .35);
}

.dashed-line {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 100%;
  border-top: 3px dashed #f29ca8;
}

/*CARD 2*/

.pipeline-card {
  max-width: 36rem;
  margin-top: 6rem;
  background: #f5f7fa;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1.5rem 2.8rem rgba(0, 0, 0, .12);
}

.pipeline-body {
  padding: 1.3rem;
}

.lead-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .7rem;
  padding: .75rem 1rem;
  margin-bottom: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.lead-card:last-child {
  margin-bottom: 0;
}

.lead-card.qualified {
  border-left: 4px solid #34d399;
}

.lead-left {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.avatar {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: #edf1f5;
}

.lead-content {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.line {
  height: .5rem;
  background: #dfe4ea;
  border-radius: 50px;
}

.line-md {
  width: 5.6rem;
}

.line-sm {
  width: 4.5rem;
}

.line-xs {
  width: 3.4rem;
}

.badge {
  padding: .45rem .7rem;
  border-radius: .3rem;
  font-size: .65rem;
  font-weight: 600;
}

.qualified-badge {
  background: #d1fae5;
  color: #059669;
}

.pending-badge {
  background: #fef3c7;
  color: #d97706;
}

/*Card 3*/

.analytics-card {
  max-width: 39rem;
  margin-top: 5rem;
  margin-left: auto;
  background: rgb(248 249 252);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .12);
}

.analytics-body {
  padding: 1.7rem;
}

.profile-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.line-lg {
  width: 10rem;
  background: rgb(226 232 240);
  margin-bottom: .6rem;
}

.profile-card .line-sm {
  width: 6.5rem;
  background: rgb(241 245 249);
}

.performance-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
}

.filter {
  background: #eef2f7;
  color: #64748b;
  padding: .3rem .6rem;
  border-radius: .3rem;
  font-size: .7rem;
}

.chart {
  position: relative;
  height: 10rem;
}

.grid-line {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed #e5e7eb;
}

.grid-line:nth-child(1) {
  top: 1.5rem;
}

.grid-line:nth-child(2) {
  top: 4.3rem;
}

.grid-line:nth-child(3) {
  top: 7.1rem;
}

.trend-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: .8rem;
}

.h1 {
  height: 2.75rem;
}

.h2 {
  height: 4rem;
}

.h3 {
  height: 1.75rem;
}

.h4 {
  height: 5.3rem;
}

.h5 {
  height: 4rem;
}

.h6 {
  height: 6.25rem;
}

.h7 {
  height: 5rem;
}

.bars .bar {
  flex: 1;
  background: #6d95e8;
  border-radius: 2px 2px 0 0;
}

.light {
  background: #84a6e2;
  margin-bottom: .5rem;
}

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

.lead-generation .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: fit-content;
  margin: 4rem auto 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .lead-generation {
    padding: 5rem 0;
  }

  .lead-generation .row {
    margin: 4rem 0;
    row-gap: 2.5rem;
  }

  .conversion-card,
  .pipeline-card,
  .analytics-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .lead-generation {
    padding: 4rem 0;
  }

  .lead-generation .row {
    margin: 3rem 0;
    row-gap: 2rem;
  }

  .conversion-box {
    padding: 1rem;
    margin: 1rem;
  }

  .conversion-box h2 {
    font-size: 1.2rem;
  }

  .chart-area {
    padding: 0 1rem 1rem;
    height: 7rem;
  }

  .analytics-body,
  .performance-card {
    padding: 1rem;
  }

  .line-lg {
    width: 7rem;
  }

  .bars {
    gap: .4rem;
  }
}

/*MOBILE */

@media (max-width: 575px) {

  .lead-generation {
    padding: 3rem 0;
  }

  .avatar {
    width: 2rem;
    height: 2rem;
  }

  .line-md {
    width: 4rem;
  }

  .line-sm {
    width: 3rem;
  }

  .line-xs {
    width: 2.5rem;
  }

  .growth-badge {
    font-size: .6rem;
    padding: .4rem .6rem;
  }

  .cta-button {
    width: 100%;
    max-width: 20rem;
  }
}


/* ========================================
   CLIENT FEEDBACK
======================================== */

.client-feedback {
  width: 100%;
  padding: 5rem 0;
  background: #f3f1f1c5;
  overflow: hidden;
  box-sizing: border-box;
}

.client-feedback .container {
  width: 100%;
  max-width: 77.1rem;
  margin: 0 auto;
  box-sizing: border-box;
}


/* ========================================
   STORY CONTAINER
======================================== */

.story-container {
  width: 100%;

  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  box-sizing: border-box;
}

.story-label {
  width: 100%;
  box-sizing: border-box;
}

.story-slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.story-content {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}


/* ========================================
   TESTIMONIAL TEXT
======================================== */

.story-content h2 {
  width: 100%;
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.5;
  font-weight: 700;

  overflow-wrap: break-word;
  word-wrap: break-word;
}


/* ========================================
   CLIENT INFO
======================================== */

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;

  width: 100%;
}

.client-image {
  flex: 0 0 auto;
}

.client-image img {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: fit-content;
}

.client-organization {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--bs-secondary);
}


/* ========================================
   SPLIDE FIX
======================================== */

.client-feedback .splide {
  width: 100%;
  min-width: 0;
}

.client-feedback .splide__track {
  width: 100%;
  overflow: hidden;
}

.client-feedback .splide__list {
  align-items: flex-start;
}

.client-feedback .splide__slide {
  min-width: 0;
  box-sizing: border-box;
}


/* ========================================
   TABLET
   769px - 991px
======================================== */

@media (max-width: 991px) {

  .client-feedback {
    padding: 4rem 1rem;
  }

  .client-feedback .container {
    max-width: 100%;
  }

  .story-container {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .story-content h2 {
    font-size: 2.1rem;
    line-height: 1.5;
  }

}


/* ========================================
   MOBILE
   768px AND BELOW
======================================== */

@media (max-width: 768px) {

  .client-feedback {
    padding: 3.5rem 1rem;
  }

  .story-container {
    width: 100%;

    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-label {
    width: 100%;
  }

  .story-slider {
    width: 100%;
    min-width: 0;
  }

  .story-content {
    width: 100%;
  }

  .story-content h2 {
    margin-bottom: 1.5rem;

    font-size: 1.4rem;
    line-height: 1.6;
  }

  .client-info {
    gap: 0.75rem;
  }

  .client-image img {
    width: 3rem;
    height: 3rem;
  }

  .client-organization {
    font-size: 0.95rem;
  }

}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

  .client-feedback {
    padding: 3rem 0.75rem;
  }

  .story-container {
    gap: 1.25rem;
  }

  .story-content h2 {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .client-info {
    gap: 0.65rem;
  }

  .client-image img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .client-organization {
    font-size: 0.9rem;
  }

}


/* ========================================
   EXTRA SMALL
   360px AND BELOW
======================================== */

@media (max-width: 360px) {

  .client-feedback {
    padding: 2.5rem 0.5rem;
  }

  .story-content h2 {
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .client-image img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .client-organization {
    font-size: 0.85rem;
  }

}



/*Conversion Roadblock*/

.conversion-roadblocks {
  padding: 6rem 0;
  background: #ffffff;
}

.conversion-roadblocks .container {
  max-width: 77.1rem;
}

.marketing-audit {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  border-radius: 2rem;
  padding: 7rem 8rem;

  background:
    radial-gradient(circle at bottom left,
      rgba(99, 102, 241, 0.35) 0%,
      transparent 45%),
    radial-gradient(circle at center,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 30%),
    radial-gradient(circle at top right,
      rgba(59, 130, 246, 0.25) 0%,
      transparent 40%),
    linear-gradient(to right,
      #000814,
      #000b1f,
      rgb(30 41 59));
}

.conversion-roadblocks .heading {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.conversion-roadblocks .paragraph {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgb(148 163 184);
}

.conversion-roadblocks .cta-button {
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

  .conversion-roadblocks {
    padding: 5rem 0;
  }

  .marketing-audit {
    padding: 4rem 2rem;
    border-radius: 1.5rem;
  }

  .conversion-roadblocks .paragraph {
    font-size: 1rem;
    max-width: 700px;
  }
}

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

  .conversion-roadblocks {
    padding: 4rem 0;
  }

  .marketing-audit {
    padding: 3rem 1.5rem;
    border-radius: 1.25rem;
  }

  .conversion-roadblocks .heading {
    margin-bottom: 1rem;
  }

  .conversion-roadblocks .paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .conversion-roadblocks .cta-button {
    width: 100%;
    max-width: 320px;
  }
}

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

  .marketing-audit {
    padding: 2.5rem 1.25rem;
  }

  .conversion-roadblocks .paragraph {
    font-size: 0.9rem;
  }
}

/*HEADER*/

.custom-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 4.2rem;
  gap: 1rem;
}

/* Logo */
.site-branding {
  flex-shrink: 0;
}

.custom-logo~.site-title {
  display: none;
}

.site-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-title a {
  text-decoration: none;
  color: #111111;
  position: relative;
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-navigation #primary-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-navigation #primary-menu>li>a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  border-radius: 0.3rem;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.main-navigation #primary-menu>li>a:hover {
  background: #f4f6f8;
  color: #111111;
}

.main-navigation #primary-menu>li.menu-item-has-children>a::after {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}

.main-navigation #primary-menu>li.menu-item-has-children:hover>a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* Dropdown */
.main-navigation #primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0);
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.6rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .10);
  list-style: none;
  padding: 0.3rem;
  z-index: 200;
}

.main-navigation #primary-menu li {
  position: relative;
}

.main-navigation #primary-menu li:hover>.sub-menu {
  display: block;
}

.main-navigation #primary-menu .sub-menu li a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 450;
  color: #333333;
  text-decoration: none;
  border-radius: 0.3rem;
  transition: background .12s;
}

.main-navigation #primary-menu .sub-menu li a:hover {
  background: #f4f6f8;
  color: #111111;
}

/* CTA Button */
.header-btn {
  flex-shrink: 0;
}

.contact-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3.1rem;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  letter-spacing: 0.01em;
}

.contact-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.contact-btn:active {
  transform: translateY(0);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] .bar-top,
.menu-toggle.is-open .bar-top {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar-mid,
.menu-toggle.is-open .bar-mid {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar-bot,
.menu-toggle.is-open .bar-bot {
  transform: translateY(-7px) rotate(-45deg);
}


/* Responsive */

@media (max-width: 900px) {

  .main-navigation {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .custom-header.nav-open .main-navigation {
    display: block;
    position: absolute;
    top: 4.2rem;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    padding: 1rem;
  }

  .custom-header.nav-open #primary-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .custom-header.nav-open #primary-menu>li>a {
    width: 100%;
    padding: 0.9rem 0;
  }
}


/*FOOTER*/

.custom-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 3.75rem 0 1.8rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.paxon-logo {
  height: 2.6rem;
  max-width: 11rem;
  margin-bottom: 2rem;
}

.footer-logo span {
  color: #2eb8c7;
}

.footer-tagline {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-decoration: none;
}

/* Default grey icon */
.footer-social a svg {
  width: 3rem;
  height: 3rem;
  fill: #9ca3af;
  transition: fill 0.3s ease;
}

.footer-social a.instagram:hover svg,
.footer-social a.instagram:hover svg * {
  fill: #E4405F;
}

.footer-social a.linkedin:hover svg,
.footer-social a.linkedin:hover svg * {
  fill: #0A66C2;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 1rem;
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #222222;
  margin: 2.5rem 0;
}

.footer-cities h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.7rem;
}

.cities-list a {
  font-size: 0.9rem;
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}

.cities-list li {
  list-style: none;
}

.cities-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #666666;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/************************
About-Us
*************************/

.page-id-60 footer#colophon {
  display: none;
}

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

.about-hero {
  position: relative;
  min-height: auto;
  margin-top: 5rem;
  padding: 4rem 0;
  background: #f8f8f8;
  overflow: hidden;

}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 77.1rem;
  padding: 2.5rem 0;
}

.principles .p-card {
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04)
}

.about-label {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3366ff;
}

.about-title {
  font-size: 3.5rem;
  line-height: 1.05;
  font-weight: 800;
  color: #071126;
  letter-spacing: -3px;
  margin-bottom: 2.5rem;
}

.about-title span {
  display: block;
  color: #3366ff;
}

.about-description {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: #4c5b74;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 992px) {
  .about-container {
    margin-left: 8%;
  }

  .about-title {
    font-size: 4rem;
  }

  .about-description {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 6.2rem 0;
  }

  .about-container {
    margin-left: 0;
    padding: 0 1.5rem;
  }

  .about-title {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .about-description {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .about-label {
    letter-spacing: 4px;
    font-size: 0.6rem;
  }

  .grid-bg {
    background-size: 2.5rem 2.5rem;
  }
}

/******** Story Section *********/
.story-section {
  background: rgb(255, 255, 255);
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-section .container {
  max-width: 77.1rem;
}

.story-container {
  display: grid;
  grid-template-columns: 13.5rem 1fr;
  gap: 5rem;
  align-items: start;
}

.story-label {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3d63ff;
  white-space: nowrap;
}

.story-content {
  max-width: 760px;
}

.story-content h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #0d1321;
  margin: 0 0 2.5rem;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #667085;
  margin: 0 0 2rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .story-section {
    padding: 90px 0;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-content h2 {
    font-size: 44px;
  }

  .story-content p {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .story-section {
    padding: 70px 0;
  }

  .story-container {
    padding: 0 24px;
  }

  .story-label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .story-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
  }

  .story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
}

/********* Counter *************/

.stats-section {
  background: #020c22;
  padding: 5rem 0;
}

.stats-section .container {
  max-width: 77.1rem;
}

.stats-grid {
  display: grid;
  margin-left: 3%;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item {
  padding: 2rem 0 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.178);
}

.stats-item:last-child {
  border-right: none;
}

.stats-item h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.stats-item h2 span {
  font-size: 2.5rem;
  color: #3366ff;
}

.stats-item span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.65);
}

/* Tablet */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-item:nth-child(2) {
    border-right: none;
  }

  .stats-item:nth-child(1),
  .stats-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats-item h2 {
    font-size: 4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stats-section {
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
  }

  .stats-item:last-child {
    border-bottom: none;
  }

  .stats-item h2 {
    font-size: 3rem;
  }

  .stats-item span {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
}


/********** Principles *************/

.principles {
  padding: 5rem 0;
  background: rgb(255, 255, 255);
}

.principles .container {
  max-width: 77.1rem;
}

.principles-heading {
  padding: 6rem 0 0;
}

.heading-wrapper {
  display: flex;
  align-items: center;
  gap: 12rem;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #2563eb;
  white-space: nowrap;
}

.heading-wrapper h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #071126;
  margin: 0;
  line-height: 1.1;
}

.heading-line {
  border: none;
  border-top: 1px solid #d9d9d9;
  margin: 0;
}

.principles .card-desc {
  display: block;
}

.principles h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.principles .card01 {
  margin: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 2rem;
}

.principles .card02 {
  margin: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 2rem;
}

.principles .card03 {
  margin: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 2rem;
}

.principles .card04 {
  margin: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 2rem;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .principles {
    margin: 4rem 0;
  }

  .principles-heading {
    padding: 4rem 0 0;
  }

  .heading-wrapper {
    gap: 4rem;
    margin-bottom: 3rem;
  }

  .heading-wrapper h2 {
    font-size: 2rem;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .principles h4 {
    font-size: 1.3rem;
  }

  .principles p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .principles .card01,
  .principles .card02,
  .principles .card03,
  .principles .card04 {
    padding: 1.75rem;
    border-radius: 1.5rem;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .principles {
    margin: 3rem 0;
  }

  .principles-heading {
    padding: 3rem 0 0;
  }

  .heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .heading-wrapper h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .principles h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .principles p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .principles .card01,
  .principles .card02,
  .principles .card03,
  .principles .card04 {
    margin: 0 0 1.5rem 0;
    padding: 1.5rem;
    border-radius: 1.25rem;
  }

  .principles .card-desc {
    display: inline;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .heading-wrapper h2 {
    font-size: 1.5rem;
  }

  .principles h4 {
    font-size: 1.1rem;
  }

  .principles p {
    font-size: 0.9rem;
  }

  .principles .card01,
  .principles .card02,
  .principles .card03,
  .principles .card04 {
    padding: 1.25rem;
  }
}

/***** FOUNDER ******/

.founder-section {
  padding: 5rem 0;
  background: rgb(247, 248, 250);
}

.founder-section .container {
  max-width: 77.1rem;
}

.founder-header {
  display: flex;
  align-items: flex-start;
  gap: 15rem;
}

.founder-label {
  color: #3366ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  white-space: nowrap;
}

.founder-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  color: #071126;
}

.founder-content {
  align-items: start;
  padding-top: 5rem;
  gap: 3rem;
}

.founder-card {
  background: #fff;
  width: 90%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.founder-card img {
  width: 100%;
  display: block;
}

.founder-card-content {
  padding: 2rem;
}

.founder-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.founder-role {
  display: block;
  color: #7b8794;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid #c8d7ff;
  border-radius: 0.7rem;
  background: #f7f9ff;
  color: #3366ff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.linkedin-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: #3366ff;
  flex-shrink: 0;
}

.linkedin-btn:hover {
  background: #eef3ff;
  border-color: #3366ff;
}

.founder-text p {
  font-size: 1rem;
  line-height: 2;
  color: #4c5b74;
  margin-bottom: 2rem;
}

.founder-text strong {
  color: #071126;
}

/* Tablet */
@media (max-width: 992px) {
  .founder-header {
    gap: 4rem;
  }

  .founder-header h2 {
    font-size: 2.8rem;
  }

  .founder-text {
    margin-top: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .founder-section {
    padding: 4rem 0;
  }

  .founder-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .founder-header h2 {
    font-size: 2rem;
  }

  .founder-card {
    margin-bottom: 2rem;
  }

  .founder-card-content h3 {
    font-size: 1.5rem;
  }

  .founder-text p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/******CTA Section**********/

.cta-section {
  position: relative;
  padding: 5rem 0;
  background-color: #f4f4f6;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-label {
  display: inline-block;
  color: #3366ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 800;
  color: #071226;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bs-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #2f63f4;
  color: #fff;
  text-decoration: none;
  border-radius: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: rgb(29, 78, 216);
}

/* Tablet */
@media (max-width: 992px) {
  .cta-section {
    padding: 6.25rem 1.25rem;
  }

  .cta-title {
    font-size: 3.5rem;
  }

  .cta-text {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 1.25rem;
    background-size: 2.5rem 2.5rem;
  }

  .cta-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 20rem;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

/******* CONTACT **********
*************************/

.contact-section {
  position: relative;
  padding: 11.5rem 0 7.1rem 0;
  overflow: hidden;
}

.contact-section .container {
  max-width: 77.1rem;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  z-index: -1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: start;
}

.section-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #4f6dff;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.contact-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.8rem;
  max-width: 650px;
}

.contact-content p {
  color: #6b7280;
  line-height: 1.8;
  max-width: 400px;
}

.contact-info {
  margin-top: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-box {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgb(201, 219, 255);
  border-radius: 0.5rem;
}

.info-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: #9ca3af;
  font-weight: 700;
}

.info-item p {
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
}



/* ===========================
   Contact Form Card
=========================== */

.contact-card {
  background: var(--bs-body-bg);
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
}

.card-label {
  color: var(--bs-primary);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact-card h3 {
  padding: 0.7rem 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-card p {
  color: var(--bs-secondary);
  font-size: 0.9rem;
}

.contact-card .nf-form-content {
  padding: 0;
  margin: 0;
}

.contact-card .nf-form-content .nf-field-container {
  margin-bottom: 1rem;
}

.contact-card .nf-form-content label {
  display: none;
}

.contact-card .nf-form-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-card .nf-form-content textarea {
  width: 100%;
  height: 2rem;
  padding: 1.2rem;
  border: 1px solid #d9e0ea;
  border-radius: .4rem;
  background: #fff;
  font-size: 0.75rem;
  color: #1f2937;
  font-family: inherit;
  box-sizing: border-box;
  transition: .3s;
}

.contact-card .nf-form-content textarea {
  min-height: 8rem;
  padding: 1.2rem 1.3rem;
  resize: none;
}

.contact-card .nf-form-content input::placeholder,
.contact-card .nf-form-content textarea::placeholder {
  color: #9ca3af;
}

.contact-card .nf-form-content input:focus,
.contact-card .nf-form-content textarea:focus {
  outline: none;
  border-color: #3461ff;
  box-shadow: 0 0 0 .2rem rgba(52, 97, 255, .12);
}

/* remove required text */

.contact-card .nf-form-fields-required {
  display: none;
}

/********************************
**********CHECKLIST**************
*********************************/

/* Heading */
.contact-card .listcheckbox-wrap .nf-field-label label {
  display: block !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22rem;
  text-transform: uppercase;
  color: #7f8aa3;
  margin-bottom: 1rem;
}

/* Layout */
.contact-card .listcheckbox-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Remove default spacing */
.contact-card .listcheckbox-wrap li {
  margin: 0 !important;
}

/* Hide checkbox */
.contact-card .listcheckbox-wrap input[type="checkbox"] {
  display: none;
}

/* Pills */
.contact-card .listcheckbox-wrap input[type="checkbox"]+label {
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 0.5rem;
  border: 1px solid #d9dee9;
  border-radius: 999px;
  color: var(--bs-secondary);
  font-size: .7rem;
  cursor: pointer;
  transition: .25s;
}

/* Active */
.contact-card .listcheckbox-wrap input[type="checkbox"]:checked+label {
  background: var(--bs-primary);
  color: #fff;
  border-color: #3366ff;
}


/* ===========================
   HELP LABEL
=========================== */

.contact-card .listcheckbox-wrap .nf-field-label,
.contact-card .listradio-wrap .nf-field-label {
  display: block;
  margin-bottom: 1rem;
}

.contact-card .listcheckbox-wrap .nf-field-label label,
.contact-card .listradio-wrap .nf-field-label label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22rem;
  color: #7d8ba5;
  text-transform: uppercase;
}

/* ===========================
   CHIP BUTTONS
=========================== */

.contact-card .listcheckbox-wrap ul,
.contact-card .listradio-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-card .listcheckbox-wrap li,
.contact-card .listradio-wrap li {
  margin: 0;
}

.contact-card .listcheckbox-wrap input,
.contact-card .listradio-wrap input {
  display: none;
}

.contact-card .listcheckbox-wrap input+label,
.contact-card .listradio-wrap input+label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  cursor: pointer;
  transition: .25s;
  font-size: .95rem;
}

.contact-card .listcheckbox-wrap input:checked+label,
.contact-card .listradio-wrap input:checked+label {
  background: #3461ff;
  color: #fff;
  border-color: #3461ff;
}

/* ===========================
   SUBMIT BUTTON
=========================== */

.contact-card .submit-wrap {
  margin-top: 1.8rem;
  width: 100%;
}

.contact-card input[type="submit"] {
  padding: 1.2rem 2rem;

  border-radius: 0.5rem;
  background: #2854d6;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-card input[type="submit"]:hover {
  background: #1f47c4;
}

/* ===========================
   ERRORS
=========================== */

.contact-card .nf-error-msg,
.contact-card .nf-after-field .nf-error-msg {
  font-size: .82rem;
}

.contact-card .nf-error.field-wrap .nf-field-element:after {
  display: none;
}




/* ================= FAQ ================= */

.faq-section {
  padding: 5rem 0;
  background: rgb(248, 250, 252);
}

.faq-section .container {
  max-width: 77.1rem;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  gap: 6.25rem;
}

.faq-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.faq-item {
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  margin-top: 1.2rem;
  color: var(--bs-secondary);
  line-height: 1.8;
  font-size: 0.85rem;
  max-width: 580px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

  .contact-wrapper,
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }

  .contact-content h2 {
    font-size: 3rem;
  }

  .faq-left h2 {
    font-size: 2.5rem;
  }
}

@media(max-width:768px) {

  .contact-section,
  .faq-section {
    padding: 5rem 0;
  }

  .contact-content h2 {
    font-size: 2.3rem;
  }

  .faq-left h2 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/*********************************
             BLOG
**********************************/
.blog-hero {
  padding: 12rem 0 7.6rem 0;
  background-color: var(--bs-body-bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.blog-hero .container {
  max-width: 77.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bs-secondary);
  text-transform: uppercase;
}

.breadcrumb a.active {
  color: #2d63f5;
}

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

.blog-title {
  max-width: 1000px;
  font-size: 4.1rem;
  line-height: 0.95;
  font-weight: 800;
  color: #061126;
  margin-bottom: 2rem;
}

.blog-title span {
  display: block;
  color: #2d63f5;
}

.blog-description {
  max-width: 550px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bs-secondary);
}

/* Tablet */
@media (max-width: 991px) {
  .blog-title {
    font-size: 4rem;
    padding-top: 3.5rem;
  }

  .blog-description {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blog-hero {
    padding: 5rem 0;
  }

  .blog-title {
    font-size: 2.8rem;
    line-height: 1.05;
    padding-top: 3.5rem;
  }

  .blog-description {
    font-size: 1.1rem;
  }

  .breadcrumb {
    margin-bottom: 1.5rem;
  }
}

.blog-grid-section {
  padding: 5rem 0;
}

.blog-grid-section .container {
  max-width: 77.1rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
}

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

.featured-content {
  padding: 2.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background: #2563eb;
  color: white;
  border-radius: 3rem;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.featured-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.featured-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.post-meta {
  color: #9ca3af;
  font-size: 0.8rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: .3s;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card p {
  padding: 1.2rem 0 0 1.2rem;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  display: block;
}

.blog-date {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--bs-secondary);
}

.blog-card h3 {
  padding: 0 2rem 0 1.2rem;
  font-size: 1.2rem;
  line-height: 1;
}

.blog-pagination {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  margin: 0 6px;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: .3s;
}

.blog-pagination .page-numbers:hover {
  background: #000;
  color: #fff;
}

.blog-pagination .current {
  background: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 991px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title {
    font-size: 2.3rem;
  }

  .featured-content {
    padding: 1.5rem;
  }
}

/******************
BLOG DETAIL PAGE
*******************/

.paxon-blog-single {
  background: var(--bs-body-bg);
}

.paxon-blog-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 1.25rem;
}

.paxon-blog-hero {
  padding: 7rem 0;
  margin-top: 2rem;
  background:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 2.6rem 2.6rem;
}

.paxon-blog-breadcrumb {
  text-align: center;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.paxon-blog-breadcrumb a {
  color: #4e6fff;
  text-decoration: none;
}

.paxon-blog-breadcrumb span {
  margin: 0 0.5rem;
  color: #888;
}

.paxon-blog-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #08142d;
}

.paxon-blog-author {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.paxon-author-avatar img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.paxon-author-details h5 {
  margin: 0;
  font-size: 0.9rem;
}

.paxon-author-details p {
  margin: 5px 0 0;
  color: #888;
  font-size: 0.8rem;
}

.paxon-blog-body {
  padding: 4.3rem 0 6.25rem;
}

.paxon-featured-image {
  margin-bottom: 3.75rem;
}

.paxon-featured-image img {
  width: 100%;
  border-radius: 1.2rem;
  display: block;
}

.paxon-post-content {
  max-width: 850px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--bs-secondary);
}

.paxon-post-content h2,
.paxon-post-content h3,
.paxon-post-content h4 {
  margin: 3.1rem 0 1.25rem;
  color: #08142d;
}

.paxon-post-content p {
  margin-bottom: 1.5rem;
}

.paxon-post-content img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.8rem 0;
}

.paxon-post-content ul,
.paxon-post-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

@media (max-width:991px) {

  .paxon-blog-heading {
    font-size: 3rem;
  }

  .paxon-post-content {
    font-size: 1.1rem;
  }

}

@media (max-width:767px) {

  .paxon-blog-hero {
    padding: 5.6rem 0 3.1rem;
  }

  .paxon-blog-heading {
    font-size: 2.1rem;
  }

  .paxon-blog-author {
    flex-direction: column;
    text-align: center;
  }

  .paxon-post-content {
    font-size: 1rem;
    line-height: 1.8;
  }

}

/*******************************************
******************SERVICES******************
********************************************/



.service-hero .container {
  max-width: 77.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-left .category {
  color: var(--bs-secondary);
}

.service-hero .paid-title {
  max-width: 500px;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1;
}

.service-hero .paid-desc {
  padding: 2rem 0;
  font-size: 1rem;
  color: var(--bs-secondary);
}

.service-description {
  font-size: 1rem;
  color: var(--bs-secondary);
}

.hero-btn {
  background: rgb(37, 99, 235);
  color: white;
  height: auto;
  width: auto;
  border-radius: 0.5rem;
  margin: 5rem 0;
  padding: 1rem;
  text-decoration: none;
}

.hero-btn:hover {
  background: #023eac;
  transition: 1s;
}

.hero-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero-image {
  width: 95%;
  border-radius: 2rem;
  max-width: 37.5rem;
  height: auto;
  display: block;
  box-shadow: 0.2rem 0.2rem 0.7rem 0.2rem rgb(231, 228, 228);
}

/* Tablet & Mobile */

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

  .service-hero .container {
    flex-direction: column;
    gap: 3rem;
  }

  .service-hero .paid-title {
    padding-top: 3rem;
  }

  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-right {
    justify-content: center;
    margin-top: 2.5rem;
  }

  .service-hero-image {
    max-width: 31.25rem;
  }
}

/*******************************************
******************Story-Section*************
********************************************/

.story-section .card {
  height: 29rem;
  align-items: left;
  margin-top: 4rem;
  padding: 2rem;
}


.story-section svg {
  width: 3rem;
}

.story-section h5 {
  padding: 1.5rem 0;
  font-weight: 600;
}

.story-section .card p {
  font-size: 0.9rem;
  color: var(--bs-secondary);
}

/*************************
********QUESTION**********
**************************/

.question {
  background: rgb(255, 255, 255);
  padding: 0 0 5rem;
}

.question .container {
  max-width: 1215px;
  background: rgb(248, 250, 252);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.question h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.question p {
  max-width: 620px;
  font-size: 0.9rem;
  color: var(--bs-secondary);
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .question {
    padding-bottom: 4rem;
  }

  .question .container {
    padding: 2rem;
    gap: 1.5rem;
  }

  .question h3 {
    font-size: 1.35rem;
  }

  .question p {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .question {
    padding-bottom: 3rem;
  }

  .question .container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    gap: 1.5rem;
    border-radius: 0.75rem;
  }

  .question h3 {
    font-size: 1.2rem;
  }

  .question p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Makes button or CTA full width if present */
  .question .btn,
  .question a.btn {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .question .container {
    padding: 1.25rem;
  }

  .question h3 {
    font-size: 1.1rem;
  }

  .question p {
    font-size: 0.875rem;
  }
}

/*****************************************
*************GOOGLE***********************
******************************************/

.google-partner {
  background: rgb(11, 18, 32);
  padding: 5rem 0;
}

.partner-container {
  max-width: 1215px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
}

.partner-card {
  flex: 0 0 10.75rem;
}

.partner-card img {
  width: 100%;
  display: block;
  border-radius: 0.5rem;
  background: #fff;
}

.partner-content {
  flex: 1;
  max-width: 32.5rem;
}

.partner-label {
  display: inline-block;
  color: #4f8cff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1875rem;
  margin-bottom: 1.125rem;
  text-transform: uppercase;
}

.partner-content h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.375rem;
}

.partner-content p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.8;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 20rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #d1d5db;
  font-size: 0.8rem;
  font-weight: 500;
}

.check {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Tablet */

@media (max-width: 61.9375rem) {

  .partner-container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .partner-content {
    max-width: 43.75rem;
  }

  .partner-features {
    min-width: 100%;
    align-items: center;
  }

  .feature {
    justify-content: center;
  }
}

/* Mobile */

@media (max-width: 36rem) {

  .google-partner {
    padding: 3.75rem 1.25rem;
  }

  .partner-card {
    width: 11.25rem;
    flex: unset;
  }

  .partner-content h2 {
    font-size: 2.125rem;
  }

  .partner-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .feature {
    font-size: 1rem;
    justify-content: flex-start;
  }

  .partner-features {
    width: 100%;
    align-items: flex-start;
  }
}

.service-02 {
  padding: 5rem 0;
}

.service-02 .container {
  max-width: 77.1rem;
}

.service-02 .card {
  margin: 3rem 0;
  padding: 2rem;
  height: 18rem;
  border-radius: 1rem;
}

.service-02 .card:hover {
  border-color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.service-02 .numbers {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bs-primary);
}

.service-02 h5 {
  font-size: 1.5rem;
  font-weight: 500;
}

.service-02 p {
  font-size: 0.9rem;
  color: var(--bs-secondary);
}



/************************
***********SERVICE03*****
**************************/

.service-03 {
  background: #ffffff;
  padding: 5rem 0;
}

.service-03 .container {
  max-width: 77.1rem;
}

.process-section>[class*="col-"] {
  position: relative;
}

.process-section>[class*="col-"]:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.0625rem;
  height: 100%;
  background: #e5e7eb;
}

.service-03 .card {
  padding: 2rem;
  border: none;
}

.process-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #e3e8f2;
}

.process-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border: 0.0625rem solid #b7ccff;
  border-radius: 999rem;
  color: #3366ff;
  background: #f8fbff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.service-03 .card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.service-03 .card p {
  font-size: 0.9rem;
  color: var(--bs-secondary);
}

/************************************
*************SERVICE 04**************
*************************************/

.service-04 {
  background: rgb(11, 18, 32);
  padding: 5rem 0;
}

.service-04 .container {
  max-width: 77.1rem;
}

.service-04 .card {
  background: #12192b;
  border: 0.0625rem solid #283248;
  border-radius: 1rem;
  height: 25rem;
  margin-top: 3rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-04 .card:hover {
  border-color: #3d6cff;
  transform: translateY(-0.3rem);
}

.service-04 .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.service-04 .card-label {
  color: #7f8ca8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.service-04 .card-status {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-04 .card-status.up {
  color: #22c55e;
}

.service-04 .card-status.down {
  color: red;
}

.service-04 .card-value {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 2rem;
}

.service-04 .card-value span {
  color: #5f8cff;
}

.service-04 .card-progress {
  width: 100%;
  height: 0.35rem;
  background: #23304d;
  border-radius: 999rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-04 .card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #76a3ff, #3f73ff);
  border-radius: inherit;
}

.service-04 .card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.service-04 .card p {
  color: var(--bs-secondary);
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0;
}

/* ===============================
   Tablet (≤991px)
================================== */
@media (max-width: 991px) {
  .service-04 {
    padding: 4rem 0;
  }

  .service-04 .card {
    height: auto;
    min-height: 22rem;
    padding: 1.75rem;
  }

  .service-04 .card-value {
    font-size: 3.2rem;
    margin-bottom: 1.75rem;
  }

  .service-04 .card h3 {
    font-size: 1.1rem;
  }

  .service-04 .card p {
    font-size: 0.9rem;
  }
}

/* ===============================
   Mobile (≤767px)
================================== */
@media (max-width: 767px) {
  .service-04 {
    padding: 3rem 0;
  }

  .service-04 .card {
    height: auto;
    padding: 1.5rem;
    border-radius: 0.875rem;
  }

  .service-04 .card-header {
    margin-bottom: 1.25rem;
  }

  .service-04 .card-label {
    font-size: 0.65rem;
    letter-spacing: 0.12rem;
  }

  .service-04 .card-status {
    font-size: 0.75rem;
  }

  .service-04 .card-value {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }

  .service-04 .card-progress {
    margin-bottom: 1.5rem;
  }

  .service-04 .card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .service-04 .card p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* ===============================
   Small Mobile (≤480px)
================================== */
@media (max-width: 480px) {
  .service-04 {
    padding: 2.5rem 0;
  }

  .service-04 .card {
    padding: 1.25rem;
    margin: 1rem 0;
  }

  .service-04 .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .service-04 .card-value {
    font-size: 2.2rem;
  }

  .service-04 .card h3 {
    font-size: 0.95rem;
  }

  .service-04 .card p {
    font-size: 0.85rem;
  }
}

/**************************
***********SERVICE 05******
***************************/

.service-05 {
  padding: 5rem 0;
  background: var(--bs-body-bg);
}

.service-05 .container {
  max-width: 77.1rem;
}

.service-05 .container .row {
  padding-top: 2rem;
}

.workflow-card {
  border: 0.0625rem solid #e6eaf2;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: .3s ease;
}

.workflow-card:hover {
  border-color: #3d6cff;
  transform: translateY(-0.1rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .08);
}

.step {
  display: block;
  color: #295BFF;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  letter-spacing: .08rem;
}

.workflow-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #172033;
  margin-bottom: 1rem;
}

.workflow-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow-card ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  color: #4c5b73;
  font-size: 0.8rem;
  line-height: 1.7;
}

.workflow-card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #295BFF;
  font-weight: 700;
}

.workflow-image {
  height: 90%;
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.workflow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:991px) {

  .workflow-section {
    padding: 5rem 0;
  }

  .workflow-image {
    margin-top: 2rem;
    height: 35rem;
  }

}

@media (max-width:767px) {

  .workflow-card {
    padding: 1.75rem;
  }

  .workflow-card h3 {
    font-size: 1.6rem;
  }

  .workflow-card ul li {
    font-size: 1rem;
  }

  .workflow-image {
    height: 24rem;
  }

}

/****************************
********** FAQ **************
*****************************/

.service-faq {
  padding: 5rem 0;
}

.service-faq .container {
  max-width: 77.1rem;
}

/***********************************
*************Portfolio-Detail*******
************************************/

.portfolio-hero {
  padding: 12rem 0 5rem 0;
  background-color: var(--bs-body-bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.portfolio-hero .container {
  max-width: 77.1rem;
}

.portfolio-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.portfolio-hero .breadcrumb a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bs-secondary);
  text-transform: uppercase;
}

.portfolio-hero .breadcrumb a.active {
  color: #2d63f5;
}

.portfolio-hero .breadcrumb span {
  color: var(--bs-secondary);
}

.portfolio-hero .portfolio-title {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  font-size: 4.1rem;
  line-height: 0.95;
  font-weight: 800;
  color: #061126;
  margin-bottom: 2rem;
}

.portfolio-hero .portfolio-title span {
  display: block;
  color: #2d63f5;
}

.portfolio-hero .portfolio-description {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bs-secondary);
}

/* Tablet */
@media (max-width: 991px) {
  .portfolio-title {
    font-size: 4rem;
  }

  .portfolio-description {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .portfolio-hero {
    padding: 5rem 0;
  }

  .portfolio-title {
    font-size: 2.8rem;
    line-height: 1.05;
  }

  .portfolio-description {
    font-size: 1.1rem;
  }

  .breadcrumb {
    margin-bottom: 1.5rem;
  }
}

/************************************
**********portfolio-Detail-Hero******
*************************************/

.portfolio-hero-image {
  padding: 4rem 0;
}

.portfolio-hero-image .container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 77.1rem;
}

.portfolio-hero-image .hero-image {
  margin: 2rem 0;
  border-radius: 2.5rem;
  height: 48rem;
  width: 69rem;
}

/************************************
**********portfolio-01***************
*************************************/

.about-client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.about-client .container {
  max-width: 77.1rem;
}

.about-client h3 {
  padding: 2rem 0;
  color: var(--bs-primary);
  font-weight: 900;
}

.about-client p {
  color: var(--bs-secondary);
}

.about-client .about-image {
  width: 100%;
}

/************************************
**********portfolio-02***************
*************************************/

.challenge {
  margin: 5rem 0;
}

.challenge .container {
  max-width: 77.1rem;
}

.challenge h3 {
  color: var(--bs-primary);
  font-weight: 900;
  padding: 2rem 0;
}

.challenge p {
  color: var(--bs-secondary);
}

/************************************
**********portfolio-03***************
*************************************/

.solution {
  padding: 2rem 0;
}

.solution .container {
  max-width: 77.1rem;
}

.solution h3 {
  color: var(--bs-primary);
  font-weight: 900;
  padding: 2rem 0;
}

.solution p {
  color: var(--bs-secondary);
  max-width: 550px;
}

.solution .solution-image {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

/************************************
**********portfolio-04***************
*************************************/

.technology-used {
  padding: 3rem 0;
}

.technology-used .container {
  max-width: 77.1rem;
}

.technology-used h3 {
  color: var(--bs-primary);
  font-weight: 900;
  padding: 2rem 0;
}

.technology-used .card {
  margin: 2rem 0;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.technology-used .card:hover {
  border-color: #3d6cff;
  transform: translateY(-0.1rem);
  transition: 0.3s;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .08);
}

.technology-used .card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #003A80;
}

.technology-used .technology-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.technology-used .technology-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.technology-used .solution-image {
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 0.75rem;
}

.technology-used .technology-icon {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.technology-used .technology-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/************************************
**********portfolio-05***************
*************************************/

.benefits {
  padding: 4rem 0;

}

.benefits .container {
  max-width: 77.1rem;

}

.benefits-background {
  background: #013a80;
  color: white;
  padding: 2.3rem;
  border-radius: 1rem;
}

.benefits-background h3 {
  font-weight: 900;
  padding: 0.6rem 0;
}

/************************************
*********** Responsive **************
*************************************/

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

  .portfolio-hero-image {
    padding: 3rem 0;
  }

  .portfolio-hero-image .hero-image {
    width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 1.5rem;
  }

  .about-client,
  .challenge,
  .solution,
  .technology-used,
  .benefits {
    padding: 3rem 0;
  }

  .about-client h3,
  .challenge h3,
  .solution h3,
  .technology-used h3,
  .benefits-background h3 {
    font-size: 2rem;
    padding: 1rem 0;
  }

  .solution p {
    max-width: 100%;
  }

  .technology-used .technology-list {
    gap: 1.5rem;
  }

  .technology-used .solution-image {
    width: 4rem;
    height: 4rem;
  }

  .technology-used .technology-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .benefits-background {
    padding: 2rem;
  }
}


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

  .portfolio-hero-image {
    padding: 2rem 0;
  }

  .portfolio-hero-image .hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 0;
  }

  .about-client,
  .challenge,
  .solution,
  .technology-used,
  .benefits {
    padding: 2.5rem 0;
    margin: 0;
  }

  .about-client h3,
  .challenge h3,
  .solution h3,
  .technology-used h3,
  .benefits-background h3 {
    font-size: 1.6rem;
    padding: 0.8rem 0;
  }

  .about-client p,
  .challenge p,
  .solution p,
  .technology-used .technology-item p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .technology-used .card {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .technology-used .technology-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .technology-used .technology-item {
    min-width: 6rem;
  }

  .technology-used .solution-image {
    width: 3.8rem;
    height: 3.8rem;
  }

  .technology-used .technology-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .solution .solution-image,
  .about-client .about-image {
    margin: 1.5rem 0;
  }

  .benefits-background {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }
}


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

  .portfolio-hero-image {
    padding: 1.5rem 0;
  }

  .about-client,
  .challenge,
  .solution,
  .technology-used,
  .benefits {
    padding: 2rem 0;
  }

  .about-client h3,
  .challenge h3,
  .solution h3,
  .technology-used h3,
  .benefits-background h3 {
    font-size: 1.4rem;
  }

  .technology-used .card {
    padding: 1.25rem;
  }

  .technology-used .technology-list {
    gap: 1rem;
  }

  .technology-used .technology-item {
    width: 100%;
  }

  .technology-used .solution-image {
    width: 3.5rem;
    height: 3.5rem;
  }

  .technology-used .technology-icon {
    width: 2rem;
    height: 2rem;
  }

  .benefits-background {
    padding: 1.25rem;
  }
}

/****************************
         Header
*****************************/

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.custom-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.site-branding {
  padding-top: 1rem;
}

.custom-logo,
.custom-logo-link img {
  max-width: 10rem;
  height: auto;
  display: block;
  padding: 0 0 0.5rem 0;
}

.main-navigation #primary-menu>li>a {
  color: #64748B;
  font-size: 1rem;
  font-weight: 200;
}

.main-navigation #primary-menu>li>a:hover {
  background: transparent;
  color: #000000;
}

.main-navigation #primary-menu .sub-menu>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-navigation #primary-menu .sub-menu>li>a::after {
  content: "\2192";
  opacity: 0;
  color: var(--bs-primary);
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.main-navigation #primary-menu .sub-menu>li:hover>a::after {
  opacity: 1;
  transform: translateX(0);
}

