/* Munal Group Pvt. Ltd. — base styles (Tailwind CDN handles utilities) */

html { scroll-behavior: smooth; }

body { font-feature-settings: "liga" 1; }

::selection { background: #F5940A; color: #fff; }

/* ---------- Typography helpers ---------- */
.accent {
  font-family: "Playfair Display", cursive;
  font-style: italic;
  font-weight: 600;
  color: #F5940A;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #DE8300;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #F5940A;
  display: inline-block;
}

/* ---------- Nav ---------- */
.nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #155D59;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}
.nav-link:hover { color: #DE8300; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: #F5940A;
  transition: width .25s ease;
}
.nav-link:hover::after,
.nav-link-active::after { width: 100%; }
.nav-link-active { color: #DE8300; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #F5940A;
  color: #0E3D3A;
  font-weight: 700;
  font-size: .85rem;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px -8px rgba(245,148,10,.55);
}
.btn-primary:hover { background: #FBAE3D; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .78rem 1.65rem;
  border-radius: 999px;
  transition: all .2s ease;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #155D59;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  transition: all .2s ease;
}
.btn-dark:hover { background: #0E3D3A; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .82rem;
  color: #155D59;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: .65rem; color: #DE8300; }

/* ---------- Hero pattern ---------- */
/* .hero-surface {
  background:
    radial-gradient(circle at 82% 18%, rgba(245,148,10,.18), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(255,255,255,.06), transparent 40%),
    linear-gradient(135deg, #0E3D3A 0%, #155D59 55%, #1C6F6A 100%);
} */
.hero-surface {
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(245, 148, 10, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(255, 255, 255, 0.06),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            rgba(14, 61, 58, 0.78) 0%,
            rgba(21, 93, 89, 0.72) 55%,
            rgba(28, 111, 106, 0.68) 100%
        ),
        url("../images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 22px 22px;
}
.dot-grid-dark {
  background-image: radial-gradient(rgba(21,93,89,.25) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Dark teal band for alternating sections (matches the bg-teal-900/950 sections) */
.section-tint {
  position: relative;
  background:
    radial-gradient(circle at 90% 0%, rgba(245,148,10,.16), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.05), transparent 45%),
    radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(160deg, #0E3D3A 0%, #0A2E2A 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid #E4F0EE;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px -20px rgba(14,61,58,.25);
  border-color: #F5940A;
}

.number-badge {
  font-family: "Playfair Display", cursive;
  font-weight: 700;
  color: rgba(21,93,89,.14);
  font-size: 3.2rem;
  line-height: 1;
}

/* ---------- Process arrows ---------- */
.process-step:not(:last-child)::after {
  content: "\2192";
  color: #F5940A;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---------- Misc ---------- */
.divider-orange {
  height: 3px;
  width: 56px;
  background: #F5940A;
  border-radius: 999px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Content is visible by default; JS only adds a subtle entrance animation
   the first time an element scrolls into view (see main.js). If JS is
   disabled or slow, everything still renders normally. */
[data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal].pre-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile menu (full-screen overlay, see main.js) ---------- */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45; /* below the sticky header (z-50) so logo + close stay visible */
  display: flex;
  flex-direction: column;
  padding: 5rem 0 0; /* header height (h-20) */
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,148,10,.22), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.06), transparent 45%),
    radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(160deg, #0E3D3A 0%, #0A2E2A 100%);
  border: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 44px) 40px);
  transition: clip-path .55s cubic-bezier(.77,0,.18,1), opacity .3s ease, visibility 0s linear .55s;
}
#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at calc(100% - 44px) 40px);
  transition: clip-path .6s cubic-bezier(.77,0,.18,1), opacity .2s ease, visibility 0s;
}
@media (min-width: 1024px) {
  #mobile-menu { display: none; }
}
body.menu-open { overflow: hidden; }

#mobile-menu .mm-eyebrow {
  padding: 2rem 1.5rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FDC978;
}

#mobile-menu .mm-links {
  counter-reset: mm;
  padding: 0 1.5rem;
}
#mobile-menu .mm-links a {
  counter-increment: mm;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  background: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(24px);
  transition: color .2s ease, opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
#mobile-menu .mm-links a::before {
  content: counter(mm, decimal-leading-zero);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #F5940A;
  min-width: 1.5rem;
}
#mobile-menu .mm-links a::after {
  content: "\2192";
  margin-left: auto;
  font-size: 1.25rem;
  color: rgba(255,255,255,.35);
  transition: transform .2s ease, color .2s ease;
}
#mobile-menu .mm-links a:hover,
#mobile-menu .mm-links a:focus-visible,
#mobile-menu .mm-links a.mm-active { color: #FBAE3D; }
#mobile-menu .mm-links a:hover::after,
#mobile-menu .mm-links a.mm-active::after { color: #F5940A; transform: translateX(4px); }
#mobile-menu .mm-links a.mm-active {
  font-family: "Playfair Display", cursive;
  font-style: italic;
}

#mobile-menu .mm-footer {
  margin-top: auto;
  padding: 1.75rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  display: grid;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
#mobile-menu .mm-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
#mobile-menu .mm-contact a { display: block; }
#mobile-menu .mm-contact span:first-child {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
#mobile-menu .mm-contact span:last-child {
  display: block;
  margin-top: .2rem;
  font-weight: 700;
  color: #fff;
}
#mobile-menu a.mm-cta {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #0A2E2A;
  background: #F5940A;
  box-shadow: 0 10px 30px -10px rgba(245,148,10,.6);
  transition: background .2s ease;
}
#mobile-menu a.mm-cta:hover { background: #FBAE3D; }

/* staggered entrance */
#mobile-menu.open .mm-links a,
#mobile-menu.open .mm-footer { opacity: 1; transform: none; }
#mobile-menu.open .mm-links a:nth-child(1) { transition-delay: .18s; }
#mobile-menu.open .mm-links a:nth-child(2) { transition-delay: .24s; }
#mobile-menu.open .mm-links a:nth-child(3) { transition-delay: .30s; }
#mobile-menu.open .mm-links a:nth-child(4) { transition-delay: .36s; }
#mobile-menu.open .mm-links a:nth-child(5) { transition-delay: .42s; }
#mobile-menu.open .mm-footer { transition-delay: .5s; }
#mobile-menu.open .mm-links a:hover { transition-delay: 0s; }

#menu-btn { position: relative; z-index: 1; transition: background .2s ease, color .2s ease, border-color .2s ease; }
#menu-btn[aria-expanded="true"] { background: #0E3D3A; border-color: #0E3D3A; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  #mobile-menu, #mobile-menu *, #mobile-menu.open, #mobile-menu.open * { transition: none !important; }
}
