  @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600&family=Tiro+Devanagari+Marathi&display=swap');

  :root {
    --paper: #FFFFFF;
    --paper-deep: #F1F4FC;
    --ink: #101A2E;
    --ink-soft: #4E5C74;
    --blue: #1B4FD8;
    --blue-deep: #12379E;
    --blue-bright: #2D6BFF;
    --gold: #C98A2C;
    --line: rgba(16, 26, 46, 0.12);
    --display :'Plus Jakarta Sans', sans-serif;

    /*--display: 'Manrope', sans-serif;*/
    --sans: 'Inter', system-ui, sans-serif;
    --devanagari: 'Tiro Devanagari Marathi', serif;

    --container: 1180px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  button {
    font-family: inherit;
    cursor: pointer;
  }
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.servicee-card--wide {
  grid-column: span 1; /* mobile-safe default */
}
@media (min-width: 721px) {
  .servicee-card--wide { grid-column: span 3; }
}
.modal-card {
  max-width: min(400px, calc(100vw - 40px));
}
  .section-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--blue);
    margin: 0 0 10px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .section-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    color: var(--ink);
  }

  .section-lede {
    max-width: 58ch;
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0 0 40px;
  }

  :focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  .cosmic-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .cosmic-star {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    animation: star-twinkle 5s ease-in-out infinite;
  }

  @keyframes star-twinkle {

    0%,
    100% {
      opacity: 0.12;
      transform: scale(1);
    }

    50% {
      opacity: 0.55;
      transform: scale(1.5);
    }
  }

  .cosmic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--line);
  }

  @keyframes spin-slow {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes spin-slow-rev {
    to {
      transform: rotate(-360deg);
    }
  }

  /* Hero — the one blue moment */

  .hero {
    position: relative;
    overflow: hidden;
    padding: 30px 0 30px;
    background:
      radial-gradient(ellipse 1100px 700px at 82% 8%, rgba(255, 255, 255, 0.14), transparent 60%),
      radial-gradient(ellipse 900px 650px at -5% 95%, rgba(255, 255, 255, 0.10), transparent 60%),
      radial-gradient(ellipse 1400px 1000px at 50% 40%, var(--blue-bright), var(--blue-deep) 78%);
  }

  .hero .cosmic-star {
    background: #FFFFFF;
  }

  .hero .cosmic-ring {
    border-color: rgba(255, 255, 255, 0.22);
  }

  .hero .cosmic-ring--1 {
    width: 62vw;
    height: 62vw;
    top: -22vw;
    right: -20vw;
    animation: spin-slow 200s linear infinite;
  }

  .hero .cosmic-ring--2 {
    width: 40vw;
    height: 40vw;
    bottom: -18vw;
    left: -14vw;
    animation: spin-slow-rev 240s linear infinite;
  }

  .hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-kicker {
    font-size: 0.95rem;
    color: #FFD98A;
    margin: 0 0 18px;
    font-weight: 500;
  }

  .hero-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 22px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
  }

  .hero-title-accent {
    color: #FFD98A;
    font-weight: 700;
  }

  .hero-desc {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    margin: 0 0 32px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: #FFFFFF;
    color: var(--blue-deep);
    border: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .btn-primary:hover {
    background: #EAF0FF;
    transform: translateY(-1px);
  }

  .btn-ghost {
    color: #FFFFFF;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
  }

  .btn-ghost:hover {
    opacity: 0.65;
  }

  .hero-stats {
    display: flex;
    gap: 44px;
    margin: 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hero-stats dt {
    font-family: var(--display);
    font-size: 1.9rem;
    font-weight: 600;
    color: #FFD98A;
    margin: 0;
  }

  .hero-stats dd {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-wheel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-wheel {
    position: relative;
    width: min(400px, 86vw);
    aspect-ratio: 1;
    z-index: 1;
  }

  .wheel-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    animation: spin-slow 90s linear infinite;
  }

  .wheel-ring::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .wheel-node {
    position: absolute;
    width: 52px;
    height: 52px;
    margin: -26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    animation: node-breathe 5s ease-in-out infinite;
  }

  .wheel-node:hover,
  .wheel-node.is-active {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--blue-deep);
    transform: scale(1.12);
  }

  @keyframes node-breathe {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.06);
    }
  }

  .wheel-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--blue-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.35);
  }

  .wheel-core-num {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
  }

  .wheel-core-label {
    font-size: 0.68rem;
    color: var(--gold);
  }

  .hero-tags {
    max-width: var(--container);
    margin: 30px auto 0;
    padding: 20px 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
  }

  .hero-tags .dot {
    color: #FFD98A;
  }

  /* Numbers section — white */

  .philosophy {
    position: relative;
    padding: 60px 0;
    background: var(--paper);
    overflow: hidden;
  }

  .num-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }

  .num-chip {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: transparent;
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .num-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .num-chip.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #FFFFFF;
  }

  .num-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--paper-deep);
    border-radius: 6px;
    padding: 48px;
    border-left: 3px solid var(--blue);
  }

  .num-detail-figure {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .num-detail-digit {
    font-family: var(--display);
    font-size: 7rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1;
  }

  .num-detail-copy h3 {
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--ink);
  }

  .num-detail-copy p {
    margin: 0 0 14px;
    color: var(--ink-soft);
    max-width: 56ch;
  }

  .num-detail-planet {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin: 0 !important;
  }

  /* Topics — light blue tint band */

  .topics {
    position: relative;
    padding: 60px 0;
    background: var(--paper-deep);
    overflow: hidden;
    /*border-top: 1px solid var(--line);*/
    /*border-bottom: 1px solid var(--line);*/
  }

  .topics-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
  }

  .topics-image {
    position: relative;
  }

  .topics-image img {
    border-radius: 6px;
    box-shadow: 0 40px 80px -30px rgba(16, 26, 46, 0.25);
    border: 1px solid var(--line);
  }

  .topics-image-tag {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--blue);
    color: #FFFFFF;
    font-size: 0.78rem;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
  }

  .topics-cols {
    display: flex;
    gap: 48px;
  }

  .topics-list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  /* Services — white */

  .services {
    position: relative;
    padding: 60px 0;
    background: var(--paper);
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  .service-card {
    background: var(--paper);
    padding: 25px 25px;
    position: relative;
    transition: background 0.25s ease;
  }

  .service-card:hover {
    background: var(--paper-deep);
  }

  .service-card--wide {
    grid-column: span 3;
    background: linear-gradient(120deg, var(--blue-deep), var(--blue) 130%);
  }
    .servicee-card {
    background: var(--paper);
    padding: 20px 25px;
    position: relative;
    transition: background 0.25s ease;
  }

.servicee-card--wide{
      grid-column: span 3;
    background: linear-gradient(120deg, var(--blue-deep), var(--blue) 130%);
}


  .servicee-card--wide h3,
  .servicee-card--wide p {
    color: #FFFFFF;
  }

  .servicee-card--wide h3 {
    font-size: 1.6rem;
  }

  .servicee-card--wide p {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .service-card h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--ink);
  }

  .service-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  .service-card-glyph {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--blue);
  }

  .service-card-glyph svg {
    width: 100%;
    height: 100%;
  }

  /* Book section — blue, matches hero */

  .book-spread {
    position: relative;
    padding: 65px 0;
    overflow: hidden;
    background:
      radial-gradient(ellipse 1000px 700px at 20% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
      radial-gradient(ellipse 900px 700px at 85% 90%, rgba(255, 217, 138, 0.12), transparent 60%),
      linear-gradient(135deg, var(--blue-deep), var(--blue));
    border-top: 1px solid var(--line);
  }

  .book-spread-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .book-spread .eyebrow {
    color: #FFD98A;
  }

  .book-spread .section-title {
    color: #FFFFFF;
  }

  .book-spread .section-lede {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
  }

  .book-editions {
   display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
  }

  .book-edition-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
  }

  .book-edition-row .lang {
    color: #FFFFFF;
    font-weight: 500;
  }

  .book-edition-status {
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 100px;
  }

  .book-edition-status.available {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
  }

  .book-edition-status.soon {
    background: rgba(255, 217, 138, 0.2);
    color: #FFD98A;
  }

  .book-open {
    position: relative;
    perspective: 1800px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
  }

  .book-pages {
    position: relative;
    width: min(460px, 90vw);
    height: 320px;
    display: flex;
    transform-style: preserve-3d;
    animation: book-sway 8s ease-in-out infinite;
  }

  @keyframes book-sway {

    0%,
    100% {
      transform: rotateY(0deg);
    }

    50% {
      transform: rotateY(-2deg);
    }
  }

  .book-page {
    flex: 1;
    background: linear-gradient(160deg, #FFFFFF, #F1F4FC);
    color: var(--ink);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.4);
  }

  .book-page--left {
    border-radius: 6px 0 0 6px;
    align-items: flex-end;
    text-align: right;
    border-right: 1px solid rgba(20, 22, 42, 0.08);
  }

  .book-page--right {
    border-radius: 0 6px 6px 0;
    align-items: flex-start;
    text-align: left;
  }

  .book-page-title {
    font-family: var(--devanagari);
    font-size: 1.7rem;
    color: var(--blue-deep);
    margin: 0 0 10px;
  }

  .book-page-sub {
    font-size: 0.78rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    margin: 0;
  }

  .book-page-num {
    font-family: var(--display);
    font-size: 2.6rem;
    color: var(--ink);
    opacity: 0.15;
    margin: 0;
  }

  .book-spine {
    position: absolute;
    left: 50%;
    top: 6%;
    bottom: 6%;
    width: 14px;
    margin-left: -7px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
    z-index: 2;
  }

  /* Contact — white */

  .contact {
    position: relative;
    padding: 60px 0;
    background: var(--paper);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .contact-form {
    margin-top: 8px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .field {
    position: relative;
    margin-bottom: 22px;
  }

  .field input,
  .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--line);
    padding: 12px 2px 10px;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    resize: vertical;
    transition: border-color 0.2s ease;
  }

  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--blue);
  }

  .field label {
    position: absolute;
    left: 2px;
    top: 12px;
    color: var(--ink-soft);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.18s ease;
  }

  .field input:focus+label,
  .field input:not(:placeholder-shown)+label,
  .field textarea:focus+label,
  .field textarea:not(:placeholder-shown)+label {
    top: -14px;
    font-size: 0.75rem;
    color: var(--blue);
  }

  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    background: var(--blue);
    color: #FFFFFF;
  }

  .btn-submit:hover {
    background: var(--blue-deep);
  }

  .btn-loader {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .form-alert {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.92rem;
  }

  .form-alert--success {
    background: rgba(27, 79, 216, 0.08);
    color: var(--blue-deep);
    border: 1px solid rgba(27, 79, 216, 0.25);
  }

  .form-alert--error {
    background: rgba(200, 60, 60, 0.08);
    color: #B23A3A;
    border: 1px solid rgba(200, 60, 60, 0.25);
  }

  .map-frame {
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 28px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .contact-detail-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .contact-detail-row:last-child {
    border-bottom: none;
  }

  .contact-detail-label {
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 500;
  }

  .contact-detail-row p,
  .contact-detail-row a {
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  .contact-detail-row a:hover {
    color: var(--blue);
  }

  /* Modal */

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 26, 46, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    padding: 20px;
  }

  .modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .modal-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
  max-width: min(400px, calc(100vw - 40px));
    width: 100%;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    top: 55px;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.28s ease;
  }

  .modal-overlay.is-open .modal-card {
    transform: translateY(0) scale(1);
  }

  .modal-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: #FFFFFF;
    font-family: var(--display);
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .modal-card h3 {
    font-family: var(--display);
    font-size: 1.5rem;
    margin: 0 0 12px;
    color: var(--ink);
  }

  .modal-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0 0 24px;
  }

  .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink-soft);
  }

  .btn-whatsapp {
    display: inline-block;
  }

  .modal-phone {
    margin: 16px 0 0 !important;
    font-size: 0.88rem;
    color: var(--ink-soft) !important;
  }

  /* Responsive */

  @media (max-width: 980px) {
    .hero-inner {
      grid-template-columns: 1fr;
    }

    .hero-wheel-wrap {
      order: 0;
      margin-bottom: 10px;
    }

    .hero-wheel {
      width: min(320px, 78vw);
    }

    .topics-grid {
      grid-template-columns: 1fr;
    }

    .book-spread-inner {
      grid-template-columns: 1fr;
    }

    .book-open {
      margin-top: 20px;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .service-card--wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 720px) {
    .num-detail {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 32px 24px;
    }

    .num-detail-digit {
      font-size: 5rem;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .service-grid {
      grid-template-columns: 1fr;
    }

    .service-card--wide {
      grid-column: span 1;
    }

    .hero-stats {
      gap: 26px;
      flex-wrap: wrap;
    }

    .book-pages {
      flex-direction: column;
      height: auto;
    }

    .book-page--left,
    .book-page--right {
      border-radius: 6px;
      text-align: center;
      align-items: center;
    }

    .book-spine {
      display: none;
    }
  }


.site-header {
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    padding: 0;
}



.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}



.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    width: 105px;
    height: 105px;
    object-fit: contain;
    display: block;
    margin: -15px 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    color: #0038cc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.25s ease,
        transform 0.25s ease;
}

