 .map-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.india-map {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  opacity: 0.95;
}

/* City dots */
.city-dot {
  position: absolute;
  background: rgba(201,161,74,0.95);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(201,161,74,0.3);
  transition: all 0.4s ease;
}

/* Apple glow pulse */
.city-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(201,161,74,0.4);
  animation: ripple 2s infinite;
  z-index: -1;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2); opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

/* Hover */


/* Glow animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,161,74,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(201,161,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,161,74,0); }
}

/* Positions */
.nagpur { top: 55%; left: 48%; }

.mumbai { top: 72%; left: 30%; }
.delhi { top: 25%; left: 50%; }
.bangalore { top: 82%; left: 45%; }
.hyderabad { top: 62%; left: 50%; }
.chennai { top: 88%; left: 56%; }

/* Hover */
.city-dot:hover {
  background: #8B0000;
  transform: scale(1.1);
}
  
  .testimonial-wrapper {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.testimonial-card {
  display: none;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  display: block;
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.stars {
  color: #C9A14A;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card h4 {
  margin-top: 10px;
  font-weight: bold;
}

.testimonial-card span {
  font-size: 13px;
  color: gray;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8B0000;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: -40px; }
.next { right: -40px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  height: 8px;
  width: 8px;
  margin: 4px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #8B0000;
}
  
  .testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  transition: all 0.5s ease;
}

.testimonial.active {
  display: block;
}
  
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    
    /* Enhanced service card hover with depth */
    .service-card-hover {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ffffff;
}

.service-card-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,161,74,0.15), rgba(139,0,0,0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-hover:hover::before {
  opacity: 1;
}

.service-card-hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
    
    /* Animated gradient border effect for category headings - ENHANCED with shine + underline */
    .category-heading {
      font-weight: 800;
      letter-spacing: -0.3px;
      color: #1a1a1a;
      position: relative;
      display: inline-block;
      background: linear-gradient(135deg, #8B0000 0%, #C9A14A 70%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmerText 3s linear infinite;
      transition: transform 0.3s ease;
    }
    
    @keyframes shimmerText {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .category-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #C9A14A, #8B0000, #C9A14A);
      border-radius: 3px;
      transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .category-wrapper:hover .category-heading::after {
      width: 100%;
    }
    
    /* Entrance animation for category wrappers */
    .category-wrapper {
      opacity: 0;
      transform: translateY(30px);
      animation: categorySlideUp 0.7s ease forwards;
    }
    
    @keyframes categorySlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* subtle floating effect on categories */
    .category-wrapper {
      transition: all 0.3s ease;
    }
    
    .category-wrapper:hover {
      transform: translateX(8px);
    }
    
    #particles-canvas { 
      position: fixed; 
      top: 0; 
      left: 0; 
      width: 100%; 
      height: 100%; 
      pointer-events: none; 
      z-index: 0; 
      opacity: 0.4; 
      background: radial-gradient(circle at 20% 30%, rgba(139,0,0,0.02) 0%, rgba(0,0,0,0) 70%);
    }
    
    .swiper-pagination-bullet-active { background: #C9A14A !important; }
    
    /* Mobile menu enhancements */
    .mobile-menu-item { transition: all 0.2s ease; }
    .mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background-color: #fef9f0; border-radius: 16px; margin-top: 0; }
    .mobile-submenu.open { max-height: 600px; margin-top: 10px; }
    .mobile-dropdown-toggle i { transition: transform 0.35s ease; }
    .mobile-dropdown-toggle.open i { transform: rotate(180deg); }
    
    /* Responsive refinements */
    @media (max-width: 640px) {
      .hero-padding { padding-top: 80px; padding-bottom: 60px; }
      h1 { font-size: 1.9rem !important; line-height: 1.3 !important; letter-spacing: -0.02em; }
      h2 { font-size: 1.7rem !important; }
      .section-padding { padding-top: 3rem; padding-bottom: 3rem; }
      .service-grid-gap { gap: 1rem; }
      .service-card { padding: 1.25rem !important; }
    }
    @media (min-width: 641px) and (max-width: 768px) {
      h1 { font-size: 2.4rem !important; }
    }
    
    /* Uniform card height on all devices using flex */
    .service-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s;
      border-radius: 1rem;
    }
    .service-card p {
      flex-grow: 1;
      margin-bottom: 0.75rem;
    }
    .service-card a {
      align-self: flex-start;
      margin-top: 0.5rem;
    }
    
    /* Enhance CTA and interactive elements */
    .gold-glow-hover:hover {
      box-shadow: 0 10px 25px -5px rgba(201, 161, 74, 0.3);
      transform: translateY(-2px);
    }
    
    /* Better touch targets for mobile */
    button, a, .mobile-dropdown-toggle { 
      cursor: pointer; 
      -webkit-tap-highlight-color: transparent; 
      touch-action: manipulation; 
    }
    
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9A14A;
      border-radius: 10px;
    }
    .service-card a {
  transition: all 0.3s ease;
}

.service-card a:hover {
  letter-spacing: 1px;
  color: #C9A14A;
}
.animate-card {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}
.call-btn {
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #C9A14A;
  color: #fff;
}
/* 🔥 PREMIUM FORM UI */

.glass-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.85);
  font-size: 14px;
  transition: 0.3s;
}

.input-group label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 13px;
  color: #777;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  box-shadow: 0 0 0 2px #C9A14A;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  left: 10px;
  font-size: 11px;
  background: white;
  padding: 2px 6px;
  border-radius: 6px;
  color: #8B0000;
}

/* Button upgrade */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #8B0000, #C9A14A);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.service-btn{
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
  background: #ffffff;
}

.service-btn:hover{
  background: #8B0000;
  color: #ffffff;
  border-color: #8B0000;
}

@media(max-width:768px){

  .service-btn{
    font-size: 13px;
    padding: 9px 16px;
  }

}
.modern-chip{
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
  transition: 0.25s ease;
}

.modern-chip:hover{
  background: #8B0000;
  border-color: #8B0000;
  color: white;
}

@media(max-width:768px){

  .modern-chip{
    padding: 10px 16px;
    font-size: 13px;
  }

}
.modern-chip{
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
  transition: 0.25s ease;
}

.modern-chip:hover{
  background: #8B0000;
  border-color: #8B0000;
  color: white;
}

@media(max-width:768px){

  .modern-chip{
    padding: 10px 16px;
    font-size: 13px;
  }

}
/* COMPLETE SERVICES SECTION */

.services-master-section{
  padding: 90px 0;
  background: #ffffff;
}

.services-container{
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 0 24px;
}

/* TOP */

.services-top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.top-line{
  width: 55px;
  height: 2px;
  background: #8B0000;
}

.top-subtitle{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111827;
}

.main-services-title{
  text-align: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111827;
}

.main-services-title span{
  color: #8B0000;
}

.services-description{
  text-align: center;
  font-size: 13px;
  color: #4b5563;
  margin-top: 10px;
}

/* BAR */

.main-service-bar{
  margin-top: 40px;
  background: linear-gradient(90deg,#8B0000,#C9A14A);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ROW */

.service-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
}

.last-row{
  border-bottom: 0;
}

/* NUMBER */

.service-number-column{
  padding-left: 22px;
}

.red-border{
  border-left: 6px solid #8B0000;
}

.gold-border{
  border-left: 6px solid #C9A14A;
}

.navy-border{
  border-left: 6px solid #0A1428;
}

.service-number{
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.red-text{
  color: #8B0000;
}

.gold-text{
  color: #C9A14A;
}

.navy-text{
  color: #0A1428;
}

/* CONTENT */

.service-heading{
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px 30px;
}

.service-column{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BUTTON */

.service-pill{
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  transition: 0.25s ease;
}

.service-pill:hover{
  background: #8B0000;
  border-color: #8B0000;
  color: white;
}

/* MOBILE */

@media(max-width:991px){

  .main-services-title{
    font-size: 56px;
  }

  .main-service-bar{
    font-size: 22px;
  }

  .service-row{
    grid-template-columns: 100px 1fr;
  }

  .service-heading{
    font-size: 28px;
  }

}

@media(max-width:768px){

  .services-master-section{
    padding: 70px 0;
  }

  .main-services-title{
    font-size: 40px;
    letter-spacing: -1px;
  }

  .services-description{
    font-size: 15px;
    line-height: 1.7;
  }

  .main-service-bar{
    font-size: 17px;
    line-height: 1.5;
    padding: 16px 20px;
  }

  .service-row{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0;
  }

  .service-number-column{
    padding-left: 18px;
  }

  .service-number{
    font-size: 54px;
  }

  .service-heading{
    font-size: 22px;
    margin-bottom: 22px;
  }

  .service-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-pill{
    font-size: 13px;
    padding: 10px 14px;
  }

  .top-line{
    width: 45px;
  }

  .top-subtitle{
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
  }

}
/* ABOUT LUXURY SECTION */

.about-lux-section{
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #ffffff;
}

/* VIDEO */

.about-video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.70;
  filter: contrast(1.05) brightness(0.9);
}

.about-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.72) 35%,
    rgba(255,255,255,0.45) 100%
  );
}

/* CONTAINER */

