/* =====================================================
   ABOUT PAGE – BACKGROUND OVERRIDES ONLY
   (SAFE FINAL OVERRIDE)
===================================================== */

/* Light soft background sections */
.ys-vm-section {
  background: #f8faff !important;
}

/* Neutral gradient sections (soft transition allowed) */
.origin-story-section {
  background: #f8faff !important;
}

/* Technology ecosystem – remove radial contrast */

/* OPTIONAL: subtle separator between sections */
.ys-about-block,
.ys-vm-section,
.ys-values-section,
.ys-eco-section,
.trust-foundation-section,
.origin-story-section {
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.03);
}

/* =========================================================       About us Page      =============================================================== */
/* =====================================================
   ABOUT US – HERO (ALT CLASS & MOTION)
===================================================== */

.ys-about-intro {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-image: linear-gradient(to top, #fcfcfc, #f6f5fa, #eeeff7, #e7e9f5, #dee3f3, #d9e3f4, #d2e2f4, #cce2f4, #c8e6f5, #c6eaf4, #c5eef2, #c7f1ee);
  position: relative;
  overflow: hidden;
}

/* subtle center light */
.ys-about-intro::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
  animation: ysIntroGlow 9s ease-in-out infinite alternate;
}

/* container */
.ys-about-wrap {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.ys-about-title {
  font-size: 3rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 36px;
  opacity: 0;
  animation: ysTitleReveal 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* underline animation */
.ys-about-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg,  #3a86ff, #0090ffe0);
  border-radius: 2px;
  animation: ysLineGrow 0.8s ease forwards 0.4s;
}

/* =====================================================
   TEXT BLOCKS
===================================================== */

.ys-about-copy {
  max-width: 780px;
  margin: 0 auto 20px;
  opacity: 0;
  animation: ysTextLift 0.8s ease forwards;
  animation-delay: 0.35s;
}

.ys-about-copy.muted {
  animation-delay: 0.55s;
}

.ys-about-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #334155;
}

.ys-about-copy.muted .ys-about-desc {
  color: #64748b;
}

/* =====================================================
   KEYFRAMES – DISTINCT MOTION
===================================================== */

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

@keyframes ysLineGrow {
  from {
    width: 0;
  }
  to {
    width: 90px;
  }
}

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

@keyframes ysIntroGlow {
  0% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1.18);
  }
}

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

@media (max-width: 768px) {
  .ys-about-intro {
    min-height: auto;
    padding: 80px 18px;
  }

  .ys-about-title {
    font-size: 2.2rem;
  }

  .ys-about-desc {
    font-size: 1.02rem;
  }
}


/* =====================================================
   ABOUT YUVAASOFT – COMPANY OVERVIEW
===================================================== */


.ys-about-block {
  padding: 60px 0;
  background-color: #eeeeee;
}

.ys-about-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.ys-about-header {
  text-align: center;
  margin-bottom: 40px;
}

.ys-about-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 10px;
}

.ys-about-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.ys-about-heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0f3a76a1, #1988ff);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

/* CONTENT */
.ys-about-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  animation: fadeInSoft 0.7s ease forwards;
}

.ys-about-content p {
  margin-bottom: 22px;
}

/* EMPHASIS LINE */
.ys-about-highlight {
  padding-left: 18px;
  border-left: 4px solid #2563eb;
  color: #0f172a;
  font-weight: 500;
  background: #f8fafc;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =====================================================
   YUVAASOFT – VISION & MISSION (ALT STYLE)
===================================================== */


.ys-vm-section {
  background: #f8faff;
  position: relative;
  overflow: hidden;
}


.ys-vm-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
  position: relative;
}

/* Main H2 */
.ys-vm-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  animation: ysVmTitleReveal 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* Animated underline (split glow line) */
.ys-vm-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #22d3ee);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

.ys-vm-title::before {
  left: 50%;
  animation: ysVmLineLeft 0.8s ease forwards 0.3s;
}


/* Subtitle */
.ys-vm-subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #64748b;
  margin-top: 26px;
  opacity: 0;
  animation: ysVmSubtitleFade 0.7s ease forwards 0.7s;
}

/* =====================================================
   CARD BASE
===================================================== */

.ys-vm-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 40px 36px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: perspective(900px) rotateX(6deg);
}

/* Vision & Mission entry direction */
.ys-vm-vision {
  animation: ysVmRevealLeft 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-vm-mission {
  animation: ysVmRevealRight 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   DIAGONAL LIGHT SWEEP
===================================================== */

.ys-vm-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(37, 99, 235, 0.12),
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.9s ease;
  z-index: 0;
}

.ys-vm-card:hover::before {
  transform: translateX(100%);
}

/* =====================================================
   INNER CONTENT LAYER
===================================================== */

.ys-vm-card > * {
  position: relative;
  z-index: 1;
}

/* =====================================================
   HEADINGS
===================================================== */

.ys-vm-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

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

.ys-vm-text {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #475569;
}

/* =====================================================
   MISSION LIST – TIMELINE STYLE
===================================================== */

.ys-vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ys-vm-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 1.03rem;
  color: #475569;
}