.nav-link:hover {
    color: #62d8ff;
}


.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #39d9ff,
        #7b61ff
    );
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        #20d66b,
        #0cae52
    );
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow:  0 5px 18px rgba(32, 214, 107, 0.25);
    transition:  transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta i {
    font-size: 17px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 22px rgb(206 234 255 / 30%);
}


.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}


/* IMPORTANT:
   White hamburger because header is dark
*/

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}



@media (max-width: 768px) {

    .site-header {
        padding: 0;
    }

    .header-inner {
        width: calc(100% - 24px);
        min-height: 64px;
        padding: 0 4px;
    }

    .site-logo {
        width: 82px;
        height: 82px;
        margin: -9px 0;
    }

    .nav-toggle {
        display: flex;
    }


    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        width: 220px;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        background: rgba(9, 17, 40, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        box-shadow:0 15px 40px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        pointer-events: none;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .site-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }


    .nav-link {
        display: block;
        padding: 11px 12px;
        border-radius: 8px;
        color: #edf3ff;
        font-size: 14px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .nav-link::after {
        display: none;
    }


    .nav-cta {
        width: 100%;
        box-sizing: border-box;
        margin-top: 6px;
        padding: 10px 12px;
        font-size: 13px;
    }


    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* Extra small phones */

@media (max-width: 400px) {

    .header-inner {
        width: calc(100% - 18px);
    }

    .site-logo {
        width: 76px;
        height: 76px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        width: 205px;
    }
}
.btn-order{
  background: #1b4fd8;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer {
  background: radial-gradient(ellipse 900px 600px at 85% 0%, rgba(56, 189, 248, 0.25), transparent 60%), radial-gradient(ellipse 700px 550px at -10% 100%, rgba(37, 99, 235, 0.30), transparent 60%), radial-gradient(ellipse 1200px 900px at 50% 50%, #003ea6, #052b71 75%);
  color: rgba(246, 239, 221, 0.85);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(246, 239, 221, 0.12);
}

.footer-brand .brand-glyph {
  margin-bottom: 16px;
}

.footer-brand h5 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: var(--paper);
}

.footer-brand p {
  color: rgb(255 253 249 / 88%);
  font-size: 0.92rem;
  max-width: 38ch;
}

.footer-col h6 {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgb(255 253 249 / 88%);
  font-size: 0.92rem;
}

.footer-col ul a:hover {
  color: var(--paper);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #f6efdd78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(246, 239, 221, 0.8);
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: var(--mars);
  border-color: var(--mars);
  color: var(--paper);
}

.footer-bottom {
     text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #ffffffb5;
}

.footer-bottom a {
  color: var(--gold-soft);
}


.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 99999;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}


.site-header *,
.site-header *::before,
.site-header *::after {
    box-sizing: border-box;
}

.header-inner {
    width: min(1200px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/*.site-logo {*/
/*    display: block;*/
/*    width: auto;*/
/*    height: 52px;*/
/*    max-width: 190px;*/
/*    object-fit: contain;*/
/*}*/

.site-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}


.site-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    color: #133a9e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.25s ease;
}



.site-nav .nav-link.active {
    color: #a87924;
}



.site-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 10px;
    padding: 11px 17px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1b4fd8, #1b4fd8);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgb(18 24 140 / 20%);
    transition: all 0.25s ease;
}

