* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background: #fff;
  color: #111;
}

img {
  max-width: 100%;
  height: auto;
}

.nimz {
  color: #004aad;
}

.liot {
  color: #0cc0df;
}

nav {
  --nav-blue: #0f4fb8;
  --nav-cyan: #13b8d9;
  --nav-text: #16325c;
  --nav-soft: #eef5ff;
  --nav-border: #d9e5f8;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2100;
  border-bottom: 1px solid rgba(217, 229, 248, 0.8);
  box-shadow: 0 8px 26px rgba(5, 23, 52, 0.08);
}

.logo h1,
.logo .brand-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* Phase 2 SEO: local authority + internal linking block */
.seo-local-block {
  margin: 32px auto 24px;
  max-width: 1100px;
  padding: 22px;
  border: 1px solid #d5e7ff;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5faff 0%, #eef9ff 100%);
}

.seo-local-block h2 {
  color: #004aad;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  margin-bottom: 10px;
}

.seo-local-block p {
  color: #1f2f46;
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.seo-link-grid a {
  display: block;
  text-decoration: none;
  border: 1px solid #c7ddff;
  border-radius: 10px;
  padding: 10px 12px;
  color: #004aad;
  font-weight: 700;
  background: #fff;
  transition: all 0.2s ease;
}

.seo-link-grid a:hover {
  transform: translateY(-2px);
  color: #0cc0df;
  border-color: #0cc0df;
}

@media (max-width: 768px) {
  .seo-local-block {
    margin: 22px 12px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

#menuList {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

#menuList li {
  position: relative;
}

#menuList li a {
  text-decoration: none;
  color: var(--nav-text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
  padding: 9px 14px;
  border-radius: 12px;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.2s ease;
}

#menuList li a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--nav-blue), var(--nav-cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

#menuList li a:hover {
  color: var(--nav-blue);
  background: var(--nav-soft);
  transform: translateY(-1px);
}

#menuList li a:hover::after {
  transform: scaleX(1);
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon img {
  width: 30px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-right a {
  display: flex;
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--nav-blue), var(--nav-cyan));
  border-radius: 12px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  box-shadow: 0 8px 18px rgba(15, 79, 184, 0.26);
}

.nav-right a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 79, 184, 0.35);
  filter: saturate(1.08);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  cursor: pointer;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 245px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--nav-border);
  box-shadow: 0 18px 30px rgba(13, 38, 77, 0.16);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 2000;
}

.dropdown li a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #234067;
  text-align: left;
  border-radius: 10px;
}

.dropdown li a:hover {
  background: #edf5ff;
  color: #0f4fb8;
}

@media (min-width: 769px) {
  .has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .dropdown .has-dropdown > .dropdown {
    top: -8px;
    left: calc(100% + 8px);
    transform: translateX(6px) scale(0.98);
  }

  .dropdown .has-dropdown:hover > .dropdown {
    transform: translateX(0) scale(1);
  }
}

.launch-panel {
  width: min(1200px, 92%);
  margin: 24px auto 34px;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(130deg, #004aad, #0cc0df);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 74, 173, 0.24);
}

.launch-panel h2 {
  color: #fff;
  margin-bottom: 10px;
}

.launch-panel p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}

.launch-countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.time-box {
  min-width: 94px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.time-box span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
}