.ys-vm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
  animation: ysPulseDot 2.8s infinite;
}

/* =====================================================
   HOVER – DEPTH ONLY (NO SCALE)
===================================================== */

.ys-vm-card:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-10px);
  transition: transform 0.45s ease;
}

/* =====================================================
   KEYFRAMES – UNIQUE MOTION
===================================================== */

@keyframes ysVmRevealLeft {
  from {
    opacity: 0;
    transform: translateX(-40px) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(0);
  }
}

@keyframes ysVmRevealRight {
  from {
    opacity: 0;
    transform: translateX(40px) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(0);
  }
}

@keyframes ysPulseDot {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.25);
  }
}

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

@keyframes ysVmLineLeft {
  from {
    width: 0;
  }
  to {
    width: 42px;
  }
}

@keyframes ysVmLineRight {
  from {
    width: 0;
  }
  to {
    width: 42px;
  }
}

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

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

@media (max-width: 768px) {
  .ys-vm-heading {
    font-size: 1.7rem;
  }

  .ys-vm-card {
    padding: 30px 26px;
  }
}

@media (max-width: 768px) {
  .ys-vm-title {
    font-size: 2.1rem;
  }

  .ys-vm-header {
    margin-bottom: 50px;
  }

  .ys-vm-subtitle {
    font-size: 1rem;
  }
}


/* =====================================================
   YUVAASOFT – CORE VALUES
===================================================== */

.ys-values-section {
   background: #efefef;
}

/* Header */
.ys-values-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.ys-values-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #22d3ee);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

.ys-values-subtitle {
  font-size: 1.05rem;
  color: #64748b;
}

/* Card */
.ys-value-card {
  height: 100%;
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: ysValueFadeUp 0.7s ease forwards;
}

.ys-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

/* Icon */
.ys-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
}

/* Text */
.ys-value-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.ys-value-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

/* =====================================================
   ANIMATION
===================================================== */

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

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

@media (max-width: 768px) {
  .ys-values-title {
    font-size: 2rem;
  }

  .ys-value-card {
    padding: 28px 24px;
  }
}

/* =====================================================
   YUVAASOFT – TECHNOLOGY ECOSYSTEM (ALT STYLE)
===================================================== */

.ys-eco-section {
  background: radial-gradient( #ffffff );
  position: relative;
  overflow: hidden;
}

/* Header */
.ys-eco-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #020617;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.ys-eco-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #22d3ee);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

.ys-eco-intro {
  font-size: 1.05rem;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
}

/* =====================================================
   CARD DESIGN
===================================================== */

.ys-eco-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  padding: 38px 32px;
  border-radius: 22px;
  text-align: center;
  isolation: isolate;
  box-shadow: 0 15px 40px rgba(2, 6, 23, 0.08);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
  opacity: 0;
}

/* Direction-based entrance */
.col-lg-4:nth-child(1) .ys-eco-card {
  animation: ysSlideLeft 0.9s ease forwards;
}
.col-lg-4:nth-child(2) .ys-eco-card {
  animation: ysSlideUp 0.9s ease forwards 0.15s;
}
.col-lg-4:nth-child(3) .ys-eco-card {
  animation: ysSlideRight 0.9s ease forwards 0.3s;
}

/* Hover depth (NO SCALE) */
.ys-eco-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.18);
}

/* =====================================================
   ANIMATED BORDER TRACE
===================================================== */

.ys-eco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    120deg,
    transparent,
    #2563eb,
    transparent
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

/* =====================================================
   ICON – FLOATING MOTION
===================================================== */

.ys-eco-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  animation: ysFloat 4s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

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

.ys-eco-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 12px;
}

.ys-eco-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
   PURPOSE TEXT
===================================================== */

.ys-eco-purpose {
  font-size: 1.2rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 12px;
  animation: ysFadeReveal 0.8s ease forwards;
}

.ys-eco-summary {
  font-size: 1rem;
  color: #64748b;
  max-width: 860px;
  margin: 0 auto;
}

/* =====================================================
   KEYFRAMES – UNIQUE MOTION
===================================================== */

@keyframes ysSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ysSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes ysFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

@media (max-width: 768px) {
  .ys-eco-title {
    font-size: 2rem;
  }

  .ys-eco-card {
    padding: 30px 26px;
  }
}


/* ========================================================= */
/* TRUST & RESPONSIBILITY SECTION */
/* ========================================================= */

.trust-foundation-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #fbfbfb, #ffffff);
}

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

