/* Custom styles for targetedge landing page, using Bootstrap for layout */

:root {
  --sidebar-width: 170px;
  --main-bg: #fff;
  --accent: #000;
  --menu-link: #888;
  --menu-link-hover: #000;
  --logo-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --logo-hover: scale(1.07);
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --feature-bg: #F5F6FA;
  --feature-hover: #F0F1F7;
  --service-bg: #F8F8F8;
  --service-tag: #E6E8F0;
  --pricing-bg: #F7F7FB;
  --testimonial-bg: #FAFAFC;
  --faq-bg: #F8F8F8;
  --primary: #000;
  --secondary: #666;
  --cta: #000;
  --cta-hover: #444;
  --border: #eee;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.12);
  --bs-gutter-x: 1.5rem;
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter/inter-v18-latin-regular.woff2') format('woff2');
}
/* inter-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/inter/inter-v18-latin-italic.woff2') format('woff2');
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter/inter-v18-latin-500.woff2') format('woff2');
}
/* inter-500italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/inter/inter-v18-latin-500italic.woff2') format('woff2');
}
/* inter-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter/inter-v18-latin-600.woff2') format('woff2');
}
/* inter-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/inter/inter-v18-latin-600italic.woff2') format('woff2');
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter/inter-v18-latin-700.woff2') format('woff2');
}
/* inter-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/inter/inter-v18-latin-700italic.woff2') format('woff2');
}
/* manrope-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope/manrope-v19-latin-regular.woff2') format('woff2');
}
/* manrope500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/manrope/manrope-v19-latin-500.woff2') format('woff2');
}
/* manrope600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/manrope/manrope-v19-latin-600.woff2') format('woff2');
}
/* manrope700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/manrope/manrope-v19-latin-700.woff2') format('woff2');
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--sidebar-bg);
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope';
  color: #000;
}
h1{
  font-weight: 700;
}

h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

h3{
  font-size: 1.25rem;
  font-weight: 600;
}

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

a:hover{
  color: #000;
  text-decoration: underline;
}

hr{
  border-top: 1px solid #a3a3a3;
}

.internal-page-section h1{
  font-size: 2.6rem;
  line-height: 1.25;
}

.cs-container{
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px){
  .cs-container, .cs-container-sm{
    max-width: 540px;
  }
}

@media (min-width: 768px){
  .cs-container, .cs-container-md, .cs-container-sm{
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .cs-container, .cs-container-lg, .cs-container-md, .cs-ontainer-sm{
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .cs-container, .cs-container-lg, .cs-container-md, .cs-container-sm, .cs-container-xl{
    max-width: 1250px;
  }
}

@media (min-width: 1400px) {
  .cs-container, .cs-container-lg, .cs-container-md, .cs-container-sm, .cs-container-xl{
    max-width: 1380px;
  }
}

.sidebar {
  position: relative;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 10;
}
.sidebar-wrapper{
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 1.5rem 0;
}
.sidebar .logo {
  padding-bottom: 30px;
}
.sidebar .logo img{
  width: 70px;
  height: auto;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.sidebar nav a {
  text-decoration: none;
  color: var(--menu-link);
  font-weight: 500;
  padding: 8px 0;
  transition: color var(--transition);
  position: relative;
}
.sidebar nav a.active {
  color: var(--menu-link-hover);
}
.sidebar .sidebar-bottom {
  font-size: 13px;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar .sidebar-bottom .handle {
  font-weight: 500;
  color: #000;
}
.sidebar .sidebar-bottom .time {
  font-variant-numeric: tabular-nums;
}
.navbar-expand-xl .navbar-nav .nav-link{
  padding: 10px 0;
}
.navbar-brand{
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-brand img{
  width: auto;
  height: 40px;
}
/* Menu Hover Animation - Left to Right Line using Pseudo-elements */
.menu-hover-effect {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Create the animated line using ::after pseudo-element */
.menu-hover-effect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0073, #554ccd);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.nav-link:focus, .nav-link:hover{
  text-decoration: none;
}
/* Hover Animation - Line grows from left to right */
.menu-hover-effect:hover::after {
  width: 100%;
}

/* Active state - Line stays visible */
.menu-hover-effect.active::after {
  width: 100%;
}

/* Mega Dropdown Styles */
.mega-dropdown {
  position: relative;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0%) translateY(20px);
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  min-width: 600px;
  max-width: 800px;
  width: auto;
  overflow: hidden;
}

.mega-dropdown:hover .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(0px);
}

.mega-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Arrow Animation */
.dropdown-arrow {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dropdown Section Styles */
.dropdown-section{
  padding: 40px 25px;
}
.dropdown-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dropdown-link {
  display: block;
  border-bottom: 1px solid transparent;
}

.dropdown-link h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.dropdown-link p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Dropdown Illustration */
.dropdown-illustration {
  background: #F8F7F4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.illustration-content {
}

.illustration-icon {
  margin-bottom: 20px;
}

.illustration-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.illustration-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Mega Dropdown */
@media (max-width: 991.98px) {
  .mega-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-top: 10px;
    padding: 20px;
    min-width: auto;
    max-width: none;
    width: 100%;
  }
  
  .dropdown-illustration {
    display: none;
  }
  
  .dropdown-links {
    gap: 10px;
  }
  
  .dropdown-link:hover {
    transform: none;
  }
}

/* Dropdown menu items also get the hover effect */
.dropdown-item {
  position: relative;
  overflow: hidden;
}

.dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #60A189;
  transition: width 0.3s ease;
}

.dropdown-item:hover::after {
  width: 100%;
}

/* Submenu Styles */
.has-submenu {
  position: relative;
}

