:root {
    --color-text: #D1D9E6;
    /* Body text (soft white) */
    --color-heading: #F1F5FF;
    /* Headings (bright, premium) */
    --color-subheading: #B8C3D9;
    /* Sub headings */

    --color-link: #d0ddf8;
    --color-link-hover: #E0EAFF;

    --color-button-bg: linear-gradient(135deg, #8FA8FF, #b9cffd, #B8C3D9);

    --color-button-bghover: linear-gradient(135deg,#b9cffd,#8FA8FF);

    --color-button-text: #253155;

    --color-quote: #E6ECFF;

    --color-border: rgba(255, 255, 255, 0.14);

    --color-accent: #9BB3FF;
}


/* About Rebrand Section */
.about-rebrand {
  padding: 100px 20px;
  background: #ffffff00;
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Headings */
.about-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 60px;
}

/* Transition Layout */
.brand-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Brand Cards */
.brand-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 30px 35px;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.brand-card.highlight {
  background: rgba(255, 255, 255, 0.14);
}

/* Labels */
.brand-label {
  display: inline-block;
  font-size: 18px;
  opacity: 0.7;
  margin-bottom: -15px;
}

/* Logos */
.brand-logo {
  max-width: 140px;
  height: auto;
  margin: 15px 0;
}

/* Names */
.brand-name {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Arrow */
.brand-arrow {
  font-size: 3rem;
  opacity: 0.7;
  animation: arrowPulseX 1.6s infinite ease-in-out;
}

@keyframes arrowPulseX {
  0%   { transform: translateX(0); opacity: 0.4; }
  50%  { transform: translateX(8px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.4; }
}

/* Description */
.about-description {
  max-width: 700px;
  margin: 60px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

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

  .brand-transition {
    flex-direction: column;
  }

  .brand-arrow {
    transform: rotate(90deg);
    animation: arrowPulseY 1.6s infinite ease-in-out;
  }

  @keyframes arrowPulseY {
    0%   { transform: rotate(90deg) translateY(0); opacity: 0.4; }
    50%  { transform: rotate(90deg) translateY(8px); opacity: 1; }
    100% { transform: rotate(90deg) translateY(0); opacity: 0.4; }
  }
}


/* Shared */
.about-section {
  padding: 100px 20px;
  background: #ffffff00;
  color: #ffffff;
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 60px;
}

/* WHAT WE DO */
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.do-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 35px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.do-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.do-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.do-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* OUR PROCESS */
.process-line {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.process-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 25px;
}

.step-number {
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 2px;
}

.process-step h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* WHY ARTHVARA */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  padding: 30px 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-item p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .do-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* REVEAL ANIMATIONS */
.reveals {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}


.reveals.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
