/**
 * VisionCare — About Page Styles
 * High-quality, fluid infographic style using VW/VH.
 */

:root {
    --vc-about-blue: #034EA2;
    --vc-about-light-blue: #EBF4FF;
    --vc-about-gradient: linear-gradient(135deg, #034EA2 0%, #002D62 100%);
    --vc-glass-bg: rgba(255, 255, 255, 0.85);
    --vc-glass-border: rgba(255, 255, 255, 0.4);
    --vc-font-heading: 'Armstrong', 'Barlow Condensed', sans-serif;
    --vc-font-body: 'Poppins', sans-serif;
}

.vc-section {
    padding: 10vh 4vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--vc-font-heading);
}

p,
span,
li,
article {
    font-family: var(--vc-font-body);
}

/* -----------------------------------------------------------------------
   INTRO SECTION
----------------------------------------------------------------------- */
.vc-about-intro {
    background: #fff;
    text-align: center;
    margin: 0 auto;
}

.vc-about-intro__title {
    font-size: 4vw;
    color: var(--vc-about-blue);
    margin-bottom: 3vh;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
}

.vc-about-intro__text {
    font-size: 1.3vw;
    color: #444;
    line-height: 1.8;
}

/* -----------------------------------------------------------------------
   STRATEGY SECTION (Vision & Mission)
----------------------------------------------------------------------- */
.vc-about-strategy {
    background: var(--vc-about-light-blue);
    position: relative;
    overflow: hidden;
}

.vc-about-strategy__grid {
    display: flex;
    gap: 4vw;
    align-items: stretch;
}

.vc-about-card {
    flex: 1;
    padding: 5vh 4vw;
    border-radius: 2vw;
    background: #fff;
    box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vc-about-card:hover {
    transform: translateY(-1vh);
}

.vc-about-card--vision {
    background: var(--vc-about-gradient);
    color: #fff;
}

.vc-about-card h3 {
    font-size: 1.2vw;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
    margin-bottom: 2vh;
    opacity: 0.8;
}

.vc-about-card p,
.vc-about-card .vc-about-mission-list {
    font-size: 1.8vw;
    line-height: 1.4;
    font-weight: 500;
}

.vc-about-card--vision .vc-about-vision-text {
    font-size: 2.2vw;
    line-height: 1.3;
}

.vc-about-mission-list {
    list-style: none;
    padding: 0;
}

.vc-about-mission-list li {
    margin-bottom: 1.5vh;
    padding-left: 2vw;
    position: relative;
    font-size: 1vw;
}

.vc-about-mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--vc-about-blue);
}

/* -----------------------------------------------------------------------
   CORE VALUES SECTION
----------------------------------------------------------------------- */
.vc-about-values {
    background: #fff;
    padding: 12vh 4vw;
}

.vc-about-values__heading {
    text-align: center;
    margin-bottom: 8vh;
}

.vc-about-values__heading span {
    display: block;
    font-size: 1vw;
    text-transform: uppercase;
    letter-spacing: 0.4vw;
    color: var(--vc-about-blue);
    margin-bottom: 2vh;
}

.vc-about-values__heading p {
    font-size: 2vw;
    max-width: 60vw;
    margin: 0 auto;
    color: #333;
    font-weight: 300;
}

.vc-page-about .vc-about-values__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2vw !important;
}