.submenu {
  position: relative;
  opacity: 0;
  visibility: hidden;
  max-width: 150px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.submenu-content h4 {
  font-size: 17px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 0;
  text-decoration: underline;
}

.submenu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.submenu-content ul li a {
  padding-left: 10px;
  font-size: 14px;
  color: #888;
  font-weight: 400;
  display: block;
  position: relative;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.submenu-content ul li a:hover {
  color: #000;
}

.submenu-content ul li a.active {
  color: #000;
}

.submenu-content ul li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  transition: transform 0.2s ease;
}

.submenu-content ul li a:hover::after {
  transform: translateY(-50%) translateX(3px);
}

/* Hover animations */
.has-submenu.active .submenu {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

/* Main content and custom sections */
.main-content {
  background: var(--main-bg);
  width: auto;
  min-width: 0;
  flex: 1;
}

section{
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-section{
  background: linear-gradient(90deg, #ecf9f9 0%, #e1dcfe 50%, #ffdec8 100%);
  padding: 35px 40px 45px;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  margin-bottom: 20px;
}

.page-section{
  background: linear-gradient(90deg, #ecf9f9 0%, #e1dcfe 50%, #ffdec8 100%);
  padding: 35px 40px 45px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  margin-bottom: 80px;
}
.page-paragraph {
  padding-top: 10px;
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: #4a4c55;
  font-weight: 400;
}

.breadcrumb-item.active{
  color: #000;
  font-weight: 600;
}

.fw-300{
  font-weight: 300;
}

.btn-primary {
  font-family: 'Manrope';
  position: relative;
  width: fit-content;
  overflow: hidden;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}

.btn-primary .btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.btn-primary .btn-text a:hover{
  color: inherit;
  text-decoration: none;
}

.btn-primary .btn-fill {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: none;
  opacity: 0.9;
}
.btn-primary svg{
  transform: rotate(45deg);
}
.btn-secondary {
  font-family: 'Manrope';
  width: fit-content;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.btn-secondary .btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.btn-secondary .btn-text a:hover{
  color: inherit;
  text-decoration: none;
}

.btn-secondary .btn-fill {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; /* initial size, will scale up */
  height: 40px;
  background: #fff;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: none;
  opacity: 0.9;
}
.btn-secondary svg{
  transform: rotate(45deg);  
}
.btn-white {
  font-family: 'Manrope';
  position: relative;
  width: fit-content;
  overflow: hidden;
  background: #a2a2a0;
  color: #000;
  border: 2px solid #a2a2a0;
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.btn-white:hover{
  background: #fff;
  border: 2px solid #fff;
}
.btn-white .btn-text {
  display: flex;
  align-items: center;
}
.btn-white svg{
  transform: rotate(45deg);  
}
.btn-underline{
  font-family: 'Manrope';
    position: relative;
    color: #000;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
    background: none;
}
.btn-underline:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
}
.rotate-315 {
  transform: rotate(315deg) !important;
}
.pt-40{
  padding-top: 40px;
}
.pr-40{
  padding-right: 40px;
}
.text-primary{
  color: #939393 !important;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}
.hero-headline {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: 'Manrope';
  line-height: 1.25;
  color: var(--accent);
}
.hero-paragraph {
  padding-bottom: 10px;
  color: #000;
  font-weight: 600;
  font-size: 1.35rem;
  text-align: center;
  line-height: 1.4;
}

/* Hero Carousel */
.hero-carousel-section {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Carousel fix */
.carousel-container {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  position: relative;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  min-width: 0;
}
.carousel-slide {
  min-width: 100%;
  max-width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7fb;
}
.carousel-slide img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.carousel-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 1.3rem;
  color: #888;
  z-index: 2;
  transition: background var(--transition);
}
.carousel-arrow:hover {
  background: #f0f0f0;
  color: #000;
}

/* Logos */
.logos-title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.25rem;
  color: #000;
}
.logos-row {
  gap: 24px;
}
.logo-box {
  width: 190px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.logo-box img {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: grayscale(0) contrast(1.2);
}
/* Work */
.work-row{
  position: relative;
}
.work-row > [class*="col-"]:nth-child(1) .work-card {
  background: #D6DAFB;
}
.work-row > [class*="col-"]:nth-child(2) .work-card {
  background: #FFEBE0;
}
.work-row > [class*="col-"]:nth-child(3) .work-card {
  background: #E3F4EC;
}
.work-row > [class*="col-"]:nth-child(4) .work-card {
  background: #E6DEFA;
}
.work-row > [class*="col-"]:nth-child(5) .work-card {
  background: #E3F4EC;
}
.work-row > [class*="col-"]:nth-child(6) .work-card {
  background: #D6DAFB;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ebebeb;
  padding: 15px;
  position: relative;
  border-radius: 16px;
  z-index: 1;
  height: 100%;
  transition: all 0.3s ease;
}

/* Numbered stroke badge for How We Work cards (About page only) */
.about-how-we-work .work-row {
  counter-reset: workcard-counter;
}
.about-how-we-work .work-row .work-card {
  counter-increment: workcard-counter;
}
.about-how-we-work .work-row .work-card::after {
  content: counter(workcard-counter, decimal-leading-zero);
  position: absolute;
  bottom: 0;
  right: 10px;
  line-height: 1;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke: 2px rgb(0 0 0 / 20%);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .about-how-we-work .work-row .work-card::after {
    font-size: 40px;
    bottom: 10px;
    right: 12px;
    -webkit-text-stroke-width: 2px;
  }
}

.work-card:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 25px;
  transform: translateY(-2px);
}
.work-icon svg{
  width: 65px;
  height: 65px;
}
.work-icon img{
  width: 65px;
  height: 65px;
}
.work-text {
  width: 100%;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
}
.work-text h3{
  font-size: 1.25rem;
  color: #000;
  font-family: 'Manrope';
  font-weight: 600;
  margin-bottom: 15px;
}
.about-work-text{
  padding: 20px 100px 20px 20px;
  height: 100%;
}
.about-work-icon{
  position: relative;
}
/* Why */
.why-card-container{
  position: relative;
}

/* Color pattern: 4 colors that repeat */
/* Color 1: Purple (#554ccd) */
.why-card-container .why-card:nth-child(4n+1) .why-heading{
  color: #554ccd;
}
.why-card-container .why-card:nth-child(4n+1) .why-content{
  background: #E1DCFE;
}
.why-card-container .why-card:nth-child(4n+1)::before {
  background: #554ccd;
}

/* Color 2: Blue (#0064ff) - same as 4th child */
.why-card-container .why-card:nth-child(4n+2) .why-heading{
  color: #0064ff;
}
.why-card-container .why-card:nth-child(4n+2) .why-content{
  background: #E2F4FE;
}
.why-card-container .why-card:nth-child(4n+2)::before {
  background: #0064ff;
}

/* Color 3: Pink (#ff0073) */
.why-card-container .why-card:nth-child(4n+3) .why-heading{
  color: #ff0073;
}
.why-card-container .why-card:nth-child(4n+3) .why-content{
  background: #FFF3EB;
}
.why-card-container .why-card:nth-child(4n+3)::before {
  background: #ff0073;
}

/* Color 4: Green (#18a367) - same as 2nd child */
.why-card-container .why-card:nth-child(4n+4) .why-heading{
  color: #18a367;
}
.why-card-container .why-card:nth-child(4n+4) .why-content{
  background: #DBF0E7;
}
.why-card-container .why-card:nth-child(4n+4)::before {
  background: #18a367;
}

.why-card{
  display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background: transparent !important;
    border: 1px solid #ebebeb;
    padding: 10px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.why-card:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 25px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  width: 3px;
  height: 0;
  background: currentColor;
  transition: height 0.4s ease;
  z-index: 2;
}

/* Top to bottom animation */
.why-card.animate-line-top::before {
  height: 80%;
}

/* Bottom to top animation */
.why-card.animate-line-bottom::before {
  top: auto;
  bottom: 10%;
  height: 80%;
}

/* Exit animations */
.why-card.leave-line-top::before {
  height: 0;
}

.why-card.leave-line-bottom::before {
  top: auto;
  bottom: 0;
  height: 0;
}
.why-heading{
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  padding: 0 10px;
  flex-shrink: 0;
  width: 70px;
}
.why-content h3{
  font-size: 1.25rem;
  color: #000;
  font-family: 'Manrope';
  font-weight: 500;
}
.why-content{
  width: 100%;
  background: #ffffff;
  box-shadow: none!important;
  border-radius: 10px;
  padding: 20px;
}

/* FAQ Accordion */
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.faq-list {
  position: relative;
}
.faq-item {
  background: #F8F7F4;
  border-radius: 10px;
  box-shadow: none!important;
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-question {
  font-family: 'Manrope';
  padding: 15px 20px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
  transition: background var(--transition);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4,0,0.2,1),
    opacity 0.35s cubic-bezier(0.4,0,0.2,1),
    padding 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: max-height, opacity, padding;
}

.faq-question.active + .faq-answer {
  background: #ffffff;
  max-height: 500px;
  opacity: 1;
  padding: 20px 20px 15px;
  transition:
    max-height 0.35s cubic-bezier(0.4,0,0.2,1),
    opacity 0.35s cubic-bezier(0.4,0,0.2,1),
    padding 0.35s cubic-bezier(0.4,0,0.2,1);
}

footer{
  padding: 60px 0 20px;
  background: #000000;
  position: relative;
  color: #F5F5F5;
}
footer .column{
  flex: 0 0 20%;
  box-sizing: border-box;
}
footer img{
  width: auto;
  height: 40px;
}
footer h3{
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}
footer ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer ul li{
  padding-bottom: 10px;
}
footer .copyright{
  font-size: 13px;
}
footer hr{
  margin: 30px 0 20px;
  color: #ffffff;
}
footer a:hover{
  color: #ffffff;
}
/* Responsive styles */
@media (max-width: 1100px) {
  .why-features, .services-cards, .testimonials-row {
    grid-template-columns: 1fr 1fr;
  }
  .founder-img {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 900px) {
  .sidebar nav, .sidebar .sidebar-bottom {
    padding-left: 12px;
  }
  .sidebar nav a {
    padding: 6px 0;
  }
  .carousel-container, .carousel-slide {
    min-width: 0;
    max-width: 100%;
    height: 180px;
  }
  .carousel-slide img {
    width: 90%;
    height: 90%;
  }
}
@media (max-width: 600px) {
  
  .main-content {
    margin-left: 0;
  }
  .carousel-container, .carousel-slide {
    min-width: 0;
    max-width: 100vw;
    height: 100px;
  }
  .carousel-slide img {
    width: 90%;
    height: 90%;
  }
  .founder-img {
    width: 100px;
    height: 100px;
  }
}

.logos-carousel-viewport {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding: 20px 0px;
}

/* Edge blur/fade using provided gradients */
.logos-carousel-viewport::before,
.logos-carousel-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.logos-carousel-viewport::before {
  left: 0;
  background: linear-gradient(270deg, #fffdf600, #fffdf6);
}
.logos-carousel-viewport::after {
  right: 0;
  background: linear-gradient(90deg, #fffdf600, #fffdf6);
}

@media (max-width: 767.98px) {
  .logos-carousel-viewport::before,
  .logos-carousel-viewport::after {
    width: 48px;
  }
}

.logos-carousel-track {
  display: flex;
  width: max-content;
}

.logos-carousel-track.row-1 {
  animation: logos-scroll-left 40s linear infinite;
}

.logos-carousel-track.row-2 {
  animation: logos-scroll-right 40s linear infinite;
  margin-top: 20px;
}

/* On ultra-wide viewports, stop animation and show only first set */
@media (min-width: 1600px) {
  .logos-carousel-track {
    animation: none !important;
    transform: none !important;
    justify-content: center;
    margin: auto;
  }
  .logos-carousel-track.row-1 .logo-box:nth-child(n+7),
  .logos-carousel-track.row-2 .logo-box:nth-child(n+7) {
    display: none;
  }
  .logos-carousel-viewport::before,
  .logos-carousel-viewport::after { display: none; }
}

@keyframes logos-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes logos-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.service-card{
  position: relative;
}

.service-card .grey-round-card:nth-child(1){
  background: linear-gradient(180deg, #E1DCFE 0%, #e1dcfec7 100%);
}

.service-card .grey-round-card:nth-child(2){
  background: linear-gradient(180deg, #E2F4FE 0%, #e2f4febd 100%);
}

.service-card .grey-round-card:nth-child(3){
  background: linear-gradient(180deg, #FFF3EB 0%, #fff3ebcf 100%);
}

.grey-round-card{
  background: #f2f2f2;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.unstyled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.unstyled-list li {
  display: flex;
  align-items: self-start;
  gap: 14px;
  margin-bottom: 15px;
}
.unstyled-list li:last-child {
  margin-bottom: 0;
}
.unstyled-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.marketing-card-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.marketing-card-header{
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  border-radius: 16px;
  padding: 30px;
}

.marketing-card-content{
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  border-radius: 16px;
  padding: 30px 30px 15px 30px;
}

.marketing-card-1 {
  background: #ffffff;
  /* border: 1.5px solid #1a3fa6; */
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  border-radius: 16px;
  padding: 30px 30px 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* .marketing-card-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(26, 63, 166, 0.06) 0%, rgba(26, 63, 166, 0.02) 50%, rgba(26, 63, 166, 0.01) 100%);
  z-index: 0;
  pointer-events: none;
}

.marketing-card-1 > * {
  position: relative;
  z-index: 1;
} */

.marketing-card-2 {
  background: #ffffff;
  /* border: 1.5px solid #F9715C; */
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  /* box-shadow: 0 2px 16px #f9715c42; */
  padding: 30px 30px 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* .marketing-card-2::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249, 113, 92, 0.04) 0%, rgba(249, 113, 92, 0.02) 50%, rgba(249, 113, 92, 0.02) 100%);
  z-index: 0;
  pointer-events: none;
}

.marketing-card-2 > * {
  position: relative;
  z-index: 1;
} */

.marketing-card-3 {
  background: #ffffff;
  /* border: 1.5px solid #9C60FF; */
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  /* box-shadow: 0 2px 16px #9c60ff47; */
  padding: 30px 30px 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* .marketing-card-3::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(156, 96, 255, 0.09) 0%, rgba(156, 96, 255, 0.03) 50%, rgba(156, 96, 255, 0.03) 100%);
  z-index: 0;
  pointer-events: none;
}

.marketing-card-3 > * {
  position: relative;
  z-index: 1;
} */

.marketing-card-content {
  min-width: 0;
  flex: 1 1 0;
}

.marketing-card-title{
  font-size: 1.25rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.marketing-card-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
  z-index: 5;
}

.grey-round-card:hover .marketing-card-title::after {
  width: 100%;
}

.marketing-card-subtitle {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.marketing-card-link {
  font-size: 15px;
  width: fit-content;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1a3fa6;
}

.marketing-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.marketing-card-list li {
  margin-bottom: 0.25rem;
  color: #000;
}

.marketing-card-image {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .marketing-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 12px;
  }
  .marketing-card-image {
    margin-top: 24px;
    width: 100%;
    justify-content: flex-start;
  }
}

.gsap-heading span {
  display: inline-block;
  filter: blur(8px);
  opacity: 0;
}
.gsap-heading .heading-line-break {
  display: block;
  padding-top: 15px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.faq-question {
  position: relative;
  padding-right: 2em;
  cursor: pointer;
  font-size: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 0.9rem;
  height: 0.1rem;
  background: #535862;
  border-radius: 2px;
  transition: transform 0.3s;
}

.faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question.active::before {
  transform: translateX(0%) rotate(180deg);
}

/* Interactive Tools Section Styles */
.tools-grid-container {
  position: relative;
}

/* Case Study Carousel Styles */
.tools-grid-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 110px;
}

/* This rule is now handled by the main .tools-grid rule below */

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow.autoplay-active {
  background: rgba(255, 255, 255, 1);
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
  color: #333;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #333;
  transform: scale(1.2);
}

.dot:hover {
  background: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-track .tool-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  
  .carousel-arrow svg {
    width: 14px;
    height: 14px;
  }
  
  .carousel-prev {
    left: 15px;
  }
  
  .carousel-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .carousel-track .tool-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
  
  .carousel-arrow svg {
    width: 12px;
    height: 12px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  height: 450px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  width: calc(200% + 20px);
  transition: transform 0.8s ease-in-out;
}

/* Tool Cards */
.tool-card {
  background: #ffffff;
  padding: 2rem;
  height: 100%;
  position: relative;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.6s ease;
  overflow: hidden;
  text-align: left;
}

/* Prevent layout shifts in carousel */
.tool-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.tool-head span{
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 3px 12px;
}

.tool-content {
  position: relative;
  text-align: left;
}

.tool-content h3{
  line-height: 1.4;
  margin-bottom: 2rem;
}

.tool-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.tool-resultpara{
  font-size: 18px;
  line-height: 1.3;
  font-family: 'Manrope';
  margin-top: 20px;
  margin-bottom: 0;
}
.tool-result1{
  font-size: 30px;
  color: #39b34a;
  font-family: 'Manrope';
}
.tool-result2{
  font-size: 30px;
  color: #6A74D1;
  font-family: 'Manrope';
}

.tool-btn {
  border: none;
  border-bottom: 2px solid #000;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: transparent;
  cursor: pointer;
}


/* Responsive Design */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 400px;
    border-radius: 6px;
  }
  
  .tools-grid::before {
    left: 50%;
  }
  
  .tools-grid::after {
    display: none;
  }
  
  .tools-grid .tool-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
  }
  
  .tool-card {
    padding: 1.5rem 1rem;
  }
  
  .asterisk {
    font-size: 2.5rem;
  }
  
  .tool-title {
    font-size: 1.1rem;
  }
  
  .chat-btn {
    width: 50px;
    height: 50px;
  }
  
  .chat-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .tools-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 450px;
    border-radius: 6px;
  }
  
  .tools-grid::before,
  .tools-grid::after {
    display: none;
  }
  
  .tools-grid .tool-card:nth-child(2)::after {
    display: none;
  }
  
  .tools-grid .tool-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
  }
  
  .tool-card {
    padding: 1rem 0.5rem;
  }
  
  .asterisk {
    font-size: 2rem;
  }
  
  .tool-title {
    font-size: 1rem;
  }
}
/* Smooth transitions for all interactive elements */

/* Loading animation for tool cards */
@keyframes cardPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.tool-card:hover .asterisk {
  animation: cardPulse 2s infinite;
}
.cta-content{
  background: #e2f4feba;
  border: 2px solid #d0edfd;
  padding: 10px;
  border-radius: 16px;
}
.cta-containing{
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  padding: 2rem;
  border-radius: 16px;
}
.cta-content2{
  background: #fff3eb9c;
  border: 2px solid #fde6d7;
  padding: 10px;
  border-radius: 16px;
}

/* Grey Round Card Hover Effects */
.grey-round-card {
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn {
  position: absolute;
  width: 125px;
  height: 125px;
  line-height: 125px;
  background: #222222db;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.grey-round-card:hover .read-more-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.read-more-btn:hover {
  background: #222222db;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .read-more-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .read-more-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Owl Carousel Custom Styles */
.case-study-carousel {
  position: relative;
}

.owl-carousel .owl-item {
  padding: 0;
}


.case-study-carousel .tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: #F8F7F4;
  padding: 40px;
  border-radius: 16px;
}

.case-study-carousel .owl-nav {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  z-index: 10;
}

.case-study-carousel .owl-prev,
.case-study-carousel .owl-next {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.case-study-carousel .owl-prev:hover,
.case-study-carousel .owl-next:hover {
  background: #fff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.05) !important;
}

.case-study-carousel .owl-prev svg,
.case-study-carousel .owl-next svg {
  width: 16px !important;
  height: 16px !important;
  color: #333 !important;
}

.case-study-carousel .owl-dots {
  display: none !important;
}

/* Services section sticky animation */
.services-sticky-section {
  position: relative;
  z-index: 10;
  background: #fff;
  height: fit-content;
}

.services-content-section {
  position: relative;
  z-index: 1;
  height: auto;
}

/* Ensure proper spacing */
.services-sticky-section {
  margin-bottom: 2rem;
}

/* Services Tab Navigation */
.services-tab-container {
  margin: 40px 0;
  position: relative;
}

.services-tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.services-tab-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  padding: 13px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  color: #444;
  width: 250px;
}

/* Background fill animation */
.services-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: inherit;
  /* No transition here so resets are instant with no reverse animation */
  z-index: -1;
}

.services-tab-btn.filling::before {
  transition: width var(--fill-duration, 10s) linear;
}

/* Pause the fill at the current width using a CSS variable set from JS */
.services-tab-btn.paused::before {
  transition: none !important;
}

/* Individual tab fill colors */
.services-tab-btn[data-tab="run-marketing"]::before {
  background: #D6DAFB;
}

.services-tab-btn[data-tab="build-systems"]::before {
  background: #FFEBE0;
}

.services-tab-btn[data-tab="get-ready"]::before {
  background: #E6DEFA;
}

.services-tab-btn.filling::before {
  width: 100%;
}

/* Individual tab hover colors */
.services-tab-btn[data-tab="run-marketing"]:hover {
  background: transparent;
  border-color: #D6DAFB;
  box-shadow: 0 8px 25px rgba(214, 218, 251, 0.15);
}

.services-tab-btn[data-tab="build-systems"]:hover {
  background: transparent;
  border-color: #FFEBE0;
  box-shadow: 0 8px 25px rgba(255, 214, 230, 0.15);
}

.services-tab-btn[data-tab="get-ready"]:hover {
  background: transparent;
  border-color: #E6DEFA;
  box-shadow: 0 8px 25px rgba(230, 222, 250, 0.15);
}

.services-tab-btn.active {
  color: white;
  transform: translateY(-2px);
}

/* Individual tab colors */
.services-tab-btn[data-tab="run-marketing"].active {
  background: transparent;
  border-color: #D6DAFB;
  color: #000;
  box-shadow: 0 8px 25px rgba(214, 218, 251, 0.3);
}

.services-tab-btn[data-tab="build-systems"].active {
  background: transparent;
  border-color: #FFEBE0;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 214, 230, 0.3);
}

.services-tab-btn[data-tab="get-ready"].active {
  background: transparent;
  border-color: #E6DEFA;
  color: #000;
  box-shadow: 0 8px 25px rgba(230, 222, 250, 0.3);
}

.services-tab-btn .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.services-tab-btn:hover .tab-icon,
.services-tab-btn.active .tab-icon {
  transform: scale(1.1);
}

.services-tab-btn .tab-text {
  font-size: 14px;
  font-family: 'Manrope';
  white-space: nowrap;
}

/* Mobile Services Accordion active header colors */
.accordion-body{
  background: #F8F7F4;
  padding: 30px 20px;
  color: #000000;
}
.accordion-button{
  font-size: 18px;
  font-weight: 700;
}
#servicesAccordion #serviceHeadingOne .accordion-button {
  --bs-accordion-active-bg: #D6DAFB;
  --bs-accordion-active-color: #000000;
  --bs-accordion-btn-focus-border-color: #D6DAFB;
}
#servicesAccordion #serviceHeadingTwo .accordion-button {
  --bs-accordion-active-bg: #ffd6e6;
  --bs-accordion-active-color: #000000;
  --bs-accordion-btn-focus-border-color: #ffd6e6;
}
#servicesAccordion #serviceHeadingThree .accordion-button {
  --bs-accordion-active-bg: #E6DEFA;
  --bs-accordion-active-color: #000000;
  --bs-accordion-btn-focus-border-color: #E6DEFA;
}
.accordion-button:focus{
  box-shadow: none;
}
/* Tab Progress Indicator */
.tab-progress {
  width: 100%;
  height: 3px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.tab-progress-segment {
  flex: 1;
  height: 100%;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.tab-progress-segment:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

.tab-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4A54F6, #6C63FF);
  border-radius: 2px;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 5s linear;
}

.tab-progress-bar.animating {
  transform: translateX(0);
}

/* Services Tab Content */
.services-tab-content {
  position: relative;
  min-height: 460px;
}

.services-tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.services-tab-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tab Animation Effects */
.services-tab-panel.entering {
  animation: tabSlideIn 0.6s ease forwards;
}

.services-tab-panel.leaving {
  animation: tabSlideOut 0.4s ease forwards;
}

@keyframes tabSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tabSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
}


/* Custom hamburger toggler icon */
.custom-toggler {
  border: none;
  border-radius: 50px;
  background: #e1dcfe;
  padding: 0;
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.custom-toggler:focus {
  box-shadow: none;
}

.hamburger-line {
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: background-color 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.navbar-toggler:hover .hamburger-line { background-color: #2b2f36; }
.navbar-toggler .hamburger-line:nth-child(1){ width: 12px; }
.navbar-toggler .hamburger-line:nth-child(2){ width: 18px; }
.navbar-toggler .hamburger-line:nth-child(3){ width: 14px; }

/* Service2 Typing animation section */
.typing-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #222;
}

.blank-space {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #222;
  transition: height 0.5s ease;
  z-index: 1;
}

.typing-content {
  position: relative;
  z-index: 2;
  background: #222;
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.typing-text {
  color: #fff;
  line-height: 1.6;
  display: inline;
  max-width: 100%;
}

.typing-cursor {
  display: inline;
  color: #ff0073;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-left: 0.1em;
  opacity: 0;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Deliver section - Yummygum style with single container */
.deliver-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  margin: 0;
  padding: 0;
  opacity: 0; /* Hide initially to prevent flash */
}

.deliver-left-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 1;
}

.deliver-heading {
  text-align: center;
  padding: 2rem;
  width: 100%;
}

.deliver-heading h2 {
  font-size: 3rem;
  margin: 0;
}

/* Lottie animation styles */
.lottie-animation-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.lottie-animation {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}



.deliver-right-section {
  position: relative;
  width: 100%;
  background: #F8F7F4;
  transform: translateX(100%); /* Start off-screen to the right */
  transition: transform 0.2s ease-out;
  z-index: 2;
}

.deliver-cards-container {
  padding: 4rem 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.deliver-card {
  padding: 40px;
    background: #F8F7F4;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    height: 100%;
    /* Only animate hover shadow with CSS; let GSAP own transform/opacity */
    transition: box-shadow 0.3s ease;
    will-change: transform, opacity;
}
.deliver-card:hover{
  box-shadow: rgba(0, 0, 0, 0.09) 0px 8px 25px;
}
.deliver-card-content img{
  width: 65px;
  height: 65px;
  margin-bottom: 30px;
}
.deliver-card-content svg{
  width: 65px;
  height: 65px;
  margin-bottom: 30px;
}
.deliver-card-content button svg{
  width: auto;
  height: auto;
  margin-bottom: 0;
}
.deliver-card-content h3 {
  margin-bottom: 15px;
}

.deliver-card-content p {
  margin: 0;
}

/* About Us Page */
.who-we-are-card{
  background: linear-gradient(180deg, #E1DCFE 0%, #e1dcfec7 100%);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.who-we-are-card .unstyled-list li{
  align-items: self-start;
}
.who-we-are-card .unstyled-list li svg{
  margin-top: 6px;
}
.founder-container{
  position: relative;
  display: flex;
  margin-top: 30px;
}
.founder-container::before {
  content: "—";
  display: inline-block;
  font-size: 1rem;
  color: #000;
  margin-right: 0.5rem;
  font-weight: 300;
}

.resources-wrapper{
  position: relative;
}
.resources-wrapper a{
  text-decoration: none;
}
/* Color 1: #FFF3EB (Light Orange)
.col-md-6:nth-child(4n+1) .resources-card,
.col-lg-4:nth-child(4n+1) .resources-card {
  background: #FFF3EB !important;
}

Color 2: #E2F4FE (Light Blue)
.col-md-6:nth-child(4n+2) .resources-card,
.col-lg-4:nth-child(4n+2) .resources-card {
  background: #E2F4FE !important;
}

Color 3: #E1DCFE (Light Purple)
.col-md-6:nth-child(4n+3) .resources-card,
.col-lg-4:nth-child(4n+3) .resources-card {
  background: #E1DCFE !important;
}

Color 4: #DBF0E7 (Light Green)
.col-md-6:nth-child(4n+4) .resources-card,
.col-lg-4:nth-child(4n+4) .resources-card {
  background: #DBF0E7 !important;
} */
.resources-card{
  display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #ebebeb;
    padding: 20px;
    position: relative;
    border-radius: 16px;
    z-index: 1;
    height: 100%;
    background: #ffffff;
    transition: all 0.3s ease;
}
.resources-card-link { text-decoration: none; color: inherit; }
.resources-card:hover{
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 25px;
  transform: translateY(-2px);
}
.resources-head{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
  margin-bottom: 1rem;
}
.resources-head span{
  font-size: 14px;
    border: 1px solid #4a4c55;
    border-radius: 16px;
    padding: 3px 12px;
}
.resources-content{
  width: 100%;
    background: #F8F7F4;
    border-radius: 16px;
    padding: 20px;
    padding-bottom: 60px;
    height: 100%;
    position: relative;
}

/* Index card hero overlap styles */
.resources-hero-image{ 
  height: 200px;
  object-fit: cover;
  border-radius: 12px; 
  display:block; }
.resources-overlap{ margin-top: -40px; }

/* Read-more arrow CTA inside resources cards */
.resources-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100%;
}
.resources-cta .cta-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, transform .25s ease;
}
.resources-card:hover .resources-cta .cta-icon {
  border-color: #bfbfbf;
}
.resources-cta .cta-text {
  position: absolute;
  right: 45px;
  bottom: 10px;
  opacity: 0;
  transform: translateX(16px);
  transition: transform .35s ease, opacity .35s ease;
  font-family: 'Manrope';
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
.resources-card:hover .resources-cta .cta-text {
  opacity: 1;
  transform: translateX(0);
}

/* Results Divider Section */
.results-divider-section {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  background: #fff;
  padding: 40px 20px 26px;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  margin-bottom: 40px;
}

/* Blog meta compact bar - items grouped to the left with gaps */
.meta-blog {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  margin-bottom: 24px;
}
.meta-blog .results-item {
  flex: 0 0 auto; /* do not stretch, keep natural width */
  padding: 0;
  text-align: left;
}

.cs-hero-image{
  height: 350px;
    object-fit: cover;
  border-radius: 16px;
  display: block;
}

.cs-hero-stack{ position: relative; }
.cs-overlap-card{
  position: relative;
  margin-top: -70px;
}

.results-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.results-item p {
  font-size: 17px;
}

/* Blog meta icon row inside results card */
.meta-blog{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  gap: 50px;
  background: #fff;
  padding: 30px 30px 16px;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  margin-bottom: 40px;
}
.meta-icon-row{ display:flex; align-items:center; gap:8px; font-size: 14px!important;}

.result-number {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  font-family: 'Manrope';
}

.result-number.blue {
  color: #0066cc;
}

.result-number.green {
  color: #18a367;
}

.divider-line {
  width: 2px;
  height: 60px;
  background: #ff0000;
  margin: 0 10px;
}

/* Intro Section with Radial Circle Background */
.intro-section {
  position: relative;
}

.intro-section::before {
  content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 222, 200, 0.3) 0%, rgba(255, 222, 200, 0.2) 30%, rgba(255, 222, 200, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    opacity: 0.8;
}
.marketing-card-content h5{
  font-size: 18px;
}
.svg-icon svg{
  transform: rotate(45deg);
  flex-shrink: 0;
}
.we-deliver-container{
  background: #e3e1ff5c;
  border: 2px solid #E1DCFE;
  padding: 10px 0;
  width: 100%;
  border-radius: 16px;
}
.we-deliver-card{
  width: 100%;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.we-deliver-card h3{
  margin-bottom: 15px;
}


/* Home 2 css*/
h1, .hero-headline{
  font-size: 3.4rem;
  line-height: 1.15;
}
.header-wrapper{
    padding: .7rem 0;
    background: #F8F7F4;
    border-bottom: 1px solid #ebebeb;
}
.header-wrapper.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1039;
  background: #F8F7F4;
}
.bg-color{
    background: #F8F7F4;
    position: relative;
    overflow: hidden;
}
.hero-section{
    background: #fff;
    padding: 50px 60px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border: none;
}
.btn-secondary{
  font-family: 'Manrope';
}
.hero-para{
  font-size: 17px;
}
.hero-content{
  width: 650px;
  margin: auto;
}
.gsap-heading span.heading-underline {
  position: relative;
  display: inline-block;
}

.gsap-heading span.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff0073, #554ccd);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease;
  filter: none;
  will-change: transform;
}

.gsap-heading span.heading-underline.animate-underline::after {
  transform: scaleX(1);
}
.fw-400{
  font-weight: 400;
}

/* Home 2 specific styles */

/* Enhanced Hero Section with Gradient Background */
.hero-gradient-section {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 248, 255, 0.9) 25%, 
    rgba(245, 245, 255, 0.85) 50%, 
    rgba(255, 240, 245, 0.9) 75%, 
    rgba(255, 255, 255, 0.95) 100%);
  background-size: 400% 400%;
  animation: heroGradientShift 20s ease infinite;
  overflow: hidden;
}

.hero-gradient-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(173, 216, 230, 0.1) 0%, 
    rgba(221, 160, 221, 0.05) 50%, 
    rgba(255, 182, 193, 0.1) 100%);
  background-size: 200% 200%;
  animation: heroSubtleShift 15s ease infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-section > * {
  position: relative;
  z-index: 2;
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroSubtleShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.img-container{
  position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    transform: translate(50%, 10%);
    pointer-events: none;
}
.img-container-internal{
  position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    transform: translate(50%, 10%);
    pointer-events: none;
}
.img-container-internal img{
  width: 800px;
  height: 800px;
}
.img-container-left{
  position: absolute;
    top: 20%;
    left: 0;
    z-index: 1;
    transform: translate(-50%, 0%);
}
.img-container-left img{
  width: 800px;
  height: 800px;
}
.img-container-center img{
  position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    opacity: .8;
    z-index: 0;
}
.img-container-cta{
  position: absolute;
    bottom: 0;
    left: 50%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, 0%);
    pointer-events: none;
}

