  .aos-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .aos-init.aos-animate {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation delays */
  .delay-100 { transition-delay: 0.1s; }
  .delay-200 { transition-delay: 0.2s; }
  .delay-300 { transition-delay: 0.3s; }
  .delay-400 { transition-delay: 0.4s; }
  .delay-500 { transition-delay: 0.5s; }

  /* Element hover animations */
  .about-image {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .about-image:hover {
    transform: none;
    box-shadow: none;
  }

  .feature-block {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .feature-block:hover {
    transform: translateX(10px);
  }

  .feature-block .circle {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .feature-block:hover .circle {
    background-color: #2ed3bf;
    transform: scale(1.2);
  }

  .pillar-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .know-more, .result-link {
    position: relative;
    overflow: hidden;
  }
  
  .know-more::after, .result-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 211, 191, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .know-more:hover::after, .result-link:hover::after {
    left: 100%;
  }









  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(46, 211, 191, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(46, 211, 191, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(46, 211, 191, 0);
    }
  }

  /* Button hover animation */
  

  

  

  /* Additional creative elements */
  

  

  /* Responsive styles */
  

  @media (max-width: 768px) {
    

    

    

    

    

    

    
      .about-grid { grid-template-columns: 1fr; }    .about-image { order: -1; margin-bottom: 30px; }}

    .about-grid {
      grid-template-columns: 1fr;
    }

    .about-image {
      order: -1;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 480px) {
    

    

    
  }

  /* Button hover animation */
  

  

  

  

  

  /* Hover line animation */
  

  

  /* Staggered entrance animation */
  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50%) translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
  }

  


/* Button hover animation */
  .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn:hover::before {
    left: 100%;
  }

  /* Purpose placeholder animation */
  .purpose-placeholder {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .purpose-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  /* Practical placeholder animation */
  .practical-placeholder {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .practical-placeholder:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }

  /* Section divider animation */
  .section-divider {
    position: relative;
    overflow: hidden;
  }
  
  .section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2ed3bf;
    transform: translateX(-100%);
    animation: dividerSlide 1.5s ease forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes dividerSlide {
    to { transform: translateX(0); }
  }

  /* Result section text animation */
  .result-content h2 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }
  
  .result-content p {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
  }
  
  .result-subtext {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
  }
  
  .result-link {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Page specific styles */
  .about3-page {
    font-family: "Neue Montreal", "Arial", sans-serif;
    color: #122837;
    background: #ffffff;
  }

  .about3-page h1 {
    font-family: "Gilroy", "Arial", sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 30px;
    color: #122837;
  }

  .about3-page h2 {
    font-family: "Gilroy", "Arial", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: #122837;
  }

  .about3-page h3 {
    font-family: "Gilroy", "Arial", sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    color: #122837;
  }

  .about3-page p {
    font-family: "Neue Montreal", "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
  }

  /* Section 1: About - Two Column */
  .about-section {
    padding: 100px 0;
    background: #ffffff;
  }

  .about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .about-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .about-text h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #122837;
  }

  .about-text .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2ed3bf;
    margin-bottom: 30px;
    font-weight: 500;
  }

  .about-text .bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
  }

  .about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    overflow: hidden;
  }

  .about-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Horizontal Divider */
  .section-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
  }

  /* Section 2: Purpose - Split Layout */
  .purpose-section {
    padding: 100px 0;
    background: #f8f9fa;
  }

  .purpose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .purpose-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .purpose-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }

  .purpose-content .know-more {
    display: inline-block;
    color: #2ed3bf;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 15px;
    border-bottom: 1px solid #2ed3bf;
    padding-bottom: 2px;
    transition: all 0.3s ease;
  }

  .purpose-content .know-more:hover {
    color: #122837;
    border-color: #122837;
  }

  .purpose-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  }

  /* Section 3: Practical Architecture */
  .practical-section {
    padding: 100px 0;
    background: #ffffff;
  }

  .practical-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .practical-heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .practical-heading h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .practical-heading p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
  }

  .practical-placeholder {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .practical-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: none;
  }

  .practical-placeholder img:hover {
    transform: none;
    opacity: 1;
  }

  /* Section 4: Strategic Partnership */
  .partnership-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: -30px;
  }

  .partnership-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .partnership-intro p {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }

  .partnership-intro .arrow-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #cbd5e0;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    color: #122837;
    margin-top: 20px;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .feature-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .feature-block .circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #2ed3bf;
    border-radius: 50%;
    margin-top: 4px;
  }

  .feature-content {
    text-align: justify;
  }

  .feature-block h4 {
    font-family: "Gilroy", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #122837;
    margin-bottom: 8px;
  }

  .feature-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
  }

  /* Section 5: Three Pillars - Infinite Marquee */
  .pillars-section {
    padding: 100px 0 20px;
    background: #ffffff;
    overflow: hidden;
  }

  .pillars-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .pillars-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .pillars-header h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .pillars-header .pillar-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Marquee Container */
  .pillars-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .pillars-marquee::before,
  .pillars-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .pillars-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
  }

  .pillars-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
  }

  .pillars-track {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 15px));
    }
  }

  /* Pillar Cards */
  .pillar-card {
    flex: 0 0 380px;
    padding: 45px 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 211, 191, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ed3bf, #1a9e92);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(46, 211, 191, 0.2);
    border-color: rgba(46, 211, 191, 0.3);
  }

  .pillar-card:hover::before {
    transform: scaleX(1);
  }

  .pillar-card__label {
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2ed3bf;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(46, 211, 191, 0.1);
    border-radius: 20px;
  }

  .pillar-card h4 {
    font-family: "Gilroy", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #122837;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .pillar-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 15px 0;
    text-align: justify;
  }

  .pillar-card p:last-child {
    margin-bottom: 0;
  }

  /* Card Icons */
  .pillar-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ed3bf 0%, #1a9e92 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
  }

  .pillar-card__icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2ed3bf, #1a9e92);
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
  }

  .pillar-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
  }

  /* Pause on hover */
  .pillars-marquee:hover .pillars-track {
    animation-play-state: paused;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .pillars-section {
      padding: 60px 0;
    }

    .pillars-header h2 {
      font-size: 32px;
    }

    .pillar-card {
      flex: 0 0 320px;
      padding: 35px 30px;
    }

    .pillar-card h4 {
      font-size: 20px;
    }

    .pillars-marquee::before,
    .pillars-marquee::after {
      width: 80px;
    }
  }

  @media (max-width: 576px) {
    .pillar-card {
      flex: 0 0 260px;
      padding: 24px 20px;
    }

    .pillar-card h4 {
      font-size: 16px;
    }

    .pillar-card p {
      font-size: 12px;
      line-height: 1.5;
    }

    .pillar-card__icon {
      width: 45px;
      height: 45px;
      margin-bottom: 14px;
    }

    .pillar-card__icon svg {
      width: 22px;
      height: 22px;
    }

    .pillar-card__label {
      font-size: 11px;
      padding: 5px 12px;
      margin-bottom: 12px;
    }
  }

  /* Section 6: Result */
  .result-section {
    padding: 20px 0;
    background: #ffffff;
    text-align: center;
  }

  .result-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .result-content {
    margin-bottom: 30px;
  }

  .result-content h2 {
    font-size: 48px;
    color: #122837;
    margin-bottom: 25px;
  }

  .result-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .result-subtext {
    font-size: 16px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 30px;
  }

  .result-link {
    display: inline-block;
    color: #2ed3bf;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #2ed3bf;
    padding-bottom: 3px;
    transition: all 0.3s ease;
  }

  .result-link:hover {
    color: #122837;
    border-color: #122837;
  }

  /* Responsive Styles */
  @media (max-width: 991px) {
    .about-grid,
    .purpose-grid,
    .partnership-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-section,
    .purpose-section,
    .practical-section,
    .partnership-section,
    .result-section {
      padding: 60px 0;
    }

    .about-text h1 {
      font-size: 36px;
    }

    .about-text h3 {
      font-size: 26px;
    }

    .purpose-content h2,
    .practical-heading h2,
    .pillars-header h2,
    .result-content h2 {
      font-size: 32px;
    }

    .about-image {
      height: 350px;
    }

    .purpose-placeholder {
      height: 300px;
    }
  }

  @media (max-width: 767px) {
    .about-section,
    .purpose-section,
    .practical-section,
    .partnership-section,
    .pillars-section,
    .result-section {
      padding: 10px 0;
    }

    .about-text h1 {
      font-size: 24px;
    }

    .about-text h3 {
      font-size: 24px;
    }

    .purpose-content h2,
    .practical-heading h2,
    .pillars-header h2,
    .result-content h2 {
      font-size: 24px;
    }

    .pillar-card h4 {
      font-size: 24px;
    }

    .about-text .bio-text,
    .purpose-content p,
    .partnership-intro p,
    .feature-block p,
    .pillar-item p {
      font-size: 14px;
    }

    .about-image {
      height: 200px;
    }

    .about-image img {
      object-fit: contain;
      height: auto;
    }

    .purpose-placeholder {
      height: 150px;
      margin: 0;
      padding: 0;
    }

    .practical-placeholder {
      width: 100%;
      min-height: 100px;
      height: auto;
      margin: 0;
      padding: 0;
    }

    .pillar-item {
      padding: 25px;
    }
  }

  /* Vertical Navigation Tabs */
  .vertical-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .vertical-nav__link {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #122837;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .vertical-nav__link:hover {
    color: #2ed3bf;
  }

  @media (max-width: 991px) {
    .vertical-nav {
      display: none;
    }
  }

  /* Mobile Navigation - Same vertical look as desktop */
  @media (max-width: 991px) {
    .vertical-nav--mobile {
      display: flex;
      position: fixed;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      flex-direction: column;
      gap: 12px;
    }

    .vertical-nav--mobile .vertical-nav__link {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      color: #122837;
      text-decoration: none;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 6px 4px;
      transition: color 0.3s ease;
      white-space: nowrap;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 3px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    .vertical-nav--mobile .vertical-nav__link:hover,
    .vertical-nav--mobile .vertical-nav__link:active {
      color: #2ed3bf;
    }
  }

  /* Show mobile nav by default on small screens */
  .vertical-nav--mobile {
    display: none;
  }

  @media (max-width: 991px) {
    .vertical-nav--mobile {
      display: flex;
    }
  }

/* ============================================
   SECTION DIVIDERS - Thin Aesthetic Lines
   ============================================ */

/* About Page Section Dividers */
.about3-page main > section,
.about3-page .practical-section,
.about3-page .partnership-section,
.about3-page .result-section {
  position: relative;
}

.about3-page main > section::after,
.about3-page .practical-section::after,
.about3-page .partnership-section::after,
.about3-page .result-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(18, 40, 55, 0.08) 15%,
    rgba(18, 40, 55, 0.12) 50%,
    rgba(18, 40, 55, 0.08) 85%,
    transparent 100%
  );
}