.about-container{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

/* LEFT */

.about-tag{
  font-size: 13px;
  font-weight: 700;
  color: #8B0000;
  letter-spacing: 2px;
}

.about-line{
  width: 70px;
  height: 3px;
  background: #8B0000;
  margin: 14px 0 24px;
}

.small-line{
  margin: 24px 0;
}

.about-title{
  font-size: 62px;
  line-height: 1.02;
  font-weight: 900;
  color: #0A1428;
  letter-spacing: -2px;
}

.about-title span{
  color: #8B0000;
}

.about-subtitle{
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.5;
  color: #111827;
  max-width: 700px;
}

.about-text{
  font-size: 17px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 18px;
  max-width: 680px;
}

/* BUTTONS */

.about-buttons{
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.about-btn{
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.primary-btn{
  background: #8B0000;
  color: white;
}

.primary-btn:hover{
  background: #0A1428;
}

.secondary-btn{
  border: 1px solid #d1d5db;
  color: #111827;
  background: rgba(255,255,255,0.7);
}

.secondary-btn:hover{
  background: #0A1428;
  color: white;
}

/* RIGHT */

.about-right-box{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-box-top{
  margin-bottom: 35px;
}

.about-box-title{
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #0A1428;
}

.about-box-title span{
  color: #8B0000;
}

/* FEATURES */

.about-feature-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.about-feature-item{
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: rgba(255,255,255,0.85);
}

.about-feature-item h3{
  font-size: 20px;
  font-weight: 700;
  color: #0A1428;
  margin-bottom: 12px;
}

.about-feature-item p{
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
}

/* BOTTOM */

.about-bottom-box{
  margin-top: 30px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(139,0,0,0.05),
    rgba(201,161,74,0.08)
  );
  border: 1px solid rgba(139,0,0,0.08);
}

.about-bottom-box p{
  font-size: 18px;
  line-height: 1.8;
  color: #111827;
}

.about-bottom-box h4{
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
  color: #8B0000;
}

/* MOBILE */

@media(max-width:1100px){

  .about-container{
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-title{
    font-size: 48px;
  }

}

@media(max-width:768px){

  .about-lux-section{
    padding: 70px 0;
  }

  .about-title{
    font-size: 36px;
    letter-spacing: -1px;
  }

  .about-subtitle{
    font-size: 16px;
    margin-top: 16px;
  }

  .about-text{
    font-size: 14px;
    line-height: 1.9;
  }

  .about-buttons{
    flex-direction: column;
  }

  .about-btn{
    width: 100%;
    text-align: center;
  }

  .about-right-box{
    padding: 24px;
    border-radius: 22px;
  }

  .about-box-title{
    font-size: 24px;
  }

  .about-feature-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-feature-item{
    padding: 18px;
  }

  .about-feature-item h3{
    font-size: 17px;
  }

  .about-feature-item p{
    font-size: 13px;
  }

  .about-bottom-box{
    padding: 22px;
  }

  .about-bottom-box p{
    font-size: 14px;
  }

  .about-bottom-box h4{
    font-size: 24px;
  }

}

#chatToggle{
position:fixed;
bottom:25px;
right:25px;
z-index:99999;
background:#8B0000;
color:#fff;
border:none;
padding:15px 22px;
border-radius:50px;
font-weight:700;
cursor:pointer;
box-shadow:0 10px 30px rgba(139,0,0,.4);
}

#chatWindow{
position:fixed;
bottom:90px;
right:25px;
width:350px;
background:#fff;
border-radius:20px;
overflow:hidden;
display:none;
z-index:99999;
box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.chat-header{
background:#0A1428;
color:#fff;
padding:18px;
position:relative;
}

.chat-header h3{
margin:0;
font-size:18px;
}

.chat-body{
padding:15px;
}

.chat-btn{
width:100%;
padding:12px;
margin-bottom:10px;
border:none;
border-radius:10px;
background:#f5f5f5;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.chat-btn:hover{
background:#C9A14A;
}

@media(max-width:768px){

#chatWindow{
width:92%;
right:4%;
}

}
/* =========================================================
   LAXAIR — HEALTHCARE ARCHITECTURE & INTERIOR DESIGN
   SECTION CSS (redesigned)
   Brand tokens: navy #0A1428 · red #8B0000 · gold #C9A14A
   ========================================================= */

:root {
  --lx-navy: #0A1428;
  --lx-navy-soft: #101c34;
  --lx-red: #8B0000;
  --lx-red-soft: #a91f1f;
  --lx-gold: #C9A14A;
  --lx-ink: #394150;
  --lx-muted: #596273;
  --lx-line: #e6e8ec;
  --lx-bg-soft: #fafafa;
}

/* =========================================================
   SECTION
   ========================================================= */

.laxair-hd-section {
  position: relative;
  width: 100%;
  padding: 110px 0;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(139, 0, 0, 0.05), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, rgba(201, 161, 74, 0.07), transparent 60%),
    #ffffff;
  overflow: hidden;
}

/* faint grid texture for a more "designed" feel */
.laxair-hd-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 20, 40, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 20, 40, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.laxair-hd-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   HEADER
   ========================================================= */

.laxair-hd-header {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.laxair-hd-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.laxair-hd-eyebrow > span:not(.laxair-hd-line) {
  color: var(--lx-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1.4;
}

.laxair-hd-line {
  display: block;
  width: 48px;
  height: 2px;
  border-radius: 20px;
  background: var(--lx-gold);
}

.laxair-hd-title {
  margin: 0;
  color: var(--lx-navy);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.laxair-hd-title span { color: var(--lx-red); }

.laxair-hd-intro {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--lx-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* stat strip under intro */
.laxair-hd-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 34px auto 0;
  padding: 18px 30px;
  max-width: fit-content;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--lx-line);
  box-shadow: 0 14px 40px rgba(10, 20, 40, 0.07);
}

.laxair-hd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.laxair-hd-stat strong {
  color: var(--lx-navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.laxair-hd-stat span {
  margin-top: 2px;
  color: var(--lx-muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.laxair-hd-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--lx-line);
}

/* =========================================================
   TWO CARD GRID
   ========================================================= */

.laxair-hd-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* =========================================================
   CARD
   ========================================================= */

.laxair-hd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--lx-line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 20, 40, 0.07);
  transition: transform 0.45s cubic-bezier(.25, 1, .5, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.laxair-hd-card::after {
  /* gold accent line that grows in on hover */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lx-red), var(--lx-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.25, 1, .5, 1);
}

.laxair-hd-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 0, 0, 0.22);
  box-shadow: 0 25px 65px rgba(10, 20, 40, 0.14);
}

.laxair-hd-card:hover::after { transform: scaleX(1); }

/* =========================================================
   IMAGE / VISUAL AREA
   ========================================================= */

.laxair-hd-visual {
  position: relative;
  width: 100%;
  height: 368px;
  background: var(--lx-navy);
  overflow: hidden;
}

.laxair-hd-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.laxair-hd-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.25, 1, .5, 1);
}

.laxair-hd-card:hover .laxair-hd-main-image img { transform: scale(1.06); }

/* overlay */
.laxair-hd-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(10, 20, 40, 0.05) 10%,
    rgba(10, 20, 40, 0.12) 40%,
    rgba(10, 20, 40, 0.82) 100%);
  pointer-events: none;
}

/* number badge */
.laxair-hd-number {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 5;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(10, 20, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--lx-gold);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* image category title */
.laxair-hd-image-title {
  position: absolute;
  left: 25px; bottom: 25px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.4;
}

.laxair-hd-image-title i {
  color: var(--lx-gold);
  font-size: 13px;
}

/* secondary image */
.laxair-hd-secondary-image {
  position: absolute;
  right: 22px; bottom: 22px;
  z-index: 6;
  width: 178px; height: 125px;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 16px;
  background: #111827;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.laxair-hd-secondary-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.laxair-hd-card:hover .laxair-hd-secondary-image {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.laxair-hd-card:hover .laxair-hd-secondary-image img { transform: scale(1.08); }

.laxair-hd-secondary-image span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 7px 5px;
  background: rgba(10, 20, 40, 0.86);
  color: #ffffff;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1.3;
}

/* =========================================================
   CONTENT
   ========================================================= */

.laxair-hd-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px 34px 36px;
}

.laxair-hd-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lx-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.1px;
}

.laxair-hd-content h3 {
  margin: 0;
  color: var(--lx-navy);
  font-size: 27px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.6px;
}

.laxair-hd-content > p {
  margin: 15px 0 23px;
  color: var(--lx-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   SERVICE LIST
   ========================================================= */

.laxair-hd-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 11px;
  margin-bottom: 28px;
}

.laxair-hd-services span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px 9px 32px;
  border: 1px solid var(--lx-line);
  border-radius: 10px;
  background: var(--lx-bg-soft);
  color: var(--lx-ink);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.laxair-hd-services span::before {
  content: "\2713";
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.1);
  color: var(--lx-red);
  font-size: 9px;
  font-weight: 900;
}

.laxair-hd-services span:hover {
  background: #fffaf1;
  border-color: var(--lx-gold);
  transform: translateX(2px);
}

/* =========================================================
   CTA BUTTON
   ========================================================= */

.laxair-hd-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding: 12px 13px 12px 20px;
  border-radius: 999px;
  background: var(--lx-red);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.laxair-hd-button:hover {
  background: var(--lx-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 0, 0, 0.2);
}

.laxair-hd-button strong {
  flex-shrink: 0;
  width: 31px; height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lx-gold);
  color: var(--lx-navy);
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.laxair-hd-button:hover strong { transform: translateX(4px); }

/* =========================================================
   INTEGRATED EXECUTION BAR
   ========================================================= */

.laxair-hd-integration {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 25px 28px;
  border-radius: 22px;
  background: linear-gradient(120deg, var(--lx-navy) 0%, var(--lx-navy-soft) 100%);
  box-shadow: 0 16px 45px rgba(10, 20, 40, 0.15);
}

.laxair-hd-integration-icon {
  width: 55px; height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(201, 161, 74, 0.12);
  border: 1px solid rgba(201, 161, 74, 0.16);
  color: var(--lx-gold);
  font-size: 20px;
}

