@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --accent: #ff8a00;
  --accent-2: #ffb04f;
  --text: #f7f8fc;
  --muted: rgba(247, 248, 252, 0.82);
  --panel: rgba(7, 16, 31, 0.72);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text);
  background: #030712;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  min-height: 100dvh;
}

.main-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  padding: 22px 28px;
  margin: auto;
  text-align: center;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  width: auto;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.35));
}

.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(3 7 18 / 42%) 0%, rgb(82 82 82 / 74%) 50%, rgb(7 16 31 / 34%) 100%);
  z-index: 1;
}

.hero-compass-overlay {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  z-index: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.14);
  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.25));
}

.rotating-compass {
  width: 100%;
  height: 100%;
  animation: slow-spin 70s linear infinite;
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.content-card {
  display: grid;
  width: 100%;
  padding: 36px;
  gap: 24px;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
}

.content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.content-card .logo-wrapper {
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #0c2d6b;
  border: 1px solid rgba(255, 138, 0, 0.28);
  color: rgb(255 255 255);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.content-left h1 {
  font-size: clamp(2rem, 3.3vw, 2.2rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  line-height: 1.75;
  color: rgb(20 23 36 / 0.86);
  margin-bottom: 0;
  max-width: 820px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.footer-info {
  display: grid;
  gap: 16px;
  text-align: center;
  padding-top: 6px;
}

.footer-info h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footercontact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.footercontact p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
  color: #19223d;
}

.footercontact a {
  color: #0f172a;
  font-weight: 500;
}

.footercontact a:hover {
  color: #ff8a00;
}

.footercontact i {
  margin-right: 8px;
  color: #1b4699;
  min-width: 18px;
  text-align: center;
}

.footercontact span {
  display: inline-block;
  vertical-align: middle;
}

.pill-btn,
.store-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pill-btn:hover,
.store-chip:hover {
  transform: translateY(-2px);
}

.pill-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  justify-content: center;
}

.store-chip {
  height: 54px;
  min-width: 140px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.store-chip img {
  max-height: 40px;
  width: auto;
}

.pill-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
  justify-content: center;
}

.store-chip {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-chip img {
  height: auto;
  width: 100%;
  max-width: 140px;
}

.content-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block,
.footer-meta {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
}

.info-block h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.info-list i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-meta {
  font-size: 0.84rem;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.meta-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.16);
  color: #ffd8a6;
  font-weight: 600;
  margin-right: 6px;
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 6;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ea952);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .content-card {
    grid-template-columns: 1fr;
  }

  .hero-compass-overlay {
    right: -260px;
    width: 620px;
    height: 620px;
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  body {
    overflow-y: auto;
  }

  .hero-section {
    align-items: flex-start;
    padding: 20px 12px 32px;
  }

  .content-card {
    padding: 24px;
    border-radius: 24px;
    margin: 0 8px;
  }

  .header-logo {
    height: 70px;
  }

  .cta-row,
  .app-links {
    flex-direction: column;
    align-items: stretch;
  }

  .app-links {
    gap: 14px;
  }

  .footer-info {
    gap: 12px;
  }

  .hero-compass-overlay {
    right: -260px;
    width: 520px;
    height: 520px;
    opacity: 0.55;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
  }
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(12, 45, 107, 0.12),
        0 10px 25px rgba(255, 122, 0, 0.08);
}

.stat-box i {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-box h3 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    color: #0c2d6b;
    font-weight: 700;
}

.stat-box span {
    margin-top: 8px;
    color: #666;
    font-size: 17px;
    font-weight: 500;
}

/* ================= SECTION TITLE ================= */

.section-title {
    margin-bottom: 65px;
}

.section-title span {
    color: #ff7a00;
    font-weight: 600;
    font-size: 30px;
}

.section-title h2 {
    font-size: 40px;
    color: #0c2d6b;
    font-weight: 700;
    margin: 15px 0;
}

.section-title p {
    color: #666;
}

/* ================= ABOUT US ================= */

.about-section {
    padding: 50px 0;
    background: #ffffff;
}

.about-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0c2d6b;
    margin-bottom: 50px;
}

.about-image {
    overflow: hidden;
    transition: 0.4s;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.about-content .about-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0c2d6b;
    display: block;
    margin-bottom: 5px;
}

.about-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0c2d6b;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-content p strong {
    color: #0c2d6b;
}

.about-btn {
    background: linear-gradient(135deg, #3c587c, #031436);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s;
    display: inline-block;
}

.about-btn:hover {
    background:rgb(12, 45, 107);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 10, 36, 0.3);
}

/* ================= SERVICES ================= */

.services-section {
    padding: 50px 0;
    background: transparent;
    position: relative;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 5px solid rgba(12, 45, 107, 0.08);
    border-radius: 32px;
    padding: 30px;
    text-align: center;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.45s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 70px rgba(12, 45, 107, 0.12);
    border-color: rgba(255, 122, 0, 0.18);
}

.icon-box {
    width: 105px;
    height: 105px;
    margin: auto;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(12, 45, 107, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    transition: 0.4s;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0c2d6b; /* Default icon color: Blue */
    mix-blend-mode: screen;
    z-index: 3;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: none;
}

.service-card:hover .icon-box::before {
    background: #ff7a00; /* Hover icon color: Orange */
}

.icon-box::after {
    display: none;
}

.icon-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s;
    filter: none; /* Removed the filter that was causing the pink background */
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

.service-card:hover .icon-box img {
    transform: scale(1.05);
    filter: none;
}

.service-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 18px;
    transition: 0.3s;
}

.service-card:hover h3 {
    color: #0c2d6b;
}

.service-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 122, 0, 0.03);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    transition: 0.4s;
}

