/* =========================================
   About Us - Editorial Process Layout
   (Strict Navy #041A50 & Teal #2F6F6F)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --text-main: #111827;
  --text-muted: #4B5563;
  --bg-color: #FFFFFF; /* Clean white for elite look */
}

.sv-about-section {
  padding: 80px 20px;
  background-color: var(--bg-color);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.sv-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Editorial Grid Layout */
.about-editorial-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Content gets more space */
  gap: 80px;
  align-items: center;
}

/* Content Area Styling */
.about-super-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--brand-teal);
  padding-bottom: 4px;
}

.about-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}

/* Premium Text Gradient strictly Navy/Teal */
.text-gradient-highlight {
  background: linear-gradient(90deg, var(--brand-navy) 30%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-problem-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic; /* Problem looks slightly stressed */
}

.about-solution-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Elite Action Buttons */
.about-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px; /* Modern pill shape */
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-solid-navy {
  background-color: var(--brand-navy);
  color: #ffffff;
  border: 1px solid var(--brand-navy);
  box-shadow: 0 10px 25px rgba(4, 26, 80, 0.15);
}

.btn-solid-navy:hover {
  background-color: var(--brand-teal);
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(47, 111, 111, 0.25);
}

.btn-solid-navy i {
  transition: transform 0.3s ease;
}

.btn-solid-navy:hover i {
  transform: translateX(5px);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--brand-teal);
  border: 2px solid var(--brand-teal);
}

.btn-outline-teal:hover {
  background-color: rgba(47, 111, 111, 0.05);
  transform: translateY(-4px);
}

/* ================= Visual Area (Strict Brand Colors) ================= */
.about-visual-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.visual-structure {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 350px;
}

/* Abstract Connecting Lines strictly Navy */
.node-line {
  position: absolute;
  background-color: var(--brand-navy);
  opacity: 0.1;
  z-index: 1;
}

.node-line-1 {
  width: 2px;
  height: 200px;
  top: 75px; left: 50%;
  transform: translateX(-50%);
}

.node-line-2 {
  width: 200px;
  height: 2px;
  top: 50%; left: 75px;
}

/* Individual Nodes strictly Teal */
.node-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(4, 26, 80, 0.08);
  border: 1px solid rgba(4, 26, 80, 0.05);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  transition: all 0.3s ease;
}

.node-item i {
  font-size: 24px;
  color: var(--brand-teal);
}

.node-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--brand-teal);
  box-shadow: 0 15px 40px rgba(47, 111, 111, 0.15);
}

/* Node Positioning */
.node-chaos { top: 30px; left: 30px; }
.node-system { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.node-growth { bottom: 30px; right: 30px; }

/* Subtle Blurred Teal Aura */
.visual-aura-teal {
  position: absolute;
  width: 200px; height: 200px;
  background-color: var(--brand-teal);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-editorial-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .about-content-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-heading {
    font-size: 2.8rem;
  }
  
  .about-solution-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-visual-area {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .sv-about-section {
    padding: 80px 20px;
  }
  .about-heading {
    font-size: 2.2rem;
  }
  .about-problem-text {
    font-size: 1.1rem;
  }
  .about-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
  /*.visual-structure {*/
   /*  display: none; Hide complex visualization on mobile 
  /*}*/
}

/* Section Base */
.sh-story-section {
    background-color: #DBEBEB;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
}

.sh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Narrative Grid */
.sh-narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    margin-bottom: 100px;
}

.sh-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    margin: 0;
}

.sh-accent {
    color: #2F6F6F;
    font-weight: 400;
    font-style: italic;
}

.sh-line {
    width: 60px;
    height: 5px;
    background: #2F6F6F;
    margin-top: 25px;
}

.sh-lead {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2f6f6f;
    margin-bottom: 40px;
}

.sh-columns {
    column-count: 1; /* Keeping it single for readability */
}

.sh-columns p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;

}

.sh-highlight-para {
    border-left: 3px solid #2F6F6F;
    padding-left: 20px;
    font-style: italic;
    opacity: 1 !important;
}

/* At a Glance Section */
.sh-glance-wrapper {
    border-top: 1px solid rgba(4, 26, 80, 0.1);
    padding-top: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.sh-glance-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.sh-glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

/* Stat Items: Live Hover */
.sh-glance-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.4s ease;
}

.sh-glance-item:hover {
    transform: translateY(-8px);
}

