/* === GLOBAL FLUID LAYOUT SYSTEM (SAME AS HOME) === */
:root {
  --space-xs: clamp(8px, 1vw, 14px);
  --space-sm: clamp(14px, 2vw, 24px);
  --space-md: clamp(28px, 4vw, 60px);
  --space-lg: clamp(48px, 7vw, 120px);

  --title-xl: clamp(28px, 5vw, 44px);
  --title-lg: clamp(24px, 4vw, 36px);
  --text-md: clamp(14px, 1.3vw, 16px);
}


* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Master width control */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* Full-bleed section wrapper */
.full-width {
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

 
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}



body {
  background:
    radial-gradient(circle at top left, #1b335f 0%, #050a14 55%),
    radial-gradient(circle at bottom right, #7a3a10 0%, #050a14 60%);
  background-attachment: fixed;
}


/* ================================
   ABOUT HERO / ABOUT WINDOW
================================ */

.about-hero {
  background: transparent;
  
  color: #ffffff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}

/* ---------- LEFT CONTENT ---------- */

.about-hero-content .section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 16px;
}

.about-hero-content h2 {
  font-size: var(--title-xl);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 620px;
}



.about-hero-content p {
  font-size: var(--text-md);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 580px;
  margin-bottom: 22px;
}

/* subtle credibility line (optional) */
.about-hero-content p:last-of-type {
  margin-bottom: 0;
}

/* ---------- RIGHT IMAGE ---------- */

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@media (hover: hover) {
  .about-hero-image img:hover {
    transform: scale(1.03);
  }
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 900px) {
  .about-hero {
    padding: 90px 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-content {
    text-align: center;
  }

  .about-hero-content h2 {
    font-size: 32px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  
}

@media (max-width: 600px) {
  .about-hero {
    padding: 72px 0;
  }

  .about-hero-content h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-hero-content p {
    font-size: 15px;
  }
}

/* ================================
   ABOUT PAGE – CTA BUTTON (POLISHED)
================================ */

.about-cta .btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  overflow: hidden;
  transition: 
    background 0.35s ease,
    color 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
    margin-top: 28px;
}

/* Arrow (pseudo-element) */
.about-cta .btn-outline::after {
  content: "→";
  font-size: 16px;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* HOVER */
.about-cta .btn-outline:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

/* Arrow animation on hover */
.about-cta .btn-outline:hover::after {
  transform: translateX(0);
  opacity: 1;
}

/* Mobile polish */
@media (max-width: 900px) {
  .about-cta {
    text-align: center;
  }
}


/* ================================
   WHAT VINDRU MEANS – OVAL CARDS
================================ */
/* ================================
   WHAT VINDRU MEANS
================================ */
/* ================================
   WHAT VINDRU MEANS
================================ */

.about-vision-mission {
  background: transparent;
   /* 🔥 reduced bottom padding */
  text-align: center;
}


/* SECTION HEADING */
.section-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}



/* GRID */
.vision-mission-grid {
  display: flex;
  justify-content: space-between;   /* 🔥 spread across full width */
  align-items: flex-start;          /* 🔥 allows vertical staggering */
  width: 100%;
  margin-top: 120px;                /* 🔥 pulls cards closer to heading */
}

/* OVAL CARD */
.vm-card {
 width: clamp(240px, 20vw, 300px);
  min-height: clamp(340px, 38vw, 420px);
  background: #ffffff;
  border-radius: 999px;
  padding: 56px 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.5s ease;
}

/* ORANGE HOVER LAYER */
.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f97316, #ff9f4a);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.vm-card * {
  position: relative;
  z-index: 1;
}

/* ICON / IMAGE */
.vm-illustration {
   width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  margin-bottom: 18px;
}

.vm-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* TITLE */
.vm-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  transition: color 0.45s ease;
}

/* TEXT */
.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  transition: color 0.45s ease;
}

/* HOVER EFFECT */
.vm-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 55px 130px rgba(0,0,0,0.45);
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-card:hover h3,
.vm-card:hover p {
  color: #ffffff;
}

.vm-card:hover .vm-illustration img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* ================================
   STRONG STAGGERED POSITIONING 🔥
================================ */

/* LEFT — Our Vision */
.vm-card:nth-child(1) {
  transform: translateY(-120px);
}

/* CENTER — Our Mission (compact & grounded) */
.vm-card:nth-child(2) {
  transform: translateY(0);
  max-width: 300px;
}

/* RIGHT — Our Brand Statement */
.vm-card:nth-child(3) {
  transform: translateY(-120px);
}



/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .vision-mission-grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-top: 48px;
  }

  .vm-card {
    transform: translateY(0) !important;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 30px;
  }

  .vm-card {
    width: 100%;
    max-width: 320px;
    min-height: 360px;
    padding: 48px 28px;
  }
}

