:root {
    --blue:      #2563eb;
    --blue-dark: oklch(48.8% .243 264.376);
    --navy:      #0f172a;
    --bg:        #f8faff;
    --text:      #0f172a;
    --muted:     #64748b;
    --border:    #e2e8f0;
    --radius:    16px;
  }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── MSS NAVBAR ── */
.mss-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: box-shadow 0.35s ease;
}

/* Navbar container */
.mss-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.mss-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  transition: color 0.3s ease;
}

/* Links */
.mss-nav-links {
  display: flex;
  gap: 2px;
  margin-right: 16px;
  align-items: baseline;
}

.mss-nav-links a {
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 5px;
  color: #111827;
  transition: color 0.3s ease, background 0.3s ease;
}

.mss-nav-links a:hover {
  background: #f3f4f6;
  color: #111827;
}

.mss-nav-links a.active {
  color: #2563eb;
  font-weight: 600;
}

/* Dropdown */
.mss-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.mss-nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  border-radius: 8px;
  z-index: 1000;
  top: 100%;
  left: 0;
  border: 1px solid #e5e7eb;
}

.mss-nav-dropdown:hover .mss-nav-dropdown-content {
  display: block;
}

.mss-nav-dropdown-content a {
  padding: 10px 16px;
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 0;
}

.mss-nav-dropdown-content a:hover {
  background-color: #f8fafc;
  color: #2563eb;
}

/* CTA */
.mss-nav-cta {
  padding: 12px 25px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.mss-nav-cta:hover {
  background: oklch(48.8% .243 264.376);
  transform: scale(1.05);
}

/* ── SCROLLED STATE (same as default now) ── */
.mss-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  height: 72px;
}

.mss-navbar.scrolled .mss-nav-brand,
.mss-navbar.scrolled .mss-nav-links a {
  color: #111827;
}

.mss-navbar.scrolled .mss-nav-links a:hover {
  background: #f3f4f6;
  color: #111827;
}

.mss-navbar.scrolled .mss-nav-links a.active {
  color: #2563eb;
}