.sh-icon-box {
    font-size: 2rem;
    color: #2F6F6F;
    background: rgba(47, 111, 111, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sh-glance-item:hover .sh-icon-box {
    background: #041A50;
    color: #ffffff;
}

.sh-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #041A50;
}

.sh-stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 500;
}

/* Mobile: Elegant Stack */
@media (max-width: 900px) {
    .sh-narrative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
  sh-glance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
   .sh-glance-wrapper {
        padding: 70px 0 0 70px;
    }
}



.tu-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
    overflow: hidden;
}

.tu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header Styling */
.tu-header {
    text-align: center;
    margin-bottom: 100px;
}

.tu-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
}

.tu-accent {
    color: #2F6F6F;
    font-weight: 300;
    font-style: italic;
}

.tu-subtitle {
    font-size: 1.1rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* The Unique Flow Logic */
.tu-flow-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.tu-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 75%;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 20px;
}

/* Side Alternating Movement */
.tu-left {
    align-self: flex-start;
    border-left: 4px solid rgba(47, 111, 111, 0.1);
}

.tu-right {
    align-self: flex-end;
    flex-direction: row-reverse;
    text-align: right;
    border-right: 4px solid rgba(4, 26, 80, 0.1);
}

/* Hover Interaction: Live Vibe */
.tu-item:hover {
    background: rgba(47, 111, 111, 0.03);
    border-color: #2F6F6F;
    transform: scale(1.02);
}

.tu-icon-circle {
    width: 80px;
    height: 80px;
    background: #f8fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #2F6F6F;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.tu-item:hover .tu-icon-circle {
    background: #2F6F6F;
    color: #ffffff;
    transform: rotateY(180deg);
}

.tu-item-head {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.tu-item-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
}

/* Mobile: Elegant Stack */
@media (max-width: 850px) {
    .tu-item {
        width: 100%;
        flex-direction: row !important;
        text-align: left !important;
        border-right: none;
        border-left: 3px solid #2F6F6F;
        padding: 20px;
        gap: 20px;
    }
    .tu-icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }
    .tu-header { margin-bottom: 60px; }
}


.vl-section {
    background: #FCFDFB;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
    overflow: hidden;
}

.vl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header: Sophisticated Minimalism */
.vl-header {
    margin-bottom: 100px;
    text-align: left;
}

.vl-main-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
}

.vl-accent {
    color: transparent;
    -webkit-text-stroke: 1px #2F6F6F; /* Hollow Outline Look */
}

.vl-sub {
    font-size: 1.1rem;
    opacity: 0.5;
    margin-top: 20px;
    max-width: 400px;
}

/* The List: The "Uniq" Live Element */
.vl-list {
    display: flex;
    flex-direction: column;
}

.vl-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 60px 0;
    border-bottom: 1px solid rgba(4, 26, 80, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.vl-item-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vl-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #2F6F6F;
    letter-spacing: 2px;
}

