/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --text-dark: #020617;
  --text-muted: #475569;
  --bg-light: #f8fafc;
}
/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #fcfcfc, #f6f5fa, #eeeff7, #e7e9f5, #dee3f3, #d9e3f4, #d2e2f4, #cce2f4, #c8e6f5, #c6eaf4, #c5eef2, #c7f1ee);
  text-align: center;
}


.hero-container {
  padding: clamp(80px, 8vw, 120px) 0;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2d2f5a; /* Dark color for the text */
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.75;
  color: #6c7c89;
  max-width: 520px;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 33px;
  justify-content: left;
}

.hero-actions .btn {
  min-width: 180px;
  padding: 15px;
  font-size: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  max-width: 120%;
  width: 100%;
  height: auto;
}

.hero-image-wrap img {
  max-width: 150%;
  opacity: 0.85;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 45px 90px rgba(2, 6, 23, 0.25);
}


@media (max-width: 1200px) {
  .hero-image-wrap img {
    max-width: 140%;
  }
}

@media (max-width: 992px) {
  .hero-image-wrap img {
    max-width: 120%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.22);
  }
}

@media (max-width: 768px) {
  .hero-image-wrap img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.2);
  }
}

@media (max-width: 576px) {
  .hero-image-wrap img {
    max-width: 90%;
    opacity: 1;
    border-radius: 6px;
    box-shadow: 0 12px 25px rgba(2, 6, 23, 0.18);
  }
}

@media (max-width: 360px) {
  .hero-image-wrap img {
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(2, 6, 23, 0.15);
  }
}

/* =====================================================
   FLIP TEXT (INHERITS HERO TITLE SIZE)
===================================================== */
.flip {
  position: relative;
  display: inline-block;
  height: 1.25em;
  min-width: 8ch;
  margin: 0 6px;
  perspective: 800px;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}

.flip .step {
  position: absolute;
  inset: 0;
  width: 100%;
  top: 5%;
  left: 0%;
  font-size: inherit;
  font-weight: 700;
  backface-visibility: hidden;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateY(100%) rotateX(-90deg);
  transition:
    transform 0.6s cubic-bezier(.4, 0, .2, 1),
    opacity 0.10s ease;
  -webkit-font-smoothing: antialiased;
}

.flip .step.set {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
  .flip {
    min-width: 7ch; /* Adjust the minimum width for tablets */
    height: 1.2em;  /* Adjust the height for better fit */
  }
  
  .flip .step {
    font-size: inherit;
    font-weight: 700;
    top: auto;
  }

  .hero-actions .btn {
    font-size: 14px;  /* Smaller button text on tablets */
    padding: 12px;    /* Adjust padding for buttons */
  }
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .flip {
    min-width: 6ch; /* Adjust the minimum width for mobile */
    height: 1.1em;  /* Adjust the height for better fit */
  }
  
  .flip .step {
    font-size: inherit;
    font-weight: 700; /* Adjust font size for mobile */
    margin-top: auto;
  }

  .hero-actions .btn {
    font-size: 14px;  /* Smaller button text on mobile */
    padding: 10px;    /* Adjust padding for buttons */
    width: 100%;      /* Make buttons full-width on mobile */
  }
  
  /* Adjust the flip text container for mobile */
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

/* Larger Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .flip {
    min-width: 7ch; /* Adjust for larger mobile screens */
    height: 1.2em;
  }
  
  .flip .step {
    font-size: inherit;
    font-weight: 700;
    top: 0px;
  }

  .hero-actions .btn {
    font-size: 16px;  /* Adjust button font size for larger mobile */
    padding: 14px;    /* Padding adjustment */
    width:20px;
  }
}


/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet & below */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .flip {
    min-width: 7ch;
    height: 1.15em;
  }

  .flip .step {
    width: 100%;
    top: -3px;
    left: 0%;
  }


  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items:center
  }

  .hero-actions .btn {
    width: 50%;
  }

  .hero-visual {
    margin-top: 30px;
  }
}


/* =========================================================
   WHO WE SERVE – BLUE SAAS STYLE (POS IMAGE LOOK)
========================================================= */

.who-serve-section {
  background: #f5f5f5;
  padding: 60px 0;
  color: #4e4e4e;
}

/* Headings */
.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-subtitle {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(78, 78, 78);
}