/* TE Background Section */
.te-background-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.te-background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  text-shadow: 
    0 0 20px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(0, 0, 0, 0.05),
    0 0 60px rgba(0, 0, 0, 0.03);
  z-index: 1;
  pointer-events: none;
  font-family: 'Manrope';
  letter-spacing: -0.02em;
}

.te-background-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.te-heading {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .te-background-text {
    font-size: 18rem;
  }
  
  .te-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .te-background-section {
    padding: 80px 0;
  }
  
  .te-background-text {
    font-size: 12rem;
  }
  
  .te-heading {
    font-size: 1.8rem;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .te-background-section {
    padding: 60px 0;
  }
  
  .te-background-text {
    font-size: 8rem;
  }
  
  .te-heading {
    font-size: 1.5rem;
    padding: 0 15px;
  }
}
.bg-lightblue{
  background: #D6DAFB;
}
.bg-lightpitch{
  background: #FFEBE0;
}
.bg-lightpurple{
  background: #E6DEFA;
}
.box-layout2-container{
  display: flex;
  flex-direction: row;
  gap: 22px;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
}
.box-layout2-container > * {
  flex: 1;
}
.box-layout-2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  
}
.box-layout-2:hover{
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Different colors for each box-layout-2 */
.box-layout2-container > div:nth-child(1) .box-layout-2 {
  background: #E3F4EC; /* Light green - first box */
}

.box-layout2-container > div:nth-child(2) .box-layout-2:nth-child(1) {
  background: #FFEBE0; /* Light orange - second box */
}

.box-layout2-container > div:nth-child(2) .box-layout-2:nth-child(2) {
  background: #D6DAFB; /* Light blue - third box */
}

.box-layout2-container > div:nth-child(3) .box-layout-2:nth-child(1) {
  background: #E6DEFA; /* Light purple - fourth box */
}

.box-layout2-container > div:nth-child(3) .box-layout-2:nth-child(2) {
  background: #E3F4EC; /* Light green - fifth box */
}

.box-layout-2 h3{
  margin-bottom: 15px;
  position: relative;
  line-height: 1.2; /* reduce inter-line gap */
}

/* Word-by-word underline animation */
.word-underline {
  position: relative;
  display: inline; /* avoid inline-block baseline gaps */
  vertical-align: baseline;
}

.word-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* sit on baseline to avoid adding extra line height */
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  will-change: transform;
}