.service-card:hover::after {
    transform: scale(1.2);
}

/* ================= INVESTOR ================= */

.investor-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

.investor-card {
    background: #fdfdfc;
    border-radius: 24px;
    padding: 20px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(12, 45, 107, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.investor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.investor-card:hover::before {
    transform: scaleX(1);
}

.investor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(12, 45, 107, 0.12);
    border-color: rgba(255, 122, 0, 0.15);
}

.investor-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 22px;
}

.investor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.investor-card:hover .investor-img-wrapper img {
    transform: scale(1.08);
}

.investor-card h3 {
    font-size: 20px;
    color: #0c2d6b;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: 0.3s;
}

.investor-card:hover h3 {
    color: #ff7a00;
}

.investor-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================= ADVANTAGES ================= */

.advantages-section {
    padding: 60px 0;
    background: transparent;
}

.advantage-image img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.advantage-image img:hover {
    transform: translateY(-5px);
}

.advantage-content span {
    color: #ff7a00;
    font-weight: 600;
    font-size: 20px;
}

.advantage-content h2 {
    color: #0c2d6b;
    font-weight: 700;
    line-height: 1.15;
    margin: 20px 0 35px;
}

.advantage-content ul {
    padding: 0;
}

.advantage-content li {
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #ff7a00;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.advantage-content li span {
    font-size: 15px !important;
    font-weight: 600;
    color: #ff7a00;
    margin: 0;
}

.advantage-content li:hover {
    transform: translateX(5px);
}

.advantage-content li i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ================= CTA SECTION ================= */

.cta-section {
    padding: 60px 0;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #0c2d6b, #1b4699);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.cta-box h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: #f2f2f2;
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    background: #ff9326;
    color: #fff;
    transform: translateY(-4px);
}

/* ================= APP DOWNLOAD SECTION ================= */

.app-download-section {
    background: #ffffff;
    padding: 30px 0 60px;
    color: #1a1a1a;
    position: relative;
    margin-bottom: 0;
}