/* Cards */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Card hover effect */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Card text */
.why-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e6dfb;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .who-serve-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .why-card {
    padding: 26px 22px;
  }
}



/* ========================================================= */
/* CORE VALUE STRIP */
/* ========================================================= */

.core-value-strip {
  position: relative;
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* subtle background accent */
.core-value-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
}

.core-value-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.core-value-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.core-value-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4f65;
  max-width: 720px;
  margin: 0 auto;
}


/* =========================================================
   PRODUCT SHOWCASE – MODERN SAAS STYLE WITH ANIMATION
========================================================= */

.product-showcase-section {
  padding: 90px 0;
  background: #f8faff;
}

/* Title */
.product-showcase-title {
  font-size: 38px;
  font-weight: 700;
  color: #0d1b3d;
  position: relative;
}

/* Product Card */
.product-tile {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(13, 27, 61, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease both;
}

/* Animated top accent */
.product-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  transition: width 0.4s ease;
}

/* Hover Effects */
.product-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(13, 27, 61, 0.15);
}

.product-tile:hover::before {
  width: 100%;
}

/* Card Text */
.product-name {
  font-size: 19px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Button polish */
.product-showcase-section .btn-primary {
  background: linear-gradient(90deg,  #1f6fe5);
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-showcase-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);

}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .product-showcase-title {
    font-size: 28px;
  }

  .product-tile {
    padding: 26px 22px;
  }
}


/* =====================================================
   WHY YUVAASOFT – PREMIUM SAAS DESIGN + ANIMATIONS
===================================================== */

/* ------------------------------
   Section Wrapper
-------------------------------- */
.ys-why-section {
  background: #eeeeee;
  padding: 80px 0;
  animation: ys-section-reveal 1s ease-out both;
}

/* ------------------------------
   Heading
-------------------------------- */
.ys-why-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ys-dark);
  margin-bottom: 60px;
  position: relative;
}

/* underline accent */
.ys-why-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ys-primary), var(--ys-accent));
}

/* ------------------------------
   Cards
-------------------------------- */
.ys-why-card {
  background: var(--ys-card-bg);
  border-radius: var(--ys-radius);
  padding: 38px 30px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ys-card-float 6s ease-in-out infinite;
}

/* floating variation */
.ys-why-card:nth-child(even) {
  animation-delay: 1.5s;
}

/* top gradient line */
.ys-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--ys-primary), var(--ys-accent));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: ys-gradient-move 3s linear infinite;
}

/* hover effect */
.ys-why-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.ys-why-card:hover::before {
  opacity: 1;
}

/* ------------------------------
   Icon
-------------------------------- */
.ys-why-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ys-primary), var(--ys-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  position: relative;
  animation: ys-icon-pulse 3s infinite ease-in-out;
}

/* glow ring */
.ys-why-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 70%);
  opacity: 0;
  animation: ys-glow-orbit 3s infinite ease-in-out;
}

/* ------------------------------
   Card Text
-------------------------------- */
.ys-why-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ys-dark);
  margin-bottom: 12px;
  transition: transform 0.35s ease;
}

.ys-why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ys-muted);
  margin: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* text micro animation */
.ys-why-card:hover h4 {
  transform: translateY(-4px);
}

.ys-why-card:hover p {
  transform: translateY(2px);
}

/* ------------------------------
   Animations
-------------------------------- */
@keyframes ys-section-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ys-card-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes ys-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes ys-glow-orbit {
  0%   { opacity: 0; transform: scale(0.9); }
  50%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(0.9); }
}

@keyframes ys-gradient-move {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ------------------------------
   Responsive
-------------------------------- */
@media (max-width: 768px) {
  .ys-why-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .ys-why-card {
    padding: 32px 24px;
  }
}




/* ========================================================= */
/* BUSINESS IMPACT SECTION */
/* ========================================================= */

.business-impact-section {
  padding: 90px 20px;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

/* soft background glow */
.business-impact-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 450px;
  height: 450px;
  background: r#f8faff;
  border-radius: 50%;
}

/* container */
.impact-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* heading */
.impact-heading {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 50px;
  animation: fadeDown 0.8s ease forwards;
}

/* list */
.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item */
.impact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

/* stagger animation */
.impact-item:nth-child(1) { animation-delay: 0.1s; }
.impact-item:nth-child(2) { animation-delay: 0.2s; }
.impact-item:nth-child(3) { animation-delay: 0.3s; }
.impact-item:nth-child(4) { animation-delay: 0.4s; }
.impact-item:nth-child(5) { animation-delay: 0.5s; }
.impact-item:nth-child(6) { animation-delay: 0.6s; }

/* hover effect */
.impact-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(37,99,235,0.18);
}

