*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --bs-primary-custom: rgba(255, 126, 0, 1);
  --bs-body-color: #333;
  --bs-heading-color: rgba(0, 0, 0, 1);
  --greenweb-light-bg: rgba(249, 242, 236, 1);
  --greenweb-light-orange: rgba(255, 77, 0, 0.07);
  --greenweb-light-green: #e0f7e6;
  --greenweb-dark-green: #4caf50;
  --gray-bg: #f5f5f5;

  --light-text-color: rgba(89, 89, 89, 1);
  --card-bg-color: #ffffff;
  --primary-blue: #007bff;

  --tag-green: #38c172;
  --tag-yellow: #f6993f;
  --tag-red: #cc0000;
  --link-color: #343a40;

  --light-bg: #f8f8f8;
  --text-color-primary: #343a40;

  --greenweb-light-orange: #ffe5cc;
  --text-color-primary: #343a40;
  --dark-blue: #002b4d;

  --gauge-value: 57;
  --gauge-color: #4285f4;


  --font-size-base: 16px;
  /* 16px - Base paragraph size */
  --font-size-sm: 0.9rem;
  /* 14.4px - Small/Meta text */
  --font-size-lg: 18px;
  /* 18px - Lead/Subtext */
  --font-size-h1: 4.5rem;
  /* 72px - Extra large headlines (Hero) */
  --font-size-h2: 2.5rem;
  /* 40px - Section titles */
  --font-size-stat: 4rem;
  /* 64px - Large stat numbers */
  --font-size-card-title: 1.5rem;
  /* 24px - Blog/Feature titles */

  --font-manrope: "Manrope", sans-serif;
  --font-inter: "Inter", sans-serif;
}

/* --- CUSTOM CONTAINER --- */
.container {
  width: 100%;
  /* Sets the maximum width of the content */
  max-width: 1650px;
  /* Centers the container horizontally */
  margin-right: auto;
  margin-left: auto;
}

/* Optional: Add a media query to adjust max-width for smaller screens if needed */
@media (min-width: 1400px) {
  .container {
    /* If the screen is XXL or larger, keep the max width at 1280px */
    max-width: 1450px;
  }
}