.word-underline.underline-on::after {
  transform: scaleX(1);
}

/* Sentence underline animation spanning multi-line text */
.sentence-underline {
  line-height: 1.4;
  position: relative;
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px; /* animated */
  background-position: 0 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 0.5s ease;
}

.box-layout-2:hover h3 .sentence-underline {
  background-size: 100% 2px;
}
.icon-composite {
  display: flex;
  align-items: center;
  position: relative;
}
.icon-box{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin-right: -20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box2{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #000;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-left: 12px;
  border: 3px solid #E3F4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box3{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #e0ac90;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-left: 12px;
  border: 3px solid #FFEBE0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box4{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #000000;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-right: -20px;
  border: 3px solid #E3F4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box5{
  background: #FFFFFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-left: 12px;
  border: 3px solid #E3F4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box6{
  background: #e0ac90;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-left: -12px;
  border: 3px solid #E3F4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box7{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #000000;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-right: -20px;
  border: 3px solid #D6DAFB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box8{
  background: #FFFFFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-left: 12px;
  border: 3px solid #D6DAFB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-box{
  position: relative;
}
.tool-boxes{
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 8px -2px;
  flex: 1;
}
.tool-card:hover .tool-img img {
  transform: scale(1.1);
}
.tool-card {
  position: relative;
}

.arrow-button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 50%);
  transform-origin: 50% 50% 0px;
  transition: all 0.3s ease;
}