/* CONTAINER SPACING */





/* ================================
   WHY VINDRU (DARK PREMIUM)
================================ */
.about-why {
  background: transparent;
  
  position: relative;              /* NEW */
  overflow: hidden;                /* NEW */
}

/* LEFT BACKGROUND VISUAL FILL */
.about-why::before {
  content: "";
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04) 40%,
    transparent 70%
  );
  filter: blur(2px);
  z-index: 0;
}

/* KEEP CONTENT ABOVE BACKGROUND */
.about-why > .container {
  position: relative;              /* NEW */
  z-index: 1;                      /* NEW */
}

/* ================================
   LAYOUT
================================ */

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================================
   LEFT VISUAL
================================ */

.why-visual {
  display: flex;
  justify-content: center;
}

.why-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
}

/* ================================
   RIGHT CONTENT
================================ */

.why-content h2 {
  font-size: var(--title-lg);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}



/* ================================
   WHY ITEM
================================ */

.why-item {
  padding-left: 28px;
  margin-bottom: 40px;
  position: relative;
}

/* ORANGE BAR */
.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #ff9f4a);
  border-radius: 4px;
  transition: height 0.3s ease;
}

/* TITLE */
.why-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* TEXT */
.why-item p {
  font-size: var(--text-md);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 480px;
}

/* SUBTLE HOVER */
.why-item:hover::before {
  height: 120%;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    display: flex;
    flex-direction: column-reverse;
  }

  .about-why::before {
    left: 50%;
    top: -200px;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
  }

  .why-content {
    text-align: center;
  }

  .why-item {
    padding-left: 0;
    padding-top: 18px;
  }

  .why-item::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
  }
}

@media (max-width: 600px) {
  .about-why {
    padding: 80px 0;
  }

  .why-content h2 {
    font-size: 30px;
  }

  .why-item h3 {
    font-size: 20px;
  }

  .why-item p {
    font-size: 14.5px;
  }
}





/* ================================
   UNIQUE VALUE – OPTION 1 (SAFE)
================================ */

.unique-value {
  background: transparent;
  
  overflow: hidden;
  position: relative;
}

/* MAIN WRAPPER */
.uv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

/* =====================
   LEFT BIG CIRCLE
===================== */

.uv-left {
  display: flex;
  justify-content: flex-start;
}

.uv-main-circle {
  width: clamp(260px, 40vw, 460px);
  height: clamp(260px, 40vw, 460px);
  height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 60px 160px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: breathe 8s ease-in-out infinite;
}

.uv-main-content {
  text-align: center;
  padding: clamp(20px, 4vw, 56px);
}

.uv-main-image {
  width: 120px;  
  height: 120px;            /* smaller */
  margin: 0 auto 14px;      /* centered & closer to title */
  display: block;
  opacity: 2;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}




.uv-main-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}



.uv-main-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* =====================
   RIGHT FLOATING PILLS
===================== */

.uv-float-area {
  transform: translateX(60px);
  margin-left: 100px;
}

.uv-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* PILL STYLE */
.uv-pill {
  width: clamp(240px, 28vw, 320px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 26px 30px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatSoft 10s ease-in-out infinite;
}

.uv-pill h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.uv-pill p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #cbd5e1;
}

.uv-wrapper {
  gap: var(--space-lg); /* was 80px */
}

.uv-pill {
  width: 300px; /* was 320px */
}

.uv-float-area{
    transform: translateX(20px);
}

/* STAGGERED POSITIONS (FAKE RADIAL) */
.p1 { margin-left: 0; animation-duration: 9s; }
.p2 { margin-left: 80px; animation-duration: 11s; }
.p3 { margin-left: 40px; animation-duration: 13s; }
.p4 { margin-left: 120px; animation-duration: 10s; }
.p5 { margin-left: 60px; animation-duration: 12s; }

/* HOVER */
.uv-pill:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 60px 140px rgba(0,0,0,0.5);
  animation-play-state: paused;
}

/* =====================
   MOTION
===================== */

@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes breathe {
  0%   { box-shadow: 0 60px 160px rgba(0,0,0,0.45); }
  50%  { box-shadow: 0 80px 200px rgba(0,0,0,0.6); }
  100% { box-shadow: 0 60px 160px rgba(0,0,0,0.45); }
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1000px) {
  .uv-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .uv-left {
    justify-content: center;
  }

  .uv-right {
    align-items: center;
  }

  .uv-pill {
    margin-left: 0 !important;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .uv-main-circle {
    width: 320px;
    height: 320px;
  }

  .uv-main-content h2 {
    font-size: 26px;
  }
}

/* ================================
   RIGHT SIDE KEYWORD RAIL
================================ */
/* ================================
   RIGHT SPACE FILLER – VALUE RAIL
================================ */

.value-rail {
  position: absolute;
  right: 40px;              /* pulls it into the free space */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 26px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* TEXT */
.value-rail span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* SUBTLE FLOAT */
@keyframes railFloat {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-52%) translateX(8px); }
  100% { transform: translateY(-50%) translateX(0); }
}