/* For screens smaller than large, max-width is effectively 100% due to padding */
@media (min-width: 992px) and (max-width: 1280px) {
  .container {
    /* Allows it to behave like container-lg until it hits 1280px */
    max-width: 1170px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --main-orange: #ff7e00;
  --soft-gray: #f0f2f1;
  --hard-gray: #595959;
}

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

body {
  font-family: "Inter", sans-serif;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 3.4375rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.h1-hero {
  font-size: 4.5rem;
  font-weight: 800;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 2.8125rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.h3-large {
  font-size: 2rem;
  font-weight: 600;
}

.h3-boldest {
  font-weight: 800;
  font-size: 2rem;
}

h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.h3-thick {
  font-weight: 700;
}

.h3-thickest {
  font-weight: 800;
  line-height: 140%;
}

h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0;
}

.h4-boldest {
  font-weight: 800;
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
}

.line-height {
  line-height: 22px;
}

.p-thick {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
}

.p-small {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25;
}

.p-justified {
  text-align: justify;
  color: var(--hard-gray);
}

.p-smallest {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1;
}

/* Mobile-first spacing utilities */
.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-5 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.pt-5 {
  padding-top: 1rem !important;
}

.pb-5 {
  padding-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 1rem !important;
}

.my-5 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.py-7 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pt-7 {
  padding-top: 2rem !important;
}

.pb-7 {
  padding-bottom: 2rem !important;
}

.mb-7 {
  margin-bottom: 2rem !important;
}

.mt-7 {
  margin-top: 2rem !important;
}

.my-7 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.py-8 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pb-8 {
  padding-bottom: 3rem !important;
}

.pt-8 {
  padding-top: 3rem !important;
}

@media (min-width: 768px) {
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .px-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .pt-5 {
    padding-top: 2.5rem !important;
  }

  .pb-5 {
    padding-bottom: 2.5rem !important;
  }

  .mb-5 {
    margin-bottom: 2.5rem !important;
  }

  .mt-5 {
    margin-top: 2.5rem !important;
  }

  .my-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .py-6 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .px-6 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }

  .pt-6 {
    padding-top: 3.75rem !important;
  }

  .pb-6 {
    padding-bottom: 3.75rem !important;
  }

  .my-6 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .px-7 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

  .px-8 {
    padding-left: 5.25rem !important;
    padding-right: 5.25rem !important;
  }

  .py-7 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .pt-7 {
    padding-top: 4.5rem !important;
  }

  .pb-7 {
    padding-bottom: 4.5rem !important;
  }

  .mb-7 {
    margin-bottom: 4.5rem !important;
  }

  .mt-7 {
    margin-top: 4.5rem !important;
  }

  .my-7 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .py-8 {
    padding-top: 9.375rem !important;
    padding-bottom: 9.375rem !important;
  }

  .pb-8 {
    padding-bottom: 9.375rem !important;
  }

  .pt-8 {
    padding-top: 9.375rem !important;
  }
}

.text-orange {
  color: #ff7e00 !important;
}

.text-black-2 {
  color: #171717 !important;
}

.border-orange {
  border-color: #ff7e00 !important;
  border-radius: 10px;
}

.hard-grey {
  color: #595959;
}

.soft-grey {
  color: #f0f2f1;
}

.bg-orange {
  background-color: rgba(255, 126, 0, 1);
}

.bg-soft-gray {
  background-color: #f0f2f1;
}

.bg-black-2 {
  background-color: #171717;
}

/* Background gradients for Differnt Pages */

/* index.html */

.btn-outline-orange {
  border: 1px solid var(--main-orange);
  color: white;
  border-radius: 5px;
}

.btn-outline-orange:hover {
  background-color: var(--main-orange);
  color: white;
  border-color: var(--main-orange);
}

/* px seems higher on main-hero button */
.btn-hero {
  border-radius: 30px;
  padding-top: 15px;
  padding-right: 80px;
  color: black;
  padding-bottom: 15px;
  padding-left: 80px;
  border-width: 2px;
  border: 2px solid var(--main-orange);
  background-color: white;
  align-self: center;
}

.btn-large {
  border-radius: 30px;
  padding-top: 15px;
  padding-right: 60px;
  color: black;
  padding-bottom: 15px;
  padding-left: 60px;
  border-width: 2px;
  border: 2px solid var(--main-orange);
  background-color: white;
  align-self: center;
}

.btn-large-solid {
  border-radius: 10px;
  padding-top: 15px;
  padding-right: 60px;
  color: white;
  padding-bottom: 15px;
  padding-left: 60px;
  border-width: 2px;
  background-color: var(--main-orange);
}

.btn-large-solid:hover {
  background-color: transparent;
  color: black;
  border-color: var(--main-orange);
}

.btn-secondary {
  border-radius: 30px;
  padding-top: 8px;
  padding-right: 35px;
  padding-bottom: 8px;
  padding-left: 35px;
  border-width: 1px;
  border: 1px solid var(--main-orange);
  color: black;
  background-color: white;
  font-weight: 600;
  font-style: normal;
}

.btn-tertiary {
  border-radius: 50px;
  border-width: 0.5px;
  border: 0.5px solid var(--main-orange);
  padding-top: 3px;
  padding-right: 30px;
  padding-bottom: 3px;
  padding-left: 30px;
  background-color: #f9f2ec;
  transition: none;
  cursor: default;
  pointer-events: none;
}

.btn-readmore {
  border-radius: 5px;
  border-width: 0.5px;
  border: 0.5px solid var(--main-orange);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  background-color: #f9f2ec;
}

.btn-secondary:hover,
.btn-tertiary:hover,
.btn-large:hover,
.btn-readmore:hover {
  background-color: var(--main-orange);
  /* optional: highlight */
  color: white;
  /* optional: invert text */
  border-color: var(--main-orange);
}

/* Index.html Different Sections */
.arrow-img {
  position: absolute;
  top: 100%;
  /* start below the p */
  left: 50%;
  transform: translate(-50%, 20px);
  /* ⬅ push it down further */
  max-height: 120px;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .arrow-img {
    max-height: 70px;
    transform: translate(-50%, 10px);
    /* smaller push on mobile */
  }
}

/* Header and Footer*/

.copyright-text {
  font-size: 15px;
}

/* Social icon brand hover colors in footer */
footer a.text-secondary:hover .bi-facebook,
footer a.text-secondary:focus .bi-facebook {
  color: #1877f3 !important;
}

footer a.text-secondary:hover .bi-twitter-x,
footer a.text-secondary:focus .bi-twitter-x {
  color: #000 !important;
}

footer a.text-secondary:hover .bi-linkedin,
footer a.text-secondary:focus .bi-linkedin {
  color: #0a66c2 !important;
}

footer a.text-secondary:hover .bi-instagram,
footer a.text-secondary:focus .bi-instagram {
  color: #e4405f !important;
}

.hr-footer {
  border-bottom: 1.5px solid rgba(23, 23, 23, 0.08);
}

/* index.html  */
.process-number {
  position: absolute;
  top: 0%;
  left: 34%;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  background-color: #f0f2f1;
  color: #000;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.success-numbers {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 55px;
  line-height: 1;
  letter-spacing: 0;
}

.process-arrow {
  position: absolute;
  top: 25%;
  right: -65px;
  transform: translateY(-50%);
  width: 130px;
  z-index: 1;
}

.success-metrics-section {
  position: relative;
  z-index: 1;
  /* orange section stays on top */
  background-color: #ff7e00;
  /* ensure orange fully covers inside */
  margin-top: 80px;
  /* 👈 add spacing from top */
}

.success-metrics-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 120px;
  background: url("/assets/images/index/suceessWave-home.svg") no-repeat right top;
  background-size: cover;
  z-index: -99;
}

/* Vertical Borders between Columns */
.success-metrics-section .col-lg-4:not(:last-child) {
  position: relative;
}

.success-metrics-section .col-lg-4:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  /* adjust vertical padding */
  right: 0;
  height: 70%;
  /* control line length */
  width: 0.5px;
  background: rgba(255, 255, 255, 0.414);
  /* semi-transparent white */
}

.newsletter-section {
  background-image: url("/assets/images/index/Vector.svg");
  background-repeat: no-repeat;
  background-position: center 20px;
  /* Moves image 60px down from the top */
  background-size: cover;
  padding-top: 80px;
}