.vc-about-value-card {
    padding: 4vh 2vw;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 1.5vw;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vc-about-value-card:hover {
    background: #fff;
    border-color: var(--vc-about-blue);
    box-shadow: 0 1vw 3vw rgba(3, 78, 162, 0.1);
}

.vc-about-value-card h4 {
    font-size: 1.5vw;
    color: var(--vc-about-blue);
    margin-bottom: 2vh;
    text-transform: uppercase;
}

.vc-about-value-card p {
    font-size: 1vw;
    color: #666;
    line-height: 1.6;
}

/* -----------------------------------------------------------------------
   RESPONSIVE (MOBILE)
----------------------------------------------------------------------- */
@media (max-width: 768px) {
    .vc-page-about .vc-about-values__grid {
        grid-template-columns: 1fr !important;
        gap: 4vh !important;
    }

    .vc-about-intro__title {
        font-size: 8vw;
    }

    .vc-about-intro__text {
        font-size: 4vw;
    }

    .vc-about-strategy__grid {
        flex-direction: column;
    }

    .vc-about-card {
        padding: 8vh 6vw;
        border-radius: 5vw;
    }

    .vc-about-card h3 {
        font-size: 4vw;
    }

    .vc-about-card p,
    .vc-about-card--vision .vc-about-vision-text {
        font-size: 6vw;
    }

    .vc-about-mission-list li {
        font-size: 4.5vw;
        padding-left: 6vw;
    }

    .vc-about-values__heading span {
        font-size: 4vw;
    }

    .vc-about-values__heading p {
        font-size: 6vw;
        max-width: 90vw;
    }

    .vc-about-value-card {
        padding: 6vh 8vw;
        border-radius: 4vw;
    }

    .vc-about-value-card h4 {
        font-size: 6vw;
    }

    .vc-about-value-card p {
        font-size: 4vw;
    }

    .vc-about-header__title {
        color: #ffffff;
    }
}

/* ==========================================================================
   Header Section (Matching Blog/Careers)
   ========================================================================== */
.vc-about-header {
    background: linear-gradient(135deg, #ffffff 0%, #d4e6f1 50%, #0b6dcb 100%);
    padding: 6rem 0 4rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.bredcrum p {
    color: #000;
}

.vc-about-header__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: #0b6dcb;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 1.5rem 0;
}

/* Custom CSS Variables for easy styling adjustments */

.vision-care-about-page {
  font-family: var(--font-body);
  color: var(--vc-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}



.vc-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 768px) {
  .vc-grid-2 {
    grid-template-columns: 1fr 2fr;
  }
}

/* Hero Styles */
.vc-hero {
  text-align: center;
  padding: 60px 0 20px;
  background: linear-gradient(180deg, rgba(11,85,168,0.1) 0%, rgba(255,255,255,1) 100%);
}
.vc-breadcrumbs {
  font-size: 0.85rem;
  color: var(--vc-text-muted);
  text-transform: uppercase;
}
.vc-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--vc-primary-blue);
  letter-spacing: 2px;
  margin: 10px 0;
}
.vc-hero-subtitle {
  color: var(--vc-text-muted);
  font-style: italic;
  margin-bottom: 40px;
}
.vc-hero-image-wrapper img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

/* History Styles */
.vc-history {
  padding: 80px 0;
}
.vc-history-year span {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
}
.vc-history-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}
.vc-history-content p {
  color: var(--vc-text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* --- OVERLAPPING PARALLAX SECTION CODE --- */
.vc-parallax-wrapper {
  position: relative;
  background-color: #000;
}

.vc-parallax-panel {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* This is the element manipulated by JS for the parallax illusion */
.vc-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* Excess height allows room to slide */
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.65; /* Darkens image slightly for text contrast */
  will-change: transform;
}

.vc-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.vc-parallax-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vc-quote {
  font-size: 1.5rem;
  font-style: italic;
}

/* Split structure styles */
.vc-vision-panel {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.vc-mission-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.vc-mission-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
}

.vc-mission-list li::before {
  content: "•";
  color: var(--vc-primary-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Values Table List Styles */
.vc-values {
  padding: 60px 0;
}

.vc-value-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--vc-border-color);
  align-items: baseline;
}

@media(min-width: 768px) {
  .vc-value-row {
    grid-template-columns: 80px 350px 1fr;
    gap: 20px;
  }
}

.vc-value-num {
  font-family: var(--font-heading);
  font-size: 6vw;
  color: #cbd5e1;
  font-weight: bold;
      line-height: 1;
}
.vc-core-val-list{
        display: grid;
    grid-template-columns: 9vw 40vw 35vw;
gap: 10px;
border-top: 2px solid #848484;
    padding: 10px;
border-bottom: 2px solid #848484;
}
.vc-value-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
      margin-top: 10px;
          width: 50vw;
}

.vc-value-desc {
  color: var(--vc-text-muted);
  font-size: 0.95rem;
  margin-top: 10px;
}

@media(min-width: 768px) {
  .vc-value-desc {
    margin-top: 0;
  }
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.vc-blog-header {
    background: linear-gradient(135deg, #ffffff 0%, #d4e6f1 50%, #0b6dcb 100%);
    padding: 6rem 0 4rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.vc-blog-header__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: #0b6dcb;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 1.5rem 0;
}

.vc-blog-header__search-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.vc-blog-search__input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.vc-blog-search__input:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.vc-values .vc-value-row{
    border-bottom:1px solid #000;
        border-top:1px solid #000;

}
.vc-value-desc{
    /* display: none; */
}
/* Container reset */
.parallax-container {
  background-color: #000; /* Dark background to prevent gaps */
}

/* Base style for both sections */
.scroll-section {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Mission Section (Bottom Layer) --- */
.mission-section {
  background: linear-gradient(135deg, #1e293b, #0f172a); /* Deep slate/blue */
  color: #ffffff;
  z-index: 1; /* Sits underneath */
}

/* --- Vision Section (Top Overlapping Layer) --- */
.vision-section {
  background: linear-gradient(135deg, #10b981, #047857); /* Rich Green tint */
  color: #ffffff;
  z-index: 2; /* Sits on top */
  
  /* Adds a smooth drop shadow over the mission section during the scroll overlap */
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3); 
}

/* Stylized typography inside the boxes */
.content-box {
  max-width: 650px;
  padding: 0 2rem;
  text-align: center;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.content-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-box p {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.9;
}