:root {
    --green: #1a6b2e;
    --green-dark: #145524;
    --green-light: #2a8c3f;
    --orange: #f7941d;
    --orange-dark: #e07e10;
    --text-dark: #1a1a1a;
    --text-mid: #444444;
    --text-light: #777;
    --bg-light: #f8f8f6;
    --white: #ffffff;
    --border: #e0e0e0;
}
  .luthra-badge {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-style: italic;
  }

  /* ── HERO BANNER ── */
  .hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #2e9e48 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 70px;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
  }
  .hero-left { flex: 1; }
  .hero-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-tagline::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--orange);
  }
  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--orange); }
  .hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .hero-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 13px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  .hero-right {
    flex: 0 0 340px;
    display: flex;
    justify-content: flex-end;
  }
  .hero-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 28px 26px;
    backdrop-filter: blur(8px);
    width: 320px;
  }
  .hero-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
  }
  .dbso-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .dbso-item {
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 12px 0;
    border-radius: 4px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn .4s forwards;
  }
  .dbso-item:nth-child(1) { animation-delay: .1s; }
  .dbso-item:nth-child(2) { animation-delay: .25s; background: var(--green-light); }
  .dbso-item:nth-child(3) { animation-delay: .4s; background: var(--green); }
  .dbso-item:nth-child(4) { animation-delay: .55s; background: var(--green-dark); }
  @keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
  }

  /* ── ORANGE STRIP ── */
  .strip {
    background: var(--orange);
    padding: 18px 24px;
  }
  .strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
  }
  .strip-item svg { flex-shrink: 0; }
  .strip-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .strip-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }

  /* ── SECTION COMMON ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-title span { color: var(--orange); }
  .section-desc {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 48px;
  }

  /* ── SERVICES GRID ── */
  #services { background: var(--bg-light); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .service-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    position: relative;
  }
  .service-card:hover {
    box-shadow: 0 12px 36px rgba(26,107,46,0.14);
    transform: translateY(-3px);
  }
  .service-card-header {
    background: var(--green);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .service-card-header.orange { background: var(--orange); }
  .service-card-header svg { color: var(--white); flex-shrink: 0; }
  .service-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
  }
  .service-card-body {
    padding: 22px 24px;
  }
  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .service-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }
  .service-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }
  .service-list li strong {
    color: var(--green);
    font-weight: 600;
  }
  .service-card-footer {
    background: var(--bg-light);
    padding: 12px 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
  }
  .sub-list {
    margin-top: 6px;
    padding-left: 16px;
  }
  .sub-list li {
    font-size: 12.5px !important;
    color: #888 !important;
  }
  .sub-list li::before { background: var(--green) !important; width: 5px !important; height: 5px !important; }

  /* differentiator badge */
  .diff-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), #f5a623);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  /* ── WHY KRIYA ── */
  #why { background: var(--white); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }
  .why-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .why-card:hover::after { transform: scaleX(1); }
  .why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); border-color: transparent; }
  .why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
  }
  .why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ── SECTORS ── */
  #sectors { background: var(--green-dark); padding: 70px 24px; }
  #sectors .section-title { color: var(--white); }
  #sectors .section-desc { color: rgba(255,255,255,0.75); }
  .sectors-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
  }
  .sector-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background .2s, border-color .2s;
    cursor: default;
  }
  .sector-pill:hover {
    background: var(--orange);
    border-color: var(--orange);
  }

  /* ── CONTACT CTA ── */
  #contact { background: var(--bg-light); }
  .cta-box {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: 12px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .cta-box::after {
    content: '';
    position: absolute;
    right: 60px; bottom: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .cta-left { position: relative; z-index: 1; }
  .cta-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .cta-left h2 span { color: var(--orange); }
  .cta-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 480px;
  }
  .cta-right {
    position: relative; z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }
  .cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13.5px;
  }
  .cta-contact-item svg { color: var(--orange); flex-shrink: 0; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 40px 24px 24px;
    border-top: 4px solid var(--orange);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-logo .company { color: var(--white) !important; }
  .footer-logo .sub { color: rgba(255,255,255,0.4) !important; }
  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: right;
  }
  .footer-copy a { color: var(--orange); text-decoration: none; }
.w-300 {
    width:300px;
        display: inline-block;
}
  /* responsive */
  @media (max-width: 900px) {
    .hero-inner { flex-direction: column; }
    .hero-right { display: none; }
    .hero h1 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; padding: 40px 28px; }
    .cta-right { width: 100%; }
    nav { display: none; }
  }