@media (max-width: 767px) {
  .newsletter-section {
    margin-top: 32px;
  }
}

/* Positoning Stars at Hero Section */
.star-img1 {
  top: 70%;
  left: 0%;
  width: 42px;
}

.star-img2 {
  top: 10%;
  right: -50%;
  width: 32px;
}

/* Blog Archive Page Styling */
.thick-arrow {
  font-weight: bolder;
  font-size: 1.2rem;
}

.bg-faded-orange {
  background-color: #f9f2ec !important;
}

/* Pagination hover effect */
.page-link:hover,
.page-link:focus {
  background-color: #f5f5f5 !important;
  /* Light gray */
  color: #171717 !important;
  /* Optional: dark text for contrast */
  text-decoration: none;
}

.aside-small-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.quote-text {
  font-family: Inter;
  font-weight: 500;
  font-style: Italic;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000000;
}

.checklist li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
}

/* e-commerce-seo.html Styling  */

@media (min-width: 992px) {

  /* lg and up */
  .custom-padding-lg {
    padding: 50px 8px 50px 84px;
    margin-top: 0;
  }
}

.percentage {
  font-family: Manrope;
  font-weight: 800;
  font-size: 4.0625rem;
  line-height: 100%;
  color: var(--main-orange);
  margin-right: 1rem;
}

/* Ensure nested dropend menus open to the right on desktop */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    position: absolute;
  }

  .navbar .dropend>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.125rem;
  }

  /* If a submenu uses dropdown-menu-end, force right-side for dropend */
  .navbar .dropend>.dropdown-menu.dropdown-menu-end {
    left: 100% !important;
    right: auto !important;
  }
}

/* SEO Audit */
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
  /* faint grey */
  opacity: 1;
  /* override browser default */
}

/* Tech Data-Architecture and Other Sections */
.service-pill:hover {
  border-color: var(--main-orange);
  box-shadow: inset 0 0 0 1px var(--main-orange);
}

/* Counter List */
.counter-list {
  counter-reset: step;
}

.counter-list li {
  counter-increment: step;
}

.counter {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 33px;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #fd7e14;
  /* Bootstrap orange */
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.counter::before {
  content: counter(step);
}

.input-search {
  border: 1px var(--soft-gray) solid;
  border-radius: 22.5px;
}

/* Plain Numbered List */
.numbered-list {
  counter-reset: step;
}

.numbered-list li {
  counter-increment: step;
  align-items: flex-start;
  /* align number with top line of text */
  gap: 0.5rem;
  /* space between number and text */
  padding-right: 1rem;
  /* add breathing room on right side */
}

.numbered-list .num::before {
  content: counter(step) ".";
  font-weight: 600;
  color: var(--main-orange);
}

.numbered-list .num {
  min-width: 1.25rem;
  /* keeps consistent gap */
  text-align: right;
}

.numbered-list li {
  margin-bottom: 0.75rem;
}

.numbered-list li p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}

/* --- Dropdown hover color overrides --- */
/* Use brand orange background for hovered/active dropdown items */
/* Minimal hover; brand color for active/keyboard focus */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.dropdown-toggle:hover {
  background-color: var(--main-orange) !important;
  color: #171717 !important;
}

.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active,
.navbar .dropdown-menu .dropdown-item.dropdown-toggle:focus {
  background-color: var(--main-orange) !important;
  color: #fff !important;
}

/* Optional: top-level nav-link hover color tweak (non-menu) */
.navbar .nav-link:hover {
  color: var(--main-orange);
}

.dropdown-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-flex::after {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

/* Swiper Syting */
.navbar .dropdown-menu .dropdown-item {
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Sleek, modern dropdown styling ===== */
.navbar .dropdown-menu {
  --dropdown-bg: #fff;
  --dropdown-border: rgba(23, 23, 23, 0.06);
  --dropdown-shadow: 0 6px 18px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  background: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
  border-radius: 10px;
  padding: 0.375rem;
  box-shadow: var(--dropdown-shadow);
  transform-origin: top center;
  transform: translateY(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease, transform 140ms ease,
    visibility 0s linear 140ms;
}

.navbar .dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: opacity 140ms ease, transform 160ms ease;
}

/* Dropdown items spacing and typography */
.navbar .dropdown-item {
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  color: #171717;
}

.navbar .dropdown-item.dropdown-toggle::after {
  margin-left: 0.5rem;
}

/* Rotate caret when expanded (supports mobile/desktop) */
.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.navbar .dropdown-toggle::after {
  transition: transform 0.2s ease;
}

/* ===== Replace default caret with modern SVG chevron ===== */
/* Base chevron (uses currentColor to adapt on hover/active) */
.navbar .dropdown-toggle::after,
.navbar .dropdown-item.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border: none;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* Chevron down SVG with currentColor stroke */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* Right-facing chevron for dropend (desktop submenus) */
.navbar .dropend>.dropdown-toggle::after {
  transform: rotate(-90deg);
}

/* Space tweaks for submenu items */
.navbar .dropdown-item.dropdown-toggle::after {
  margin-left: 0.375rem;
}

/* Submenu panel visual on desktop (keeps existing positioning rules) */
@media (min-width: 992px) {
  .navbar .dropend>.dropdown-menu {
    border-radius: 12px;
    box-shadow: var(--dropdown-shadow);
    padding: 0.5rem;
  }
}

/* Mobile-first dropdown: full-width, nested lists flat & clean */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    z-index: 9999;
    background: #fff;
    border: 1px solid rgba(23, 23, 23, 0.06);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    margin-top: 0;
    padding: 0.5rem 0.25rem;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  /* Nested menus: flat, slight indent, minimal border */
  .navbar .dropdown-menu .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid rgba(23, 23, 23, 0.04);
    margin: 0.5rem 0 0.5rem 1rem;
    box-shadow: none;
    padding: 0.5rem 0.25rem;
  }

  /* Tap targets and spacing */
  .navbar .dropdown-item {
    padding: 0.85rem 1rem;
    font-size: 1.08rem;
  }

  .navbar .dropdown-item.dropdown-toggle::after {
    margin-left: 0.5rem;
  }

  /* Prevent content disruption below navbar */
  .navbar-collapse {
    position: relative;
    z-index: 10;
  }
}