.arrow-button svg {
  color: #000;
}

.tool-card:hover .arrow-button {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

/* Floating follow button inside case study/tool cards */
.hover-follow-btn{
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-9999px,-9999px);
  padding: 12px 25px;
  border-radius: 999px;
  background: #000000d1;
  color: #fff;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 16px -6px;
  pointer-events: none;
  opacity: 0;
  transition: transform .12s ease-out, opacity .18s ease;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
.tool-card:hover .hover-follow-btn{ opacity: 1; }

/* Related services arrow hover reveal (bottom-up like case study) */
.rm-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
  opacity: 1;
  transform: translate(0,0);
  will-change: transform, opacity;
}

.related-container:hover .rm-arrow {
  animation: rmArrowLaunch .25s ease-out forwards, rmArrowReturn .2s ease-out .5s forwards;
}

@keyframes rmArrowLaunch {
  0% { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(6px,-6px); opacity: 0; }
}

@keyframes rmArrowReturn {
  0% { transform: translate(-6px,6px); opacity: 0; }
  100% { transform: translate(0,0); opacity: 1; }
}

/* Stage that will be pinned */
.stack{ 
  position:relative; 
  height:auto; 
  overflow:visible; 
}
.panel{
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  will-change: transform;
  transform-origin: center top;
}