.value-rail {
  animation: railFloat 9s ease-in-out infinite;
}

/* HIDE ON MOBILE */
@media (max-width: 1100px) {
  .value-rail {
    display: none;
  }
}

/* ================================
   RESPONSIVE SAFETY
================================ */

@media (max-width: 1100px) {
  .value-rail {
    display: none;
  }
}

@media (max-width: 600px) {
  .uv-main-circle {
    width: 280px;
    height: 280px;
  }

  .uv-main-content {
    padding: 32px;
  }

  .uv-main-content h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .uv-main-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .uv-float-area {
    margin-top: 36px;      /* creates separation */
  }

  .uv-right {
    gap: 20px;             /* tighter pills spacing */
  }
}

@media (max-width: 600px) {
  .uv-main-circle {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .uv-main-circle {
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }
}







/* ================================
   GLOBAL MOBILE IMPROVEMENTS
================================ */
@media (max-width: 900px) {
  body {
    font-size: 15px;
    overflow-x: hidden;
  }

  .container {
    padding: 0 32px;
  }
}

/* ================================
   ABOUT HERO MOBILE
================================ */
@media (max-width: 900px) {
  .about-hero {
    padding: 80px 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .about-hero-content h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .about-hero-content p {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto;
  }

  .about-hero-image img {
    width: 90%;
    border-radius: 14px;
  }
}

@media (max-width: 600px) {
  .about-hero-content h2 {
    font-size: 26px;
  }

  .about-hero-content p {
    font-size: 14.5px;
  }
}

/* ================================
   WHAT VINDRU MEANS – OVAL CARDS
================================ */
@media (max-width: 900px) {
  .vision-mission-grid {
    flex-direction: column;
    gap: 40px;
  }

  .vm-card {
    width: 100%;
    max-width: 340px;
    min-height: 340px;
    transform: translateY(0) !important;
  }

  .vm-card h3 {
    font-size: 20px;
  }

  .vm-card p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 28px;
  }

  .vm-card {
    padding: 36px 24px;
  }
}

/* ================================
   WHY VINDRU
================================ */
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-why::before {
    width: 420px;
    height: 420px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
  }

  .why-content {
    text-align: center;
  }

  .why-item {
    padding: 0;
    padding-top: 18px;
  }

  .why-item::before {
    left: 50%;
    top: 0;
    width: 60px;
    height: 4px;
    transform: translateX(-50%);
  }

  .why-item h3 {
    font-size: 20px;
  }

  .why-item p {
    font-size: 14.5px;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about-why {
    padding: 72px 0;
  }

  .why-content h2 {
    font-size: 28px;
  }
}

/* ================================
   UNIQUE VALUE SECTION (UV)
================================ */
@media (max-width: 1000px) {
  .uv-wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .uv-left {
    justify-content: center;
  }

  .uv-main-circle {
    width: 340px;
    height: 340px;
  }

  .uv-main-content h2 {
    font-size: 26px;
  }

  .uv-main-content p {
    font-size: 14.5px;
    max-width: 90%;
    margin: 0 auto;
  }

  .uv-right {
    align-items: center;
  }

  .uv-pill {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .uv-float-area {
    transform: none;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .unique-value {
    padding: 80px 0;
  }

  .uv-main-circle {
    width: 280px;
    height: 280px;
  }

  .uv-main-content h2 {
    font-size: 22px;
  }

  .uv-pill {
    padding: 20px 24px;
  }
}



/* ================================
   GLOBAL REVEAL ANIMATIONS
================================ */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Direction variants */
.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-scale {
  transform: scale(0.92);
}

/* Active state */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ================================
   REVEAL ANIMATIONS (GLOBAL)
================================ */

.reveal {
  opacity: 0;
  transition: 
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* FROM LEFT */
.reveal-left {
  transform: translateX(-60px);
}

/* FROM RIGHT */
.reveal-right {
  transform: translateX(60px);
}

/* FROM BOTTOM */
.reveal-up {
  transform: translateY(60px);
}

/* SCALE */
.reveal-scale {
  transform: scale(0.92);
}

/* DELAYS */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


@media (max-width: 600px) {
  .uv-main-circle {
    width: 280px;
    height: 280px;
  }

  .uv-main-content {
    padding: 20px;   /* was 56px — this is the key fix */
  }

  .uv-main-content h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .uv-main-content p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .uv-main-image {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }

}


.accent-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #ff9f4a);
  border-radius: 2px;
  margin: 20px auto;
  display: block;
}