.swiper-slide {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

.swiper.trusted-swiper {
  min-height: 100px;
  /* just enough to fit tallest logo */
}

.trusted-swiper .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100px;
  /* Set consistent height */
}

/* Organic Exposure */

.organic-section-dark {
  background-color: #171717;

  color: white;
}

.organic-service-card {
  background: #1e1e1e;
  border: 1px solid #595959;
  border-radius: 10px;
  height: 404px;
  position: relative;
  overflow: hidden;
}

.organic-service-number {
  font-family: "Manrope", sans-serif;
  position: absolute;
  top: 0;
  font-size: 203px;
  font-weight: bold;
  opacity: 0.1;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(30, 30, 30, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  left: 45px;
}

.organic-service-card:nth-child(2) .organic-service-number {
  left: 29px;
}

.organic-service-card:nth-child(3) .organic-service-number {
  left: 30px;
}

/* Digital Strategy Page */
.business-auditing .cta:hover {
  cursor: pointer;
  color: white;
  background-color: var(--main-orange);
}

.the-approach .overlap-img {
  position: absolute;
  top: 70%;
  /* desktop default */
  left: 40%;
  transform: translate(-50%, -50%);
  width: 260px;
  z-index: 1;
  height: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .the-approach .overlap-img {
    top: 72%;
    /* move slightly lower */
    left: 50%;
    /* center more */
    width: 220px;
    /* shrink a bit */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .the-approach .overlap-img {
    top: 75%;
    /* more breathing space */
    left: 50%;
    /* fully centered */
    width: 180px;
    /* smaller */
  }
}

/* Extra Small (phones) */
@media (max-width: 480px) {
  .the-approach .overlap-img {
    top: 78%;
    /* a bit lower again */
    width: 150px;
    /* even smaller */
  }
}

.business-audit ul li {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  color: var(--hard-gray);
  font-weight: 500;
  margin-bottom: 1rem;
}

.text-orange-border {
  border-bottom-color: var(--main-orange) !important;
}

/* Sustainable marketing promotes eco-friendly products, minimizes waste, builds trust, meets customer needs responsibly, and supports long-term environmental and social goals. */

.bg-color {
  background: radial-gradient(rgba(253, 183, 85, 0.3) 0%,
      rgba(255, 255, 255, 0) 70%);
}

.hero-section {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  background-image: url("../images/experts/sustainable/hero_bg.png");
}

.sustainable-content {
  position: relative;
}

.main-heading {
  font-weight: 800;
  font-family: var(--font-manrope);
  color: var(--bs-heading-color);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-stat);
  line-height: 73px;
}

.highlight-text {
  color: var(--bs-primary-custom);
}

.tar {
  position: absolute;
  top: 20px;
  right: 40px;
}

.custom-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bs-primary-custom);
  border-radius: 50px;
  font-size: var(--font-size-lg);
  color: var(--bs-primary-custom);
  background-color: var(--greenweb-light-bg);
  font-weight: 400;
  font-family: var(--font-inter);
}

.line {
  width: 40px;
  height: 7px;
  background-color: var(--bs-primary-custom);
}

.custom-tag .icon {
  margin-right: 0.5rem;
}

.separate-button {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;

}

.highlight-line {
  display: flex;
  align-items: center;

}

.btn-primary-custom {
  background-color: var(--bs-primary-custom);
  border-color: var(--bs-primary-custom);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 0.85rem 1.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.btn-primary-custom:hover {
  background-color: #e57e00;
  border-color: #e57e00;
  color: white;
}

.btn-outline-primary-custom {
  border-color: var(--bs-primary-custom);
  color: var(--bs-primary-custom);
  font-weight: 600;
  font-size: 16px;
  padding: 0.85rem 1.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary-custom:hover {
  background-color: var(--bs-primary-custom);
  color: white;
}

.feature-item {
  font-size: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--bs-heading-color);
}

.feature-items {
  font-size: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--bs-heading-color);
  display: flex;
  gap: 10px
}

.image-container {
  padding: 0;
  z-index: 1;
}