.time-box small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  color: #004aad;
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
  transition: 0.3s ease;
  z-index: 999;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.whatsapp-btn:hover {
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

.chat-popup {
  display: none;
  position: fixed;
  bottom: 95px;
  right: 16px;
  width: min(92vw, 320px);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  z-index: 999;
}

.chat-popup header {
  background: #25d366;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-popup header .close-btn {
  cursor: pointer;
  font-size: 20px;
}

.chat-body {
  padding: 16px;
  font-size: 14px;
}

.chat-body p {
  margin-bottom: 10px;
}

.chat-body .contact-card {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
}

.contact-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-card .contact-info {
  flex: 1;
}

.contact-card .contact-info .name {
  font-weight: 700;
}

.contact-card .contact-info .role {
  font-size: 12px;
  color: gray;
}

.footer {
  background-color: #fff;
  padding: 50px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-explore,
.footer-follow,
.footer-legal {
  flex: 1;
  min-width: 200px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: gray;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
  display: inline-block;
}

.footer ul li a:hover {
  color: #0cc0df;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #3d516a;
  font-size: 18px;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-icons a:hover {
  color: #0cc0df;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0a3b80;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: gray;
}

@media screen and (max-width: 768px) {
  nav {
    padding: 10px 14px;
    height: 68px;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid #dbe8fb;
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f4f8ff;
    margin: 4px 0 8px;
    padding: 0 4px;
  }

  .has-dropdown.active > .dropdown {
    max-height: 1400px;
  }

  .menu-icon {
    display: block;
    margin: 0;
    z-index: 2201;
  }

  .menu-icon img {
    width: 32px;
    padding: 7px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f9fcff, #eef4ff);
    border: 1px solid #d9e6f9;
    box-shadow: 0 4px 10px rgba(15, 79, 184, 0.15);
  }

  .nav-menu .contact {
    display: block;
  }

  .nav-right a {
    display: none;
  }

  #menuList {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 350px);
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 82px 14px 22px;
    text-align: left;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(110%);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    box-shadow: -22px 0 36px rgba(11, 31, 66, 0.24), 0 0 0 100vmax rgba(8, 19, 44, 0);
    z-index: 2200;
    pointer-events: none;
  }

  #menuList.active {
    transform: translateX(0);
    box-shadow: -22px 0 36px rgba(11, 31, 66, 0.24), 0 0 0 100vmax rgba(8, 19, 44, 0.52);
    pointer-events: auto;
  }

  #menuList li {
    margin: 0;
  }

  #menuList li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    color: #17345b;
    border-radius: 12px;
    padding: 12px 12px;
    background: #ffffff;
    border: 1px solid #e0eaf9;
    box-shadow: 0 4px 10px rgba(17, 53, 104, 0.06);
  }

  #menuList li a::after {
    display: none;
  }

  #menuList li a:hover {
    background: #edf5ff;
    color: #0f4fb8;
    border-color: #c6dbfa;
  }

  #menuList .dropdown li a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2b4772;
    padding-left: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .has-dropdown.active > a {
    background: linear-gradient(135deg, #edf5ff, #e8f6ff);
    color: #0f4fb8;
    border-color: #c9ddfa;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

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

  .launch-panel {
    width: 95%;
    padding: 22px 16px;
  }

  .time-box {
    min-width: 74px;
    padding: 10px 8px;
  }

  .time-box span {
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 769px) {
  .nav-menu .contact {
    display: none;
  }
}

/* Lightweight 3rd UI model (CSS-only decorative element) */
.third-ui-model {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 35%),
    linear-gradient(140deg, #0f4fb8 0%, #12b9d9 55%, #7ee3ff 100%);
  box-shadow:
    0 10px 22px rgba(10, 41, 87, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -8px 16px rgba(5, 31, 72, 0.22);
  transform: rotate(-11deg);
  pointer-events: none;
  z-index: 700;
  opacity: 0.9;
}

.third-ui-model::before,
.third-ui-model::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.third-ui-model::before {
  width: 42px;
  height: 8px;
  left: 10px;
  top: -14px;
  background: rgba(18, 185, 217, 0.33);
  filter: blur(1px);
}

.third-ui-model::after {
  width: 16px;
  height: 16px;
  right: -8px;
  top: 8px;
  background: rgba(18, 185, 217, 0.25);
}

/* Unified Navigation Override: keep home nav style across all pages */
nav {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(217, 229, 248, 0.8) !important;
  box-shadow: 0 8px 26px rgba(5, 23, 52, 0.08) !important;
  z-index: 2100 !important;
}

.logo h1,
.logo .brand-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2px !important;
}

#menuList li a {
  color: #16325c !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
}

.nav-right a {
  background: linear-gradient(135deg, #0f4fb8, #13b8d9) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 18px rgba(15, 79, 184, 0.26) !important;
}

@media screen and (max-width: 768px) {
  nav {
    height: 68px !important;
    padding: 10px 14px !important;
  }

  .menu-icon {
    display: block !important;
    margin: 0 !important;
    z-index: 2201 !important;
  }

  .menu-icon img {
    width: 32px !important;
    padding: 7px !important;
    border-radius: 10px !important;
    background: linear-gradient(145deg, #f9fcff, #eef4ff) !important;
    border: 1px solid #d9e6f9 !important;
    box-shadow: 0 4px 10px rgba(15, 79, 184, 0.15) !important;
  }

  #menuList {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: min(86vw, 350px) !important;
    height: 100dvh !important;
    max-height: none !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    padding: 82px 14px 22px !important;
    text-align: left !important;
    flex-direction: column !important;
    gap: 6px !important;
    overflow-y: auto !important;
    transform: translateX(110%) !important;
    transition: transform 0.32s ease, box-shadow 0.32s ease !important;
    box-shadow: -22px 0 36px rgba(11, 31, 66, 0.24), 0 0 0 100vmax rgba(8, 19, 44, 0) !important;
    z-index: 2200 !important;
    pointer-events: none !important;
  }

  #menuList.active {
    transform: translateX(0) !important;
    box-shadow: -22px 0 36px rgba(11, 31, 66, 0.24), 0 0 0 100vmax rgba(8, 19, 44, 0.52) !important;
    pointer-events: auto !important;
  }

  #menuList li {
    margin: 0 !important;
  }

  #menuList li a {
    display: block !important;
    width: 100% !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #17345b !important;
    border-radius: 12px !important;
    padding: 12px !important;
    background: #fff !important;
    border: 1px solid #e0eaf9 !important;
    box-shadow: 0 4px 10px rgba(17, 53, 104, 0.06) !important;
  }

  #menuList li a::after {
    display: none !important;
  }

  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    border: 1px solid #dbe8fb !important;
    border-radius: 12px !important;
    background: #f4f8ff !important;
    margin: 4px 0 8px !important;
    padding: 0 4px !important;
    box-shadow: none !important;
  }

  .has-dropdown.active > .dropdown {
    max-height: 1400px !important;
  }

  #menuList .dropdown li a {
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #2b4772 !important;
    padding-left: 14px !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
  }

  .nav-right a {
    display: none !important;
  }

  .third-ui-model {
    display: none;
  }
}