/* animated dot */
.impact-dot {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.impact-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,99,235,0.2);
  animation: pulse 1.8s infinite;
}

/* ========================================================= */
/* ANIMATIONS */
/* ========================================================= */

@keyframes slideUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media (max-width: 768px) {
  .impact-heading {
    font-size: 1.8rem;
  }

  .impact-item {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
}


/* ================================
   WHY YUVAASOFT EXISTS – STYLES
================================ */

.existence-section {
  padding: 80px 20px;
  background: #ffffff;
}

.existence-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Title */
.existence-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.existence-title span {
  color: #2563eb;
}

/* Intro */
.existence-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.existence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Shared Card Style */
.existence-problems,
.existence-solution {
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Problem Card */
.existence-problems {
  background: #fff1f2;
  border-left: 6px solid #e11d48;
}

.existence-problems li::marker {
  color: #e11d48;
}

/* Solution Card */
.existence-solution {
  background: #ecfeff;
  border-left: 6px solid #0ea5e9;
}

.existence-solution li::marker {
  color: #0ea5e9;
}

/* Hover Animation */
.existence-problems:hover,
.existence-solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Subtitle */
.existence-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #020617;
}

/* List */
.existence-grid ul {
  padding-left: 18px;
}

.existence-grid li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #334155;
}

/* Footer Statement */
.existence-footer {
  font-size: 18px;
  color: #334155;
  line-height: 1.6;
}

.existence-footer span {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
  .existence-title {
    font-size: 30px;
  }

  .existence-intro {
    font-size: 16px;
  }
}


/* ========================================================= */
/* YUVAASOFT ECOSYSTEM SECTION */
/* ========================================================= */

.ecosystem-hub-section {
  background: #f8faff;
  padding: 80px 20px;
  overflow: hidden;
}

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

/* Heading */
.ecosystem-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  position: relative;
}

.ecosystem-heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 14px auto 0;
  border-radius: 5px;
}

/* Intro Text */
.ecosystem-intro {
  font-size: 1.05rem;
  color: #475569;
  max-width: 760px;
  margin: 25px auto 60px;
  line-height: 1.7;
}

/* Pillar Cards */
.ecosystem-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.ecosystem-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient hover glow */
.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ecosystem-card:hover::before {
  opacity: 1;
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
}

/* Tag */
.ecosystem-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}

/* Card Title */
.ecosystem-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Card Text */
.ecosystem-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Vision Statement */
.ecosystem-vision {
  font-size: 1.1rem;
  color: #334155;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeUp 1s ease forwards;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ecosystem-heading {
    font-size: 2rem;
  }

  .ecosystem-intro {
    font-size: 1rem;
  }
}

/* ========================================================= */
/* GET DEMO – PRIMARY CONVERSION SECTION */
/* ========================================================= */

.demo-conversion-section {
  position: relative;
  padding: 90px 20px;
  background: #eeeeeec1;
  color: #1f6fe5;
  overflow: hidden;
}

/* Decorative Glow */
.demo-conversion-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: #f8faff;
  filter: blur(80px);
}

.demo-conversion-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: #f8faff;
  filter: blur(90px);
}

.demo-conversion-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Heading */
.demo-conversion-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
  animation: demoFadeUp 0.8s ease forwards;
}

/* Description */
.demo-conversion-desc {
  font-size: 1.1rem;
  color: #000000;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: demoFadeUp 1s ease forwards;
}

/* CTA Area */
.demo-action-area {
  margin-bottom: 26px;
}

/* CTA Button */
.demo-primary-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Button Shine */
.demo-primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  color: white;
}

.demo-primary-btn:hover::after {
  left: 100%;
}

.demo-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(56, 189, 248, 0.6);
}

/* Support Line */
.demo-support-text {
  font-size: 0.95rem;
  color: #262626;
  max-width: 650px;
  margin: 0 auto;
  animation: demoFadeUp 1.2s ease forwards;
}

