    :root {
      --bg: #596db4;
      --surface: rgba(255, 255, 255, 0.82);
      --surface-strong: #ffffff;
      --text: #16323d;
      --muted: #596DB4;
      --primary: #596DB4;
      --primary-dark: #596DB4;
      --accent: #f2b95c;
      --border: rgba(18, 124, 138, 0.15);
      --shadow: 0 18px 50px rgba(17, 68, 78, 0.12);
      --radius: 24px;
      --max-width: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(18, 124, 138, 0.12), transparent 28%),
        radial-gradient(circle at right center, rgba(242, 185, 92, 0.18), transparent 22%),
        linear-gradient(180deg, #eff8fb 0%, #f6fbfd 38%, #ffffff 100%);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max-width), calc(100% - 2rem));
      margin: 0 auto;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      background: rgba(89, 109, 180, 0.1);
      color: var(--primary-dark);
      font-weight: 700;
      font-size: 0.92rem;
      letter-spacing: 0.01em;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.72);
      border-bottom: 1px solid rgba(89, 109, 180, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      padding-left: 100px;
      gap: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      overflow: visible;
    }

    .brand-mark {
      display: flex;

      width: 48px;
      height: 48px;
      color: white;
      font-size: 1.25rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 600;
      padding: 0.6rem 0.8rem;
      border-radius: 12px;
      transition: 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      /* background: rgba(18, 124, 138, 0.08); */
      background: rgba(89, 109, 180, 0.08);
      color: var(--primary-dark);
    }

    .cta-btn,
    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.95rem 1.25rem;
      border-radius: 16px;
      font-weight: 700;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .cta-btn {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      box-shadow: 0 14px 30px rgba(18, 124, 138, 0.25);
    }

    .ghost-btn {
      background: rgba(255, 255, 255, 0.8);
      border-color: rgba(18, 124, 138, 0.18);
      color: var(--primary-dark);
    }

    .cta-btn:hover,
    .ghost-btn:hover {
      transform: translateY(-2px);
    }

    .hero {
      padding: 5rem 0 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4.9rem);
      line-height: 0.98;
      margin: 1rem 0;
      letter-spacing: -0.04em;
    }

    .hero p {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 62ch;
      margin-bottom: 1.6rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.4rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .stat {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1rem;
      box-shadow: var(--shadow);
    }

    .stat strong {
      display: block;
      font-size: 1.4rem;
      color: var(--primary-dark);
    }

    .hero-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 1.35rem;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -20% -20% auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(18, 124, 138, 0.18), transparent 65%);
      border-radius: 50%;
    }

    .photo-panel {
      border-radius: 24px;
      min-height: 420px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(7, 52, 59, 0.15), rgba(7, 52, 59, 0.45)),
        url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1200&q=80') center/cover;
      display: flex;
      align-items: end;
      padding: 1.4rem;
      color: white;
    }

    .photo-overlay {
      width: 100%;
      background: rgba(11, 54, 61, 0.5);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 20px;
      padding: 1rem 1.1rem;
      backdrop-filter: blur(8px);
    }

    section {
      padding: 2rem 0 4rem;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.7rem;
    }

    .section-head h2 {
      margin: 0.35rem 0 0;
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      max-width: 54ch;
    }

    .services-grid,
    .values-grid,
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .card {
      background: var(--surface-strong);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.35rem;
      box-shadow: var(--shadow);
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(17, 68, 78, 0.16);
    }

    .icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(18, 124, 138, 0.12);
      color: var(--primary-dark);
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.15rem;
    }

    .card p,
    .card li {
      color: var(--muted);
    }

    .card ul {
      padding-left: 1rem;
      margin: 0.75rem 0 0;
    }

    .split {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 1.2rem;
      align-items: stretch;
    }

    .highlight {
      background: linear-gradient(135deg, #596db4, #1693a3);
      color: white;
      border-radius: 30px;
      padding: 2rem;
      box-shadow: 0 20px 45px rgba(18, 124, 138, 0.28);
      position: relative;
      overflow: hidden;
    }

    .highlight::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }

    .highlight h3 { margin-top: 0; font-size: 1.8rem; }
    .highlight p, .highlight li { color: rgba(255,255,255,0.88); }

    .mini-list {
      display: grid;
      gap: 0.8rem;
      margin-top: 1.2rem;
    }

    .mini-item {
      display: flex;
      gap: 0.8rem;
      align-items: start;
      padding: 0.9rem 1rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
    }

    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(18, 124, 138, 0.12);
      color: var(--primary-dark);
      font-weight: 800;
      flex: 0 0 36px;
    }

    .testimonial {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,252,253,0.98));
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .quote {
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .contact-box {
      padding: 2rem;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,251,253,0.96));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .form-row {
      display: grid;
      gap: 0.45rem;
    }

    label {
      font-weight: 700;
      font-size: 0.95rem;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid rgba(18, 124, 138, 0.16);
      background: white;
      border-radius: 16px;
      padding: 0.95rem 1rem;
      font: inherit;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input:focus, textarea:focus, select:focus {
      border-color: rgba(18, 124, 138, 0.55);
      box-shadow: 0 0 0 4px rgba(18, 124, 138, 0.1);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    .full { grid-column: 1 / -1; }

    .footer-mantra {
      display: grid;
      border: 1px rgba( 0, 0, 0, 1 );

    }

    .footer-breental {
      display: grid;
      border: 1px rgba( 0, 0, 0, 1 );
    }
    
    .footer {
      padding: 1.5rem 0 2.5rem;
      color: var(--muted);
      text-align: center;
      flex-direction: row;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating-badge {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 40;
      box-shadow: 0 18px 35px rgba(18, 124, 138, 0.25);
    }

    @media (max-width: 980px) {
      .hero-grid,
      .split,
      .contact-grid,
      .services-grid,
      .values-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }
    }

    @media (max-width: 760px) {
      .nav {
        flex-direction: column;
        align-items: start;
      }

      .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 0.4rem;
      }

      .hero {
        padding-top: 3.2rem;
      }

      .photo-panel {
        min-height: 320px;
      }

      .floating-badge {
        left: 1rem;
        right: 1rem;
      }
    }

    .flex-text {
	    display: flex;
	    text-align: center;
	    background-color: #666666;
  	  background-clip: text;
  	  -webkit-background-clip: text;
  	  color: transparent;
  	  text-shadow: 1px 1px 1px rgba(245, 245, 245, 0.5);
	    margin: 2px 2px;
    }
    
    .flex-image {
      display: flex;
      margin: 3px 3px;
      align-items: center;
      justify-content: center;
    }
    
    .box-shadow-flex {
      display: flex;
      width: fit-content;
      padding: 0px 3px;
      margin: 0px 0px;
      border: 1px solid #333333;
      border-radius: 6px;
      box-shadow: 8px 8px 5px #444444;
      background-image: linear-gradient(180deg, white, #dddddd 40%, #777777);
      font-family: Arial, Helvetica, sans-serif;
      font-size: medium;
      font-weight:bold;
      color: #666666;
      vertical-align:bottom;
    }
    
    .logo {
      width: 48px;
      height: 48px;	
    }