.hero-image {
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.section-container {
  background-color: white;
}

.badge-title {
  display: flex;
  width: 210px;
  gap: 10px;
  align-items: center;
  padding: 0.3rem 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 77, 0, 1);
  font-size: var(--font-size-lg);
  font-family: var(--font-inter);
  font-weight: 400;
  background-color: rgba(255, 77, 0, 0.07);
  color: rgba(255, 77, 0, 1);
  line-height: 1.2;
}

.badge-solution {
  background-color: rgba(255, 77, 0, 0.07);
  color: #f7a900;
  font-family: var(--font-inter);
  color: var(--bs-primary-custom);
  font-size: var(--font-size-lg);
  border: 1px solid rgba(255, 126, 0, 1);
  line-height: 1.2;
}

.section-title-problem,
.section-title-solution {
  color: var(--bs-heading-color);
  font-weight: 600;
  font-family: var(--font-manrope);
  line-height: 1.2;
  font-size: var(--font-size-lg);
  font-size: 45px;
}

.section-text {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.solutions_heading {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 20px;
  color: var(--bs-heading-color);
}

.text-secondary {
  font-family: var(--font-inter);
  font-size: var(----font-size-lg);
  color: var(--light-bg-color);
  font-weight: 400;
  line-height: 26px;
}

.solution-card {
  background-color: white;
  box-shadow: 0 0px 10px 0 rgba(58, 58, 58, 0.1);
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}


.impact {
  position: relative;
  height: 85vh;
}

.header-background {
  background-color: var(--bs-primary-custom);
  background-image: url("../images/grow/bgImage.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 360px;
}

.cards {
  display: flex;
  justify-content: center;
}

.card-custom {
  background-color: white;
  border-radius: 1.5rem;
  border: none;
  width: 77%;
  position: absolute;
  top: 140px;
  margin-bottom: 5rem;
}

.card-title-main {
  font-family: var(--font-manrope);
  font-size: 45px;
  font-weight: 600;
  color: var(--bs-heading-color);
  line-height: 1.2;
}

.card-text {
  font-size: var(--font-size-lg);
  font-family: var(--font-inter);
  color: var(----light-bg-color);
  font-weight: 400;
  line-height: 26px;
}

.card-text span {
  font-size: var(--font-size-lg);
  font-family: var(--font-inter);
  color: var(----light-bg-color);
  font-weight: 700;
  line-height: 26px;
}

.resources-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.progress,
.progress-stacked {

  --bs-progress-border-radius: none;

}

.prog-1 {
  background-color: #59DDAA;
}

.prog-2 {
  background-color: #FF8786;
}

.prog-3 {
  background-color: #FFB26E;
}

.prog-4 {
  background-color: #8ECDFF;
}

.prog-5 {
  background-color: #C4C7CF;
}


.badge-try {
  background-color: rgba(249, 242, 236, 1);
  width: 23%;
  color: var(--bs-primary-custom);
  font-size: var(--font-size-lg);
  font-weight: var(--font-inter);
  font-weight: 400;
}

.badge-try svg {
  vertical-align: text-top;
}

.btn-lg-custom {
  padding: 0.75rem 2rem;
  font-size: var(--font-size-base);
  border-radius: 0.75rem;
  color: var(--bs-heading-color);
}


.section-title-problem-ai,
.section-title-solution-ai {
  color: var(--bs-heading-color);
  font-weight: 600;
  font-family: var(--font-manrope);
  line-height: 1.2;
  font-size: var(--font-size-lg);
  font-size: 46px;
}


.feature-title-custom {
  font-size: 45px;
  color: var(--bs-heading-color);
  font-family: var(--font-manrope);
  font-weight: 600;
}

.feature-subtitle-custom {
  font-size: var(----font-size-lg);
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--light-text-color);
}


.section-title-results {
  font-size: 45px;
  font-family: var(--font-manrope);
  color: var(--bs-heading-color);
  font-weight: 600;
  margin-bottom: 40px;
}

.badge-results {
  display: inline-block;
  padding: 0.2rem 2rem;
  border: 1px solid rgba(255, 126, 0, 1);
  background-color: rgba(249, 242, 236, 1);
  font-family: var(--font-inter);
  border-radius: 2rem;
  font-size: var(----font-size-lg);
  color: var(--bs-primary-custom);
  font-weight: 400;
}

.results-section {
  background-color: #FFF8EF5E;
  padding-top: 110px;
  padding-bottom: 110px;
}

.dashboard-card {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid #f0f0f0;
}

.blue-back {
  background-color: rgba(244, 245, 249, 1);
}


.gauge {
  position: relative;
  width: 200px;
  height: 100px;
  overflow: hidden;
}

.gauge-fill {
  width: 100%;
  height: 100%;
  background: none;
  border: 20px solid #e5f0ff;
  /* light blue background */
  border-bottom: none;
  border-radius: 100px 100px 0 0;
  position: relative;
}

.gauge-fill::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -15px;
  width: 110%;
  height: 115%;
  border: 20px solid var(--gauge-color);
  border-bottom: none;
  border-radius: 89px 100px 0 0;
  transform-origin: center bottom;
  transform: rotate(calc(var(--gauge-value) * 5deg));
  transition: transform 0.5s ease;
}

