/* @font-face {
    font-family: 'Roca';
    src: local('Roca Two Regular'), local('Roca-Two-Regular'),
        url('RocaTwo-Rg.woff2') format('woff2'),
        url('RocaTwo-Rg.woff') format('woff'),
        url('RocaTwo-Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  } */

@import url("individual.css");
@import url("resource.css");
@import url("about.css");

  :root {
  --font_size: 3.5rem;
  --font-weight: 600;
  --normal-weight: 400;
  --spacing-10: 0.625rem;
  --cardBG-color: #711039;
  --cardBox-color: #FCF3EA;
  --font-color: #FFFFFF;
  --normalFont-color: #FFCABA;
  --proxima-nova: "proxima-nova" !important;
  --roca-two: "roca-two" !important;
  --headerColor: #3E2255;
  --iconColor: #9C1D5D;
}



@import url("scheduleDemo.css");

@import url("calculator.css");


@font-face {
  font-family: "proxima-nova";
  src: url("./proxima-nova/proximanova_black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "proxima-nova";
  src: url("./proxima-nova/fonnts.com-ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "proxima-nova";
  src: url("./proxima-nova/proximanova_bold.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "proxima-nova";
  src: url("./proxima-nova/proximanova_regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "proxima-nova";
  src: url("./proxima-nova/proximanova_light.otf") format("opentype");
  font-weight: 300;
}

/* ROCO TWO */
@font-face {
  font-family: "roca-two";
  src: url("./roco-two/fonnts.com-Roca_Two_Bold.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "roca-two";
  src: url("./roco-two/fonnts.com-Roca_Two_Thin.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "roca-two";
  src: url("./roco-two/RocaTwo-Rg.ttf") format("truetype");
  font-weight: 500;
}
* {
  font-family: var(--proxima-nova);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #FDF8F3;
}
/* Announcement Bar */
.announcement-bar {
  background-color: #E7DAFC;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--proxima-nova);
font-weight: 700;
font-size: 1.125rem;
line-height: 31px;
letter-spacing: 0;
text-align: center;
color: #3E2255;
display: block;
text-decoration: none;

}

.announcement-bar a {
  font-weight: bold;
  color: #3E2255;
  text-decoration: none;
}

/* Hero Section Background */
.hero-section {
  position: relative;
  /* height: 100vh; */
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("./Images/enhanced-image\ \(6\)\ 1.png") no-repeat center top/cover;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

/* Navbar */
.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  margin-top: 0.625rem;
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

/* Gradient BORDER */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; 
  border-radius: 50px;
  background: linear-gradient(180deg, #fcf3ea, #ffcaba);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.logo {
 padding-left: 1rem;
 margin-top: -2px;
}
.logo a{
  display: block;
  text-decoration: none;
}
.logo img{
  max-width: 7.438rem;
  object-fit: contain;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.688rem;
  font-family: var(--proxima-nova);
  text-align: center;
}
.nav-btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--proxima-nova);
}
.mobile-btn {
  display: none;
}

/* Navbar Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.625rem;
  color: white;
  cursor: pointer;
}

/* Hero Content */
.hero-content {
    margin-top: 147px;
    max-width: 783px;
}
.hero-content h1 {
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'roca-two';
    font-size: 3.25rem;
    font-weight: 400;
    letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.125rem;
  line-height: 30px;
  margin-bottom: 1.875rem;
  font-weight: 500;
  color: #fff;
  font-family: var(--proxima-nova);
}

/* Buttons */
.btn-primary {
    background-color: #00BFB3;  
    color: #FFFFFF;
    padding: 0.75rem 1.625rem;
    border-radius: 3.125rem;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    font-family: var(--proxima-nova);
    font-size: 1rem;
    border: 1px solid #00BFB3;
}
.btn-secondary {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.75rem 25px;
    border-radius: 3.125rem;
    text-decoration: none;
    margin-left: 15px;
    font-family: var(--proxima-nova);
    font-size: 1rem;
     display: inline-block;
    font-weight: 700;
}

/* Brand Logos - Horizontal Scrollable */
.brands-container {
  font-family: var(--proxima-nova);
  margin-top: auto;
  /* --- GLASSMORPHISM / BLUR EFFECT --- */

  /* 1. Semi-transparent dark background */
  /* rgba(Red, Green, Blue, Alpha) - 0.4 opacity means 40% visible */
  background-color: rgba(0, 0, 0, 0.1);

  /* 2. Main Filter: This blurs the background image behind this container */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* Required for Safari/Apple browsers */

  /* 3. Internal padding so content doesn't touch the edges */
  padding: 0 5%;

  /* Optional: A very subtle top border for better definition, as seen in the image */
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, #ffcaba, #ffffff) 1;
  display: flex;
  /* --- FULL WIDTH CORRECTION --- */
  /* Since the parent (.hero-section) has 5% padding, this bar would usually be squeezed. 
       Negative margins "pull" it outward to ensure it spans the full screen width. */
  margin-left: -5.5%;
  margin-right: -5.5%;
  width: calc(100% + 11%);
  align-items: center;
  gap: 1rem;
  padding-block: 10px;
}
.trusted-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.563rem;
  letter-spacing: 0;
  display: block;
  margin: 0;
  opacity: 1;
  width: calc(100% * 3.5 / 12);
}
.brands-scroll {
  align-items: center;
  display: flex;
  gap: 2rem;
  overflow-x: auto;  
  white-space: nowrap;
  scrollbar-width: none;  
  width: calc(100% * 8.5 / 12);
}
.brands-scroll::-webkit-scrollbar {
  display: none;  
}
.brands-scroll img {
  height: 1.25rem;
  filter: brightness(0) invert(1); 
  opacity: 1;
  padding-top: 4px;
  width: calc(100px - 0.625rem);
  height: calc(100px - 0.625rem);
  object-fit: contain;
}
.brands-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.brands-scroll:hover .brands-track {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section2 */
/* Stats Section Base Styling */
.stats-section {
  padding: 4.5% 4.5%;
  background-color: #fdf8f3;
}

.stats-container {
  display: flex;
  gap: calc(81px - 3rem);
  background-color: #FFCABA;
  padding: 2.5rem;
  padding-bottom: 0;
  border-radius: 24px;
  justify-content: space-between;
}

/* Left Content Area */
.stats-content {
flex: 1.2;
  padding: 2.5rem;
}

.stats-content h2 {
  font-family: "roca-two";
  font-size: 3.25rem;
  color: #3E2255;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -2px;
}

.stats-content p {
  font-size: 1.25rem;
  color: #5E616A;
  line-height: 1.6;
  letter-spacing: normal;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: var(--proxima-nova);
  font-weight: 500;
  padding-right: 5rem;
}

/* White Calculator Box */
.calculator-box {
  background: white;
  padding: 1.25rem 30px;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--proxima-nova);
  margin-top: 6rem;
  display: none;
}

.newcalculatorBox{
 display: none; 
 /* show only mobile  */
}

.calculator-box span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3E2255;
  line-height: 1.5rem;
  letter-spacing: -1px;
}

.btn-calc {
  background-color: #00bfb3;
  color: white;
  padding: 0.75rem 24px;
  border-radius: 3.125rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Right Cards Container */
.stats-cards {
flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Individual Card Styling */
.card{
  padding: 20px;
  border-radius: 1.25rem 1.25rem 0px 0px;
  margin-top: -3%;
  padding-bottom: 8.5%;
  padding-left: 2rem;
}

.card h3 {
  font-size: 6rem;
  margin-bottom: 0.625rem;
  font-family: "roca-two";
  font-weight: 300;
  line-height: 81px;
  letter-spacing: -4px;
}

.card p {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8125rem;
  font-family: var(--proxima-nova);
  margin-top: 1.125rem;
}

/* Card Colors */
.card-white {
  background-color: #ffffff;
  color: #3e2255;
  margin-top: 0;
}
.card-purple {
  background-color: #e7dafc;
  color: #3e2255;
}
.card-dark {
  background-color: #711039;
  color: #ffcaba;
} /* Deep maroon/purple */

/* Section3 */
/* Features Section Base */
.features-section {
  padding: 4.5% 4.5%;
  background-color: #fdf8f3; /* Light cream */
  text-align: center;
}

.features-header {
  max-width: 87%;
  margin: 0 auto 85px;
}

.features-header h2 {
  font-family: var(--roca-two);
  font-size: 3.25rem;
  font-weight: 700;
  color: #3e2255;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.features-header p {
  color: #5E616A;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.063rem;
  letter-spacing: 0;
  font-family: var(--proxima-nova);
  text-align: center;
}

/* Flex Container */
.features-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  gap: 25px;
  /* align-items: center; */
  text-align: left;
}

/* Image Side */
.features-image {
  /* flex: 1; */
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 697px;
  left: -6%;
  width: calc(100% * 7 / 12);
}

.features-image img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Content Side */
.features-content {
  /* flex: 1; */
  margin-top: 2rem;
   width: calc(100% * 5 / 12);
}

/* Tabs Styling */
.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 30px;
  border-radius: 25px;
  width: fit-content;
  padding: 5px;
  background-color: #f8c3b1;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 3.125rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--proxima-nova);
  letter-spacing: normal;
}

.tab-btn.active {
  background-color: #9C1D5D; /* Dark pink/maroon */
  color: white;
}

.tab-btn:not(.active) {
  /* background-color: #f8c3b1;  */
  color: var(--headerColor);
}

.features-content h3 {
  font-family: var(--proxima-nova);
  font-size: 1.75rem;
  color: #3e2255;
  margin-bottom: 30px;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* Features List with Custom Bullets */
.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  position: relative;
  margin-bottom: 0.625rem;
  padding-left: 2.2rem;
  color: #2d1a47;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.063rem;
  letter-spacing: 0;
  font-family: var(--proxima-nova);
}
.features-list {
  display: none;
}

.features-list.active {
  display: block;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 8px;
  top: 14%;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("./Images/Vector.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-learn {
  display: inline-block;
  padding: 0.75rem 30px;
  border: 1px solid #2d1a47;
  border-radius: 3.125rem;
  color: #2d1a47;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  font-family: var(--proxima-nova);
  font-size: 1rem;
}

.btn-learn:hover {
  background-color: #2d1a47;
  color: white;
}

/* Section4 */
.steps-section {
  background-color: #fdf8f3;
  text-align: center;
  padding: 80px 5%;
}

.steps-header h2 {
  font-family: "roca-two", serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 3.25rem;
  letter-spacing: -2px;
  color: #3e2255;
  margin-bottom: 60px;
  text-align: center;
}

.steps-header h2 span {
  background: linear-gradient(90deg, #9C1D5D 0%, #FAA086 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "roca-two", serif;
}

.wrapModel{
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
}
.steps-container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.step-card {
  flex: 1;
  height: 650px;
  /* width: 387px;  */
  border-radius: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end; /* Text bottom mein lane ke liye */
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.step-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #4A5565 0%, rgba(102, 117, 116, 0.452266) 36.25%, rgba(102, 117, 116, 0) 100%);

}

.step-card:hover {
  transform: translateY(-0.625rem);
}

.step-content {
  padding: 20px;
  text-align: left;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 0;
  top: 40%;
  padding-inline: 2rem;
}

.step-number {
  font-family: var(--proxima-nova);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
}

.step-content h3 {
  font-family: var(--proxima-nova);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0.625rem 0 15px;
  line-height: 2rem;
  letter-spacing: -0.5px;
}

.step-content p {
  font-family: var(--proxima-nova);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 2px;
  letter-spacing: normal;
}

/* Internal Buttons */
.step-btns {
  display: flex;
  gap: 0.625rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.step-btns a{
  font-size: 1rem;
}
.btn-sm-outline {
  padding:0.5rem 1.625rem;
  border: 1px solid white;
  border-radius: 3.125rem;
  color: white;
  font-family: var(--proxima-nova);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.btn-sm-solid {
   padding: 0.75rem 1.625rem;
  background-color: #0bb7ac;
  border-radius: 3.125rem;
  color: white;
  font-family: var(--proxima-nova);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #0bb7ac;
}

/* section5 */
.results-section {
  padding: 6% 5%;
  background-color: #fdf8f3; /* Light cream background */
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-header h2 {
  font-family: "roca-two";
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 3.625rem;
  color: #3e2255;
  letter-spacing: -1.5px;
}

.results-header h2 span {
  color: #a23b5f;
}

.results-header p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0;
  color: #5e616a;
  margin-top: 0.625rem;
}

/* Bento Grid Layout */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
  gap: 1.625rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* Grid Items General Styling */
.grid-item {
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.badge {
  font-family: var(--proxima-nova);
  font-size: 1rem;
  font-weight: 700;
  line-height: 4.125rem;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  display: inline-block;
  color: #3e2255;
  text-align: left;
}

.white {
  font-family: var(--proxima-nova);
  font-size: 1rem;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 0.5px;
  display: inline-block;
  color: #ffffff;
}

/* 1. Team Image Card */
.item-team {
  grid-column: span 2; /* Yeh 2/3 width lega */
  background-image: url("./Images/Rectangle 793.jpg");
  background-size: cover;
  background-position: center;
  height: 431px;
  /* width: 882px; */
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  color: white;
  border-radius: 24px;
  padding: 0px 30px;
  position: relative;
}

.quote-text {
  font-family: "roca-two";
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 3.625rem;
  letter-spacing: -1px;
  position: absolute;
  bottom: 20%;
  width: 80%;
}
.attribution1 {
  font-family: var(--proxima-nova);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 4.125rem;
  letter-spacing: -1px;
  position: absolute;
  bottom: 0;
}

/* .item-overlay {
    padding: 0px 30px;
} */

.badge1 {
  font-family: var(--proxima-nova);
  font-size: 1rem;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 0;
}

/* 2. Stats Card (Pink) */
.item-stats {
  grid-column: span 1;
  background-color: #f8c3b1;
  border-radius: 24px;
  padding: 10% 10%;
  position: relative;
  padding-top: 0;
}

.item-stats h3 {
  font-family: var(--proxima-nova);
  font-size: 6rem;
  font-weight: 700;
  display: flex;
  letter-spacing: -3px;
  line-height: 58px;
  color: #3e2255;
  letter-spacing: -4px;
  margin-top: 100px;
}

.item-stats p {
  font-family: var(--proxima-nova);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 33px;
  display: flex;
  position: absolute;
  bottom: 5%;
  /* width: 81vh; */
  color: #3e2255;
  letter-spacing: -1px;
}

/* 3. Story Card (Lavender) */
.item-story {
  grid-column: span 1;
  background-color: #e6e0f3;
  border-radius: 24px;
  padding: 30px;
}

.item-story h4 {
  font-family: var(--proxima-nova);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 32px;
  color: #3e2255;
  letter-spacing: -1px;
}

.logo-box {
  width: 341.1rem;
  height: 199.94px;
}

.logo-box img {
  border-radius: 1.25rem;
}

/* 4. Main Quote Card (Dark Maroon) */
.item-quote {
  grid-column: span 2;
  background-color: #5d1a3b;
  color: white;
}

.main-quote {
  font-size: 2.625rem;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: -2px;
  font-family: "roca-two", serif;
  color: #ffcaba;
  margin-bottom: 10%;
}

.attribution {
  font-family: var(--proxima-nova);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 66px;
  color: #ffffff;
  margin-top: 1rem;
}

/* Section6 */
.resources-section {
  padding: 5% 5%;
  background-color: #fdf8f3;
  text-align: center;
}

.resources-header {
  margin-bottom: 50px;
}

.sub-heading {
  font-family: var(--proxima-nova);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0;
  line-height: 33px;
  color: #3e2255;
}

.resources-header h2 {
  font-family: "roca-two", serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: -2px;
  color: #3e2255;
}

.resources-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* --- FEATURED CARD --- */
.featured-resource {
  display: flex;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 3rem;
  box-shadow: 0 0.625rem 30px rgba(0, 0, 0, 0.05);
}

.featured-img {
  width: calc(100% * 7.9 / 12);
}

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

.featured-content {
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  width: calc(100% * 4.1/ 12);
}
.featured-md-col{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 3.2rem;
}
/* Meta Data Styling */
.meta-info {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: normal;
  font-family: var(--proxima-nova);
  color: #7b7b7b;
  margin-bottom: 1.25rem;
}

.listen-btn {
  color: #00a71c;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--proxima-nova);
}

.featured-content h3 {
  font-family: var(--proxima-nova);
  font-size: 3rem;
  font-weight: 600;
  line-height: 3rem;
  letter-spacing: -2px;
  color: #3e2255;
  margin-bottom: 24px;
}

.featured-content p {
  color: #606060;
  line-height: 25px;
  margin-bottom: 30px;
  font-family: var(--proxima-nova);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: normal;
}

/* Tags Styling */
.tags {
  display: flex;
  gap: 0.625rem;
  font-family: var(--proxima-nova);
  align-items: flex-end;
}

.tag {
  padding: 5px 15px;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
}

.tag.education {
  border: 1px Solid #6100a7;
  color: #6100a7;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}
.tag.carer {
  border: 1px Solid #e17d60;
  color: #e17d60;
   font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

/* --- BOTTOM GRID --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.resource-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
}

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

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-body h4 {
  font-family: var(--proxima-nova);
  font-size: 28px;
  font-weight: 600;
  line-height: 2rem;
  color: #3e2255;
  margin: 0.625rem 0;
}

.card-body p {
  font-family: var(--proxima-nova);
  font-size: 0.875rem;
  color: #5e616a;
  margin-bottom: 1.25rem;
  line-height: 25px;
  font-weight: 400;
}

/* section7 */
.solutions-section {
  padding: 80px 5%;
  background-color: #fdf8f3; /* Light cream background */
  text-align: center;
}

.solutions-header h2 {
  font-family: "roca-two", serif;
  font-size: 3.25rem;
  color: #3e2255;
  margin-bottom: 3.688rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  letter-spacing: -2px;
}

/* Flex Container */
.solutions-container {
  display: flex;
  gap: 1.25rem;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-inline: 10rem;
}

/* Base Card Style */
.solution-card {
  flex: 1;
  height: 263px; /* Desktop Height */
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding-block: 1.5rem;
}

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

.card-label {
  font-family: var(--proxima-nova);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.75rem;
  letter-spacing: 1px;
  color: #FFCABA;
}
.familyColor{
  color: #3e2255;;
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-content h3 {
  font-family: var(--proxima-nova);
  font-size: 2.063rem;
  font-weight: 600;
 line-height: 38px;
 letter-spacing: -1px;
  margin: 0;
  color: #ffcaba;
}
.card-light > span {
   color: #3e2255;
   font-size: 0.875rem;
   font-weight: 600;
}

.card-light h3 {
  color: #3e2255;
}

/* Arrow Buttons */
.arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  transition: 0.3s;
}

/* Specific Colors - Based on Figma */
.card-dark {
  background-color: #711039; /* Dark Maroon */
  color: #ffcaba;
}
.solutions-container a, p, h2{
  text-decoration: none !important;
}
.btn-peach {
  background-color: #faa086;
  color: #ffffff;
}

.card-light {
  background-color: #faa086; /* Peach */
  color: #3e2255;
}

.btn-dark {
  background-color: #3e2255;
  color: #ffffff;
}

/* Footer */
.main-footer {
  background-color: #ffffff;
  padding: 80px 5% 40px;
  border-top: 1px solid #eee;
  color: #3e2255;
  font-family: var(--proxima-nova);
}

.footer-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 25px;
}

.social-box p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 24px;
  color: #711039;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background-color: #5d1a3b;
  color: white;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.875rem;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Desktop Links */
.footer-links {
  display: flex;
  flex: 1;
  justify-content: space-between;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
  color: #a23b5f; /* Maroon reddish color from Figma */
  text-transform: capitalize;
  font-family: "roca-two", serif;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu li a {
  text-decoration: none;
  color: #3e2255;
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
}

.footer-menu li a:hover {
  opacity: 1;
  color: #a23b5f;
}

.footer-bottom {
  padding-top: 80px;
}
.footer-bottom {
  font-family: var(--proxima-nova);
font-weight: 400;
font-size: 1rem;
line-height: 24px;
letter-spacing: 0px;
color: #711039;

}

/*  Solution Hero Section */
.solutionhero-section {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("./Images/Solution-homeimage.jpg") no-repeat center top / cover;
  position: relative;
  /* height: 100vh; */
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.cassi-diff-section {
  padding: 4.5% 4.5%;
  background-color: #fdf8f3;
  overflow: hidden;
}

/* Header Logic */
.diff-header {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 2.5rem;

}
.header-left{
  width: calc(100% * 5 / 12);
}
.header-right{
  width: calc(100% * 7 / 12);
}
.header-left h2 {
  font-family: "roca-two", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4.5rem;
  letter-spacing: -1px;
  color: #3e2255;
  margin: 0;
}

.header-right p {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 2.063rem;
  letter-spacing: -0.3px;
  color: #3e2255;
}
.hero-btns{
    margin-bottom:16%;
}
 

/* Carousel Layout */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  will-change: transform;
   width: max-content;
}
 
.carousel-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

/* Card General Styling */
.diff-card {
  flex: 0 0 384px; /* Figma Width */
  height: 399px; /* Figma Height */
  border-radius: 1.25rem;
  padding: 30px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-tag {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 0.5rem;
}

.diff-card h3 {
  font-family:var(--proxima-nova);
  font-size: 28px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.6px;
  line-height: 2.25rem;
  z-index: 2;
}

/* Specific Card Variants */
.card-pink {
  background-color: #f8c3b1;
  color: #3e2255;
}
.card-white {
  background-color: #ffffff;
  color: #3e2255;
  border: 1px solid #eee;
}

.card-image-bg,
.card-dark-img {
  background-position: center;
  color: white;
}
.card-image-bg .card-tag{
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.card-image-bg::before,
.card-dark-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(189.96deg, rgba(104, 104, 104, 0.7) 6.05%, rgba(111, 111, 111, 0.5) 28.51%, rgba(26, 26, 26, 0) 100%);

}

.card-img-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.card-img-phone {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}

/* Navigation & Footer */
.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #f8c3b1;
  color: #3e2255;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #faa086;
}

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

.btn-demo {
  background-color: #00bfb3;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 3.125rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: normal;
  cursor: pointer;
}

/* solution section3 */
.how-it-works-section {
  padding: 4.5% 4.5%;
  background-color: #fdf8f3;
  font-family: var(--proxima-nova);
}

.header-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5%;
}

.header-container h2 {
  font-family: "roca-two", serif;
  font-size: 3rem;
  color: #3e2255;
  margin-bottom: 1.25rem;
}

.header-container p {
  color: #5e616a;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* --- MAIN CARD CONTAINER --- */
.step-card-container {
  background-color: #5d1a3b; /* Maroon color */
  border-radius: 1.25rem;
  width: 80%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 60px; /* Padding only on left for content */
}

/* --- LEFT CONTENT SIDE --- */
.step-content-box {
  flex: 1; /* Takes available space */
  padding: 60px 40px 60px 0;
  color: white;
  z-index: 1; /* Ensure content is clickable */
}

.step-label {
  background: white;
  color: #5d1a3b;
  padding: 6px 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 30px;
}

.step-title {
  font-family: "roca-two", serif;
  font-size: 4.2rem;
  line-height: 4.5rem;
  margin-bottom: 25px;
  color: #ffcaba;
}

.step-description {
  font-size: 1.625rem;
  line-height: 2rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: -2%;
}

/* --- RIGHT IMAGE SIDE (OVERLAPPING) --- */
.step-image-box {
  flex: 0 0 55%; /* Fixed width percentage for image part */
  position: relative;
  /* --- THE OVERLAP TRICK --- */
  margin-top: -60px;
  margin-right: -30%;
  margin-bottom: -60px;
  border-radius: 1.25rem;
  overflow: hidden; /* Rounds the image corners */
  /* box-shadow: 1.25rem 1.25rem 60px rgba(0,0,0,0.3); */
  z-index: 2; /* Sits on top of the card */
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- FLOATING OUTCOME CARD --- */
.outcome-card {
  position: absolute;
  overflow: visible;
  z-index: 10;
  margin-top: -190px;
  transform: translateX(0.625rem);

  /* actual background – same as tumhara */
  background: rgba(255, 255, 255, 0.55) !important;
  padding: 25px;
  width: 260px;
  border-radius: 24px;
  /* gradient border */
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.55)
    ),
    linear-gradient(180deg, #ffffff, #faa086);
  color: white;
  box-shadow: 0 0.625rem 30px rgba(0, 0, 0, 0.1);
}

.outcome-title {
  font-weight: 700;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/*  */
/*  */
:root {
  --cassi-maroon: #711039;
  --cassi-peach-bg: #fcf3ea;
  --cassi-dark-text: #3E2255;
  --cassi-light-text: #5e616a;
}
.works-wrapper {
  width: 100%;
}

.works-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.works-main-heading {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 3.625rem;
  letter-spacing:-2px;
  color: var(--cassi-dark-text);
  font-family: var(--roca-two);
  margin-bottom: 0.75rem;
}

.works-sub-text {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1px;
  color: var(--cassi-light-text);
  line-height: 1.6;
}

/* --- JOURNEY CARD --- */
.journey-card {
  background-color: var(--cassi-maroon);
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 60px 80px 60px 60px;
  color: white;
  position: relative;
  /* Important: Overlap allow karne ke liye overflow visible rahega */
  overflow: visible;
  width: 90%;
}

.journey-details {
  flex: 1.3;
  z-index: 2;
}

.journey-step-tag {
  background: white;
  color: var(--cassi-maroon);
  padding: 6px 0.875rem;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25rem;
  border: 1px solid #ffcaba;
}

.journey-intro-line {
  margin-top: 2rem;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  line-height: 43px;
}

.journey-card-heading {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 4.25rem;
  letter-spacing: -2px;
  margin: 15px 0;
  font-family: "roca-two", serif;
  color: #ffcaba;
}

.journey-card-desc {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 40px;
  color: #fff;
  width: 90%;
}

/* Checklist Grid */
.expert-assessment-area {
  width: 90%;
  border-radius: 1.25rem;
  border: 1px solid #ffeee8;
  padding: 3.3%;
  margin-top: 5%;
  background: rgba(255, 225, 225, 0.1);
  box-shadow: 0px 1.25rem 1.25rem -0.625rem rgba(255, 254, 253, 0.1);
}

/* Checklist styling */
.checklist-box {
  border-radius: 1.25rem;
  border: 1px solid #ffeee8;
  padding: .3.3%;
  margin-top: 5%;
  background: rgba(255, 225, 225, 0.1);
  box-shadow: 0px 1.25rem 1.25rem -0.625rem rgba(255, 254, 253, 0.1);
}

.checklist-box h4 {
  font-family: "roca-two", serif;
  font-size: 1.75rem;
  line-height: 2.75rem;
  margin-bottom: 1.25rem;
}

.checklist-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.checklist-grid li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  margin-bottom: 0.625rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.063rem;
  letter-spacing: 0;
  font-family: var(--proxima-nova);

}

.defColor li{
  color: var(--cassi-dark-text);
}

.assessment-title {
  display: flex;
  gap: 0.7rem;
    font-family: var(--roca-two);
    font-size: 28px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.assessment-title .outcome{
 max-width: 32px;
  vertical-align: middle;
}

.check-tick {
  color: #f8c3b1;
  margin-right: 0.5rem;
  font-weight: bold;
}

/* --- VISUAL SIDE (IMAGE) --- */
.journey-visual-side {
  flex: 1;
  position: relative;
  /* Negative margins for the "pop-out" overlap effect */
  margin-right: -250px;
  margin-top: 0px;
}

.journey-img-frame {
  position: relative;
  /* height: 600px; */
  width: 100%;
  overflow: visible;
}

.journey-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  /* box-shadow: 1.25rem 1.25rem 60px rgba(0,0,0,0.2); */
}

/* --- OUTCOME OVERLAY --- */
.journey-outcome-overlay {
  position: absolute;
  bottom: 15%;
  left: -40px; /* Overlaps the maroon card */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  padding: 15px;
  border-radius: 15px;
  width: 345px;
  height: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  z-index: 10;
}

.outcome-tag {
  font-weight: 400;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "roca-two", serif;
  font-size: 1.75rem;
  line-height: 2.75rem;
}

.outcome-text {
     color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.063rem;
    letter-spacing: 0;
    font-family: var(--proxima-nova);
}
 
/* section4 */
.plan-development {
  padding: 4.5% 4.5%;
  background-color: #fdf8f3;
  font-family: var(--proxima-nova);
}

.plan-container {
 width: 100%;
}

/* --- MAIN CARD --- */
.plan-journey-card {
  display: flex;
  align-items: center;
  gap: 0; /* Gap handles via margins for overlap */
  position: relative;
  overflow: visible; /* Essential for outcome overlap */
  gap: 62px;
}

/* --- LEFT IMAGE SIDE --- */
.plan-visual-wrapper {
  flex: 1;
  position: relative;
  z-index: 2;
}

.plan-image-frame {
  position: relative;
  width: 100%;
  height: 700px;
}

.plan-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  /* box-shadow: 15px 15px 40px rgba(0,0,0,0.1); */
}

/* GLASSMORPHISM OUTCOME BOX */
.plan-outcome-box {
  position: absolute;
  bottom: 19.5%;
  right: -60px; /* Overlaps into the text area */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
  border-radius: 15px;
  max-width: 320px;
  color: #fff;
  box-shadow: 0 0.625rem 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.outcome-header {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "roca-two", serif;
}

.outcome-info {
 color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.063rem;
    letter-spacing: 0;
    font-family: var(--proxima-nova);
}

/* --- RIGHT TEXT SIDE --- */
.plan-text-details {
  flex: 1.2;
  padding-left: 2rem; /* Space for image and outcome */
}

.plan-step-badge {
  color: #3E2255;
  border: 1px solid #3E2255;
  padding: 5px 15px;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25rem;
  display: inline-block;
}

.plan-tagline {
  font-size: 2rem;
  font-weight: 600;
  color: #3e2255;
  margin-top: 1.75rem;
  margin-bottom: 0.813rem;
}

.plan-heading {
  font-family: "roca-two", serif; /* Use Roca Two font */
  font-size: 3.25rem;
  font-weight: 700;
  color: #3e2255;
  line-height: 4.5rem;
  margin-bottom: 1rem;
}

.plan-description {
  font-size: 1.625rem;
  color: #5e616a;
  line-height: 38px;
  margin-bottom: 30px;
  letter-spacing: -2%;
  font-weight: 500;
}

/* MAROON BOX INSIDE CONTENT */
.plan-includes-box {
  background-color: var(--cassi-maroon);
  border-radius: 30px;
  padding: 25px;
  color: white;
}

.includes-title {
  margin-bottom: 1.25rem;
  font-size: 28px;
  font-weight: 400;
  line-height: 2.75rem;
  color: #ffffff;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.tick {
  color: #f8c3b1;
  margin-right: 0.5rem;
}

/* Section6 */
/* Container styling */
.support-section {
  background-color: #fdf8f3;
  padding: 4.5% 4.5%;
  max-width: 100%;
  margin: 0;
}

/* The Main Card with Image */
.support-banner-card {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("./Images/solution-section6.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 300px 0px;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  padding-bottom: 71px;
}

.support-content {
  max-width: 62vw;
  color: #ffffff;
}

.support-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--roca-two); /* Use Roca Two font */
  font-size: 3.25rem;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 4.5rem;
  padding: 1rem;
}

.expert-description {
  font-size: 24px;
  font-weight: 400;
  line-height: 37px;
  line-height: 37px;
  margin-bottom: 30px;
  color: #fff !important;
}

.book-demo-btn {
  display: inline-block;
  background-color: #00d2b1; /* Exact color from your screen */
  color: #fff;
  padding: 15px 35px;
  border-radius: 3.125rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  font-size: 1rem;
  border: 1px solid #00d2b1;
}

/* Section7 */
.partnership-section {
  background-color: #fdf8f3;
  padding: 4.5% 4.5%;
  display: flex;
  justify-content: center;
}

.partnership-container {
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Image Side */
.partnership-image-wrapper {
  width: calc(100% * 5.5 / 12);
}

.partnership-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px; /* Rounded corners like in Figma */
  display: block;
}

/* Content Side */
.partnership-content {
 width: calc(100% * 6.5 / 12);
}

.partnership-title {
  font-family: var(--roca-two);
  font-size: 3.25rem;
  color: #3e2255; /* Deep purple/plum color */
  line-height: 3.625rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* Feature List Styling */
.partnership-features {
  border-top: 1px solid #ddd2c4;
}

.feature-item {
  border-bottom: 1px solid #ddd2c4;
  padding: 1rem 0;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.feature-header h3 {
  font-size: 1.5rem;
  color: #3e2255;
  font-weight: 600;
}

.feature-header .icon {
  font-size: 1.25rem;
  color: #3d2b56;
  width: 1.25rem;
}

.feature-details {
  display: none; /* 👈 IMPORTANT */
  padding: 0.625rem 0 0.625rem 2rem;
  font-size: 1.25rem;
  color: #5e616a;
  line-height: 27px;
}

.feature-item.active .feature-details {
  display: block;
}

/* Businesses-section1 */
.businesseshero-section {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("./Images/Businesses_herosection.jpg") no-repeat center top / cover;
  position: relative;
  /* height: 100vh; */
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

/* business section2 */
.impact-section {
  background-color: #fdf8f3;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.impact-container {
  width: 100%;
}

/* --- Header Styles --- */
.impact-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0% 10%;
}

  .impact-title {
    color: #3e2255;
    font-family: var(--roca-two);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 3%;
  }
  .impact-subtitle {
    font-size: 1.25rem;
    line-height: 2.063rem;
    font-weight: 500;
    letter-spacing: 0;
    font-family: var(--proxima-nova);
    color: #5E616A;
  }

/* --- THE ASYMMETRIC GRID --- */
.impact-grid {
  display: grid;
  /* Using a 12-column grid allows for 7/5 splits */
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Grid Spans for Desktop */
.grid-span-7 {
  grid-column: span 7; /* Takes up 7 out of 12 columns (Wider) */
}

.grid-span-5 {
  grid-column: span 5; /* Takes up 5 out of 12 columns (Narrower) */
}

/* --- General Card Styles --- */
.impact-card {
    border-radius: 24px;
    justify-content: end;
    padding: 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-label {
  font-size: 0.875rem;
  font-weight: 600;
line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.big-stat {
  font-family: "roca-two", serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -6px;
  color: #6b2347;
  margin-bottom: 1.25rem;
}

.big-percent2 {
  color: #fff;
  font-family: "roca-two", serif;
  font-size: 2.625rem;
  line-height: 40px;
  margin: 0px;
}

.big-percent1 {
  color: #3e2255;
}

.stat-desc {
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 28px;
  color: #6b2347;
}

/* --- Specific Card Colors & Layouts --- */

/* Card 1: Dark Red (Wide Left) */
.card-dark-red {
  background-color: #7e2239;
}
.card-dark-red .card-label{
font-weight: 400;
font-size: 0.75rem;
line-height: 1rem;
letter-spacing: 0.6px;
color: #FFFFFF;
opacity: 0.8;
}
.card-light-purple .card-label{
font-weight: 400;
font-size: 0.75rem;
line-height: 1rem;
letter-spacing: 0.6px;
color: #6B2347;
opacity: 0.8;
}
.card-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.card-main-text {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: -1px;
  color: #ffcaba;
}
/* CSS Placeholder for Donut Chart */
.donut-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 0.75rem solid rgba(255, 255, 255, 0.3);
  border-top: 0.75rem solid #fff; /* Fake progress */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transform: rotate(-45deg); /* Adjust start position */
}
.donut-placeholder span {
  transform: rotate(45deg); /* Counter-rotate text */
}

/* Card 2: Light Purple (Narrow Right) */
.card-light-purple {
  background-color: #e5d4ef;
  color: #3d2b56; /* Dark text for light bg */
}
.card-light-purple .card-label {
  color: #3d2b56;
}
.line-chart-img {
  width: 100%;
  height: auto;
  margin-top: auto;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* Card 3: Peach (Narrow Left) */
.card-peach {
  background-color: #f7c5b4;
  color: #3d2b56; /* Dark text */
}
.card-peach .card-label {
  color: #3d2b56;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.6px;
  opacity: 0.8;

}
.card-magenta .card-label {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.6px;
   opacity: 0.8;
}

/* Card 4: Magenta (Wide Right) */
.card-magenta {
  background-color: #a8326b;
}
/* CSS Progress Bar */
.progress-container {
  width: 100%;
  height: 0.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 1.25rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background-color: #ffffff;
  border-radius: 1.25rem;
}



/* Businesses-Section3 */
.values-carousel-section {
  background-color: #fdf8f3;
  padding: 4.5% 4.5%;
  overflow: hidden;
}

.values-main-title {
  font-family: var(--roca-two);
  font-size: 3.25rem;
  font-weight: 700;
  color: #3e2255;
  margin-bottom: 50px;
  line-height: 1.1;
  letter-spacing: -2px;
  text-align: center;
}


/* Carousel */
.carousel-outer-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  /* cursor: grab; */

   /* overflow-x: auto; */
  /* scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -ms-overflow-style: none;
  scrollbar-width: none; */
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.value-card-item {
  flex: 0 0 calc((100% - 3rem) / 3); 
  position: relative;
  /* scroll-snap-align: start; */
}
.overlay{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #4A5565 0%, rgba(102, 117, 116, 0.478686) 34.49%, rgba(102, 117, 116, 0) 47.03%);

}
/* Card */
.card-bg-img {
  width: 100%;
  max-width: 742px;
  aspect-ratio: 742 / 416;
  height: auto;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.overlay{

}

.card-text-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
 z-index: 1;
  bottom: 0;
  padding: 28px;
  /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.1)
  );
  background: linear-gradient(to top, #4A5565 12.27%, rgba(102, 117, 116, 0) 100%); */
  color: #fff;
}

.card-text-overlay h3 {
  font-family: "roca-two", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0.625rem;
  line-height: 23pxpx;
  letter-spacing: -2px;
}

.card-text-overlay p {
  font-family: var(--proxima-nova);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -2px;
  letter-spacing: normal;
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 40px;
}

.control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: #ffcaba;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.control-btn:hover {
  background-color: #faa086;
}


/* Businesses Section4 */
.performance-section {
  background-color: #fdf8f3;
  padding: 80px 5% 0px 5%;
}

.performance-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}



/* IMAGE */
.image-wrapper {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  /* height: 978px; */
   width: 100%;
  max-width: 744px;          /* 1920 pe max width */
  aspect-ratio: 744 / 978;  /* exact design ratio */
  height: auto;
}

.performance-image-wrapper{
  width: 100%;
  max-height: 791px;          /* 1920 reference */
  aspect-ratio: 699 / 791;   /* exact image ratio */
  height: auto;
}

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

/* CONTENT */
.performance-title {
  font-family: var(--roca-two);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 3.625rem;
  letter-spacing: -1px;
  color: #3e2255;
  margin-bottom: 24px;
}

.performance-intro {
  font-size: 30px;
  line-height: 2.75rem;
  font-weight: 500;
  color: #4b3a5a;
  margin-bottom: 40px;
}

/* ACCORDION */
.performance-accordion {
  border-top: 1px solid #ddd2c4;
  max-width: 520px;
  margin-bottom: 60px;
}

.acc-item {
  border-bottom: 1px solid #ddd2c4;
  padding: 1.25rem 0;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
}

.acc-header h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -1px;
  color: #3e2255;
}

.acc-icon {
  font-size: 1.25rem;
  color: #3e2255;
  width: 1.25rem;
}

.acc-body {
  display: none;
  padding: 0.75rem 0 0 34px;
  font-size: 0.875rem;
  color: #665c73;
  line-height: 1.6;
}
.acc-body p{
  font-family: var(--proxima-nova);
font-weight: 400;
font-size: 1.25rem;
line-height: 27px;
letter-spacing:  normal;
color: #5E616A;

}

.acc-item.active .acc-body {
  display: block;
}

.acc-item.active .acc-icon {
  content: "-";
}

/* BUTTON */
.demo-btn {
  display: inline-block;
  margin-top: 40px;
  background-color: #0bb7ac;
  color: #fff;
  padding: 0.875rem 28px;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

/* Book a demo */
.demo-section {
  background-color: #70163c; /* Figma Maroon Color */
  padding: 2% 5%;
  width: 100%;
}

.demo-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 5%;
}

/* Left Side Content */
.demo-content {
  width: calc(100% * 6 / 12);
}

.demo-title {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffcaba;
  font-family: "roca-two", serif;
}

.demo-description {
  font-size: 1.5rem;
  line-height: 37px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #fff;
}

.demo-features h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 15px;
  letter-spacing: 0.31px;
  color: #fff;
  font-family: var(--proxima-nova);
}

.demo-features ul {
  list-style: none;
}

.demo-features li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 400;
}

/* Trust Logos */
.demo-trust {
  margin-top: 50px;
}

.demo-trust p {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.31%;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.trust-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  /* opacity: 0.8; */
  font-weight: bold;
  font-size: 0.9rem;
}

/* Right Side Form Card */
.demo-form-card {
  background-color: #fcf3ea; /* Off-white color from Figma */
  color: #3e2255;
  padding: 40px;
  border-radius: 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 width: calc(100% *4.5/12);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-group input, select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #fffafa75;
}

.demo-btn-next {
  width: 100%;
  background-color: #1ec9b2; /* Teal button */
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.demo-btn-next:hover {
  background-color: #17a895;
  transform: translateY(-2px);
}

.bookdemo-desc {
  font-size: 0.875rem;
  margin-bottom: 5%;
  line-height: 1.25rem;
  font-weight: 400;
  color: #969696;
}

/* Individuals section2 */
.individuals-container-desc {
  font-family: var(--proxima-nova);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
  line-height: 2.063rem;
  color: #000000;
  text-align: center;
  padding: 0 13%;
}

/* individual section 3 */
.experts-section {
  background-color: #fdf8f3;
  padding: 100px 0;
  overflow: hidden;
}

.experts-container {
  max-width: 1500px;
  margin: auto;
  padding-left: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* LEFT CONTENT */
.experts-content {
  max-width: 560px;
}

.experts-title {
  font-family: "roca-two", serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #3e2255;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(90deg, #9c1d5d 0%, #faa086 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RIGHT IMAGE */
.experts-image img {
  width: 520px;
  max-width: none;
  transform: translateX(80px);
}

/* individual section 4 */
.pricing-section {
  padding: 80px 1.25rem;
  text-align: center;
}

.pricing-section h1 {
  font-size: 2.063rem;
  color: #3c2454;
  margin-bottom: 40px;
}

/* PRIMARY CARD */
.pricing-primary {
  max-width: 1100px;
  margin: auto;
  background: #6d0f3b; /* ✅ REQUIRED */
  border-radius: 1.25rem;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.25rem;
  color: white;
}

/* LEFT SIDE */
.primary-left {
  padding: 1.625rem;
}

.primary-left h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.primary-left p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* RIGHT SIDE */
.primary-right {
  display: flex;
  flex-direction: row;
  gap: 0.875rem;
  margin: 0.625rem;
}

/* SECONDARY CARDS */
.card.secondary {
  background: #fff1e6;
  color: #3b2a2a;
  border-radius: 0.875rem;
  padding: 1.375rem;
}

.card.secondary h3 {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 1rem;
}

.card.secondary p {
  font-size: 0.875rem;
  margin: 0.75rem 0;
}

/* ICONS */
.icon {
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary .icon {
  background: #6d0f3b;
  color: white;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
}

.features li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #6d0f3b;
  border-radius: 50%;
  margin-top: 6px;
}

/* CTA */
.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #3c2454;
  padding: 0.75rem 1.625rem;
  border-radius: 3.125rem;
  color: #3c2454;
}



/* Resource page */
.resourcehero-section {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("./Images/resources_header.svg") no-repeat center top / cover;
  position: relative;
  /* height: 100vh; */
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

/* section3 */
.testimonial-section {
  background-color: #fdf8f3;
  padding: 60px 5%;
}

.testimonial-card {
  background-color: #711039;
  border-radius: 1.25rem;
  padding: 70px;
  color: #fff;
}

/* Quote */
.testimonial-text {
  font-family: "roca-two", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 61px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -2px;
  opacity: 1;
  transition: opacity 0.6s ease;
  color: #FFCABA;
}

/* Author */
.testimonial-author {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* Footer */
.testimonial-note {
  font-size: 1rem;
  font-weight: 500;
  opacity: 1;
}

 .testimonial-footer {
 /* display: inline-block;
  margin-left: 15rem; */
  text-align: center;
}

 
/* Button */
.testimonial-btn {
  background-color: #00b3a4;
  color: #fff;
  border: none;
  padding: 0.875rem 28px;
  border-radius: 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.testimonial-btn:hover {
  background-color: #009c90;
}


/* Section4 */
.res-model-section {
  padding: 80px 5%;
  text-align: center;
}

/* Title */
.res-model-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: -1px;
  font-weight: 600;
  color: #3b1b54;
  margin-bottom: 45px;
}

.res-model-title span {
  color: #e36c6c;
}

/* Grid */
.res-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.res-model-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 40px rgba(0, 0, 0, 0.15);
  height: 500px;
}

.res-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.res-model-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.1)
  );
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* keeps text at bottom */
  align-items: flex-start;    /* LEFT alignment */
  text-align: left;  
}

/* Step label */
.res-model-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 0.625rem; 
}

/* Heading */
.res-model-overlay h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -2px;
  margin-bottom: 0.75rem;
}

/* Text */
.res-model-overlay p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.625rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .res-model-grid {
    grid-template-columns: 1fr;
  }

  .res-model-title {
    font-size: 2rem;
  }
}

/* section5 */
.partner-section {
  padding: 80px 5%;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

/* Image */
.partner-image img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  transition: opacity 0.3s;
}

/* Tabs */
.tab-buttons {
  display: inline-flex;
  background: #ffd8cc;
  border-radius: 200px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 2rem;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 0.625rem 1.375rem;
  border-radius: 3.125rem;
  font-size: 1.125rem;
  letter-spacing: 0;
  font-weight: 700;
  cursor: pointer;
  color: #5a1e3d;
}

.tab-btn.active {
  background: #9C1D5D;
  color: #fff;
}

/* Content */
.partner-content h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 58px;
  font-family: var(--roca-two);
  color: #3b1b54;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.partner-content ul {
  list-style: none;
  padding: 0;
}

.partner-content li {
  padding: 1rem 0;
  border-bottom: 1px solid #e6d6cc;
}

.partner-content li strong {
  display: block;
  font-size: 1rem;
  color: #3b1b54;
}

.partner-content li p {
  font-size: 0.875rem;
  color: #6b5c70;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .partner-wrapper {
    grid-template-columns: 1fr;
  }
}

/* section7 */
.trust-section {
  padding: 40px 5%;
  background: #fff7f2;
}

.trust-card {
  background: #ffd2c3;
 border-radius: 28px 28px 0 0;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  position: relative;
  overflow: visible;
}

.trust-content h1 {
   font-family: "roca-two", serif;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 58px;
  color: #3b1b54;
  margin-bottom: 1.25rem;
}

.trust-content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: 0;
  color: #5f5166;
  max-width: 460px;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #1fb8a6;
  border: none;
  padding: 0.875rem 28px;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

/* Image */
.trust-image {
  position: relative;
}

.trust-image img {
  width: 97.1%;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-51.5%);
}


/* Bottom Features */
.trust-features {
  background: #7a0f3d;
  border-radius: 0 0 28px 28px;
 margin-top: -30px;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}


.feature {
  color: #fff;
}

.trust-icon img {
  width: 40px;
}

.feature h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 2.75rem;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.trust-icon{
  display: inline-block;
}
.feature p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 30px;
  opacity: 0.9;
}

 

/* Section8 */
.resource-section {
  background: #fff7f2;
  padding: 80px 6%;
  font-family: "Inter", sans-serif;
}

/* Header */
.resource-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.resource-header > div{
  display: flex;
  align-self: flex-end;
}

.eyebrow {
  font-size: 2rem;
  font-weight: 700;
  color: #3E2255;
  line-height: 81px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.resource-header h1 {
   font-family: "roca-two", serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: -1px;
  line-height: 1.2;
   color: #3E2255;
}

/* Button */
.cta-btn {
  background: #1fb8a6;
  border: none;
  padding: 0.875rem 28px;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* Card */
.resource-card {
  background: #ffffff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0.625rem 30px rgba(0, 0, 0, 0.05);
}

/* Image */
.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.resource-content {
  padding: 50px;
}

.meta {
  font-size: 13px;
  color: #7b6f86;
  margin-bottom: 0.875rem;
}

.meta .listen {
  color: #1fb8a6;
  font-weight: 600;
}

/* Title */
.resource-content h2 {
  font-size: 28px;
  color: #3b1b54;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Description */
.resource-content p {
  font-size: 15px;
  color: #5f5166;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Tags */
.tags {
  display: flex;
  gap: 0.75rem;
}

.tag {
  font-size: 0.75rem;
  padding: 6px 0.875rem;
  border-radius: 1.25rem;
  font-weight: 600;
}

.tag.purple {
  color: #6a2cff;
  border: 1px solid #6a2cff;
}

.tag.orange {
  color: #ff6a3d;
  border: 1px solid #ff6a3d;
}


.blog-container {
      background: #f5ebe3;
      padding: 80px 6%;
      min-height: 100vh;
    }

    /* Grid */
    .post-wrapper {
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      /* max-width: 1400px; */
    }

    /* Card */
    .post-item {
      background: #ffffff;
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 4px 0.75rem rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .post-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 0.75rem 30px rgba(0, 0, 0, 0.12);
    }

    /* Image */
    .post-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    /* Content */
    .post-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
    }

    /* Meta */
    .post-info {
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 25px;
      color: #666;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .post-info .audio-label {
       color: #00A71C; 
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .post-info .audio-lable-img {
      width: 100%;
      height: 100%;
    }

    /* Title */
    .post-body h3 {
      font-family:var(--proxima-nova);
      font-size: 28px;
      line-height: 1.3;
      color: #3E2255;
      margin-bottom: 0.625rem;
      font-weight: 600;
      line-height: 2rem;
      letter-spacing: -1px;
      text-align: left;
    }

    /* Description */
    .post-body p {
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 25px;
      color: #5a5a5a;
      line-height: 1.6;
      margin-bottom: 1.25rem;
      flex-grow: 1;
      text-align: left;
    }

    /* Tags */
    .category-list {
      display: flex;
      gap: 0.625rem;
      flex-wrap: wrap;
    }

    .category-badge {
      font-size: 0.875rem;
      padding: 6px 1rem;
      border-radius: 1.25rem;
      font-weight: 700;
      line-height: 1;
      background: transparent;
    }

    .category-badge.style-purple {
      color: #6100A7;
      border: 1.5px solid #6100A7;
    }

    .category-badge.style-orange {
      color: #E17D60;
      border: 1.5px solid #E17D60;
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .post-wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .post-wrapper {
        grid-template-columns: 1fr;
      }
      
      .blog-container {
        padding: 40px 4%;
      }
    }



 /* calculator */
.roi-calc-head {
  background: linear-gradient(135deg, #711039 0%, #9C1D5D 100%);
  padding: 0.625rem 1.25rem;
  min-height: 100vh;
}

.calculator-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.header-section {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-family: 'roca-two';
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #FFCABA;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
  background-color: #690C33;
  padding: 30px;
  border-radius: 1.25rem;
}

.controls-panel {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #711039;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.control-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.control-sublabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -0.5rem;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-display {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.625rem 24px;
  font-size: 15px;
  color: #ffffff;
  width: fit-content;
  text-align: center;
}

.slider-container {
  width: 100%;
  position: relative;
}

.range-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.3);
}

.range-slider::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.3);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.dropdown-select {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 45px;
}

.dropdown-select option {
  background: #6b1a4d;
  color: #ffffff;
}

.results-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  /* background: rgba(255, 255, 255, 0.1); */
  background-color: #711039;
  border-radius: 0.75rem;
  padding: 1.25rem;
  backdrop-filter: blur(0.625rem);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.roi-card {
  background: #FCF3EA;
  color: #1a1a4d;
  border-radius: 0.75rem;
  padding: 28px;
  text-align: center;
  grid-column: 1 / -1;
}

.roi-label {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3E2255;
}

.roi-percentage {
  font-size: 3.25rem;
  font-weight: 700;
  color: #3E2255;
  margin-bottom: 4px;
}

.roi-note {
  font-size: 0.875rem;
  color: #3E2255;
  margin-bottom: 0.875rem;
}

.cta-button {
  padding: 0.875rem;
  background: #1FBCAC;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-button:hover {
  background: #18a092;
}

.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #FFCABA;
}

.info-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.report-preview {
  /* background: #ffffff;
  border-radius: 1rem;
  padding: 30px;
  box-shadow: 0 0.625rem 40px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg); */
}


/* resource schedule demo */
.sch-demo-head {
  background: #f7c5b4;
  padding: 0.625rem 5%;
  min-height: 100vh;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.content-area {
  padding-top: 1.25rem;
}

.main-heading {
  font-size: 3.25rem;
  font-family: var(--roca-two);
  line-height: 1.1;
  letter-spacing: -1px;
  color:#3E2255;
  font-weight: 700;
  margin-bottom: 24px;
}

.description-text {
  font-size: 24px;
  line-height: 37px;
  font-weight: 400;
  color: #3E2255;
  margin-bottom: 1.5rem;
}

.form-container {
  background: #ffffff;
  border-radius: 1rem;
  padding: 40px;
  box-shadow: 0 4px 1.25rem rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #3E2255;
  margin-bottom: 28px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field-group {
  margin-bottom: 1.25rem;
}

.field-label {
  display: block;
  font-size: 0.875rem;
  color: #1a1a4d;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.field-label .required {
  color: #ff4444;
}

.text-input,
.textarea-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fafafa;
}

.text-input:focus,
.textarea-input:focus {
  outline: none;
  border-color: #1fb8a6;
  background: #ffffff;
}

.textarea-input {
  min-height: 100px;
  resize: vertical;
}

.disclaimer-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #969696;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: start;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.checkbox-input {
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1fb8a6;
}

.checkbox-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #4F4E4E;
  line-height: 1.5;
}

.privacy-link {
  color: #711039;
  text-decoration: underline;
}

.privacy-note {
  font-size: 0.875rem;
  font-weight: 400;
  color: #888;
  line-height: 1.6;
  margin-bottom: 24px;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: #0BB7AC;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1.25rem;
}

.submit-button:hover {
  background: #18a092;
}

.phone-contact {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 4px 1.25rem rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.phone-icon {
  font-size: 0.875rem;
}

.phone-text {
  font-size: 0.875rem;
  color: #3E2255;
}

.phone-number {
    font-size: 1.25rem;
  font-weight: 700;
  color: #3E2255;
}


/* privacy section */
.privacy-section{
  padding: 0.625rem 5%;
  /* background: #FFCABA; */
}
.privacy-section > #navbar-placeholder{
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
}
 
.parvicy_policy h1{
    font-family: var(--roca-two);
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 4.5rem;
    letter-spacing: -1px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #3E2255;
}
.parvicy_policy h2{
    font-family: var(--roca-two);
    font-weight: 400;
    font-size: 2.063rem;
    line-height: 30px;
    letter-spacing: -2px;
    margin-top: 1rem;
    color: #3E2255;
    border-bottom: 1px solid #3E2255;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.parvicy_policy h3{
    font-family: var(--proxima-nova);
    font-weight: 400;
    font-size: 1.625rem;
    line-height: 29px;
    letter-spacing: -0.4;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #3E2255;
}
.parvicy_policy strong{
   color: #3E2255;
}
.parvicy_policy p{
    font-family: var(--proxima-nova);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 27px;
    letter-spacing: -0.3px;
    color: #5E616A;
    margin-bottom: 1.5rem;
}
.parvicy_policy ul {
  padding-left: 1.3rem;
}
.parvicy_policy ul li{
  font-family: var(--proxima-nova);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 27px;
    letter-spacing: -0.3px;
    color: #5E616A;
}
.parvicy_policy table{
  width: 100%;
  border: 0;
  border-collapse: collapse;
  border-radius: 1.25rem;
}
.parvicy_policy table tr, th, td{
  border: 1px solid #3E2255;
  padding: 0.5rem 1rem;

}
.parvicy_policy table th{
  text-align: left;
   font-family: var(--proxima-nova);
    font-weight: 600;
    font-size: 1rem;
    line-height: 27px;
    letter-spacing: -0.3px;
     color: #3E2255;
}
.parvicy_policy table td{
  text-align: left;
   font-family: var(--proxima-nova);
    font-weight: 400;
    font-size: 1rem;
    line-height: 27px;
    letter-spacing: -0.3px;
     color: #5E616A;
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-heading {
    font-size: 2.063rem;
  }
   .calculator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-panel {
    grid-template-columns: 1fr;
  }

  .bottom-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .info-content h2 {
    font-size: 2rem;
  }

  .report-preview {
    transform: rotate(0deg);
  }
}

@media (max-width: 600px) {
  .input-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 24px;
  }

  .main-heading {
    font-size: 2rem;
  }
}