.vl-head {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1.5px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.vl-item-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.vl-text {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0; /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 500px;
}

.vl-icon {
    font-size: 3rem;
    color: #2F6F6F;
    opacity: 0.1;
    transition: all 0.5s ease;
}

/* Interaction: The Reveal */
.vl-item:hover {
    padding-left: 30px;
}

.vl-item:hover .vl-head {
    color: #2F6F6F;
    transform: translateX(10px);
}

.vl-item:hover .vl-text {
    opacity: 0.8;
    transform: translateY(0);
}

.vl-item:hover .vl-icon {
    opacity: 1;
    transform: rotate(-15deg) scale(1.2);
}

/* Kinetic Background Glow */
.vl-hover-bg {
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: linear-gradient(90deg, rgba(47, 111, 111, 0.03) 0%, transparent 100%);
    z-index: -1;
    transition: width 0.6s ease;
}

.vl-item:hover .vl-hover-bg {
    width: 100%;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .vl-item { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
    .vl-item-right { flex-direction: column; align-items: flex-start; gap: 20px; }
    .vl-text { opacity: 0.8; transform: none; }
    .vl-icon { display: none; }
    .vl-head { font-size: 2rem; }
}


/* Section Base */
.ap-section {
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
}

.ap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.ap-header {
    text-align: center;
    margin-bottom: 80px;
}

.ap-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.ap-accent {
    color: #2F6F6F;
    font-style: italic;
    font-weight: 400;
}

.ap-sub {
    font-size: 1.1rem;
    opacity: 0.5;
    margin-top: 15px;
}

/* Grid Layout */
.ap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Kinetic Card Design */
.ap-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(4, 26, 80, 0.08);
    border-radius: 4px; /* Minimal Sharp Edges */
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.ap-card-inner {
    position: relative;
    z-index: 2;
}

.ap-step-badge {
    font-size: 0.8rem;
    font-weight: 900;
    color: #2F6F6F;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.ap-icon-wrap {
    font-size: 2.5rem;
    color: #041A50;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.ap-card-head {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ap-card-text {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
}

/* Interactive Glow & Hover */
.ap-card:hover {
    transform: translateY(-15px);
    border-color: #2F6F6F;
}

.ap-card:hover .ap-icon-wrap {
    transform: scale(1.2) rotate(-10deg);
    color: #2F6F6F;
}

.ap-card-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(47, 111, 111, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.ap-card:hover .ap-card-glow {
    opacity: 1;
    transform: scale(2);
}

/* Connecting Logic for Steps */
@media (min-width: 992px) {
    .ap-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -25px;
        top: 50%;
        font-size: 2rem;
        color: rgba(47, 111, 111, 0.2);
        z-index: 3;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ap-card { padding: 40px 30px; }
    .ap-main-title { font-size: 2.2rem; }
}




/* Section Base */
.ms-section {
    background-color: #fcfdfb;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
    overflow: hidden;
}

.ms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Content Side */
.ms-content-side {
    flex: 1.4;
}

.ms-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2F6F6F;
    margin-bottom: 25px;
    display: block;
}

.ms-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.ms-accent {
    color: #2F6F6F;
    font-weight: 300;
    font-style: italic;
}

.ms-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.ms-line {
    width: 60px;
    height: 4px;
    background: #2F6F6F;
}

/* Right Stats Side */
.ms-stats-side {
    flex: 1;
}

.ms-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kinetic Stat Card */
.ms-stat-card {
    background: #f8fafb;
    padding: 35px;
    border-radius: 4px; /* Minimalist edge */
    border-left: 0 solid #2F6F6F;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.ms-stat-card:hover {
    background: #041A50;
    color: #ffffff;
    border-left-width: 10px;
    transform: translateX(15px);
}

.ms-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.ms-number small {
    color: #2F6F6F;
    font-size: 1.8rem;
}

.ms-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ms-stat-card:hover .ms-label {
    opacity: 0.9;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .ms-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .ms-desc { margin: 0 auto 40px; }
    .ms-line { margin: 0 auto; }
    .ms-stats-grid { width: 100%; }
    .ms-stat-card:hover { transform: translateY(-10px); border-left-width: 0; border-top: 6px solid #2F6F6F; }
}



/* Section Base */
.dp-kinetic-section {
    background-color: #ffffff;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #041A50;
    position: relative;
    overflow: hidden;
}

.dp-canvas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Background Decorative Text */
.dp-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(47, 111, 111, 0.03); /* Extremely subtle */
    z-index: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.dp-inner-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left: Info Side */
.dp-info-side {
    flex: 1;
}

.dp-main-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 950;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

.dp-accent-glow {
    color: #2F6F6F;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.dp-sub-message {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 450px;
}

/* Right: The Choices (No Boxes) */
.dp-action-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.dp-choice-link {
    display: flex;
    flex-direction: column;
    padding: 60px 0;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s ease;
}

.dp-choice-meta {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2F6F6F;
    margin-bottom: 15px;
    opacity: 0.6;
}

.dp-choice-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dp-choice-head {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1.5px;
    transition: all 0.4s ease;
}

.dp-choice-arrow {
    font-size: 3rem;
    font-weight: 200;
    color: #2F6F6F;
    transition: all 0.4s ease;
}

/* Interaction: The "Live" Reveal */
.dp-choice-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* Initially short */
    height: 4px;
    background: rgba(4, 26, 80, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dp-choice-link:hover {
    padding-left: 30px; /* Kinetic shift */
}

.dp-choice-link:hover .dp-choice-head {
    color: #2F6F6F;
    transform: scale(1.05);
}

.dp-choice-link:hover .dp-choice-arrow {
    transform: rotate(45deg) scale(1.2);
}

.dp-choice-link:hover .dp-choice-line {
    width: 100%;
    background: #2F6F6F;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .dp-inner-wrapper { flex-direction: column; gap: 40px; }
    .dp-info-side { text-align: center; }
    .dp-sub-message { margin: 0 auto; }
    .dp-choice-head { font-size: 2rem; }
    .dp-choice-link { padding: 40px 0; }
    .dp-bg-text { display: none; }
}