.gauge-cover {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 70px;
  background: white;
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chart-label {
  color: rgba(75, 85, 99, 1);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 38px;

}

.chart-sub-label {
  color: rgba(10, 189, 139, 1);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;

}


.chart-sub-label {
  font-size: 0.8rem;
}

.small_background {
  background-color: #fff;
  width: 96%;
  padding: 10px;
  border-radius: 12px;
  height: 130px;


}

.text-secondary-thematic {
  color: rgba(89, 89, 89, 1);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 22px;
  padding-top: 20px;
  padding-bottom: 12px;
}

.text-secondary-thematic-sub {
  color: rgba(89, 89, 89, 1);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  padding-top: 10px;

}

.percentse {
  color: rgba(89, 89, 89, 1);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
}

.crawled {
  background-color: white;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 10px;
}

.crawled h5 {
  font-family: var(--font-inter);
  font-weight: 600;
  color: var(--light-text-color);
  font-size: var(----font-size-lg);
  padding-bottom: 10px;
}

.crawled h3 {
  font-family: var(--font-inter);
  font-weight: 700;
  color: rgba(0, 143, 248, 1);
  font-size: 28px;
  padding-bottom: 10px;
}

.site-bg {
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 10px;
}

.real-notice {
  background-color: white;
  width: 95%;
  margin: auto;
  border-radius: 10px;
}

.text-information {
  font-family: var(--font-inter);
  font-weight: 600;
  color: var(--light-text-color);
  font-size: var(----font-size-lg);
}

.text-color {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 26px;
  color: rgba(255, 77, 0, 1);
  padding-top: 10px;
}

.text-color-third {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 26px;
  color: rgba(10, 189, 139, 1);
  padding-top: 10px;
}

.small-chart {
  width: 40px;
  height: 40px;
  line-height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle closest-side, white 65%, transparent 65%);
  border: 5px solid #e0e0e0;
  border-top-color: var(--primary-blue);
  font-weight: bold;
  color: #343a40;
  font-size: 1rem;
}

.detail-list {
  font-size: 0.95rem;
  line-height: 1.8;
}

.detail-list .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-top: 12px;

}

.float-end {
  color: #008FF8;
  margin-top: 5px;

}

.result-item {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 0.75rem;
}

.text-orange-result {
  color: var(--bs-heading-color);
  font-size: 32px;
  font-family: var(--font-inter);
  font-weight: 600;
}

.text-para {
  color: var(--bs-heading-color);
  font-family: var(--font-size-lg);
  font-weight: 600;
}





.section-title-resources {
  font-size: 45px;
  font-family: var(--font-inter);
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 30px;
}

.badge-resources {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bs-primary-custom);
  border-radius: 50px;
  font-size: var(--font-size-lg);
  color: var(--bs-primary-custom);
  background-color: var(--greenweb-light-bg);
  font-weight: 400;
  font-family: var(--font-inter);

}

.resource-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0 !important;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-wrap {
  position: relative;
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  font-weight: 400;
  font-family: var(--font-inter);
  font-size: 0.85rem;
  color: rgba(249, 250, 251, 1);
  font-size: 14px;
  background-color: var(--bs-primary-custom);
}

.badge-sustainability .badge-business .badge-seo {
  background-color: var(--bs-primary-custom);
}


.card-title {
  font-family: var(--font-inter);
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}

.card-text {
  font-size: 16px;
  font-family: var(--font-inter);
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  line-height: 26px;
}

.metadata-line {
  display: flex;
  gap: 16px
}

.metadata-sub {
  color: rgba(89, 89, 89, 1);
  font-size: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
}

.hero-aiDriven {
  background-color: white;
  padding-top: 3rem;
  padding-bottom: 6rem;
  position: relative;
  background-image: url("../images/experts/ai-driven/ser-bg-2.png");
}

.main-title {
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-manrope);
  color: var(--bs-heading-color);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-stat);
  line-height: 73px;
}

.text-orange-custom {
  color: var(--bs-primary-custom);
}

.sub-text {
  max-width: 600px;
  font-size: 1.15rem;
}

.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bs-primary-custom);
  border-radius: 50px;
  font-size: var(--font-size-lg);
  color: var(--bs-primary-custom);
  background-color: var(--greenweb-light-bg);
  font-weight: 400;
  font-family: var(--font-inter);
}

.btn-primary-custom:hover {
  background-color: #e05a00;
  border-color: #e05a00;
}

.btn-outline-secondary-custom:hover {
  background-color: var(--light-bg);
  border-color: #adb5bd;
  color: var(--text-color-primary);
}

.arrow-graphic-wrap {
  position: absolute;
  top: 20%;
  left: 18%;
  z-index: 10;
}

.play-button-wrap svg {
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.5));
  transition: transform 0.2s;
}

.play-button-wrap:hover svg {
  transform: scale(1.05);
}

.video-title {
  font-size: 45px;
  font-weight: 600;
  color: var(--bs-heading-color);
  font-family: var(--font-manrope);
  color: rgba(255, 255, 255, 1);
}

.video-subtitle {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--bs-heading-color);
  font-family: var(--font-inter);
  color: rgba(255, 255, 255, 1);
  margin-top: -10px;
}

.video-subtitle-orange {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 126, 0, 1);
  font-family: var(--font-manrope);
}