.top-content {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.tag {
    display: inline-block;
    background: rgba(0,0,0,0.08);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.top-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    /* white-space: nowrap; */
}

.top-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
    max-width: 100%;
}

/* ================= BOTTOM CONTENT ================= */

.bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ================= FEATURES ================= */

.features {
    position: relative;
}

.features ul {
    padding: 0;
    margin: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.features li:last-child {
    margin-bottom: 0;
}

.features i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #0c2d6b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ================= STORE BUTTONS ================= */

.store-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.store-buttons a {
    display: inline-flex;
}

.store-buttons img {
    width: 150px;
    height: 45px;
    object-fit: contain;
    transition: 0.3s ease;
}

.store-buttons img:hover {
    transform: translateY(-4px);
}

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

.footer {
    background: #080c14 url('footer_maps.jpg') center / cover no-repeat;
    color: #fff;
    padding: 40px 0 0;
}

.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
}

/* Footer Contact */
.footercontact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footercontact li {
    margin-bottom: 15px;
}

.footercontact li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    transition: 0.3s;
}

.footercontact li a:hover {
    color: #ff7a00;
}

.iconpfooter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 3px;
    min-width: 16px;
}

/* Footer Social */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 10px;
}

.footer-social li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
    background: transparent;
}

.footer-social li a:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
}

/* Footer About Text */
.footerp {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Contact Us Button */
.custom-button {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.custom-button:hover {
    background: #ff9326;
    color: #fff;
}

/* App Icons */
.appicon {
    list-style: none;
    margin: 0 0 15px 0;
    /* padding-top: 30px; */
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    /* border-top: 1px solid #222222; */
}

.appicon li a {
    display: inline-flex;
}

.appicon img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border: 1px solid #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.appicon img:hover {
    transform: translateY(-2px);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu li::before {
    content: '—';
    color: #ff7a00;
    font-weight: 700;
    font-size: 14px;
}

.footer-menu li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu li a span {
    color: #ff7a00;

}

.footer-menu li a:hover {
    color: #ff7a00;
}

/* Footer HR */
.footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

/* Regulation / Footer Bottom */
.regulation {
    text-align: center;
    padding-bottom: 15px;
}

.regulation p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}

.regulation .text-white {
    color: #fff !important;
}

.regulation img {
    vertical-align: middle;
    margin-right: 6px;
}

/* Copyright */
.copyright-area {
    margin-top: 8px;
}

.copyright-area p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 0;
}

.copyright-area a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.copyright-area a:hover {
    color: #fff;
    text-decoration: underline;
}

.netlynx-link {
    color: #fff !important;
    text-decoration: none !important;
}

.netlynx-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    color: #fff;
    transform: scale(1.1);
}

/* ================= SCROLL TO TOP ================= */

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #1a1a2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    z-index: 999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #ff7a00;
    color: #fff;
}

/* ================= LARGE DEVICES ================= */

@media (max-width: 1199px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-box {
        min-width: auto;
    }

    .service-card h3 {
        font-size: 26px;
    }
}