/* Animation */
@keyframes demoFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .demo-conversion-title {
    font-size: 2rem;
  }

  .demo-conversion-desc {
    font-size: 1rem;
  }

  .demo-primary-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}


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

.partner-growth-section {
  padding: 90px 20px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.partner-growth-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.partner-growth-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.partner-growth-title::after {
  content: "";
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 14px auto 0;
  border-radius: 4px;
}

/* Intro */
.partner-growth-intro {
  font-size: 1.05rem;
  color: #475569;
  max-width: 760px;
  margin: 25px auto 55px;
  line-height: 1.7;
}

/* Roles Grid */
.partner-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-bottom: 55px;
}

.partner-role-card {
  background: #f8fafc;
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.partner-role-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
}

/* Icon */
.partner-role-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

/* Role Title */
.partner-role-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Role Description */
.partner-role-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Note */
.partner-growth-note {
  font-size: 1rem;
  color: #334155;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA */
.partner-cta-wrap {
  margin-top: 10px;
}

.partner-cta-btn {
  display: inline-block;
  padding: 15px 42px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.partner-cta-btn:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .partner-growth-title {
    font-size: 2rem;
  }

  .partner-growth-intro {
    font-size: 1rem;
  }
}

/* ========================================================= */
/* CAREERS / TALENT BRANDING SECTION */
/* ========================================================= */

.talent-vision-section {
  padding: 90px 20px;
  background: #f8faff;
  border-top: 1px solid #e5e7eb;
}

.talent-vision-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.talent-vision-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.25;
  animation: talentFadeUp 0.8s ease forwards;
}

.talent-vision-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

/* Description */
.talent-vision-desc {
  font-size: 1.05rem;
  color: #475569;
  max-width: 760px;
  margin: 28px auto 45px;
  line-height: 1.7;
  animation: talentFadeUp 1s ease forwards;
}

/* CTA Wrapper */
.talent-cta-box {
  margin-top: 10px;
  animation: talentFadeUp 1.2s ease forwards;
}

/* CTA Button */
.talent-cta-btn {
  display: inline-block;
  padding: 15px 42px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle shine effect */
.talent-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s ease;
}

.talent-cta-btn:hover::after {
  left: 100%;
}

.talent-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.55);
  color: #ffffff;
}

/* Animation */
@keyframes talentFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .talent-vision-title {
    font-size: 2rem;
  }

  .talent-vision-desc {
    font-size: 1rem;
  }

  .talent-cta-btn {
    padding: 14px 34px;
    font-size: 1rem;
  }
}
/* ========================================================= */
/* FINAL CTA – UPDATED BACKGROUND COLOR */
/* ========================================================= */

.closing-impact-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1f6fe5);
  color: #ffffff;
  overflow: hidden;

  /* HubSpot-style vertical centering */
  display: flex;
  align-items: center;
}

/* Soft Glow Effects */
.closing-impact-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 150, 255, 0.35), transparent 70%);
  filter: blur(90px);
}

.closing-impact-section::after {
  content: "";
  position: absolute;
  bottom: -35%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
  filter: blur(100px);
}

/* Container */
.closing-impact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left; /* KEY FIX */
  position: relative;
  z-index: 2;
}

/* Title */
.closing-impact-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 1200px;
}

/* Description */
.closing-impact-desc {
  font-size: 1.1rem;
  color: #d1fae5;
  max-width: 620px;
  margin: 0 0 45px 0; /* remove auto-centering */
  line-height: 1.7;
}

/* Buttons */
.closing-impact-actions {
  display: flex;
  justify-content: flex-start; /* KEY FIX */
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.closing-primary-action {
  padding: 16px 44px;
  background: #ffffff;
  color: #1f6fe5;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 45px #1f6fe5;
  transition: all 0.35s ease;
}

.closing-primary-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px #1f6fe5;
}

/* Secondary Button */
.closing-secondary-action {
  padding: 16px 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.closing-secondary-action:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #22d3ee;
  color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .closing-impact-title {
    font-size: 2.1rem;
  }

  .closing-impact-desc {
    font-size: 1rem;
  }

  /* Center on mobile like HubSpot */
  .closing-impact-container {
    text-align: center;
  }

  .closing-impact-actions {
    justify-content: center;
  }
}


/* WHATSAPP */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}