.icon-chip {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 15;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon-chip svg {
  width: 35px;
  height: 35px;
  color: white;
}

.icon-position-top-left {
  top: 15%;
  left: 15%;
  background-color: #e74c3c;
}

.icon-position-top-right {
  top: 15%;
  right: 15%;
  background-color: #9b59b6;
}

.icon-position-bottom-left {
  bottom: 15%;
  left: 15%;
  background-color: #2ecc71;
}

.icon-position-bottom-right {
  bottom: 15%;
  right: 15%;
  background-color: var(--greenweb-orange);
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

.badge-problem {
  background-color: var(--greenweb-light-orange);
  color: var(--bs-primary-custom);
}

.badge-title svg {
  vertical-align: text-top;
}

.card-title-sustain {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font-manrope);
  font-size: 24px;
}

.approach-section {
  background-color: #fff;
  box-shadow: 0 9px 31px rgba(205, 205, 205, 0.24);
  padding-top: 70px;
  padding-bottom: 70px;

}

.section-title-approach {
  color: var(--bs-heading-color);
  font-weight: 600;
  font-family: var(--font-manrope);
  line-height: 1.2;
  font-size: 45px;
}

.section-subtitle-approach {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.cta-banner-section {
  margin-top: 70px;
  margin-bottom: 70px;
}


.approach-card {
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.shadow-sm-custom {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075),
    0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.card-title-approach {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font-manrope);
  font-size: 24px;
}

.card-text {
  margin-top: 10px;
  font-size: var(--font-size-lg);
  font-family: var(--font-inter);
  color: var(----light-bg-color);
  font-weight: 400;
  line-height: 26px;
}

.cta-card {
  background-color: var(--bs-primary-custom);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='rgba(255, 255, 255, 0.1)' d='M0,320L60,341.3C120,363,240,405,360,384C480,363,600,277,720,256C840,235,960,288,1000,314.7L1000,0L960,0C900,0,720,0,600,0C480,0,360,0,240,0C120,0,60,0,0,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.8;
}

.cta-title {
  font-size: 45px;
  font-family: var(--font-manrope);
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

.cta-subtitle {
  font-size: 18px;
  font-family: var(--font-inter);
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.btn-white-custom {
  background-color: white;
  color: var(--bs-primary-custom);
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s, color 0.2s;
}

.btn-white-custom:hover {
  background-color: #f0f0f0;
  color: #e05a00;
}


.badge-success-story {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--greenweb-light-orange);
  color: var(--bs-primary-custom);
  margin-bottom: 30px;
}

.text-orange-custom {
  color: var(--bs-primary-custom);
}

.metric-value-lg {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 64px;
  color: rgba(255, 126, 0, 1);
  margin-bottom: 30px;

}

.metric-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-manrope);
  color: rgba(0, 0, 0, 1);
}

.metric-subtitle {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-inter);
  color: rgba(89, 89, 89, 1);
  line-height: 26px;
  margin-top: 20px;
}

.border-bottom {
  border-color: rgba(0, 0, 0, 0.24);
}

.blockquote-custom {
  font-size: 18px;
  line-height: 26px;
  font-family: var(--font-inter);
  color: rgba(89, 89, 89, 1);
  position: relative;
}

.blockquote-custom::before {
  content: "“";
  font-size: 4rem;
  color: #f0f0f0;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.quote-source {
  font-family: var(--font-inter);
  font-size: 18px;
  margin-top: 1.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
}

.bg-orange {
  background-color: #ff8c00;
}

.text-white {
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: rgba(255, 126, 0, 1);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-inter);
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-inter);
}

.btn-outline-white:hover {
  background-color: #fff;
  color: #ff8c00;
}

.py-lg-7 {
  padding-top: 5rem !important;
}

.marketing-blog {
  background-color: #fff;
  margin-top: 110px;
  margin-bottom: 5rem;
}

.badge-pill-custom {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background-color: #ffe8d3;
  color: #ff8c00;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.display-5 {
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font-manrope);
  color: rgba(0, 0, 0, 1);
  margin-bottom: 60px;
}

.display-ai {
  font-size: 64px;
  font-weight: 600;
  font-family: var(--font-manrope);
  color: rgba(255, 255, 255, 1);
}

.lead-ai {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.card-img-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-label {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-inter);
  line-height: 22px;
}

.case-studies {
  background-color: #ff8c00;
}


.real-matter {
  background-color: white;
  box-shadow: -3px 23px 18px rgba(205, 205, 205, 0.24);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
}



.problem-solution-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.card-body-custom ul li {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}


.card-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-bottom: 1rem;
  font-family: var(--font-manrope);
}

.card-title-custom-cro {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 1rem;
  font-family: var(--font-manrope);
  padding-top: 50px;
  position: relative;
}

.cro-title {
  position: absolute;
  background-color: #FEEFE9;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 17px;
  padding-right: 17px;
  color: var(--bs-primary-custom);
  font-size: 14px;
  font-family: var(--font-inter);
  border-radius: 100px;
}

.learn-more-link {
  color: var(--bs-primary-custom);
  font-family: var(--font-inter);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: #cc7000;
}

.btn-outline-cro {
  border-radius: 100px;
  border: 2px solid #FF7E00;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 16px;
  font-family: var(--font-inter);
  font-weight: 700;
  color: #000000;

}