/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 64px 32px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 260px;
}
.foot-social { display: flex; gap: 12px; }
.foot-social a { color: #94a3b8; transition: color 0.2s; }
.foot-social a:hover { color: #374151; }
.foot-social svg { width: 20px; height: 20px; }
.f-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col ul a { font-size: 0.875rem; color: #6b7280; }
.f-col ul a:hover { color: #2563eb; }
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* CTA */
.mss-nav-cta {
  padding: 12px 25px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
    .mss-nav-cta:hover {
    background: oklch(48.8% .243 264.376);
    transform: scale(1.1);
    transition: background 0.3s ease, transform 0.3s ease;
    }

/* ── SCROLLED STATE ── */
.mss-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  height: 72px;
}

.mss-navbar.scrolled .mss-nav-brand,
.mss-navbar.scrolled .mss-nav-links a {
  color: #111827;
}

.mss-navbar.scrolled .mss-nav-links a:hover {
  background: #f3f4f6;
  color: #111827;
}
/* Base link */
.mss-nav-links a {
  position: relative;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  transition: color 0.3s ease;
}

/* Remove old hover background */
.mss-nav-links a:hover {
  background: transparent;
  color: #2563eb;
}

/* Underline (hidden by default) */
.mss-nav-links a::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
  transition: width 0.65s ease; /* slower animation */
}

/* Show underline on hover */
.mss-nav-links a:hover::after {
  width: calc(100% - 24px);
}

/* Active link (NO underline) */
.mss-nav-links a.active {
  color: #2563eb;
  font-weight: 600;
}

.mss-nav-links a.active::after {
  width: 0 !important;
}
/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 64px 32px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.foot-brand-desc {
  font-size: 0.875rem; color: #6b7280; line-height: 1.7;
  margin: 14px 0 20px; max-width: 260px;
}
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  color: #94a3b8; transition: color 0.2s;
}
.foot-social a:hover { color: #374151; }
.foot-social svg { width: 20px; height: 20px; }
.f-col-title {
  font-size: 0.72rem; font-weight: 700; color: #0f172a;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col ul a { font-size: 0.875rem; color: #6b7280; }
.f-col ul a:hover { color: #2563eb; }
.footer-bottom {
  border-top: 1px solid #e5e7eb; padding-top: 24px;
  font-size: 0.8rem; color: #9ca3af;
}

.reveal {
  opacity: 0;
  transform: translateY(80px); 
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   NAVBAR RESPONSIVE
========================= */

/* Hamburger button (hidden by default) */
.mss-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mss-hamburger span {
  width: 24px;
  height: 2px;
  background: #111827;
  transition: 0.3s;
}

/* wrapper */
.mss-nav-drop-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
mobile-cta {
  display: none;
}
.nav-mobile-icon {
  display: none;
}

/* =========================
   NAVBAR MOBILE FIX
========================= */
@media (max-width: 1024px) {

  /* center logo */
  .mss-nav-inner {
    justify-content: center;
  }

  /* show hamburger */
  .mss-hamburger {
    display: flex;
    position: absolute;
    left: 20px;
    z-index: 1001;
  }

  /* hide desktop links */
  .mss-nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);
     background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 75px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
    padding-left: 75px;
  }

  .mss-nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mss-nav-links li {
  width: 80%;              /* gives space for left alignment */
  max-width: 275px;        /* keeps it centered nicely */
}
.mss-nav-dropdown-content a::before {
  content: "•";
  color: #2563eb;

  font-size: 1.5rem;

  margin-right: 12px;

  display: inline-block;
}
.mss-nav-links a {
  display: block;
  width: 100%;
  text-align: left;        /* ✅ TEXT goes left */
}
.nav-mobile-icon{
  display: inline-block;
  margin-right: 8px;
}

  /* bigger links */
  .mss-nav-links a {
    font-size: 2rem;
    font-weight: 600;
  }
  .mss-nav-dropdown {
    flex-direction: column;
    align-items: center;
    margin-bottom: -4px;
    margin-top: -8px;

  }
  .mss-nav-dropdown-content {  
    display: none !important;
    position: static;
    flex-direction: column;
    align-items:flex-start;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 30px 0 0 60px;
    min-width: unset;
  }
  .mss-nav-dropdown {
  width: 80%;
  max-width: 275px;
}

.mss-nav-dropdown-content {  /* text left */
  padding-left: 25px;        /* indentation */
}

  .mss-nav-dropdown-content a {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: black !important;
    padding: 4px 0 !important;
    border-radius: 0;
  }
  .mss-nav-drop-wrapper {
  width: 100%;
}

.mss-nav-drop-wrapper a {
  display: block;
  width: 100%;
  text-align: left;   /* ✅ THIS fixes "Services" */
}

  .mss-nav-dropdown-content a:hover {
    background: transparent !important;
    color: #2563eb !important;
  }
  /* remove arrow */
  .mss-dropdown-toggle {
    display: none;
  }

  /* hide desktop CTA */
  .mss-nav-cta {
    display: none;
  }

  /* show mobile CTA */
  .mobile-cta {
    display: block;
    margin: 20px auto 0 auto;
  }
}

/* =========================
   DESKTOP (≥1025px)
========================= */
@media (min-width: 1025px) {

  .mss-hamburger {
    display: none;
  }

  .mobile-cta {
    display: none;
  }
}
@media (max-width:1024px) {
  .mobile-cta {
    display: block;
    margin-top: 20px;
  }
.btn-mobile-cta {
  background: #2563eb !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
}

@media (max-width: 768px) {

  .mss-nav-inner {
    justify-content: center;
  }
  .mss-nav-dropdown-content {
    padding-top: 20px !important;
  }
.mss-nav-dropdown-content a {
    font-size: 1.25rem !important;
}
  /* hamburger */
  .mss-hamburger {
    display: flex;
    position: absolute;
    left: 16px;
    z-index: 1001;
  }
  .mss-nav-links li {
  width: 80%;              /* gives space for left alignment */
  max-width: 180px;        /* keeps it centered nicely */
}
.mss-nav-dropdown {
  width: 80%;
  max-width: 180px;
}
  /* FULL SCREEN MENU */
  .mss-nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);

    background: blur(20px) rgba(255, 255, 255, 0.301);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 60px;
    gap: 35px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;

    z-index: 999;
    padding-left: 20px;
  }

  .mss-nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* BIG CENTERED LINKS */
  .mss-nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
  }

  /* SERVICES SUBMENU ALWAYS VISIBLE */
  .mss-nav-dropdown-content {
    display: none !important;
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* hide original CTA */
  .mss-nav-cta {
    display: none;
  }
}
@media (max-width : 480px) {
  .mss-nav-dropdown-content {
    padding-top: 15px !important;
  }
  .mss-nav-dropdown-content a {
    font-size: 1rem !important;
}
.btn-mobile-cta{
  left: -10px !important;
}
.mss-nav-links{
  padding-top: 30px !important;
}
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding: 56px 20px 24px;
  }
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding-left: 0 !important;
  }

  .footer-bottom {
    text-align: center;
  }
}
/* =========================
   TABLET FIX (768–1024px)
========================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* Brand section full width */
  .footer-top > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
  }

  .foot-brand-desc {
    margin: 12px auto 20px;
    max-width: 500px;
    text-align: center;
  }

  .foot-social {
    justify-content: center;
  }

  /* keep titles centered */
  .f-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 115px;
  }

  /* FIX: sub items left aligned */
  .f-col ul {
    align-items: flex-start;  /* ✅ left align list */
    width: fit-content;       /* keeps list compact */
  }

  footer {
    padding: 56px 24px 28px;
  }
}
@media (min-width :768px) and (max-width: 1023px) {
  .f-col{
    padding-left: 50px;
  }
}