/* Services1 Section Animation */
.services1-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services1-container {
  position: relative;
  min-height: 100vh;
}

.service1-item {
  background: #fff;
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

/* Background colors for each service item */
.service1-item[data-index="0"] {
  background: #f8f9fa;
}

.service1-item[data-index="1"] {
  background: #fff5f5;
}

.service1-item[data-index="2"] {
  background: #f0f8ff;
}

.service1-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Services1 Section Animation - Simple Box Appear */
.services1-section {
  position: relative;
}

.services1-container {
  position: relative;
}

.service1-item {
  position: relative;
  will-change: transform, opacity;
}
.form-select-sm{
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Manrope';
  background: #000000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
  border-radius: 16px 16px 0 0;
}

.form-select-sm:focus {
  box-shadow: none !important;
  border-color: #666 !important;
  outline: none !important;
}

.form-select-sm option {
  background-color: white !important;
  color: #495057 !important;
}

/* Custom dropdown arrow for black background */
.form-select-sm {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
}

/* Ensure form controls in cards have proper styling */
.form-control {
  background-color: #ffffff !important;
  border: 1px solid #b1b1b1 !important;
  padding: 12px 15px;
  font-size: 15px;
  color: #6c757d;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: #000000 !important;
  outline: none !important;
}

/* Custom dropdown arrow for white background (job form fields) */
select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
}