/* Title */
.trust-foundation-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  position: relative;
  animation: trustFadeUp 0.8s ease forwards;
}

.trust-foundation-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #22d3ee);
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

/* Description */
.trust-foundation-desc {
  font-size: 1.05rem;
  color: #475569;
  max-width: 820px;
  margin: 30px auto 60px;
  line-height: 1.8;
  animation: trustFadeUp 1s ease forwards;
}

/* Pillars */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* Pillar Card */
.trust-pillar {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  animation: trustFadeUp 1.2s ease forwards;
}

/* Hover = confidence lift */
.trust-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  border-color: #99f6e4;
}

/* Icon */
.trust-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

/* Pillar Title */
.trust-pillar h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Pillar Text */
.trust-pillar p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

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

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

  .trust-foundation-desc {
    font-size: 1rem;
  }
}


/* ========================================================= */
/* FOUNDER'S STORY – BRAND ORIGIN */
/* ========================================================= */

.origin-story-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid #e5e7eb;
}

.origin-story-container {
  max-width: 950px;
  margin: 0 auto;
}

/* Title */
.origin-story-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 60px;
  animation: originFadeUp 0.8s ease forwards;
}

.origin-story-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #22d3ee);
  display: block;
  margin: 18px auto 0;
  border-radius: 4px;
}

/* Content Wrapper */
.origin-story-content {
  animation: originFadeUp 1s ease forwards;
}

/* Lead */
.origin-story-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #020617;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Paragraphs */
.origin-story-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Ecosystem List */
.origin-ecosystem-list {
  margin: 40px 0;
  padding-left: 10px;
}

.origin-ecosystem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  animation: originSlideIn 0.8s ease forwards;
}

.origin-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #0f766e, #22d3ee);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.origin-ecosystem-item p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}

/* Vision Highlight */
.origin-story-vision {
  font-size: 1.15rem;
  font-weight: 500;
  color: #0f172a;
  margin: 36px 0 24px;
  line-height: 1.8;
  border-left: 4px solid #22d3ee;
  padding-left: 20px;
  animation: originFadeUp 1.1s ease forwards;
}

/* Closing */
.origin-story-closing {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  animation: originFadeUp 1.2s ease forwards;
}

/* Animations */
@keyframes originFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes originSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .origin-story-lead {
    font-size: 1.1rem;
  }

  .origin-story-text,
  .origin-story-closing {
    font-size: 1rem;
  }
}


/* ========================================================= */
/* FINAL CTA – BUSINESS GROWTH CLOSE */
/* ========================================================= */

.growth-close-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1f6fe5, #2563eb);
  color: #ffffff;
  overflow: hidden;
}


.growth-close-container {
  max-width: 950px;
  margin-left: 180px;
  text-align: left;
  position: relative;
  z-index: 2;
}

/* Title */
.growth-close-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: growthFadeUp 0.8s ease forwards;
  justify-content: left;
  max-width: 100%;
}

/* Description */
.growth-close-desc {
  font-size: 1.1rem;
  color: #dcfce7;
  max-width: 1200px;
  line-height: 1.7;
  animation: growthFadeUp 1s ease forwards;
}

/* Actions */
.growth-close-actions {
  display: flex;
  justify-content: left;
  gap: 20px;
  flex-wrap: wrap;
  animation: growthFadeUp 1.2s ease forwards;
}

/* Primary Button */
.growth-primary-btn {
  padding: 16px 44px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #022c22;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.264);
  transition: all 0.35s ease;
}

.growth-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(170, 170, 170, 0.444);
}

/* Secondary Button */
.growth-secondary-btn {
  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;
}

.growth-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: white;
  transform: translateY(-3px);
}

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

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

  .growth-close-desc {
    font-size: 1rem;
  }
}


/* ============================= */
/* LARGE LAPTOPS (≤1200px) */
/* ============================= */

@media (max-width: 1200px) {
  .growth-close-container {
    margin-left: 80px;
  }
}

/* ============================= */
/* TABLETS (≤992px) */
/* ============================= */

@media (max-width: 992px) {
  .growth-close-container {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .growth-close-actions {
    justify-content: center;
  }

  .growth-close-title {
    font-size: 2.3rem;
  }
}

/* ============================= */
/* MOBILE (≤768px) */
/* ============================= */

@media (max-width: 768px) {
  .growth-close-section {
    padding: 60px 16px;
  }

  .growth-close-title {
    font-size: 2rem;
  }

  .growth-close-desc {
    font-size: 1rem;
  }

  .growth-close-actions {
    flex-direction: column;
    gap: 16px;
  }

  .growth-primary-btn,
  .growth-secondary-btn {
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
}

/* ============================= */
/* SMALL PHONES (≤480px) */
/* ============================= */

@media (max-width: 480px) {
  .growth-close-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .growth-close-desc {
    font-size: 0.95rem;
  }
}