/* Remove divider from first section */
.about3-page main > section:first-of-type::after {
  display: none;
}

/* Remove divider from last section */
.about3-page main > section:last-of-type::after,
.about3-page .result-section::after {
  display: none;
}

/* Desktop */
@media (min-width: 1200px) {
  .about3-page main > section::after,
  .about3-page .practical-section::after,
  .about3-page .partnership-section::after,
  .about3-page .result-section::after {
    width: 50%;
    max-width: 1100px;
  }
  
  .practical-section,
  .partnership-section {
    padding: 100px 0;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .about3-page main > section::after,
  .about3-page .practical-section::after,
  .about3-page .partnership-section::after,
  .about3-page .result-section::after {
    width: 70%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about3-page main > section::after,
  .about3-page .practical-section::after,
  .about3-page .partnership-section::after,
  .about3-page .result-section::after {
    width: 85%;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .about3-page main > section::after,
  .about3-page .practical-section::after,
  .about3-page .partnership-section::after,
  .about3-page .result-section::after {
    width: 90%;
  }
}

/* ========================================
   Core Values Section - Touchstone Standards
   ======================================== */
.core-values-section {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.core-values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #122837 0%, #2ed3bf 50%, #122837 100%);
}

.core-values-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 211, 191, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.core-values-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.core-values-title {
  font-family: 'Gilroy-Bold', 'Arial', sans-serif;
  font-size: 56px;
  color: #122837;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.core-values-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #2ed3bf, transparent);
  border-radius: 2px;
}

.core-values-subtitle {
  font-family: 'Neue Montreal', 'Arial', sans-serif;
  font-size: 24px;
  color: #2ed3bf;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.core-values-intro {
  font-family: 'Neue Montreal', 'Arial', sans-serif;
  font-size: 18px;
  color: #5a6a7a;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

.core-values-grid--first {
  grid-template-columns: repeat(2, 1fr);
}

.core-value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 38px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(18, 40, 55, 0.06);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(18, 40, 55, 0.04);
}

.core-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 211, 191, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.core-value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #122837, #2ed3bf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(18, 40, 55, 0.12);
  border-color: rgba(46, 211, 191, 0.2);
}

.core-value-card:hover::before {
  opacity: 1;
}

.core-value-card:hover::after {
  transform: scaleX(1);
}

.core-value-card__number {
  font-family: 'Gilroy-Bold', 'Arial', sans-serif;
  font-size: 72px;
  color: rgba(46, 211, 191, 0.12);
  position: absolute;
  top: 5px;
  right: 25px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.5s ease;
}

.core-value-card:hover .core-value-card__number {
  color: rgba(46, 211, 191, 0.25);
  transform: scale(1.1);
}

.core-value-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #122837 0%, #1e3a4f 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.core-value-card__icon svg {
  width: 26px;
  height: 26px;
  fill: #2ed3bf;
  transition: all 0.4s ease;
}

.core-value-card:hover .core-value-card__icon {
  background: linear-gradient(135deg, #2ed3bf 0%, #1a9e92 100%);
  transform: scale(1.08) rotate(-3deg);
}

.core-value-card:hover .core-value-card__icon svg {
  fill: #122837;
}

.core-value-card__title {
  font-family: 'Gilroy-Bold', 'Arial', sans-serif;
  font-size: 24px;
  color: #122837;
  margin-bottom: 20px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.core-value-card__desc {
  font-family: 'Neue Montreal', 'Arial', sans-serif;
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.core-values-grid--second {
  margin-top: 32px;
}

.core-value-card--wide {
  grid-column: span 1;
}

/* Tablet */
@media (max-width: 1199px) {
  .core-values-section {
    padding: 100px 0 120px;
  }
  
  .core-values-title {
    font-size: 46px;
  }
  
  .core-values-subtitle {
    font-size: 20px;
  }
  
  .core-values-grid {
    gap: 28px;
    padding: 0 35px;
  }
  
  .core-value-card {
    padding: 38px 30px;
  }
  
  .core-value-card__title {
    font-size: 22px;
  }
  
  .core-value-card__number {
    font-size: 56px;
  }
  
  .core-value-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  .core-values-section {
    padding: 80px 0 100px;
  }
  
  .core-values-header {
    margin-bottom: 50px;
  }
  
  .core-values-title {
    font-size: 40px;
  }
  
  .core-values-subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  
  .core-values-intro {
    font-size: 16px;
  }
  
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .core-values-grid--second {
    margin-top: 24px;
  }
  
  .core-value-card--wide {
    grid-column: span 1;
  }
  
  .core-value-card {
    padding: 35px 28px;
  }
  
  .core-value-card__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .core-value-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .core-values-section {
    padding: 70px 0 85px;
  }
  
  .core-values-section::after {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
  }
  
  .core-values-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .core-values-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .core-values-title::after {
    bottom: -8px;
    width: 60px;
    height: 3px;
  }
  
  .core-values-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .core-values-intro {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .core-values-grid--second {
    margin-top: 20px;
  }
  
  .core-value-card {
    padding: 32px 26px;
    border-radius: 16px;
  }
  
  .core-value-card--wide {
    grid-column: span 1;
  }
  
  .core-value-card__title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .core-value-card__desc {
    font-size: 14px;
    line-height: 1.75;
  }
  
  .core-value-card__number {
    font-size: 48px;
    top: 8px;
    right: 18px;
  }
  
  .core-value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    margin-bottom: 24px;
  }
  
  .core-value-card__icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .core-values-section {
    padding: 55px 0 70px;
  }
  
  .core-values-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  
  .core-values-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .core-values-intro {
    font-size: 14px;
  }
  
  .core-value-card {
    padding: 28px 22px;
  }
  
  .core-value-card__title {
    font-size: 18px;
  }
  
  .core-value-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
  }
}

/* ============================================
   Touchstone Standards Swiper (Mobile Only)
   ============================================ */

/* Hide desktop grid on mobile */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
  
  .touchstone-standards-swiper {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0 20px 40px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .touchstone-swiper-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  .touchstone-swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
  }
  
  .touchstone-swiper-slide .core-value-card {
    margin: 0;
    height: 100%;
    box-sizing: border-box;
  }
  
  /* Pagination dots */
  .touchstone-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }
  
  .touchstone-swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(18, 40, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .touchstone-swiper-pagination-bullet-active {
    background: #2ed3bf;
    width: 24px;
    border-radius: 4px;
  }
}

/* Hide swiper on desktop */
@media (min-width: 768px) {
  .touchstone-standards-swiper {
    display: none !important;
  }
}