/* ================= TABLET RESPONSIVE ================= */
@media(max-width:991px) {

    .navbar {
        padding: 15px 0;
        position: relative;
        /* justify-content: center;  */
        /* Centers the logo in normal flow */
    }

    .navbar-brand.logo-wrapper {
        margin: 0;
        z-index: 10;
        /* Removed absolute positioning so it doesn't float over the menu */
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 28px; /* Fixed position so it stays aligned with logo */
        border: none;
        box-shadow: none !important;
        outline: none;
        z-index: 10;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1); /* Forces icon to be bright white */
    }

    .navbar-brand img {
        height: 90px; /* Scaled up further for better visibility on mobile/tablets */
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 20px;
        border-radius: 20px;
    }

    .navbar-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .navbar-nav .nav-link {
        color: #0c2d6b !important;
        text-shadow: none;
    }

    .consultation-btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding: 140px 0 60px; /* Push content safely below header */
    }

    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.25;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* ================= STATS ================= */

    .stats-wrapper {
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-box {
        padding: 18px;
        border-radius: 24px;
    }

    .stat-box i {
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 24px;
    }

    .stat-box h3 {
        font-size: 30px;
    }

    .stat-box span {
        font-size: 14px;
    }

    /* ================= SECTIONS ================= */

    .services-section,
    .investor-section,
    .advantages-section,
    .cta-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .service-card,
    .investor-card {
        padding: 40px 28px;
    }

    .advantage-content {
        margin-top: 20px;
    }

    .advantage-content h2 {
        font-size: 38px;
    }

    .cta-box {
        padding: 60px 30px;
    }

    .cta-box h2 {
        font-size: 42px;
    }

    .cta-box p {
        font-size: 20px;
    }

    /* ================= APP DOWNLOAD ================= */

    .top-content h3 {
        font-size: 42px;
    }

    .bottom-content {
        gap: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .features {
        padding-right: 0;
    }

    .features::after {
        display: none;
    }

    .store-buttons img {
        width: 150px;
    }
    
    .hero-compass-overlay {
        width: 600px;
        height: 600px;
        right: -100px;
    }
}

/* ================= MOBILE RESPONSIVE ================= */

    @media(max-width:767px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section {
        /* padding: 60px 0 50px;  */
        padding: 0px;
        /* Reduced top padding to close the gap */
    }
    
    .hero-compass-overlay {
        width: 400px;
        height: 400px;
        right: -100px;
        /* It will now automatically inherit the top: 50% and transform: translateY(-50%) from the desktop rules */
    }

    .hero-tag {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Disclosure page responsive */
    .page-title-section.hero {
        padding: 80px 0 50px !important;
    }

    .page-title-section.hero h1 {
        font-size: 32px !important;
    }

    .page-title-section.hero p {
        font-size: 16px !important;
        max-width: 100%;
    }

    .section-card {
        padding: 24px !important;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .info-box {
        padding: 22px;
    }

    .partner-card {
        padding: 22px;
    }

    .partner-card h5 {
        font-size: 18px;
    }

    .partner-card p {
        font-size: 14px;
    }

    .btn-premium {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .drive-box {
        padding: 25px;
    }

    .drive-icon {
        font-size: 48px;
    }

    .footer {
        text-align: left;
    }

    .footer .row {
        gap: 20px;
    }

    /* ================= STATS ================= */

    .hero-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
        min-height: auto;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    /* ================= TITLES ================= */

    .section-title {
        margin-bottom: 45px;
    }

    .section-title span {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    /* ================= SECTIONS ================= */

    .services-section,
    .investor-section,
    .advantages-section,
    .cta-section,
    .app-download-section {
        padding: 60px 0;
    }

    /* ================= CARDS ================= */

    .service-card,
    .investor-card {
        padding: 35px 22px;
        border-radius: 24px;
    }

    .service-card h3,
    .investor-card h3 {
        font-size: 22px;
    }

    .service-card p,
    .investor-card p {
        font-size: 15px;
    }

    .icon-box,
    .investor-icon {
        width: 80px;
        height: 80px;
    }

    .icon-box::after {
        width: 58px;
        height: 58px;
    }

    .icon-box i,
    .investor-icon i {
        font-size: 28px;
    }

    /* ================= ADVANTAGES ================= */

    .advantage-content span {
        font-size: 18px !important;
    }

    .advantage-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .advantage-content li {
        font-size: 15px;
        padding: 15px 18px;
        gap: 12px;
    }

    /* ================= CTA ================= */

    .cta-box {
        padding: 45px 20px;
        border-radius: 25px;
    }

    .cta-box h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .cta-box p {
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-btn {
        text-align: center;
        font-size: 16px;
    }

    /* ================= APP DOWNLOAD ================= */

    .app-download-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .top-content {
        margin-bottom: 40px;
    }

    .top-content h3 {
        font-size: 32px;
    }

    .top-content p {
        font-size: 16px;
    }

    .bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .features li {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .features i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .store-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .store-buttons img {
        width: 135px;
    }

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

    /* .footer {
        text-align: center;
    } */

    .footer-logo img {
        margin: 0 auto 20px;
    }

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

    .footer h4 {
        margin-top: 20px;
    }

    .footer-bottom {
        padding: 30px 15px 22px;
    }

    .risk-text,
    .footer-copy,
    .footer-validity {
        font-size: 13px;
    }

    .developer-text {
        font-size: 12px;
    }

    .arn-row img {
        width: 28px;
    }
}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px) {

    .hero-content h1 {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .top-content h3 {
        font-size: 26px;
    }

    .cta-box h2 {

        font-size: 26px;
    }

    .cta-box p {
        font-size: 15px;
    }

    .service-card,
    .investor-card {
        padding: 30px 18px;
    }

    .stat-box {
        padding: 16px;
    }

    .stat-box i {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;

    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-buttons img {
        width: 170px;
    }
}

/* ================= PAGE TITLE / HERO FOR SUBPAGES ================= */

.page-title-section {
    position: relative;
    padding: 180px 0 100px !important;
    background: url('sunset.png') center/cover no-repeat !important;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.3) 100%) !important;
    z-index: 1;
}

/* Removed map overlay to make the sunset photo clear */
.page-title-section::after {
    display: none !important;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 48px !important;
    margin-bottom: 15px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.page-title-section p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2) !important;
}



/* disclosure */
/* Hero */

/* .hero{
    background: linear-gradient(135deg, #0c2d6b 0%, #1c3d78 50%, #f26522 100%) !important;
    padding: 90px 0;
    color: #ffffff;
}

.page-title-section.hero{
    background: linear-gradient(135deg, #0c2d6b 0%, #1c3d78 50%, #f26522 100%) !important;
} */

.hero h1{
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p{
    opacity: .95;
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto;
}

/* Card */

.section-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(12, 45, 107, 0.08);
    margin-top: -40px;
    position: relative;
    z-index: 9;
    border: 1px solid rgba(12, 45, 107, 0.08);
}

.section-card .section-title{
    font-size: 32px;
    font-weight: 800;
    color: #13254a;
    margin-bottom: 28px;
}

.info-box{
    background: #fff6ed;
    border-left: 5px solid #ff7a00;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.info-box i{
    color: rgb(19, 37, 74);
    margin-right: 10px;
}

/* Contact Cards */

.partner-card{
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(12, 45, 107, 0.09);
    transition: transform .3s ease, box-shadow .3s ease;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(12, 45, 107, 0.08);
}

.partner-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(12, 45, 107, 0.14);
}

.partner-card h5{
    font-weight: 800;
    color: #13254a;
}

.partner-card a{
    text-decoration: none;
}

.partner-card i{
    color: #ff7a00;
    width: 20px;
}

/* Button */

.btn-premium{
    background: linear-gradient(135deg, #ff7a00, #ff9f38);
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 34px;
    font-weight: 700;
    border: none;
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.18);
}

.btn-premium:hover{
    background: linear-gradient(135deg, #d46000, #ff7a00);
    color: #ffffff;
}

.drive-box{
    background: linear-gradient(135deg, #ffffff, #eef5ff);
    border-radius: 18px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.drive-icon{
    font-size:70px;
    color:#0b5ed7;
}

footer{
    background:#0b2f6b;
    color:#fff;
    padding:20px;
    margin-top:60px;
}

@media(max-width:768px){

.hero{
padding:55px 0;
}

.hero h1{
font-size:30px;
}

.section-card{
padding:25px;
}

}


@media(min-width:320px) and (max-width:576px) {
    .top-content h3{white-space: normal;}
    .footer{text-align: left;}
    .pill-btn, .store-chip{margin-bottom: 10px;}
}