/* Ensure dropdown arrow is visible on white background */
select.form-control:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
}

.form-design{
  padding: 30px 20px;
}

.form-label{
  color: #000000;
}

/* Calendar Icon Styling */
.contact-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-icon-link:hover {
  transform: scale(1.05);
}

.contact-icon {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
.contact-icon img{
  width: 40px;
  height: 40px;
}
.calendar-icon:hover {
  background: #444444;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.calendar-icon svg {
  color: #ffffff;
}
.book-call-content {
  flex: 1;
}

/* Email Icon Styling */
.email-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.email-icon-link:hover {
  transform: scale(1.05);
}

.email-icon {
  width: 60px;
  height: 60px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.email-icon:hover {
  background: #444444;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.email-icon svg {
  color: #ffffff;
}
.phone-icon-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.phone-icon-link:hover {
  transform: scale(1.05);
}

.phone-icon {
  width: 60px;
  height: 60px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.phone-icon:hover {
  background: #444444;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.phone-icon svg {
  color: #ffffff;
}
.address-icon{
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.address-icon:hover {
  background: #444444;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.address-icon svg {
  color: #ffffff;
}
.address-details{
  display: flex;
  gap: 15px;
}
.address-details svg{
  flex-shrink: 0;
}
.workwithus-form{
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
}
.job-list{
  background: #F8F7F4;
  padding: 0 30px;
  border-radius: 16px;
  margin-top: 40px;
}

.job-list .job-item {
  padding: 30px 0px;
  border-bottom: 1px solid #d1d1d1;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.job-list .job-item:last-child {
  border-bottom: none !important;
}

.job-content {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.job-department {
  font-size: 14px;
  color: #444444;
  display: block;
}

.job-details {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.job-info {
  display: flex;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  font-size: 16px;
  color: #6c757d;
  width: 20px;
}

.info-text {
  color: #444444;
  font-size: 14px;
}

.info-subtext {
  font-size: 14px;
  color: #444444;
}

.jobs-summary-container{
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
}

.career-header-meta span{
  font-size: 14px;
    border: 1px solid #4a4c55;
    border-radius: 16px;
    padding: 3px 12px;
}

/* Dropdown overlap positioning */
.dropdown-overlap-container {
  margin-top: -30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.dropdown-overlap-container .form-select {
  width: 450px;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Manrope';
  border: none;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 16px 15px;
}

.dropdown-overlap-container .form-select:focus {
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
.box-layout3-container{
  display: flex;
  position: relative;
  padding: 30px 40px;
  background: #F8F7F4;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}
.related-container{
  position: relative;
  padding: 30px;
  background: #F8F7F4;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.related-container:hover{
  background: #f1f0ed;
}
.box-layout3-item{
  padding: 40px;
  border-radius: 16px;
  background: #ffffff;
  height: 100%;
}

/* Custom bulleted list styling */
.custom-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}

.custom-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 11px;
  background-image: url('../image/list-decorator.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Keep nested list items normal (use default browser bullets) */
.custom-bullet-list li ul {
  padding-top: 10px;
  padding-bottom: 20px;
}
.custom-bullet-list li li {
  padding-left: 0px;
  list-style: unset;
}
.custom-bullet-list li li::before { content: none; }

.custom-bullet-list li:last-child {
  margin-bottom: 0;
}
.img-box{
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dee2e6;
  padding: 12px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.img-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.work-row2:nth-child(1) .work-card {
  background: #D6DAFB;
}
.work-row2:nth-child(2) .work-card {
  background: #FFEBE0;
}
.work-row2:nth-child(3) .work-card {
  background: #E3F4EC;
}
.work-row2:nth-child(4) .work-card {
  background: #E6DEFA;
}
.work-row2:nth-child(5) .work-card {
  background: #E3F4EC;
}
.work-row2:nth-child(6) .work-card {
  background: #D6DAFB;
}
.work-row2 .work-card:hover{
  box-shadow: none;
  transform: none;
}

/* Scroll Pin Animation Styles */
.scroll-pin-container {
  position: relative;
  min-height: 100vh;
  background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 119px, #ffffff 119px, #e0e0e0 120px);
  background-position: 0 0;
}

.scroll-pin-content {
  position: relative;
  width: 100%;
  text-align: left;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10%;
}

.scroll-heading {
  position: absolute;
  left: 13vw;
  width: 400px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
}

/* Alternate positioning like Yummygum */
.scroll-heading:nth-child(odd) {
  top: 25vh; /* Top position for odd boxes */
}

.scroll-heading:nth-child(even) {
  top: 40vh; /* Bottom position for even boxes */
}

/* Icon positioning classes for scroll-heading boxes */
.scroll-heading .icon-right-bottom {
  position: absolute;
  bottom: -55px;
  right: -15px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: rotate(15deg);
  transition: transform 0.3s ease;
}

.scroll-heading .icon-left-top {
  position: absolute;
  top: -75px;
  left: -15px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: rotate(-15deg);
  transition: transform 0.3s ease;
}

.scroll-heading .icon-left-top-main {
  position: absolute;
  top: -75px;
  left: -15px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  transform: rotate(-15deg);
  transition: transform 0.3s ease;
}

.scroll-heading .icon-right-bottom img,
.scroll-heading .icon-left-top img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Stroke-only text effect like the image */
.stroke-text {
  font-size: 6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #ff0073;
  text-stroke: 2px #ff0073;
  line-height: 1;
  margin: 0;
  font-family: 'Manrope';
}

.pin-heading {
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(255,0,115,0.4);
  line-height: 1.4;
}

.pin-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-family: 'Manrope';
  font-weight: 400;
}

/* About Us Page - What We Believe Section (Same as deliver-container) */
.about-believe-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  margin: 0;
  padding: 0;
  opacity: 0; /* Hide initially to prevent flash */
}

.about-believe-left-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 1;
}

.about-believe-right-section {
  position: relative;
  width: 100%;
  background: #F8F7F4;
  transform: translateX(100%); /* Start off-screen to the right */
  transition: transform 0.2s ease-out;
  z-index: 2;
}

.about-believe-cards-container {
  padding: 4rem 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-believe-card {
  padding: 40px;
    background: #F8F7F4;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    height: 100%;
    transition: box-shadow 0.3s ease;
    will-change: transform, opacity;
}
.about-believe-card:hover{
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 25px;
    transform: translateY(-2px);
}
.about-believe-card .deliver-card-content img{
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
}

.about-believe-card .deliver-card-content h3 {
  margin-bottom: 15px;
}

.about-believe-card .deliver-card-content p {
  margin: 0;
}

/* Ensure Lottie animation is visible */
.about-believe-container .lottie-animation-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-believe-container .lottie-animation {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  display: block;
}

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  color: #111;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 1000;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.12); }

/* Founder Quote Styling */
.founder-quote-container{
  padding: 30px;
    background: #F8F7F4;
    border-radius: 16px;
}
.founder-quote-div{
  padding: 30px;
    background: #FFFFFF;
    border-radius: 16px;
}
.founder-quote {
  position: relative;
  margin-bottom: .5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-pin-container {
    padding: 20px 0;
  }
  
  .scroll-heading {
    padding: 30px;
    max-width: 90%;
  }
  
  .pin-text {
    font-size: 1.1rem;
  }
}

/* Custom hamburger toggler icon */
.navbar-toggler {
  border: none;
  border-radius: 50px;
  background: #e6e6e6;
  padding: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Offcanvas mobile menu: hide Bootstrap default caret and use our SVG */
#mobileMenu .dropdown-toggle::after { display: none !important; }
#mobileMenu .nav-link.dropdown-toggle { display: flex; align-items: center; }

/* Offcanvas close button styled like the mobile menu toggler */
#mobileMenu .offcanvas-close{
  border: none;
  border-radius: 50px;
  background-color: #e6e6e6;
  padding: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
#mobileMenu .offcanvas-close:focus{ box-shadow: none; }
#mobileMenu .offcanvas-close .close-line{
  width: 16px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  position: absolute;
}
#mobileMenu .offcanvas-close .close-line:first-child{ transform: rotate(45deg); }
#mobileMenu .offcanvas-close .close-line:last-child{ transform: rotate(-45deg); }
#mobileMenu .nav-link .dropdown-arrow { transition: transform 0.3s ease; }
#mobileMenu .nav-link[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

/* Make mobile submenu push content down instead of overlaying */
#mobileMenu .dropdown-menu {
  position: static !important;
  float: none;
  transform: none !important;
  display: none;
  width: auto;
  padding: 0;
  border-radius: 0;
  border: none;
  margin-bottom: 10px!important;
}
#mobileMenu .dropdown-menu.show { display: block; }
.services-boxlayout-container1{
  padding: 60px;
  background: #D6DAFB;
  border-radius: 16px;
  overflow: hidden;
}
.services-boxlayout-container2{
  padding: 60px;
  background: #FFEBE0;
  border-radius: 16px;
  overflow: hidden;
}
.services-boxlayout-container3{
  padding: 60px;
  background: #E6DEFA;
  border-radius: 16px;
  overflow: hidden;
}
.services-boxlayout-content{
  width: 800px;
  margin: auto;
}
.svg-container{
  border: 1px solid #888888;
  background: #f5f4f6;
    border-radius: 50%;
    padding: 10px;
}
.services-boxlayout-container h3{
  font-weight: 400;
    line-height: 1.4;
    letter-spacing: .2px;
}
.white-container{
  padding: 40px;
  background: #fff;
  border-radius: 16px;
}
.contact-card{
  background: #fff;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 8px 25px;
}
.form-heading{
  font-size: 17px;
  padding: 20px 30px;
    background: #000000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 16px 16px 0 0;
}
.contact-card form{
  padding: 50px 40px;
}
.location-card{
  position: relative;
    padding: 30px;
    background: #F8F7F4;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}
.success-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
  padding: 18px 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #fbd7df;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 8px 25px;
  transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.success-box p{
  font-size: 15px;
  font-family: 'Manrope';
  font-weight: 500;
  text-decoration: none;
  transition: text-decoration 0s;
}
.success-box:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 25px;
  transform: translateY(-5px);
  text-decoration: none;
}
.about-box-container{
  display: flex;
  position: relative;
  padding: 40px;
  background: #F8F7F4;
  border-radius: 16px;
  overflow: hidden;
}
.joinus-card {
  padding: 40px;
  background: #F8F7F4;
  border-radius: 16px;
  border: 1px solid #dee2e6;
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.joinus-card:hover{
  box-shadow: rgba(0, 0, 0, 0.09) 0px 8px 25px;
}

/* Button arrow animation for joinus-card btn-underline */
.joinus-card .btn-underline svg {
  transition: transform 0.25s ease-out;
}

.joinus-card:hover .btn-underline svg {
  animation: joinusArrowLaunch .25s ease-out forwards, joinusArrowReturn .2s ease-out .5s forwards;
}

@keyframes joinusArrowLaunch {
  0% { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(8px,-8px); opacity: 0; }
}

@keyframes joinusArrowReturn {
  0% { transform: translate(-8px,8px); opacity: 0; }
  100% { transform: translate(0,0); opacity: 1; }
}

.joinus-card-content img{
  width: 65px;
  height: 65px;
  margin-bottom: 30px;
}
.box-layout2-container-whitebg{
  border: 3px solid #F8F7F4!important;
  background: radial-gradient(circle, #F8F7F4 0%, #ffffff 100%)!important;
}
.box-layout2-container-whitebg > div:nth-child(1) .box-layout-2:nth-child(1){
  background: #E3F4EC;
}
.box-layout2-container-whitebg > div:nth-child(1) .box-layout-2:nth-child(2){
  background: #FFEBE0;
}
.box-layout2-container-whitebg > div:nth-child(2) .box-layout-2:nth-child(1){
  background: #D6DAFB;
}
.box-layout2-container-whitebg > div:nth-child(2) .box-layout-2:nth-child(2){
  background: #E6DEFA;
}
.box-layout2-container-whitebg > div:nth-child(2) .box-layout-2:nth-child(3){
  background: #E3F4EC;
}
.box-layout2-container-whitebg > div:nth-child(3) .box-layout-2:nth-child(1){
  background: #FFEBE0;
}
.box-layout2-container-whitebg > div:nth-child(3) .box-layout-2:nth-child(2){
  background: #D6DAFB;
}
.box-layout2-container-whitebg .box-layout-2{
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.casestudy-container{
  position: relative;
    overflow: hidden;
    width: 100%;
}
.casestudy-card{
    background: #F8F7F4;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    z-index: 100;
}
.casestudy-card h2{
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.casestudy-card h3{
  line-height: 1.4;
  margin-bottom: 15px;
}
.result-display{
  display: flex;
  flex-direction: column;
}
.casestudy-result1{
  font-size: 50px;
    color: #39b34a;
    font-weight: 600;
    font-family: 'Manrope';
}
.casestudy-resultpara{
  font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Manrope';
}
.casestudy-result2{
  font-size: 50px;
    color: #6A74D1;
    font-weight: 600;
    font-family: 'Manrope';
}
.casestudy-result3{
  font-size: 50px;
    color: #f79b69;
    font-weight: 600;
    font-family: 'Manrope';
}
.casestudy-result-divider {
  width: 1px;
  height: 80px;
  background-color: #e0e0e0;
  margin: 0 30px;
}
.casestudy-about{
  padding: 40px;
    background: #fff;
    border-radius: 16px;
    height: 100%;
}
.casestudy-viewall{
  background: #f8f7f44f;
    text-align: end;
    padding: 40px 40px 25px;
    border-radius: 0 0 16px 16px;
    border: 1px solid #ebebeb;
    margin-top: -20px;
    z-index: 99;
}
.iti {
  width: 100%;
}