/* ---mobile Responsive Design --- */
@media (max-width: 767px) {

   /* Navbar */

  .navbar {
    width: 100%;
    padding: 2% 5%;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-radius: 1.25rem;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    width: 67px;
    height: 23px;
  }

  .desktop-btn {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
  .btn-secondary {
    margin-left: 0;
    text-align: center;
  }

  /* home css  */
  /* section 1 */
  .hero-section {
      object-fit: contain;
      background-position: center center;
    }
  
    .hero-content {
      margin-top: 304px;
      max-width: 100%;
    }
  
    .hero-content h1 {
      font-size: 2rem;
      line-height: 2.063rem;
      letter-spacing: -2px;
      margin-bottom: 0.8rem;
      padding: 0;
    }
  
    .hero-btns {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
  
    .hero-btns a {
      font-size: 0.875rem;
    }
  
    .hero-content p {
      font-size: 1rem;
      line-height: 24px;
      letter-spacing: normal;
    }
  
    .brands-container {
      padding: 0.625rem 0;
      flex-direction: column;
      padding: 1.25rem;
    }
  
    .trusted-text {
      font-size: 0.875rem;
      display: flex;
      justify-content: center;
      width: 100%;
    }
  
    .brands-scroll {
      gap: 1.25rem;
      width: 100%;
    }
  
    .brands-scroll img {
      height: 1.25rem;
    }

    /* home section 2 */

    .stats-section {
      padding: 30px 4%;
    }

    .stats-container {
      border-radius: 0.625rem;
      flex-direction: column;
      padding: 1.5rem;
      padding-bottom: 0;
    }

    .stats-content{
      padding: 0;
    }

    .stats-content h2{
      font-size: 2rem;
      line-height: 2.063rem;
      letter-spacing: -1px;
      margin-bottom: 1.25rem;
    }
    
    .stats-content p{
      font-size: 1rem;
      line-height: 24px;
      letter-spacing: normal;
      margin-bottom: 0;
    }

    .calculator-box {
      flex-direction: column;
      text-align: center;
      display: none;
    }
    .newcalculatorBox{
      display: flex;
      margin-top: 1rem;
      gap: 0.625rem;
    }
    .card{
      padding: 24px 1.25rem;
    }
    .card h3 {
      font-size: 3rem;
      line-height: 60px;
      letter-spacing: -3;
      margin-bottom: 5px;
    }
    .card p {
      font-size: 1rem;
      line-height: 1.25rem;
      letter-spacing: 0;
      margin: 0;
      margin-bottom: 2rem;
    }
    .calculator-box span{
      font-size: 0.875rem;
      line-height: 1.25rem;
      letter-spacing: normal;
    }

    /* home section 3 */
    .features-section {
      padding: 30px calc(4% + 1.5rem);
    }
    .features-header{
      max-width: 100%;
      margin: 0;
    }

    .features-header h2 {
      font-size: 2rem;
      line-height: 33px;
      letter-spacing: -2px;
      font-weight: 400;
      text-align: left;
      margin-top: 0px;
    }

    .features-header p {
      font-size: 1rem;
      line-height: 24px;
      letter-spacing: normal;
      font-weight: 500;
      text-align: left;
      margin-top: 0px;
      margin-bottom: 2.5rem;
    }
  .hero-btns {
    display: flex;
    flex-direction: column;
  }
  /* Section2 */
  .stats-container {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .stats-content h2,
  .stats-content p {
    width: 100%;
  }
  .stats-content {
    order: 1;
  }
  .stats-cards {
    order: 2;
  }
  .calculator-box {
    flex-direction: column;
    text-align: center;
    order: 3;
  }

  .card h3 {
    font-size: 2.25rem;
  }
  .features-container {
    flex-direction: column;
  }
  .features-image {
    width: 100%;
    height: 248px;
    left: 0;
    border-radius: 20px;
  }
  .features-header h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
    margin-top: 0px;
  }
  .features-header p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    margin-top: 0px;
  }
  .features-section {
    padding-top: 0px;
  }

    .features-container {
      flex-direction: column;
      gap: 4px;
    }

    .features-image {
      width: 100%;
      height: 248px;
      left: 0;
      border-radius: 1.25rem;
    }
     .tab-buttons {
      width: 100%;
      margin-bottom: 1.375rem;
     }
    .tab-buttons > button {
      font-size: 0.875rem;
      line-height: 1.25rem;
      letter-spacing: normal;
      width: 100%;
      }
    .features-content h3 {
      font-size: 1.375rem;
      line-height: 28px;
      letter-spacing: normal;
    }
    .features-list{
      margin-bottom: 30px;
    }
    .features-list li{
      font-size: 1rem;
      line-height: 2rem;
      letter-spacing: normal;
    }
    .btn-learn{
      font-size: 0.875rem;
      line-height: 24px;
      letter-spacing: normal;
      text-align: center;
    }


  /* home section 4 */
.steps-section{
  padding: 4.5% 4.5%;
}
.steps-header h2 {
  font-size: 2rem;
  text-align: left;
  line-height: 2.063rem;
  letter-spacing: -2px;
  margin-bottom: 0.875rem;
}
.steps-header span {
  display: inline-block;
}
.step-card{
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  flex: unset;
}
.step-number{
  font-size: 0.875rem;
  line-height: 25px;
  letter-spacing: 1px;
}
.step-content h3 {
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: normal;
  padding-inline-end: 4rem;
}
.step-content p {
  font-size: 0.875rem;
  line-height: 24px;
  letter-spacing: normal;
  padding-inline-end: 2rem;
}
.step-btns a{
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: normal;
}

/* home section 5 */
.results-section{
  padding: 5% 4%;
}
.results-header{
  margin-bottom: 2.063rem;
}
.results-header h2 {
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.03em;
  line-height: 2.063rem;
  letter-spacing: 0em;
}
.results-header p {
  font-size: 1.125rem;
  text-align: left;
  line-height: 24px;
  letter-spacing: normal;
  
}

.results-grid {
display: flex;
flex-direction: column;
  gap: 15px;
}
.item-team,
.item-stats,
.item-story,
.item-quote {
  min-height: auto;
  padding: 30px 1.25rem;
  max-width: 100%;
}
.item-overlay span {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 25px;
  letter-spacing: 1px;
}
.quote-text {
  font-size: 1.625rem;
  line-height: 2rem;
  letter-spacing: -1px;
  bottom: 24%;
}
.attribution1 {
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: normal;
  margin-bottom: 2rem;
  padding-top: 1rem;
}
.attribution1  span{
  display: block;
  margin-top: 0;
  font-size: 1rem;
}

.badge{
  font-size: 0.875rem;
  line-height: 25px;
  letter-spacing: normal;
}
.item-stats h3 {
  font-size: 6rem;
  line-height: 58px;
  letter-spacing: -4px;
  margin-top: 40px;
}
.item-stats p {
  position: static;
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: normal;
  margin-top: 1rem;
  padding-inline-end: 2.2rem;
}
.item-story h4{
  font-size: 28px;
  line-height: 2rem;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}
.main-quote {
  font-size: 1.625rem;
  line-height: 2rem;
  letter-spacing: normal;
  padding-inline-end: 2.5rem;
  margin-bottom: 1rem;
}
.attribution {
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: normal;
  margin-top: 0;
}
.attribution > span{
  display: block;
  margin-top: 3px;
}
.content-header{
 flex-direction: unset;
}
/* home section 6 */
.resources-section{
  padding: 30px 4%;
}
.resources-header{
  margin-bottom: 30px;
  text-align: left;
}
.sub-heading{
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: normal;
}
.resources-header h2 {
  font-size: 2rem;
  line-height: 2.063rem;
  letter-spacing: -1px;
  padding-inline-end: 8.5rem;
}
.featured-img {
  height: auto;
  width: 100%;
}
.featured-content{
  width: 100%;
  padding: 2rem;
}
.meta-info{
  font-size: 0.875rem;
  line-height: 25px;
  letter-spacing: normal;
  margin-bottom: 0.625rem;
}
  .featured-resource {
    flex-direction: column;
    display: none;
  }
.featured-content h3 {
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 0.625rem;
}
.tags > span{
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: normal;
  text-align: center;
}
.post-info{
  font-size: 0.875rem;
  line-height: 25px;
  letter-spacing: normal;
}
.post-body h3{
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: normal;
  font-weight: 600;
}
.post-body p{
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: normal;
  font-weight: 500;
}
.category-list > span{
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: normal;
}


/* home sectioin 7 */
.solutions-section{
  padding: 30px 4%;
}
.solutions-header h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  text-align: left;
  line-height: 2.063rem;
  letter-spacing: -1px;
  font-weight: 400;
}
.card-label{
  font-size: 0.875rem;
  line-height: 2.75rem;
  letter-spacing: 1px;
}
.solution-card {
  height: 280px;  
  padding: 1rem 1.5rem;
  text-align: left;
}

.card-content h3 {
    font-size: 1.375rem;
    letter-spacing: -0.2px;
}



/* individual section */
.trustContainer{
  flex-direction: column;
}







  .cassi-diff-section {
      padding: 60px 1.25rem;
    }
  .diff-card {
    flex: 0 0 85%;
    height: 380px;
  }
  .carousel-nav {
    justify-content: center;
  }
  .journey-card-desc {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
  .journey-intro-line {
    font-size: 1.325rem;
  }
  .assessment-title {
    font-size: 1.678rem;
  }
  .works-main-heading {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2%;
  }
  .works-sub-text {
    text-align: left;
    font-size: 1.125rem;
  }



  .plan-heading {
    font-size: 2rem;
    line-height: 34px;
    margin: 5% 0%;
  }
  .plan-description {
    font-size: 1rem;
    line-height: 24px;
  }

  .plan-tagline {
    margin: 5% 0%;
    font-size: 1.5rem;
  }
 .steps-section{
  padding: 30px 4%;
 }

  /* section4 */
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .features-content p {
    font-size: 1rem;
  }
  /* section5 */
  /* section6 */


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

  .featured-content p {
    font-size: 1rem;
    width: 100%;
  }

  /* Section7 */
  .solutions-container {
    flex-direction: column; /* Mobile stack jaisa screenshot mein hai */
    gap: 1rem;
  }


  .arrow-btn {
    width: 3rem;
    height: 3rem;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: start;
    gap: 40px;
  }
.social-box{
  padding: 5px;
}
  .social-icons {
    justify-content: start;
  }

  .footer-links {
    flex-direction: column;
    width: 100%;
  }

  .footer-column {
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
  }

  .footer-toggle {
    padding: 1.25rem 0;
    margin-bottom: 0 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Arrow icon for accordion */
  .footer-toggle::after {
    content: "+";
    font-size: 1.25rem;
    transition: 0.3s;
  }

  .footer-column.active .footer-toggle::after {
    content: "-";
    transform: rotate(180deg);
  }

  /* Hide menu by default on mobile */
  .footer-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .footer-column.active .footer-menu {
    max-height: 300px; /* Enough height to show all links */
    padding-bottom: 1.25rem;
  }

  .footer-bottom {
    text-align: left;
    padding-inline-end: 10.5rem;
    padding-top: 40px;
  }

  /* Solution-section3 */
  .journey-card {
    width: 100%;
    flex-direction: column;
    padding: 40px 1.25rem;
    overflow: hidden; /* Mobile par safety ke liye clipping */
  }
  .expert-assessment-area {
    width: 100%;
  }
  .desktop-only {
    display: none;
  }

  .how-it-works-section {
    padding: 5%;
  }
  .journey-visual-side {
    order: -1; /* Image text ke upar aayegi */
    margin: 0 0 30px 0;
    width: 100%;
  }
  .journey-card-heading {
    font-size: 2rem;
  }

  .journey-img-frame {
    height: 350px;
  }

  .journey-outcome-overlay {
    left: 1.25rem;
    bottom: 1.25rem;
    width: 80%;
  }

  .assessment-checklist {
    grid-template-columns: 1fr;
  }
  .btn-demo {
    margin-top: 5%;
  }

  .plan-journey-card {
    flex-direction: column;
  }

  .plan-visual-wrapper {
    margin-left: 0;
    width: 100%;
    margin-bottom: 40px;
  }

  .plan-image-frame {
    height: 400px;
  }

  .plan-outcome-box {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 80%;
  }

  .plan-text-details {
    padding-left: 0;
    width: 100%;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  /* section6 */
  .support-heading {
    font-size: 1.8rem;
  }
  .expert-description {
    font-size: 1rem;
    line-height: 1.625rem;
    text-align: left;
  }
  .support-banner-card {
    padding: 50px 1.25rem;
    border-radius: 15px;
  }
  .book-demo-btn {
    width: 100%; /* Mobile par button bada dikhega */
  }
  /* section7 */
  .partnership-container {
    flex-direction: column; /* Stacks image on top, text on bottom */
  }

  .partnership-section {
    padding: 40px 1.25rem;
  }

  .partnership-image-wrapper img {
    border-radius: 1rem;
  }

  .partnership-title {
    font-size: 1.625rem;
    margin-top: 1.25rem;
    margin-bottom: 30px;
  }
  /* business section2  */
  .impact-section {
    padding: 40px 1.25rem;
  }
  .impact-header {
    margin-bottom: 30px;
    text-align: left;
    padding:0px;
  }
  .impact-title {
    font-family: var(--roca-two);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 3%;
  }
  .impact-subtitle {
    font-size: 1.25rem;
    line-height: 2.063rem;
    font-weight: 500;
    letter-spacing: 0;
    font-family: var(--proxima-nova);

  }

 

  /* CHANGE GRID TO SINGLE COLUMN */
  .impact-grid {
    grid-template-columns: 1fr; /* mobile me 1 column */
    gap: 1.25rem;
  }

  /* Adjustments for mobile cards */
  .impact-card {
    padding: 24px;
    min-height: auto; /* Let content define height */
  }
   .card-flex-row{
    flex-direction: column;
  }
  .card-content-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .card-main-text {
    max-width: 100%;
    font-size: 1.675rem;
  }
  .donut-chart {
    align-self: center;
  }
  .big-stat{
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 60px;
  }
  .stat-desc{
    font-size: 1.25rem;
  }

  /* Businesses Section3 */
  .values-carousel-section {
    padding: 40px 0px 40px 1.25rem ;
  }
  .card-text-overlay{
    padding:5%;
  }
  .value-card-item {
    flex: 0 0 85%; /* 1 card dominates, next card slightly visible */
  }
  /* .card-bg-img {
    height: 350px;
  } */
  .values-main-title {
    font-size: 2rem;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    padding-right: 5px;
  }
  .card-text-overlay p {
    font-size: 1rem;
    line-height: 18px;
  }
  .card-text-overlay h3 {
    font-size: 1rem;
    margin-bottom: 0px;
  }

  /* Businesses section4 */
  .performance-section {
    padding: 20px 1.25rem 0px 1.25rem;
    
  }
  .performance-content {
    order: 2;
  }
  .image-wrapper {
    order: 3;
    margin: 20px 0;
  }

  .performance-accordion,
  .cta-button {
    order: 1;
  }
  .performance-title {
    font-size: 2rem;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
  }
  .performance-intro{
    font-size: 1.25rem;
    line-height: 30px;
    margin-bottom:10px;
  }
  .acc-header h3{
    font-size: 1.325rem;
    letter-spacing: 0.03em;
    line-height: 30px;
  }
  .acc-body p{
    font-size: 1.125rem;
  }
  .acc-item{
    padding: 1rem 0;
  }
  .calculator-cta {
    flex-direction: column;
    text-align: center;
  }
  .performance-container {
    display: flex;
    flex-direction: column;
    gap:0px;
  }
  .performance-accordion{
    margin-bottom: 20px;
  }
  /* .performance-image-area img {
    height: 450px;
    width: 80%;
  } */

  /* Businesses section5 */
  .case-study-card {
    flex-direction: column; /* Stacks image on top of text */
    border-radius: 25px;
  }

  .card-image {
    width:auto;
    min-height: auto;
  }
  /* 
    .card-content {
        padding: 30px;
    } */

  .content-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .main-footer{
    padding-top:30px;
  }

  .quote {
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    line-height: 30px;
  }

  .author-name{
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    line-height: 30px;
  }
  .author-title{
     font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .cta-button {
    width: 100%;
    text-align: center;
  }

  /* Book a demo */
  .demo-container {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-form-card {
    max-width: 100%;
    margin-top: 1.25rem;
  }

  .demo-title {
    text-align: left;
  }
  .trust-logos img {
    width: 100%;
  }
  .study-card-content{
    width:auto;
    padding:20px;
  }
  .case-study-container{
    padding:5%;
    border-radius: 0px;
  }
}

/* ---tablate Responsive Design --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .diff-card h3 {
    font-size: 1.325rem;
  }

  /* section6 */
  .support-heading {
    font-size: 2rem;
    line-height: 2.063rem;
    text-align: left;
  }
  .support-banner-card {
    padding: 80px 30px;
  }
  /* section7 */
  .partnership-container {
    gap: 30px;
  }
  .partnership-title {
    font-size: 2rem;
    line-height: 38px;
  }
  .feature-header h3 {
    font-size: 1.125rem;
    line-height: 38px;
  }
  .feature-item.active .feature-details {
    font-size: 1rem;
  }
  /* business section2 */
  .impact-title {
    font-size: 2rem;
    line-height: 38px;
    margin-bottom: 5%;
  }
  .impact-card {
    padding: 30px;
  }
  .big-stat {
    font-size: 3rem;
  }
  .big-percent {
    font-size: 64px;
  }
  .card-main-text {
    font-size: 1rem;
    line-height: 24px;
  }
  .impact-subtitle {
    font-size: 1.125rem;
  }

  /* Businesses Section3 */
  .value-card-item {
    flex: 0 0 65%;
  }
  .values-main-title {
    font-size: 2rem;
    line-height: 38px;
  }

  .diff-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .header-left h2 {
    font-size: 2.063rem;
  }
  .diff-card {
    flex: 0 0 320px;
    height: 350px;
  }

  .hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Keeps content at the bottom */
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;

    /* Darker gradient at the bottom so white text is readable */
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)),
      url("./Images/enhanced-image\ \(6\)\ 1.png");

    padding: 0 24px;
    overflow: hidden;
  }

    .hero-content {
      /* Ensure no extra margins are pushing it up */
      margin-top: 15rem;
      padding-bottom: 1.25rem;
      z-index: 2;
      max-width: 50%;
    }
  
    .logo {
      margin-top: -7px;
    }
  
    .desktop-btn {
      margin-top: 0;
    }
  .navbar{
        padding: 1rem;
    }
    .nav-btn{
        margin-top: 0;
    }
    .hero-content h1 {
      font-size: 38.55px;
      line-height: 1.15;
      margin-bottom: 15px;
      font-weight: 700;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Buttons Stacking */
  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    padding: 15px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 11.86px;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    backdrop-filter: blur(0.625rem);
    color: white;
  }

  .trusted-text {
    font-size: 13.34px;
    opacity: 0.7;
    text-transform: uppercase;
    display: block;
    margin: 0;
    line-height: 18.53px;
    letter-spacing: normal;
    width: calc(100% * 4 / 12);
  }

  .brands-scroll {
    display: flex;
    overflow-x: auto; /* Allows sliding logos if too many */
    gap: 1.25rem;
    align-items: center;
    scrollbar-width: none; /* Hide scrollbar for clean look */
    width: calc(100% * 8 / 12);
    padding-top: 0;
  }

  .brands-scroll img {
    height: 1.25rem;
    filter: brightness(0) invert(1); /* Makes logos white */
  }
}




/* this style apply for all text sizing body and header  */
.headerText-s52-w700{
  font-size: var(--font_size) !important;
  font-family: var(--roca-two) !important;
  font-weight: 700 !important;
  letter-spacing: -2px !important;
  line-height: 3.625rem !important;
  color: #3E2255 !important;
}
.headerText-s52-w700-white{
  font-size: var(--font_size) !important;
  font-family: var(--roca-two) !important;
  font-weight: 700 !important;
  letter-spacing: -2px !important;
  line-height: 3.625rem !important;
  color: #FFFFFF !important;
}
.headerText-s42-w400{
  font-size: 2.625rem !important;
  font-family: var(--roca-two) !important;
  font-weight: 400 !important;
  letter-spacing: -1px !;
  line-height: 3.625rem !;
  color: #3E2255 !;
}

.bodyText-s20-w500 {
  font-family: var(--proxima-nova);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.063rem;
  letter-spacing: 0;
  color: #5E616A;
}
.bodyText-s18-w500 {
  font-family: var(--proxima-nova);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.875rem;
  letter-spacing: 0;
  color: #5E616A;
}
.bodyText-s18-w500-h25 {
  font-family: var(--proxima-nova);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.563rem;
  letter-spacing: 0;
}
.bodyText-s22-w600 {
  font-family: var(--proxima-nova);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.813rem;
  letter-spacing: 0;
}
.bodyText-s24-w600 {
  font-family: var(--proxima-nova);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.063rem;
  letter-spacing: 0;
}
.bodyText-s28-w600 {
  font-family: var(--proxima-nova);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2rem;
  letter-spacing: 0;
}
.bodyText-s18-w700 {
  font-family: var(--proxima-nova);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.563rem;
  letter-spacing: 0;
}
.bodyText-s16-w700 {
    font-family: var(--proxima-nova);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bodyText-s14-w700 {
  font-family: var(--proxima-nova);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
.bodyText-s16-w400 {
  font-family: var(--proxima-nova);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.563rem;
  letter-spacing: 0;
  color: #5E616A;
}
.bodyText-400 {
  font-family: var(--proxima-nova);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.563rem;
  letter-spacing: 0;
  color: #5E616A;
}