.btn-outline-cro:hover {
  border-radius: 100px;
  border: 2px solid #FF7E00;
  background-color: var(--bs-primary-custom);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 16px;
  font-family: var(--font-inter);
  font-weight: 700;
  color: #fff;


}


.cro-section {
  background-color: #FEEFE94A;
}

.display-3 {
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-manrope);
  color: var(--bs-heading-color);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-stat);
  line-height: 73px;
}

.text-predictably {
  color: var(--bs-primary-custom);
}

.lead {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--bs-heading-color);
  margin-bottom: 30px;
}

.small-text-info {
  display: flex;
  gap: 10px
}

.plus-sign {
  font-size: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--bs-heading-color);
}

.btn-primary-custom:hover {
  background-color: #cc7000;
  border-color: #cc7000;
  color: #fff;
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid #ccc;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.8rem 3rem;
  border-radius: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline-custom:hover {
  border-color: var(--bs-primary-custom);
  color: var(--bs-primary-custom);
}

.media-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-image {
  width: 100%;
  height: auto;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--bs-primary-custom);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.play-button-overlay:hover {
  box-shadow: 0 0 0 15px rgba(255, 140, 0, 0.6);
}

.play-icon {
  width: 30px;
  height: 30px;
  color: #fff;
  margin-left: 5px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
}

.bg-light-gray {
  background-color: var(--section-bg);
}

.custom-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.card-header-custom {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-family: var(--font-inter);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-body-custom p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.solution-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.list-icon {
  color: var(--bs-primary-custom);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 15px;
  transform: translateY(-2px);
}

.cta-banner {
  background-color: var(--bs-primary-custom);
  color: var(--text-white);
  border-radius: 15px;
  position: relative;
  height: 360px;
}


.ready-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-heading {
  font-size: 42px;
  font-weight: 600;
  font-family: var(--font-manrope);
  color: #fff;


}

.cta-text {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: #FFFFFFD9;
  padding-bottom: 20px;
}

.btn-white-cro {
  background-color: #fff;
  color: var(--bs-primary-custom);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  padding: 0.8rem 4rem;
  border-radius: 8px;
  transition: all 0.3s ease;

}


.section-title {
  font-weight: 700;
  color: #000000;
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font-manrope);

}

.section-subtitle {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.stats-container {
  padding: 3rem 0;
  background-color: #fff;
  box-shadow: 0px -5px 21px #CDCDCD3D;
  border-radius: 24px;

}

.content-block {
  padding-left: 40px;
  padding-right: 40px;


}

.hr {
  padding-top: 40px;
}

.stat-item {
  padding: 1rem 0;
}

/* 
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  font-size: 1.4rem;
} */




.icon-days {
  background-color: #fce8f4;
  color: #ff69b4;
}

.stat-value {
  font-size: 64px;
  font-weight: 700;
  color: #000000;
  font-family: var(--font-manrope);

}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-manrope);
  color: var(--text-dark);
  margin-top: 5px;
}

.content-heading {
  font-size: 1.25rem;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-manrope);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.content-paragraph {
  padding-top: 10px;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.highlight-box {
  background-color: #FAF3F0;
  padding: 1.5rem 1.2rem;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #FF7E00;
  line-height: 1.5;
}



.blog-card {
  background-color: #fff;
  padding-top: 1rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  min-height: 100%;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); */
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.author {
  font-family: var(--font-inter);
  color: rgba(89, 89, 89, 1);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 10px;
}


.tag-testing {
  background-color: #e5f5ff;
  color: #007bff;
}

.tag-optimization {
  background-color: #fce8f4;
  color: #ff69b4;
}

.card-title-custom {
  font-family: var(--font-manrope);
  font-size: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.features-list {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.date-cro {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--light-text-color);
}

.read-time {
  font-family: var(--font-inter);
  color: rgba(89, 89, 89, 1);
  font-size: 14px;
  font-weight: 400;
}

/* .card-meta {
  display: flex;
  gap: 20px;
} */


.learn-more-link {
  color: var(--bs-primary-custom);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
}

.learn-more-link:hover {
  color: #cc7000;
}

.arrow-right {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.learn-more-link:hover .arrow-right {
  margin-left: 10px;
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--bs-primary-custom);
  color: var(--bs-primary-custom);
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background-color: var(--bs-primary-custom);
  color: #fff;
}

.final-cta-section {
  background-color: var(--bs-primary-custom);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 60px;
}

.cta-section {
  padding: 100px 0;
  position: relative;
}

.ser-bg {
  position: absolute;
  bottom: -70px;
  right: 0px;
}

.cro-final-image {
  position: absolute;
  left: 600px;
  top: 192px
}

.cta-headline {
  font-size: 64px;
  font-weight: 500;
  font-family: var(--font-manrope);
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-subtext {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-inter);
  color: #FFFFFFD9;
}

.btn-white-primary {
  background-color: #FFFFFF;
  color: var(--bs-primary-custom);
  font-family: var(--font-inter);
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
  position: relative;
  z-index: 1;
}

.btn-white-primary:hover {
  background-color: #f0f0f0;
  color: var(--bs-primary-custom);
}

.feature-item-cro {
  font-family: var(--font-inter);
  font-weight: 400;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 10px;
}