/*.site-nav .nav-cta:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 8px 22px rgba(18, 140, 126, 0.30);*/
/*}*/

.whatsapp-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 10px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 1px solid #dddddd;
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 100001;
    -webkit-tap-highlight-color: transparent;
}


.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #222222;
    border-radius: 10px;
    transition:transform 0.3s ease,opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}



@media screen and (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 99999;
    }


    .header-inner {
        width: calc(100% - 24px);
        min-height: 68px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .site-logo {
        height: 44px;
        max-width: 155px;
    }


    .nav-toggle {
        display: flex !important;
        flex-shrink: 0;
    }



    .site-header .site-nav {
        position: absolute !important;
        top: calc(100% + 8px);
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        background: #ffffff !important;
        border: 1px solid #eeeeee;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }


    .site-header .site-nav.active {
       opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }


    .site-header .site-nav .nav-link {
        width: 100% !important;
        min-height: 46px;
        padding: 12px 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        color: #222222 !important;
        background: transparent;
        border-radius: 8px;
        font-size: 15px;
    }



    .site-header .site-nav .nav-link::after {
        display: none !important;
    }


    .site-header .site-nav .nav-link.active {

        background: #faf7f1;

        color: #a87924 !important;
    }

    .site-header .site-nav .nav-cta {

        width: 100% !important;

        min-height: 46px;

        margin: 5px 0 0 !important;

        padding: 12px 15px !important;

        justify-content: center !important;
    }

}


@media screen and (max-width: 480px) {

    .header-inner {
        width: calc(100% - 20px);

        min-height: 64px;
    }


    .site-logo {
        height: 40px;

        max-width: 145px;
    }


    .nav-toggle {
        width: 42px;
        height: 42px;
    }


    .site-header .site-nav {
        top: calc(100% + 7px);
    }

}
.mobile-blink {
      position: relative;
    color: #169540 !important;
    font-weight: 700 !important;
    animation: mobilePulse 1.4s infinite;
    font-size: 17px !important;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(23, 79, 196, 0);
    }

    50% {
        opacity: 0.55;
        text-shadow: 0 0 10px rgba(23, 79, 196, 0.65);
    }
}



.social-orbit {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;
}

.social-orbit a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 29px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    border: 1px solid #cbd5ee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-orbit svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    transition: transform 0.3s ease;
}


.social-orbit a:hover {
    transform: translateX(-7px) scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2);
}

.social-orbit a:hover svg {
    transform: scale(1.1);
}


.social-orbit .ig {
    color: #E4405F;
}

.social-orbit .fb {
    color: #1877F2;
}

.social-orbit .wa {
    color: #25D366;
}

.social-orbit .yt {
    color: #FF0000;
}


@media (max-width: 768px) {

    .social-orbit {
        right: 10px;
        gap: 8px;
    }

    .social-orbit a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .social-orbit svg {
        width: 20px;
        height: 20px;
    }

}

.social-orbit .ig:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #833AB4,
        #E1306C,
        #F77737
    );
}

.social-orbit .fb:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #1877F2,
        #0D5FD3
    );
}

.social-orbit .wa:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );
}

.social-orbit .yt:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #FF0000,
        #CC0000
    );
}

@media (max-width: 980px) {
  .servicee-card--wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .servicee-card--wide { grid-column: span 1; }
}