.laxair-hd-integration-text span {
  display: block;
  margin-bottom: 5px;
  color: var(--lx-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.laxair-hd-integration-text p {
  max-width: 850px;
  margin: 0;
  color: #d3d8e0;
  font-size: 13px;
  line-height: 1.75;
}

.laxair-hd-integration-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.laxair-hd-integration-button strong { font-size: 16px; font-weight: 600; }

.laxair-hd-integration-button:hover {
  background: var(--lx-gold);
  border-color: var(--lx-gold);
  color: var(--lx-navy);
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE — LARGE TABLET  (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .laxair-hd-section { padding: 85px 0; }
  .laxair-hd-title { font-size: 43px; }
  .laxair-hd-grid { gap: 22px; }
  .laxair-hd-visual { height: 320px; }
  .laxair-hd-secondary-image { width: 155px; height: 110px; }
  .laxair-hd-content { padding: 28px; }
  .laxair-hd-content h3 { font-size: 24px; }
  .laxair-hd-services { grid-template-columns: 1fr; }
  .laxair-hd-stats { gap: 20px; padding: 16px 24px; }
}

/* =========================================================
   RESPONSIVE — TABLET  (≤900px)
   ========================================================= */

@media (max-width: 900px) {
  .laxair-hd-grid { grid-template-columns: 1fr; }
  .laxair-hd-visual { height: 300px; }
  .laxair-hd-integration { grid-template-columns: auto minmax(0, 1fr); }
  .laxair-hd-integration-button { grid-column: 1 / -1; width: 100%; }
}

/* =========================================================
   RESPONSIVE — MOBILE  (≤700px)
   ========================================================= */

@media (max-width: 700px) {
  .laxair-hd-section { padding: 60px 0; }
  .laxair-hd-container { padding: 0 18px; }

  .laxair-hd-header { margin-bottom: 32px; }

  .laxair-hd-eyebrow { gap: 9px; margin-bottom: 14px; }
  .laxair-hd-eyebrow > span:not(.laxair-hd-line) {
    font-size: 8.5px; letter-spacing: 1.6px;
  }
  .laxair-hd-line { width: 30px; }

  .laxair-hd-title { font-size: 32px; line-height: 1.16; letter-spacing: -0.9px; }
  .laxair-hd-intro { margin-top: 14px; font-size: 13.5px; line-height: 1.8; }

  .laxair-hd-stats {
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 16px 20px;
    margin-top: 24px;
    border-radius: 20px;
    max-width: 100%;
  }
  .laxair-hd-stat-divider { display: none; }
  .laxair-hd-stat { flex: 1 1 auto; min-width: 88px; }

  .laxair-hd-grid { gap: 18px; }

  .laxair-hd-card { border-radius: 20px; }

  .laxair-hd-visual { height: 250px; }
  .laxair-hd-number {
    top: 16px; left: 16px; width: 44px; height: 44px;
    border-radius: 12px; font-size: 13px;
  }
  .laxair-hd-image-title {
    left: 18px; bottom: 18px; font-size: 9.5px; letter-spacing: 1.5px;
  }
  .laxair-hd-image-title i { font-size: 11px; }

  .laxair-hd-secondary-image {
    right: 14px; bottom: 14px; width: 118px; height: 84px;
    border-width: 3px; border-radius: 12px;
  }
  .laxair-hd-secondary-image span { padding: 5px 3px; font-size: 6.8px; letter-spacing: 0.7px; }

  .laxair-hd-content { padding: 22px 18px 24px; }
  .laxair-hd-label { margin-bottom: 8px; font-size: 8.5px; letter-spacing: 1.5px; }
  .laxair-hd-content h3 { font-size: 20px; line-height: 1.28; letter-spacing: -0.3px; }
  .laxair-hd-content > p { margin: 11px 0 18px; font-size: 12.8px; line-height: 1.75; }

  .laxair-hd-services { gap: 7px; margin-bottom: 20px; }
  .laxair-hd-services span { min-height: 0; padding: 9px 10px 9px 29px; font-size: 11px; }

  .laxair-hd-button { padding: 11px 12px 11px 16px; font-size: 12px; }
  .laxair-hd-button strong { width: 29px; height: 29px; font-size: 15px; }

  .laxair-hd-integration {
    grid-template-columns: 1fr; gap: 14px;
    margin-top: 18px; padding: 20px 18px; border-radius: 18px;
    text-align: left;
  }
  .laxair-hd-integration-icon { width: 46px; height: 46px; border-radius: 13px; font-size: 17px; }
  .laxair-hd-integration-text span { font-size: 8.5px; letter-spacing: 1.5px; }
  .laxair-hd-integration-text p { font-size: 11.5px; line-height: 1.75; }
  .laxair-hd-integration-button { width: 100%; padding: 11px 14px; font-size: 11.5px; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE  (≤480px)
   ========================================================= */

@media (max-width: 480px) {
  .laxair-hd-title { font-size: 27px; }
  .laxair-hd-visual { height: 220px; }
  .laxair-hd-secondary-image { width: 100px; height: 72px; }
  .laxair-hd-content h3 { font-size: 19px; }
  .laxair-hd-stat strong { font-size: 16px; }
  .laxair-hd-stat span { font-size: 9.5px; }
}

/* =========================================================
   RESPONSIVE — EXTRA SMALL  (≤380px)
   ========================================================= */

@media (max-width: 380px) {
  .laxair-hd-title { font-size: 24px; }
  .laxair-hd-visual { height: 200px; }
  .laxair-hd-secondary-image { display: none; } /* avoid cramped overlap on tiny screens */
  .laxair-hd-services span { padding-left: 26px; font-size: 10.3px; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .laxair-hd-card,
  .laxair-hd-main-image img,
  .laxair-hd-secondary-image,
  .laxair-hd-secondary-image img,
  .laxair-hd-button,
  .laxair-hd-button strong,
  .laxair-hd-integration-button {
    transition: none !important;
  }
}

:root{
  --navy:#0A1428;
  --navy-deep:#041C45;
  --burgundy:#8B0000;
  --burgundy-dark:#5c0000;
  --gold:#C9A14A;
  --line:rgba(255,255,255,.14);
}

/* ============ TRUST STRIP ============ */
.trust-strip{
  background:#000;
  padding:44px 0;
}
.trust-strip .trust-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px 20px;
  text-align:center;
}
@media(min-width:768px){
  .trust-strip .trust-grid{ grid-template-columns:repeat(4,1fr); gap:0; }
  .trust-strip .trust-item{ border-right:1px solid var(--line); }
  .trust-strip .trust-item:last-child{ border-right:none; }
}
.trust-strip .trust-num{
  font-size:34px;
  font-weight:800;
  color:var(--gold);
  line-height:1.1;
}
@media(min-width:768px){ .trust-strip .trust-num{ font-size:40px; } }
.trust-strip .trust-label{
  margin-top:6px;
  font-size:12px;
  letter-spacing:.5px;
  color:rgba(255,255,255,.65);
}

/* ============ ABOUT SECTION ============ */
.about-lux-section{
  position:relative;
  overflow:hidden;
  padding:96px 0;
  min-height:100vh;
  display:flex;
  align-items:center;
}
.about-video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.about-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(100deg, rgba(4,28,69,.95) 0%, rgba(4,28,69,.88) 42%, rgba(10,20,40,.55) 75%, rgba(10,20,40,.3) 100%);
}

.about-container{
  position:relative;
  z-index:2;
  max-width:1360px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  gap:56px;
  align-items:center;
}
@media(min-width:1024px){
  .about-container{
    grid-template-columns: 1.05fr .95fr;
    padding:0 40px;
    gap:70px;
  }
}

/* LEFT */
.about-tag{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  color:var(--gold);
  text-transform:uppercase;
}
.about-line{
  width:56px;
  height:3px;
  margin:14px 0 22px;
  background:linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius:2px;
}
.about-line.small-line{
  width:36px;
  height:2px;
  margin:20px 0 22px;
  background:var(--gold);
  opacity:.6;
}

.about-title{
  color:#fff;
  font-weight:800;
  line-height:1.12;
  letter-spacing:-0.5px;
  font-size:34px;
}
@media(min-width:640px){ .about-title{ font-size:42px; } }
@media(min-width:1024px){ .about-title{ font-size:50px; } }
.about-title span{ color:var(--gold); }

.about-subtitle{
  margin-top:18px;
  color:rgba(255,255,255,.85);
  font-size:16px;
  font-weight:500;
  max-width:520px;
  line-height:1.6;
}

.about-text{
  color:rgba(255,255,255,.72);
  font-size:14.5px;
  line-height:1.85;
  max-width:560px;
  margin-bottom:14px;
}

.about-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 28px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.3px;
  text-decoration:none;
  cursor:pointer;
  transition:all .25s ease;
  border:1.5px solid transparent;
}
.about-btn.primary-btn{
  background:var(--burgundy);
  color:#fff;
}
.about-btn.primary-btn:hover{
  background:var(--burgundy-dark);
}
.about-btn.secondary-btn{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.4);
}
.about-btn.secondary-btn:hover{
  border-color:var(--gold);
  color:var(--gold);
}

/* RIGHT */
.about-right-box{
  background:#fff;
  border-radius:26px;
  padding:34px 30px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
}

.about-box-top{
  padding-bottom:18px;
  margin-bottom:22px;
  border-bottom:1px solid #eef0f3;
}
.about-box-title{
  font-size:18px;
  font-weight:800;
  color:var(--navy);
  line-height:1.35;
}

.about-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 18px;
}
.about-feature-item{
  position:relative;
  padding-left:16px;
}
.about-feature-item::before{
  content:"";
  position:absolute;
  left:0; top:4px;
  width:6px; height:6px;
  border-radius:2px;
  background:var(--gold);
}
.about-feature-item:nth-child(2)::before{ background:var(--burgundy); }
.about-feature-item:nth-child(3)::before{ background:var(--navy-deep); }
.about-feature-item:nth-child(4)::before{ background:var(--gold); }
.about-feature-item h3{
  font-size:14.5px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:6px;
}
.about-feature-item p{
  font-size:12.5px;
  line-height:1.6;
  color:#6b7280;
}

.about-bottom-box{
  margin-top:26px;
  background:linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius:18px;
  padding:22px;
}
.about-bottom-box p{
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.7;
  font-style:italic;
  margin-bottom:10px;
}
.about-bottom-box h4{
  color:var(--gold);
  font-size:14.5px;
  font-weight:700;
  line-height:1.4;
}










 * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif;
    line-height: 1.5;
color: #1f2937;
    overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .service-card-hover { transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); background: #ffffff; }
    .category-heading { font-weight: 800; letter-spacing: -0.3px; color: #1a1a1a; position: relative; display: inline-block; background: linear-gradient(135deg, #8B0000 0%, #C9A14A 70%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmerText 3s linear infinite; }
    @keyframes shimmerText { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    .category-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, #C9A14A, #8B0000, #C9A14A); border-radius: 3px; transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .category-wrapper:hover .category-heading::after { width: 100%; }
    .category-wrapper { opacity: 0; transform: translateY(30px); animation: categorySlideUp 0.7s ease forwards; }
    @keyframes categorySlideUp { to { opacity: 1; transform: translateY(0); } }
    .category-wrapper:hover { transform: translateX(8px); }
    .service-card { display: flex; flex-direction: column; height: 100%; transition: all 0.3s; border-radius: 1rem; opacity: 0; transform: translateY(40px); transition: all 0.6s ease; }
    .service-card.show { opacity: 1; transform: translateY(0); }
    .service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .workflow-card { background: #fff; border-radius: 28px; padding: 28px 24px; position: relative; transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); backdrop-filter: blur(2px); }
    .workflow-card:hover { transform: translateY(-12px); box-shadow: 0 30px 45px -12px rgba(139,0,0,0.2); border-color: rgba(201,161,74,0.3); }
    .step-tag { position: absolute; top: -16px; left: 28px; color: #fff; font-size: 12px; font-weight: 800; padding: 6px 20px; border-radius: 999px; letter-spacing: 0.5px; background: #8B0000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    .workflow-icon { width: 70px; height: 70px; border-radius: 30px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 24px; background: linear-gradient(135deg, #fef9f0, #fff); box-shadow: 0 12px 18px -8px rgba(0,0,0,0.05); transition: 0.3s; }
    .workflow-card:hover .workflow-icon { transform: scale(0.98); }
    .workflow-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.3px; }
    .workflow-list { display: flex; flex-direction: column; gap: 12px; color: #374151; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
    .workflow-list li { display: flex; align-items: center; gap: 10px; }
    .workflow-list li::before { content: "▹"; color: #C9A14A; font-size: 12px; font-weight: bold; }
    .workflow-btn { display: inline-block; margin-top: 8px; border: 1.5px solid; padding: 8px 22px; border-radius: 999px; font-weight: 700; font-size: 13px; transition: 0.25s ease; background: transparent; backdrop-filter: blur(4px); cursor: pointer; text-decoration: none; }
    .workflow-btn:hover { background: #111827; color: #fff !important; border-color: #111827; transform: translateY(-2px); }
    .testimonial-wrapper { position: relative; max-width: 500px; margin: auto; }
    .testimonial-card { display: none; padding: 25px; border-radius: 16px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .testimonial-card.active { display: block; animation: fadeUp 0.6s ease; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
    .prev, .next { position: absolute; top: 50%; transform: translateY(-50%); background: #8B0000; color: white; border: none; padding: 8px 12px; cursor: pointer; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
    .prev:hover, .next:hover { background:#C9A14A; }
    .prev { left: -20px; } .next { right: -20px; }
    @media (max-width: 640px) { .prev { left: -10px; } .next { right: -10px; } .workflow-card { padding: 20px; } .workflow-title { font-size: 20px; } }
    .glass-form input, .glass-form textarea { background: #ffffffcc; border-radius: 20px; border: 1px solid #e2e8f0; }
    .submit-btn { background: linear-gradient(135deg, #8B0000, #C9A14A); border-radius: 40px; font-weight: 700; }
    #popupForm .bg-white { border-radius: 32px; }
    .animate-card { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .mobile-submenu{
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .mobile-submenu.open{
      max-height: 500px;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .mobile-dropdown-toggle.open i{
      transform: rotate(180deg);
    }
    /* Hero specific styles for elegant design */
    .hero-gradient-bg {
      background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%);
    }
    .floating-image {
      animation: floatImage 6s ease-in-out infinite;
    }
    @keyframes floatImage {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    .big-curve {
      border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
    }
    .hero-stat-card {
      transition: all 0.4s ease;
    }
    .hero-stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #1f2937; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .mobile-submenu{ max-height: 0; overflow: hidden; transition: all 0.4s ease; }
    .mobile-submenu.open{ max-height: 500px; padding-top: 8px; padding-bottom: 8px; }
    .mobile-dropdown-toggle.open i{ transform: rotate(180deg); }
    .hero-gradient-bg { background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%); }
    .floating-image { animation: floatImage 6s ease-in-out infinite; }
    @keyframes floatImage { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
    
    /* Leadership Section Styles - Circular images, accordion style with arrows */
    .leader-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      filter: grayscale(100%);
    }
    .leader-circle:hover {
      transform: scale(1.03);
      filter: grayscale(0%);
      border-color: #C9A14A;
    }
    .leader-card {
      background: white;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .leader-card:hover {
      transform: translateY(-5px);
    }
    .toggle-btn {
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .toggle-btn:hover {
      color: #C9A14A;
      transform: translateX(5px);
    }
    .description-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .description-content.open {
      max-height: 800px;
    }
    .close-desc-btn {
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .close-desc-btn:hover {
      color: #8B0000;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .leader-circle { width: 140px; height: 140px; }
    }
    @media (max-width: 640px) {
      .leader-circle { width: 120px; height: 120px; }
    }
    /* PRODUCT SECTION */

.bhp-product-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.35s ease;
}

.bhp-product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* IMAGE */

.bhp-product-image{
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 18px;
  height: 260px;
}

.bhp-main-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.bhp-product-card:hover .bhp-main-image{
  transform: scale(1.18);
}

/* CONTENT */

.bhp-product-content{
  padding: 22px;
}

.bhp-product-category{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B0000;
  margin-bottom: 12px;
}

.bhp-product-title{
  font-size: 17px;
  line-height: 1.5;
  font-weight: 800;
  color: #0A1428;
}

/* FEATURES */

.bhp-feature-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bhp-feature-list span{
  font-size: 12px;
  color: #374151;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 9px 12px;
  line-height: 1.5;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-product-image{
    height: 220px;
  }

  .bhp-product-title{
    font-size: 15px;
  }

  .bhp-feature-list span{
    font-size: 11px;
    padding: 8px 11px;
  }

}
/* IMAGE POPUP */

.image-popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
  padding: 20px;
}

.image-popup-overlay.active{
  opacity: 1;
  visibility: visible;
}

.image-popup-overlay img{
  max-width: 92%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  padding: 10px;
}

.image-popup-close{
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

@media(max-width:768px){

  .image-popup-close{
    font-size: 34px;
    top: 14px;
    right: 18px;
  }

}
/* BED HEAD PANEL DESIGN SECTION */

.bhp-design-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px 16px;
  transition: 0.3s ease;
  overflow: hidden;
}

.bhp-design-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #8B0000;
}

.bhp-design-card:hover{
  transform: translateY(-3px);
  border-color: #8B0000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.bhp-design-card span{
  display: block;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0A1428;
  padding-left: 10px;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-design-card{
    padding: 16px 14px;
    border-radius: 16px;
  }

  .bhp-design-card span{
    font-size: 11px;
    line-height: 1.6;
  }

}
/* ICU BED HEAD PANEL SECTION */

.icu-bhp-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px 16px;
  transition: 0.3s ease;
  overflow: hidden;
}

.icu-bhp-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #8B0000;
}

.icu-bhp-card:hover{
  transform: translateY(-3px);
  border-color: #8B0000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.icu-bhp-card span{
  display: block;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .icu-bhp-card{
    padding: 15px 13px;
    border-radius: 16px;
  }

  .icu-bhp-card span{
    font-size: 11px;
    line-height: 1.6;
  }

}
/* BED HEAD PANEL HEIGHT SECTION */

.bhp-height-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 20px 18px;
  transition: 0.3s ease;
  overflow: hidden;
}

.bhp-height-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #8B0000;
}

.bhp-height-card:hover{
  transform: translateY(-3px);
  border-color: #8B0000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.bhp-height-card span{
  display: block;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-height-card{
    padding: 16px 14px;
    border-radius: 16px;
  }

  .bhp-height-card span{
    font-size: 11px;
    line-height: 1.6;
  }

}
/* BED HEAD PANEL INSTALLATION SECTION */

.bhp-install-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px 16px;
  transition: 0.3s ease;
  overflow: hidden;
}

.bhp-install-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #8B0000;
}

.bhp-install-card:hover{
  transform: translateY(-3px);
  border-color: #8B0000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.bhp-install-card span{
  display: block;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-install-card{
    padding: 16px 14px;
    border-radius: 16px;
  }

  .bhp-install-card span{
    font-size: 11px;
    line-height: 1.6;
  }

}
/* INDUSTRIES WE SERVE */

.bhp-industry-card{
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  transition: 0.3s ease;
}

.bhp-industry-card:hover{
  transform: translateY(-4px);
  border-color: #8B0000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.bhp-industry-icon{
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(139,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.bhp-industry-icon i{
  font-size: 16px;
  color: #8B0000;
}

.bhp-industry-card span{
  display: block;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-industry-card{
    padding: 18px 12px;
    border-radius: 18px;
  }

  .bhp-industry-icon{
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .bhp-industry-icon i{
    font-size: 14px;
  }

  .bhp-industry-card span{
    font-size: 11px;
    line-height: 1.6;
  }

}
/* CONTACT & CATALOGUE SECTION */

/* BUTTONS */

.bhp-download-btn{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  background: #8B0000;
  color: #ffffff;

  border-radius: 18px;

  padding: 16px 18px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;

  transition: 0.3s ease;
}

.bhp-download-btn:hover{
  background: #0A1428;
  transform: translateY(-2px);
}

.secondary-btn{
  background: #ffffff;
  color: #0A1428;
  border: 1px solid #e5e7eb;
}

.secondary-btn:hover{
  border-color: #8B0000;
  color: #8B0000;
  background: #ffffff;
}

/* FORM */

.bhp-form-input{
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 15px 16px;

  font-size: 13px;
  color: #111827;
  background: #ffffff;

  outline: none;
  transition: 0.3s ease;
}

.bhp-form-input:focus{
  border-color: #8B0000;
  box-shadow: 0 0 0 3px rgba(139,0,0,0.08);
}

/* SUBMIT */

.bhp-submit-btn{
  width: 100%;

  background: #8B0000;
  color: #ffffff;

  border-radius: 16px;

  padding: 15px 18px;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s ease;
}

.bhp-submit-btn:hover{
  background: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .bhp-download-btn{
    font-size: 12px;
    padding: 15px 16px;
  }

  .bhp-form-input{
    font-size: 12px;
    padding: 14px 15px;
  }

  .bhp-submit-btn{
    font-size: 12px;
    padding: 14px 16px;
  }

}
/* CONSULTATION POPUP */

.consult-popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.consult-popup-overlay.active{
  opacity: 1;
  visibility: visible;
}

.consult-popup-box{
  width: 100%;
  max-width: 480px;

  background: #ffffff;

  border-radius: 28px;

  padding: 32px 28px;

  position: relative;
}

.consult-popup-close{
  position: absolute;
  top: 14px;
  right: 18px;

  font-size: 34px;
  line-height: 1;

  color: #111827;
}

.consult-input{
  width: 100%;

  border: 1px solid #e5e7eb;

  border-radius: 16px;

  padding: 15px 16px;

  font-size: 13px;

  outline: none;

  transition: 0.3s ease;
}

.consult-input:focus{
  border-color: #8B0000;
  box-shadow: 0 0 0 3px rgba(139,0,0,0.08);
}

.consult-submit-btn{
  width: 100%;

  background: #8B0000;
  color: #ffffff;

  border-radius: 16px;

  padding: 15px 18px;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s ease;
}

.consult-submit-btn:hover{
  background: #0A1428;
}

/* MOBILE */

@media(max-width:768px){

  .consult-popup-box{
    padding: 28px 20px;
    border-radius: 24px;
  }

  .consult-input{
    font-size: 12px;
    padding: 14px 15px;
  }

}













 * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif;
    line-height: 1.5;
color: #1f2937;
    overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .service-card-hover { transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); background: #ffffff; }
    .category-heading { font-weight: 800; letter-spacing: -0.3px; color: #1a1a1a; position: relative; display: inline-block; background: linear-gradient(135deg, #8B0000 0%, #C9A14A 70%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmerText 3s linear infinite; }
    @keyframes shimmerText { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    .category-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, #C9A14A, #8B0000, #C9A14A); border-radius: 3px; transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .category-wrapper:hover .category-heading::after { width: 100%; }
    .category-wrapper { opacity: 0; transform: translateY(30px); animation: categorySlideUp 0.7s ease forwards; }
    @keyframes categorySlideUp { to { opacity: 1; transform: translateY(0); } }
    .category-wrapper:hover { transform: translateX(8px); }
    .service-card { display: flex; flex-direction: column; height: 100%; transition: all 0.3s; border-radius: 1rem; opacity: 0; transform: translateY(40px); transition: all 0.6s ease; }
    .service-card.show { opacity: 1; transform: translateY(0); }
    .service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .workflow-card { background: #fff; border-radius: 28px; padding: 28px 24px; position: relative; transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); backdrop-filter: blur(2px); }
    .workflow-card:hover { transform: translateY(-12px); box-shadow: 0 30px 45px -12px rgba(139,0,0,0.2); border-color: rgba(201,161,74,0.3); }
    .step-tag { position: absolute; top: -16px; left: 28px; color: #fff; font-size: 12px; font-weight: 800; padding: 6px 20px; border-radius: 999px; letter-spacing: 0.5px; background: #8B0000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    .workflow-icon { width: 70px; height: 70px; border-radius: 30px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 24px; background: linear-gradient(135deg, #fef9f0, #fff); box-shadow: 0 12px 18px -8px rgba(0,0,0,0.05); transition: 0.3s; }
    .workflow-card:hover .workflow-icon { transform: scale(0.98); }
    .workflow-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.3px; }
    .workflow-list { display: flex; flex-direction: column; gap: 12px; color: #374151; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
    .workflow-list li { display: flex; align-items: center; gap: 10px; }
    .workflow-list li::before { content: "▹"; color: #C9A14A; font-size: 12px; font-weight: bold; }
    .workflow-btn { display: inline-block; margin-top: 8px; border: 1.5px solid; padding: 8px 22px; border-radius: 999px; font-weight: 700; font-size: 13px; transition: 0.25s ease; background: transparent; backdrop-filter: blur(4px); cursor: pointer; text-decoration: none; }
    .workflow-btn:hover { background: #111827; color: #fff !important; border-color: #111827; transform: translateY(-2px); }
    .testimonial-wrapper { position: relative; max-width: 500px; margin: auto; }
    .testimonial-card { display: none; padding: 25px; border-radius: 16px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .testimonial-card.active { display: block; animation: fadeUp 0.6s ease; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
    .prev, .next { position: absolute; top: 50%; transform: translateY(-50%); background: #8B0000; color: white; border: none; padding: 8px 12px; cursor: pointer; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
    .prev:hover, .next:hover { background:#C9A14A; }
    .prev { left: -20px; } .next { right: -20px; }
    @media (max-width: 640px) { .prev { left: -10px; } .next { right: -10px; } .workflow-card { padding: 20px; } .workflow-title { font-size: 20px; } }
    .glass-form input, .glass-form textarea { background: #ffffffcc; border-radius: 20px; border: 1px solid #e2e8f0; }
    .submit-btn { background: linear-gradient(135deg, #8B0000, #C9A14A); border-radius: 40px; font-weight: 700; }
    #popupForm .bg-white { border-radius: 32px; }
    .animate-card { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .mobile-submenu{
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .mobile-submenu.open{
      max-height: 500px;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .mobile-dropdown-toggle.open i{
      transform: rotate(180deg);
    }
    /* Hero specific styles for elegant design */
    .hero-gradient-bg {
      background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%);
    }
    .floating-image {
      animation: floatImage 6s ease-in-out infinite;
    }
    @keyframes floatImage {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    .big-curve {
      border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
    }
    .hero-stat-card {
      transition: all 0.4s ease;
    }
    .hero-stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #1f2937; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .mobile-submenu{ max-height: 0; overflow: hidden; transition: all 0.4s ease; }
    .mobile-submenu.open{ max-height: 500px; padding-top: 8px; padding-bottom: 8px; }
    .mobile-dropdown-toggle.open i{ transform: rotate(180deg); }
    .hero-gradient-bg { background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%); }
    .floating-image { animation: floatImage 6s ease-in-out infinite; }
    @keyframes floatImage { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
    
    /* Leadership Section Styles - Circular images, accordion style with arrows */
    .leader-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      filter: grayscale(100%);
    }
    .leader-circle:hover {
      transform: scale(1.03);
      filter: grayscale(0%);
      border-color: #C9A14A;
    }
    .leader-card {
      background: white;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .leader-card:hover {
      transform: translateY(-5px);
    }
    .toggle-btn {
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .toggle-btn:hover {
      color: #C9A14A;
      transform: translateX(5px);
    }
    .description-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .description-content.open {
      max-height: 800px;
    }
    .close-desc-btn {
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .close-desc-btn:hover {
      color: #8B0000;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .leader-circle { width: 140px; height: 140px; }
    }
    @media (max-width: 640px) {
      .leader-circle { width: 120px; height: 120px; }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #1f2937; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .mobile-submenu{ max-height: 0; overflow: hidden; transition: all 0.4s ease; }
    .mobile-submenu.open{ max-height: 500px; padding-top: 8px; padding-bottom: 8px; }
    .mobile-dropdown-toggle.open i{ transform: rotate(180deg); }
    .hero-gradient-bg { background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%); }
    .floating-image { animation: floatImage 6s ease-in-out infinite; }
    @keyframes floatImage { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
    
    /* Leadership Section Styles - Circular images, accordion style with arrows */
    .leader-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      filter: grayscale(100%);
    }
    .leader-circle:hover {
      transform: scale(1.03);
      filter: grayscale(0%);
      border-color: #C9A14A;
    }
    .leader-card {
      background: white;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .leader-card:hover {
      transform: translateY(-5px);
    }
    .toggle-btn {
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .toggle-btn:hover {
      color: #C9A14A;
      transform: translateX(5px);
    }
    .description-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .description-content.open {
      max-height: 800px;
    }
    .close-desc-btn {
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .close-desc-btn:hover {
      color: #8B0000;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .leader-circle { width: 140px; height: 140px; }
    }
    @media (max-width: 640px) {
      .leader-circle { width: 120px; height: 120px; }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .ha-hero {
  /* same brand tokens as before */
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  /* new: ink on white instead of ink-on-navy */
  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

/* =========================================================
   BLUEPRINT PAPER — faint grid confined to the top-left corner,
   behind the copy only. Not a full-bleed texture.
   ========================================================= */

.ha-hero__paper {
  position: absolute;
  top: 0; left: 0;
  width: 62%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
  mask-image: linear-gradient(115deg, black 0%, black 40%, transparent 78%);
  -webkit-mask-image: linear-gradient(115deg, black 0%, black 40%, transparent 78%);
}

/* =========================================================
   LAYOUT
   ========================================================= */

.ha-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 120px 40px 130px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 88px;
}

/* =========================================================
   COPY
   ========================================================= */

.ha-hero__copy { max-width: 560px; }

.ha-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ha-hero__eyebrow-mark {
  width: 16px; height: 2px;
  background: var(--gold);
}

.ha-hero__title {
  margin: 0;
  color: var(--navy);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.ha-hero__desc {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--ink-70);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.ha-hero__desc + .ha-hero__desc { margin-top: 14px; }

/* =========================================================
   ACTIONS
   ========================================================= */

.ha-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 36px 0 44px;
}

.ha-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ha-btn--primary {
  padding: 16px 28px;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(139, 0, 0, 0.2);
}

.ha-btn--primary:hover {
  background: #a30000;
  transform: translateY(-2px);
}

.ha-btn--text {
  position: relative;
  padding: 4px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--hairline);
}

.ha-btn--text:hover {
  border-color: var(--gold);
  color: var(--red);
}

/* =========================================================
   SPECS — drafting-style annotation rows, not icon cards
   ========================================================= */

.ha-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}

.ha-hero__spec {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 220px;
}

.ha-hero__spec-tick {
  flex: 0 0 auto;
  width: 2px;
  height: 34px;
  margin-top: 2px;
  background: var(--gold);
}

.ha-hero__spec strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.ha-hero__spec span {
  display: block;
  margin-top: 4px;
  color: var(--ink-50);
  font-size: 12.5px;
  line-height: 1.5;
}

/* =========================================================
   VIDEO VIEWPORT
   ========================================================= */

.ha-hero__frame {
  position: relative;
  width: 100%;
  padding-bottom: 78px; /* room for the floating stats card */
}

.ha-hero__frame-tag {
  position: absolute;
  top: -16px;
  left: 28px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: 3px;
  background: var(--navy);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ha-hero__frame-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy-deep);
}

.ha-hero__frame-video video,
.ha-hero__frame-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ha-hero__frame-fallback { display: none; }

/* crop marks — architectural viewport corners, offset outside the frame */
.ha-hero__crop {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 3;
}

.ha-hero__crop--tl { top: -10px; left: -10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-hero__crop--tr { top: -10px; right: -10px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.ha-hero__crop--bl { bottom: 88px; left: -10px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-hero__crop--br { bottom: 88px; right: -10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* floating stats card — overlaps the bottom edge of the frame */
.ha-hero__stats {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 40px rgba(10, 20, 40, 0.12);
}

.ha-hero__stat strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.ha-hero__stat span {
  display: block;
  margin-top: 2px;
  color: var(--ink-50);
  font-size: 11px;
}

.ha-hero__stat-divider { width: 1px; height: 28px; background: var(--hairline); }

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-hero__inner { gap: 56px; padding: 104px 30px 110px; }
  .ha-hero__title { font-size: 42px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack columns
   ========================================================= */

@media (max-width: 950px) {
  .ha-hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 96px 28px 90px;
  }

  .ha-hero__paper { width: 100%; height: 60%; }

  .ha-hero__copy { max-width: 640px; }

  .ha-hero__frame { max-width: 560px; margin: 0 auto; padding-bottom: 84px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-hero__inner { padding: 84px 18px 64px; gap: 46px; }

  .ha-hero__title { font-size: 30px; letter-spacing: -0.8px; }

  .ha-hero__desc { font-size: 13.5px; }

  .ha-hero__actions { flex-direction: column; align-items: flex-start; gap: 18px; margin: 28px 0 34px; }
  .ha-btn--primary { width: 100%; justify-content: center; }

  .ha-hero__specs { flex-direction: column; gap: 20px; padding-top: 24px; }
  .ha-hero__spec { max-width: 100%; }

  .ha-hero__frame { padding-bottom: 0; }
  .ha-hero__frame-video { aspect-ratio: 1 / 1; border-radius: 4px; }

  .ha-hero__frame-tag { top: -12px; left: 16px; font-size: 10.5px; padding: 6px 12px; }

  .ha-hero__crop { width: 18px; height: 18px; }
  .ha-hero__crop--tl, .ha-hero__crop--tr { top: -8px; }
  .ha-hero__crop--bl, .ha-hero__crop--br { bottom: 8px; }
  .ha-hero__crop--tl, .ha-hero__crop--bl { left: -8px; }
  .ha-hero__crop--tr, .ha-hero__crop--br { right: -8px; }

  /* stats move below the frame instead of floating over it */
  .ha-hero__stats {
    position: static;
    margin-top: 20px;
    left: auto; right: auto;
    flex-wrap: wrap;
    box-shadow: none;
    border: 1px solid var(--hairline);
  }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤380px)
   ========================================================= */

@media (max-width: 380px) {
  .ha-hero__inner { padding: 76px 16px 56px; }
  .ha-hero__title { font-size: 26px; }
  .ha-hero__stats { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ha-hero__stat-divider { display: none; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ha-hero__frame-video video { display: none; }
  .ha-hero__frame-fallback { display: block; }

  .ha-btn,
  .ha-hero__crop { transition: none !important; }
}










.ha-understand {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #FAFAF8;
}

.ha-understand__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 90px;
}

/* =========================================================
   LEFT — sticky heading
   ========================================================= */

.ha-understand__head {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-right: 20px;
  border-right: 1px solid var(--hairline);
}

.ha-understand__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-understand__eyebrow-mark {
  width: 16px; height: 2px;
  background: var(--gold);
  flex: 0 0 auto;
}

.ha-understand__title {
  margin: 0;
  max-width: 340px;
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* =========================================================
   RIGHT — flowing body
   ========================================================= */

.ha-understand__body { max-width: 640px; }

.ha-understand__body p {
  margin: 0 0 22px;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.8;
}

.ha-understand__lead {
  color: var(--navy) !important;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.7 !important;
}

/* =========================================================
   SUB-SECTION — "Architecture that supports healthcare"
   ========================================================= */

.ha-understand__sub {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}

.ha-understand__sub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.ha-understand__result-lead {
  color: var(--navy) !important;
  font-weight: 600;
}

.ha-understand__framework {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ha-understand__framework li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.ha-understand__tick {
  flex: 0 0 auto;
  width: 16px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-4px);
}

/* =========================================================
   CLOSING STATEMENT — the section's one signature moment
   ========================================================= */

.ha-understand__closing {
  margin-top: 46px !important;
  padding-left: 26px;
  border-left: 2px solid var(--red);
  color: var(--navy) !important;
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.55 !important;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-understand__inner { gap: 60px; padding: 100px 30px; }
  .ha-understand__title { font-size: 32px; }
  .ha-understand__closing { font-size: 19px !important; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack columns, drop sticky
   ========================================================= */

@media (max-width: 950px) {
  .ha-understand__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 90px 28px;
  }

  .ha-understand__head {
    position: static;
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .ha-understand__title { max-width: 100%; }
  .ha-understand__body { max-width: 100%; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-understand__inner { padding: 72px 18px; gap: 28px; }

  .ha-understand__title { font-size: 27px; }

  .ha-understand__body p,
  .ha-understand__lead { font-size: 14.5px !important; line-height: 1.75 !important; }

  .ha-understand__sub { margin-top: 34px; padding-top: 30px; }

  .ha-understand__framework li { font-size: 14.5px; }

  .ha-understand__closing {
    font-size: 17px !important;
    padding-left: 18px;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ha-understand * { scroll-behavior: auto !important; }
}
      
      
      
      
      
      .ha-approach {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(255, 255, 255, 0.72);
  --ink-50: rgba(255, 255, 255, 0.5);
  --hairline: rgba(255, 255, 255, 0.14);

  position: relative;
  width: 100%;
  background: var(--navy);
}

.ha-approach__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 40px;
}

/* =========================================================
   HEAD
   ========================================================= */

.ha-approach__head { max-width: 640px; margin-bottom: 90px; }

.ha-approach__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.ha-approach__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-approach__title {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.ha-approach__intro {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   PROCESS VIDEO — reuses the hero's crop-mark frame language
   ========================================================= */

.ha-approach__video {
  position: relative;
  width: 100%;
  margin: 0 0 90px;
}

.ha-approach__video-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ha-approach__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-deep);
}

.ha-approach__video-frame video,
.ha-approach__video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ha-approach__video-fallback { display: none; }

.ha-approach__crop {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 3;
}

.ha-approach__crop--tl { top: -10px; left: -10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-approach__crop--tr { top: -10px; right: -10px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.ha-approach__crop--bl { bottom: -10px; left: -10px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-approach__crop--br { bottom: -10px; right: -10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* =========================================================
   NUMBERED SEQUENCE — connected by a vertical rail
   ========================================================= */

.ha-approach__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ha-approach__steps::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 34px;
  width: 1px;
  background: var(--hairline);
}

.ha-approach__step {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 30px 0;
}

.ha-approach__step:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.ha-approach__num {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ha-approach__step-body h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.ha-approach__step-body p {
  margin: 0;
  max-width: 560px;
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   THE PRINCIPLE
   ========================================================= */

.ha-approach__principle {
  margin-top: 90px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
}

.ha-approach__eyebrow--light { color: var(--gold-light); margin-bottom: 26px; }

.ha-approach__principle p {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.ha-approach__principle p:last-child { margin-bottom: 0; }

.ha-approach__tick {
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-6px);
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-approach__inner { padding: 110px 30px; }
  .ha-approach__title { font-size: 34px; }
  .ha-approach__principle p { font-size: 22px; }
}

@media (min-width: 1101px) {
  /* a little taller on real desktop screens, per request — "bade size me" */
  .ha-approach__video-frame { aspect-ratio: 16 / 8; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px)
   ========================================================= */

@media (max-width: 950px) {
  .ha-approach__head { margin-bottom: 64px; }
  .ha-approach__inner { padding: 96px 28px; }
  .ha-approach__video { margin-bottom: 64px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-approach__inner { padding: 76px 18px; }

  .ha-approach__title { font-size: 27px; }
  .ha-approach__intro { font-size: 14.5px; }

  .ha-approach__step { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .ha-approach__steps::before { left: 19px; }
  .ha-approach__num { font-size: 17px; }
  .ha-approach__step-body h3 { font-size: 18px; }
  .ha-approach__step-body p { font-size: 14px; }

  .ha-approach__principle { margin-top: 60px; padding-top: 40px; }
  .ha-approach__principle p { font-size: 19px; gap: 12px; }
  .ha-approach__tick { width: 16px; }

  /* keep close to the source video's natural ratio so nothing important
     gets cropped on narrow screens — just scaled down, not cut differently */
  .ha-approach__video { margin-bottom: 44px; }
  .ha-approach__video-frame { aspect-ratio: 4 / 3; border-radius: 4px; }
  .ha-approach__video-tag { top: -12px; left: 14px; font-size: 10.5px; padding: 6px 12px; }
  .ha-approach__crop { width: 18px; height: 18px; }
  .ha-approach__crop--tl, .ha-approach__crop--tr { top: -8px; }
  .ha-approach__crop--bl, .ha-approach__crop--br { bottom: -8px; }
  .ha-approach__crop--tl, .ha-approach__crop--bl { left: -8px; }
  .ha-approach__crop--tr, .ha-approach__crop--br { right: -8px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-approach a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ha-approach__video-frame video { display: none; }
  .ha-approach__video-fallback { display: block; }
}
      
      .ha-spaces {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #ffffff;
}

.ha-spaces__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* =========================================================
   HEAD
   ========================================================= */

.ha-spaces__head { max-width: 640px; margin-bottom: 70px; }

.ha-spaces__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-spaces__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-spaces__title {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -1px;
}

.ha-spaces__intro {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   GRID — 4 / 2 / 1
   ========================================================= */

.ha-spaces__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.ha-spaces__card {
  position: relative;
  padding: 34px 28px;
  background: #ffffff;
  transition: background 0.25s ease;
}

.ha-spaces__card:hover { background: #FAFAF8; }

.ha-spaces__tick {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
}

.ha-spaces__card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
}

.ha-spaces__card p {
  margin: 0;
  color: var(--ink-50);
  font-size: 13.5px;
  line-height: 1.65;
}

/* =========================================================
   CLOSING MANIFESTO
   ========================================================= */

.ha-spaces__manifesto {
  max-width: 720px;
  margin: 90px auto 0;
  text-align: center;
}

.ha-spaces__eyebrow--center { justify-content: center; }

.ha-spaces__manifesto p {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.2px;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-spaces__inner { padding: 100px 30px; }
  .ha-spaces__title { font-size: 32px; }
  .ha-spaces__grid { grid-template-columns: repeat(2, 1fr); }
  .ha-spaces__manifesto p { font-size: 21px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px)
   ========================================================= */

@media (max-width: 950px) {
  .ha-spaces__head { margin-bottom: 56px; }
  .ha-spaces__inner { padding: 90px 28px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-spaces__inner { padding: 72px 18px; }

  .ha-spaces__title { font-size: 26px; }
  .ha-spaces__intro { font-size: 14.5px; }

  .ha-spaces__grid { grid-template-columns: 1fr; }
  .ha-spaces__card { padding: 26px 22px; }

  .ha-spaces__manifesto { margin-top: 56px; }
  .ha-spaces__manifesto p { font-size: 18px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-spaces a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
      
      .ha-complexity {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #F5F6F8;
}

.ha-complexity__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* =========================================================
   HEAD
   ========================================================= */

.ha-complexity__head { max-width: 660px; margin-bottom: 80px; }

.ha-complexity__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-complexity__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-complexity__title {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -1px;
}

.ha-complexity__head p {
  margin: 0 0 16px;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.75;
}

.ha-complexity__head-close { color: var(--navy) !important; font-weight: 600; }

/* =========================================================
   FIVE DIMENSIONS — repeated split rows
   ========================================================= */

.ha-complexity__rows { border-top: 1px solid var(--hairline); }

.ha-complexity__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--hairline);
}

.ha-complexity__row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.ha-complexity__row-body p {
  margin: 0 0 12px;
  max-width: 620px;
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.75;
}

.ha-complexity__row-body p:last-child { margin-bottom: 0; }

/* =========================================================
   THE BALANCE
   ========================================================= */

.ha-complexity__balance {
  max-width: 780px;
  margin: 90px auto 0;
  text-align: center;
}

.ha-complexity__eyebrow--center { justify-content: center; }

.ha-complexity__equation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.ha-complexity__equation span:not(.ha-complexity__plus) {
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.ha-complexity__plus {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.ha-complexity__balance-close {
  margin: 0;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-complexity__inner { padding: 100px 30px; }
  .ha-complexity__title { font-size: 30px; }
  .ha-complexity__row { grid-template-columns: 220px 1fr; gap: 30px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack row columns
   ========================================================= */

@media (max-width: 950px) {
  .ha-complexity__head { margin-bottom: 60px; }
  .ha-complexity__inner { padding: 90px 28px; }

  .ha-complexity__row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-complexity__inner { padding: 72px 18px; }

  .ha-complexity__title { font-size: 25px; }
  .ha-complexity__head p { font-size: 14.5px; }

  .ha-complexity__row { padding: 26px 0; }
  .ha-complexity__row h3 { font-size: 17px; }
  .ha-complexity__row-body p { font-size: 14px; }

  .ha-complexity__balance { margin-top: 56px; }
  .ha-complexity__equation { gap: 10px; }
  .ha-complexity__equation span:not(.ha-complexity__plus) { font-size: 16px; }
  .ha-complexity__balance-close { font-size: 14.5px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-complexity a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ha-fundamentals {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #ffffff;
}

.ha-fundamentals__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* =========================================================
   HEAD
   ========================================================= */

.ha-fundamentals__head { max-width: 640px; margin-bottom: 80px; }

.ha-fundamentals__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-fundamentals__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-fundamentals__title {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -1px;
}

.ha-fundamentals__head p {
  margin: 0 0 14px;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.75;
}

.ha-fundamentals__head p:last-child { margin-bottom: 0; }

/* =========================================================
   LIST — large outline numerals, reference-checklist rhythm
   ========================================================= */

.ha-fundamentals__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.ha-fundamentals__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
}

.ha-fundamentals__num {
  color: rgba(201, 161, 74, 0.22); /* fallback fill for browsers without text-stroke */
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

@supports (-webkit-text-stroke: 1px black) or (text-stroke: 1px black) {
  .ha-fundamentals__num {
    color: transparent;
    -webkit-text-stroke: 1.4px var(--gold);
    text-stroke: 1.4px var(--gold);
  }
}

.ha-fundamentals__item-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18.5px;
  font-weight: 700;
}

.ha-fundamentals__item-body p {
  margin: 0 0 10px;
  max-width: 600px;
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.75;
}

.ha-fundamentals__item-body p:last-child { margin-bottom: 0; }

/* =========================================================
   CLOSING SPEC NOTE
   ========================================================= */

.ha-fundamentals__note {
  margin-top: 70px;
  padding: 40px 44px;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold);
}

.ha-fundamentals__note h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.ha-fundamentals__note p {
  margin: 0;
  max-width: 620px;
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-fundamentals__inner { padding: 100px 30px; max-width: 900px; }
  .ha-fundamentals__title { font-size: 30px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack number above content
   ========================================================= */

@media (max-width: 950px) {
  .ha-fundamentals__head { margin-bottom: 60px; }
  .ha-fundamentals__inner { padding: 90px 28px; }

  .ha-fundamentals__item { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .ha-fundamentals__num { font-size: 44px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-fundamentals__inner { padding: 72px 18px; }

  .ha-fundamentals__title { font-size: 25px; }
  .ha-fundamentals__head p { font-size: 14.5px; }

  .ha-fundamentals__item { padding: 24px 0; }
  .ha-fundamentals__num { font-size: 36px; }
  .ha-fundamentals__item-body h3 { font-size: 17px; }
  .ha-fundamentals__item-body p { font-size: 14px; }

  .ha-fundamentals__note { margin-top: 48px; padding: 28px 24px; }
  .ha-fundamentals__note h3 { font-size: 18px; }
  .ha-fundamentals__note p { font-size: 14px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-fundamentals a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
      /* =========================================================
   LAXAIR — CLINICAL FLOW & SPACE PLANNING
   SECTION 7 — split label+body rows (cream bg, same family as
   ha-complexity's "five dimensions" pattern).
   Paste this inside the existing <style> tag in the HTML head.
   ========================================================= */

.ha-flow {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #FAFAF8;
}

.ha-flow__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* =========================================================
   HEAD
   ========================================================= */

.ha-flow__head { max-width: 680px; margin-bottom: 80px; }

.ha-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-flow__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-flow__title {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -1px;
}

.ha-flow__head p {
  margin: 0 0 16px;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.75;
}

.ha-flow__head p:last-child { margin-bottom: 0; }

/* =========================================================
   FIVE MOVEMENT TOPICS — repeated split rows
   ========================================================= */

.ha-flow__rows { border-top: 1px solid var(--hairline); }

.ha-flow__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--hairline);
}

.ha-flow__row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.ha-flow__row-body p {
  margin: 0 0 12px;
  max-width: 620px;
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.75;
}

.ha-flow__row-body p:last-child { margin-bottom: 0; }

/* =========================================================
   WHY THIS MATTERS — closing statement
   ========================================================= */

.ha-flow__closing {
  margin-top: 70px;
  padding: 40px 44px;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--red);
}

.ha-flow__closing h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.ha-flow__closing p {
  margin: 0 0 12px;
  max-width: 640px;
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.75;
}

.ha-flow__closing p:last-child {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-flow__inner { padding: 100px 30px; }
  .ha-flow__title { font-size: 30px; }
  .ha-flow__row { grid-template-columns: 220px 1fr; gap: 30px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack row columns
   ========================================================= */

@media (max-width: 950px) {
  .ha-flow__head { margin-bottom: 60px; }
  .ha-flow__inner { padding: 90px 28px; }

  .ha-flow__row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-flow__inner { padding: 72px 18px; }

  .ha-flow__title { font-size: 25px; }
  .ha-flow__head p { font-size: 14.5px; }

  .ha-flow__row { padding: 26px 0; }
  .ha-flow__row h3 { font-size: 17px; }
  .ha-flow__row-body p { font-size: 14px; }

  .ha-flow__closing { margin-top: 48px; padding: 28px 24px; }
  .ha-flow__closing h3 { font-size: 18px; }
  .ha-flow__closing p { font-size: 14px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-flow a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}



/* =========================================================
   LAXAIR — HOSPITAL INTERIOR DESIGN
   SECTION 8 — dark "pop" CTA section (navy bg, gold linework),
   same family as ha-approach: used here to give the page a
   punch/break before continuing, with one image + one button
   instead of a video + steps.
   Paste this inside the existing <style> tag in the HTML head.
   ========================================================= */

.ha-interior {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(255, 255, 255, 0.72);
  --ink-50: rgba(255, 255, 255, 0.5);
  --hairline: rgba(255, 255, 255, 0.14);

  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}

.ha-interior__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 130px 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 80px;
}

/* =========================================================
   COPY
   ========================================================= */

.ha-interior__copy { max-width: 520px; }

.ha-interior__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ha-interior__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-interior__title {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.1px;
}

.ha-interior__desc {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--ink-70);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* =========================================================
   BUTTON
   ========================================================= */

.ha-interior__actions { margin: 38px 0 0; }

.ha-interior__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.ha-interior__btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.ha-interior__btn-arrow { transition: transform 0.25s ease; }
.ha-interior__btn:hover .ha-interior__btn-arrow { transform: translateX(3px); }

/* =========================================================
   IMAGE VIEWPORT — reuses the hero's crop-mark frame language
   ========================================================= */

.ha-interior__frame { position: relative; width: 100%; }

.ha-interior__frame-tag {
  position: absolute;
  top: -16px;
  left: 28px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ha-interior__frame-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy-deep);
}

.ha-interior__frame-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ha-interior__crop {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 3;
}

.ha-interior__crop--tl { top: -10px; left: -10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-interior__crop--tr { top: -10px; right: -10px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.ha-interior__crop--bl { bottom: -10px; left: -10px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ha-interior__crop--br { bottom: -10px; right: -10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-interior__inner { gap: 56px; padding: 110px 30px; }
  .ha-interior__title { font-size: 34px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack columns
   ========================================================= */

@media (max-width: 950px) {
  .ha-interior__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 96px 28px;
  }

  .ha-interior__copy { max-width: 640px; }
  .ha-interior__frame { max-width: 560px; margin: 0 auto; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-interior__inner { padding: 76px 18px; gap: 40px; }

  .ha-interior__title { font-size: 27px; letter-spacing: -0.7px; }
  .ha-interior__desc { font-size: 14.5px; }

  .ha-interior__btn { width: 100%; justify-content: center; }

  .ha-interior__frame-image { aspect-ratio: 1 / 1; border-radius: 4px; }
  .ha-interior__frame-tag { top: -12px; left: 16px; font-size: 10.5px; padding: 6px 12px; }

  .ha-interior__crop { width: 18px; height: 18px; }
  .ha-interior__crop--tl, .ha-interior__crop--tr { top: -8px; }
  .ha-interior__crop--bl, .ha-interior__crop--br { bottom: -8px; }
  .ha-interior__crop--tl, .ha-interior__crop--bl { left: -8px; }
  .ha-interior__crop--tr, .ha-interior__crop--br { right: -8px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-interior__btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
      
      /* =========================================================
   LAXAIR — CONTACT US
   SECTION 9 — closing section of the page (white bg). Split
   layout: contact info left (reuses the hero's "spec" tick
   rhythm), Web3Forms-powered enquiry form right, in a bordered
   card with a gold top accent.
   Paste this inside the existing <style> tag in the HTML head.
   ========================================================= */

.ha-contact {
  --navy: #0A1428;
  --navy-deep: #050B16;
  --red: #8B0000;
  --gold: #C9A14A;
  --gold-light: #E4C66F;

  --ink-70: rgba(10, 20, 40, 0.72);
  --ink-50: rgba(10, 20, 40, 0.5);
  --hairline: rgba(10, 20, 40, 0.12);

  position: relative;
  width: 100%;
  background: #ffffff;
}

.ha-contact__inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
}

/* =========================================================
   LEFT — heading + contact info
   ========================================================= */

.ha-contact__head { max-width: 420px; }

.ha-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.ha-contact__eyebrow-mark { width: 16px; height: 2px; background: var(--gold); flex: 0 0 auto; }

.ha-contact__title {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.ha-contact__desc {
  max-width: 400px;
  margin: 20px 0 0;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.75;
}

.ha-contact__info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}

.ha-contact__info-row { display: flex; align-items: flex-start; gap: 14px; }

.ha-contact__info-tick {
  flex: 0 0 auto;
  width: 2px;
  height: 34px;
  margin-top: 2px;
  background: var(--gold);
}

.ha-contact__info-row strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.ha-contact__info-row a,
.ha-contact__info-row span {
  display: block;
  margin-top: 4px;
  color: var(--ink-50);
  font-size: 13.5px;
  line-height: 1.6;
  text-decoration: none;
}

.ha-contact__info-row a:hover { color: var(--red); }

/* =========================================================
   RIGHT — form card
   ========================================================= */

.ha-contact__card {
  position: relative;
  padding: 44px 40px;
  background: #FAFAF8;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
}

.ha-contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.ha-contact__field { display: flex; flex-direction: column; gap: 8px; }
.ha-contact__field--full { grid-column: 1 / -1; }

.ha-contact__field label {
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ha-contact__field input,
.ha-contact__field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 4px;
  border: 1px solid var(--hairline);
  background: #ffffff;
  color: var(--navy);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ha-contact__field textarea { resize: vertical; min-height: 110px; }

.ha-contact__field input::placeholder,
.ha-contact__field textarea::placeholder { color: var(--ink-50); }

.ha-contact__field input:focus,
.ha-contact__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.18);
}

.ha-contact__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 16px 28px;
  border: none;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(139, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.ha-contact__submit:hover { background: #a30000; transform: translateY(-2px); }
.ha-contact__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ha-contact__status {
  grid-column: 1 / -1;
  display: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.ha-contact__status--show { display: block; }
.ha-contact__status--ok { background: rgba(46, 125, 50, 0.1); color: #2e7d32; }
.ha-contact__status--err { background: rgba(139, 0, 0, 0.08); color: var(--red); }

/* honeypot field — kept out of view, not display:none (bots skip that) */
.ha-contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ========================================================= */

@media (max-width: 1100px) {
  .ha-contact__inner { gap: 56px; padding: 100px 30px; }
  .ha-contact__title { font-size: 32px; }
}

/* =========================================================
   RESPONSIVE — TABLET (≤950px): stack columns
   ========================================================= */

@media (max-width: 950px) {
  .ha-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 90px 28px;
  }

  .ha-contact__head { max-width: 640px; }
  .ha-contact__card { max-width: 640px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤640px)
   ========================================================= */

@media (max-width: 640px) {
  .ha-contact__inner { padding: 72px 18px; gap: 40px; }

  .ha-contact__title { font-size: 26px; }
  .ha-contact__desc { font-size: 14.5px; }

  .ha-contact__card { padding: 30px 22px; }
  .ha-contact__form { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ha-contact__submit:focus-visible,
.ha-contact__field input:focus-visible,
.ha-contact__field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
      /* =========================================================
   HOSPITAL PROJECT CONTACT POPUP
   ========================================================= */

.hospital-contact-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hospital-contact-popup.is-open {
  display: flex;
}

.hospital-contact-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hospital-contact-popup__box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 8px;
  border-top: 4px solid #C9A14A;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: hospitalPopupIn 0.25s ease-out;
}

@keyframes hospitalPopupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hospital-contact-popup__header {
  position: relative;
  padding: 28px 55px 20px 28px;
  border-bottom: 1px solid rgba(10, 20, 40, 0.1);
}

.hospital-contact-popup__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #8B0000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hospital-contact-popup__title {
  margin: 0;
  color: #0A1428;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.hospital-contact-popup__description {
  margin: 9px 0 0;
  color: rgba(10, 20, 40, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.hospital-contact-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(10, 20, 40, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #0A1428;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hospital-contact-popup__close:hover {
  background: #0A1428;
  color: #ffffff;
}

.hospital-contact-popup__form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 25px 28px 28px;
}

.hospital-contact-popup__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hospital-contact-popup__field label {
  color: #0A1428;
  font-size: 12px;
  font-weight: 700;
}

.hospital-contact-popup__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(10, 20, 40, 0.16);
  border-radius: 5px;
  background: #ffffff;
  color: #0A1428;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hospital-contact-popup__field input:focus {
  border-color: #C9A14A;
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.14);
}

.hospital-contact-popup__field input::placeholder {
  color: rgba(10, 20, 40, 0.4);
}

.hospital-contact-popup__submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
  border: 0;
  border-radius: 5px;
  background: #8B0000;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hospital-contact-popup__submit:hover {
  background: #A30000;
  transform: translateY(-1px);
}

.hospital-contact-popup__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.hospital-contact-popup__status {
  display: none;
  padding: 11px 13px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.5;
}

.hospital-contact-popup__status.show {
  display: block;
}

.hospital-contact-popup__status.success {
  background: #edf8ef;
  color: #287a36;
  border: 1px solid #cce8d0;
}

.hospital-contact-popup__status.error {
  background: #fff1f1;
  color: #8B0000;
  border: 1px solid #f0cccc;
}

@media (max-width: 640px) {

  .hospital-contact-popup {
    padding: 14px;
  }

  .hospital-contact-popup__box {
    max-height: 92vh;
    border-radius: 7px;
  }

  .hospital-contact-popup__header {
    padding: 24px 50px 18px 22px;
  }

  .hospital-contact-popup__title {
    font-size: 21px;
  }

  .hospital-contact-popup__description {
    font-size: 13px;
  }

  .hospital-contact-popup__form {
    gap: 15px;
    padding: 21px 22px 23px;
  }

}


/* =========================================================
   SECTION 08 — Vertical Sliding Gallery
   ========================================================= */

.hi-vert {
  position: relative;
  background: #fbf8f1;
  padding: 120px 56px 130px;
}

.hi-vert-intro {
  max-width: 700px;
  margin: 0 auto 56px;
}

/* Self-contained intro text styling — does not depend on any other
   section's CSS file. Safe var() fallbacks included in case this
   page does not already define --hi-gold / --hi-ink / font variables. */

.hi-vert-kicker {
  margin: 0 0 18px;
  font-family: var(--hi-font-body, "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hi-gold, #8a6a2f);
}

.hi-vert-heading {
  margin: 0;
  font-family: var(--hi-font-display, "Fraunces", Georgia, serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.22;
  color: #14201c;
}

@media (max-width: 620px) {
  .hi-vert-heading {
    font-size: 25px;
  }
}

.hi-vert-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border: 1px solid rgba(16, 26, 22, 0.1);
}

/* ---------- Images column (wide) ---------- */

.hi-vert-images {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #14201c;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.hi-vert-imgs-loop {
  display: flex;
  flex-direction: column;
  animation: hi-vert-scroll 26s linear infinite;
}

.hi-vert-stage:hover .hi-vert-imgs-loop,
.hi-vert-stage:hover .hi-vert-texts-loop {
  animation-play-state: paused;
}

.hi-vert-item {
  height: 300px;
  flex: 0 0 auto;
  padding: 3px 0;
}

.hi-vert-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes hi-vert-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* ---------- Text column (narrow) ---------- */

.hi-vert-textcol {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--hi-ink, #101a16);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.hi-vert-text-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hi-vert-text-fx::before,
.hi-vert-text-fx::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hi-vert-text-fx::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -60px;
  background: radial-gradient(circle, rgba(227, 201, 146, 0.22) 0%, rgba(227, 201, 146, 0) 70%);
}

.hi-vert-text-fx::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(185, 139, 62, 0.16) 0%, rgba(185, 139, 62, 0) 70%);
}

.hi-vert-texts-loop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  animation: hi-vert-scroll 26s linear infinite;
}

.hi-vert-text-item {
  height: 300px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  border-top: 1px solid rgba(247, 244, 236, 0.1);
}

.hi-vert-text-num {
  margin: 0 0 12px;
  font-family: var(--hi-font-body, "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--hi-gold-light, #e3c992);
}

.hi-vert-text-title {
  margin: 0 0 10px;
  font-family: var(--hi-font-display, "Fraunces", Georgia, serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  color: var(--hi-text, #f7f4ec);
}

.hi-vert-text-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--hi-text-muted, rgba(247, 244, 236, 0.78));
}

@media (max-width: 1080px) {
  .hi-vert-stage {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 900px) {
  .hi-vert {
    padding: 96px 40px 100px;
  }

  .hi-vert-stage {
    grid-template-columns: 1fr;
  }

  .hi-vert-images {
    height: 420px;
  }

  .hi-vert-item {
    height: 220px;
  }

  .hi-vert-textcol {
    height: 300px;
  }

  .hi-vert-text-item {
    height: 300px;
    padding: 0 28px;
  }
}

@media (max-width: 620px) {
  .hi-vert {
    padding: 72px 22px 80px;
  }

  .hi-vert-intro {
    margin-bottom: 36px;
  }

  .hi-vert-images {
    height: 340px;
  }

  .hi-vert-item {
    height: 180px;
  }

  .hi-vert-textcol {
    height: 260px;
  }

  .hi-vert-text-item {
    height: 260px;
    padding: 0 22px;
  }

  .hi-vert-text-title {
    font-size: 17px;
  }

  .hi-vert-text-desc {
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hi-vert-imgs-loop,
  .hi-vert-texts-loop {
    animation: none;
  }
}



















* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #1f2937; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .mobile-submenu{ max-height: 0; overflow: hidden; transition: all 0.4s ease; }
    .mobile-submenu.open{ max-height: 500px; padding-top: 8px; padding-bottom: 8px; }
    .mobile-dropdown-toggle.open i{ transform: rotate(180deg); }
    .hero-gradient-bg { background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%); }
    .floating-image { animation: floatImage 6s ease-in-out infinite; }
    @keyframes floatImage { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
    
    /* Leadership Section Styles - Circular images, accordion style with arrows */
    .leader-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      filter: grayscale(100%);
    }
    .leader-circle:hover {
      transform: scale(1.03);
      filter: grayscale(0%);
      border-color: #C9A14A;
    }
    .leader-card {
      background: white;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .leader-card:hover {
      transform: translateY(-5px);
    }
    .toggle-btn {
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .toggle-btn:hover {
      color: #C9A14A;
      transform: translateX(5px);
    }
    .description-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .description-content.open {
      max-height: 800px;
    }
    .close-desc-btn {
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .close-desc-btn:hover {
      color: #8B0000;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .leader-circle { width: 140px; height: 140px; }
    }
    @media (max-width: 640px) {
      .leader-circle { width: 120px; height: 120px; }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #1f2937; overflow-x: hidden; background-color: #ffffff; }
    .text-gold { color: #C9A14A; }
    .bg-burgundy { background-color: #8B0000; }
    .mobile-submenu{ max-height: 0; overflow: hidden; transition: all 0.4s ease; }
    .mobile-submenu.open{ max-height: 500px; padding-top: 8px; padding-bottom: 8px; }
    .mobile-dropdown-toggle.open i{ transform: rotate(180deg); }
    .hero-gradient-bg { background: radial-gradient(ellipse at 70% 30%, rgba(139,0,0,0.02) 0%, rgba(255,255,255,0) 70%); }
    .floating-image { animation: floatImage 6s ease-in-out infinite; }
    @keyframes floatImage { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
    
    /* Leadership Section Styles - Circular images, accordion style with arrows */
    .leader-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      filter: grayscale(100%);
    }
    .leader-circle:hover {
      transform: scale(1.03);
      filter: grayscale(0%);
      border-color: #C9A14A;
    }
    .leader-card {
      background: white;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .leader-card:hover {
      transform: translateY(-5px);
    }
    .toggle-btn {
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .toggle-btn:hover {
      color: #C9A14A;
      transform: translateX(5px);
    }
    .description-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .description-content.open {
      max-height: 800px;
    }
    .close-desc-btn {
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .close-desc-btn:hover {
      color: #8B0000;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .leader-circle { width: 140px; height: 140px; }
    }
    /* =====================================================
   HERO IMAGE SLIDER
===================================================== */

#hero{
    position:relative;
    isolation:isolate;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity 1.4s ease-in-out;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;
}

.hero-slide img{

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1);
    animation:heroZoom 8s linear infinite;
    will-change:transform;

}

@keyframes heroZoom{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.08);

    }

}

/* ===========================
   HERO CONTENT
=========================== */

#hero h1{

    text-shadow:0 4px 20px rgba(0,0,0,.45);

}

#hero h2{

    text-shadow:0 2px 12px rgba(0,0,0,.35);

}

#hero p{

    text-shadow:0 2px 8px rgba(0,0,0,.30);

}

/* ===========================
   BUTTONS
=========================== */

#hero a{

    transition:.35s;

}

#hero a:hover{

    transform:translateY(-3px);

}

/* ===========================
   STATS
=========================== */

.hero-stats h3{

    line-height:1;

}

.hero-stats p{

    line-height:1.5;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:1024px){

#hero{

    min-height:92vh;
    padding-top:90px;
    padding-bottom:190px;

}

}

@media(max-width:768px){

.hero-slide img{

    object-position:center center;

}

#hero{

    min-height:860px;

}

#hero h1{

    font-size:38px;
    line-height:1.08;

}

#hero h2{

    font-size:21px;
    line-height:1.5;

}

#hero p{

    font-size:16px;
    line-height:1.8;

}

}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px){

#hero{

    min-height:820px;
    padding-top:90px;
    padding-bottom:210px;

}

.hero-slide img{

    object-position:center;

}

}

/* ===========================
   SCROLL ARROW
=========================== */

#hero svg{

    filter:drop-shadow(0 4px 10px rgba(0,0,0,.45));

}

/* ===========================
   STATS CARD
=========================== */

.hero-stats{

    backdrop-filter:blur(18px);

}

/* ===========================
   PERFORMANCE
=========================== */

.hero-slide,
.hero-slide img{

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform-style:preserve-3d;

}
    
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   :root{
  --navy:#0A1428;
  --navy-deep:#041C45;
  --burgundy:#8B0000;
  --burgundy-dark:#700000;
  --navy-dark:#061530;
  --gold:#C9A14A;
  --bg:#f8fbff;
  --line:#eadfc9;
  --muted:#6b7280;
}

.tag-strip{
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 32px rgba(10,20,40,0.06);
  border-top:3px solid var(--accent, var(--burgundy));
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow:0 20px 40px rgba(10,20,40,0.11);
}

.service-card .service-img{
  height:190px;
  overflow:hidden;
}
.service-card .service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img{
  transform: scale(1.06);
}

.service-btn{
  width:100%;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:12px 0;
  border-radius:999px;
  background:var(--accent, var(--burgundy));
  transition: background .25s ease;
}
.service-btn:hover{
  background:var(--accent-hover, var(--burgundy-dark));
}
   
   
   
    
    
    