:root {
  --navy: #1E8FE3;
  --navy-light: #25B8D9;
  --navy-mid: #7557F2;

  --gold: #FFD84D;
  --gold-light: #FFF3A6;
  --gold-soft: rgba(255, 216, 77, 0.16);

  --cream: #F5F7FB;
  --cream-dark: #E9EEF7;

  --text-dark: #252B3A;
  --text-mid: #5F6B7A;
  --text-light: #8C98A8;

  --white: #FFFFFF;
  --border: rgba(37, 43, 58, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2B3240;
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37,43,58,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-logo span {
  color: var(--text-dark);
  font-weight: 300;
  opacity: 0.75;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  margin-left: 8px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #252B3A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1E8FE3;
}

.nav-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* RISK BANNER */
.risk-banner {
  background: #FFF7DD;
  border-bottom: 1px solid #EAD48A;
  padding: 10px 32px;
  text-align: center;
  font-size: 12px;
  color: #7A5A00;
  font-weight: 600;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;

  background:
    url("images/hero-holographic.png") 100% center / 75% no-repeat,
    linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(34,193,220,1) 0%,
    rgba(34,193,220,0.95) 30%,
    rgba(30,143,227,0.75) 45%,
    rgba(30,143,227,0.35) 58%,
    rgba(117,87,242,0.12) 70%,
    rgba(117,87,242,0) 82%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  width: 700px;
  max-width: none;
  opacity: 0.95;
  border-radius: 0;
  box-shadow: none;
}

.hero-tag {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(255, 216, 77, 0.5);
  border-radius: 100px;
  color: #FFF3A6;
  background: rgba(255,255,255,0.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 28px;
  max-width: 760px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 500;
}

.hero-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-disclaimer {
  padding: 18px 24px;
  border-left: 4px solid #FFD84D;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  max-width: 540px;
  line-height: 1.6;
  border-radius: 0 12px 12px 0;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual img {
    width: 360px;
  }
}

/* SECTIONS */
section {
  padding: 80px 24px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3B82F6; /* your blue */
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #3B82F6;
  margin-top: 6px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 20px;
  max-width: 700px;
}

.section-desc {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: #4B5565;
  margin-bottom: 48px;
}

/* ABOUT */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: #4B5565;
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7,24,39,0.04);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(30, 143, 227, 0.4);
  box-shadow: 0 16px 45px rgba(7,24,39,0.08);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1689E8;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 15.5px;
  color: #4B5565;
  line-height: 1.75;
}

/* POSITION */
.not-section {
  background: var(--cream);
}

.not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.is-box,
.isnot-box {
  padding: 40px;
  border-radius: 22px;
}

.is-box {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(7,24,39,0.05);
}

.isnot-box {
  background: linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.is-box h3,
.isnot-box h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.isnot-box h3 {
  color: #FFFFFF;
}

.is-list,
.isnot-list {
  list-style: none;
}

.is-list li,
.isnot-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 12px;
}

.isnot-list li {
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
}

.is-list li:last-child,
.isnot-list li:last-child {
  border: none;
}

.check {
  color: #2E9D69;
  font-size: 18px;
  flex-shrink: 0;
}

.cross {
  color: #FF8A8A;
  font-size: 18px;
  flex-shrink: 0;
}

/* MURABAHA */
.murabaha {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(7,24,39,0.04);
}

.step:hover {
  border-color: rgba(30, 143, 227, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7,24,39,0.08);
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: #DFAF00;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,216,77,0.45);
}

.step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1689E8;
  margin-bottom: 12px;
}

.step p {
  font-size: 15.5px;
  color: #4B5565;
  line-height: 1.75;
}

.step-note {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.step-note p {
  font-size: 14px;
  color: #4B5565;
  line-height: 1.7;
}

.step-note strong {
  color: #1689E8;
}

/* SHARIA */
.sharia {
  background: linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
  color: var(--white);
}

.sharia .section-label {
  color: #FFF3A6;
}

.sharia .section-label::after {
  background: #FFD84D;
}

.sharia .section-title {
  color: var(--white);
}

.sharia .section-desc {
  color: rgba(255,255,255,0.88);
}

.sharia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;/
}

.sharia-principles {
  list-style: none;
}

.sharia-principles li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sharia-principles li:last-child {
  border: none;
}

.sharia-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,216,77,0.55);
  color: #FFF3A6;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sharia-principles h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.sharia-principles p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.advisor-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.advisor-card h4 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.advisor-card .role {
  color: #FFF3A6;
  font-size: 14px;
  margin-bottom: 4px;
}

.advisor-card .org {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-bottom: 20px;
}

.advisor-card p {
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* TEAM */
.team {
  background: var(--cream);
}
.team .section-title {
  font-size: clamp(30px, 3vw, 40px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
  border: 3px solid var(--white);
  box-shadow: 0 12px 30px rgba(7,24,39,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
}

.team-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1689E8;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 13px;
  color: #DFAF00;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 15.5px;
  color: #4B5565;
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

/* CONTACT */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #1E8FE3;
  margin-bottom: 16px;
}

.contact-info > p {
  color: #4B5565;
  margin-bottom: 32px;
  font-size: 15.5px;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border: none;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DFAF00;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1689E8;
  margin-bottom: 2px;
}

.contact-detail p,
.contact-detail a {
  font-size: 15.5px;
  color: #4B5565;
  line-height: 1.75;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #1E8FE3;
}

.contact-form {
  background: #F5F7FB;
  padding: 40px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(7,24,39,0.05);
}

.contact-form h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #1E8FE3;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 13.5px;
  color: #4B5565;
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #1E8FE3;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1E8FE3;
  box-shadow: 0 0 0 4px rgba(30,143,227,0.12);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7,24,39,0.16);
}

/* FOOTER */
footer {
  background: linear-gradient(120deg, #22C1DC 0%, #1E8FE3 45%, #7557F2 100%);
  color: rgba(255,255,255,0.84);
  padding: 60px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #FFD84D;
  margin-bottom: 12px;
}

.footer-top p {
  font-size: 13.5px;
  max-width: 320px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.footer-links h4 {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  line-height: 1.75;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #FFD84D;
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);

  max-width: 1000px;   /* keeps it readable */
  margin: 0 auto 16px;
}

.footer-disclaimer strong {
  color: #FFFFFF !important;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

  .about-grid,
  .not-grid,
  .sharia-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .hero {
    padding-top: 150px;
  }

  section {
    padding: 60px 20px;
  }

  .hero-content,
  .container,
  .nav-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media(max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 34px;
  }

  .nav-logo img {
    height: 46px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.8s ease-out both;
}

.hero-tag {
  animation-delay: 0.1s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero p {
  animation-delay: 0.35s;
}

.hero-disclaimer {
  animation-delay: 0.5s;
}
/* Sharia Card Upgrade */
.sharia-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.22),
    0 0 45px rgba(255,216,77,0.12);

  max-width: 600px;
  min-height: 290px;
  padding: 42px 48px;
  margin-top: -20px;
    flex-direction: column;
    justify-content: center;
}
.sharia-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Header Layout */
.sharia-header {
  display: flex;
  align-items: center;
  gap: 20px;   /* ⬅️ more breathing room */
  margin-bottom: 20px;
}

/* Avatar */
.sharia-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.8);
  padding: 4px;
  background: rgba(255,255,255,0.1);
}

/* Name */
.sharia-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Role */
.sharia-card .role {
  display: block;
  font-size: 14px;
  color: #FFD76A;
  margin-top: 4px;
}

/* Company */
.sharia-card .company {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Quote */
.sharia-quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-top: 10px;
}
.nani-footer {
  background: #071a3d;
  color: #ffffff;
  padding: 70px 20px 45px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
 grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-logo-img {
  width: 170px;
  margin-bottom: 30px;
}

.footer-info {
  margin-bottom: 22px;
}

.footer-info span,
.footer-links h4 {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-info strong {
  font-size: 15px;
  color: #ffffff;
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 15px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #4cc9ff;
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin: 30px 0 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 13px;
  font-size: 11px;
  line-height: 1.1;
}

/* .footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 55px 0 25px;
} */

.footer-bottom p {
  margin: 0 0 18px;
  font-size: 14px;
}

.footer-disclaimer {
  max-width: 900px;
  color: rgba(255,255,255,0.68);
  font-size: 12px !important;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .nani-footer {
    padding: 50px 20px 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-logo-img {
    width: 135px;
  }
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
  margin-top: 45px;
}

.team-member {
  text-align: center;
  max-width: 280px;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 5px solid #ffffff;
  outline: 4px solid #2db8ff;
  box-shadow: 0 14px 32px rgba(0, 65, 160, 0.18);
  margin-bottom: 22px;
}

.team-member h4 {
  margin-bottom: 4px;
  color: #071a3d;
  font-weight: 700;
}

.team-member span {
  display: block;
  color: #f2b705;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-member p {
  font-size: 16px;
  line-height: 1.65;
  color: #344054;
}
#team {
  padding: 80px 0 70px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin: 30px 0 18px;
  align-items: center;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #22c8ff, #6c4cff);
  transform: translateY(-3px);
}

.footer-socials img,
.footer-socials svg {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #475467; /* softer than pure dark */
}
/* Section descriptions under headings */
.section-subtext,
#team p,
#contact p,
#murabaha p,
#clarity p {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: #5a6473;
}
.section-lead {
  max-width: 640px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: #475467;
  letter-spacing: -0.01em;
  margin-top: 14px;
  margin-bottom: 42px;
}
#contact .section-lead {
  max-width: 560px;
  font-size: 17px;
  margin-bottom: 36px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c8ff, #6c4cff);
  color: #ffffff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-4px);
}
.sharia-grid {
  align-items: start;
}

.sharia-card,
.advisor-card {
  margin-top: 40px;
}
/* =====================
   LEGAL PAGES
===================== */

.legal-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.legal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-logo {
  height: 40px;
}

.legal-main {
  background: #f8fafc;
  padding: 80px 0;
}

.legal-wrap {
  max-width: 900px;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h1 {
  font-size: 42px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.section-head p {
  color: #666;
  font-size: 14px;
}

/* Card style */
.legal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Headings */
.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #1e8fe3;
}

/* Paragraphs */
.legal-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Lists */
.legal-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-card li {
  margin-bottom: 6px;
}

/* Links */
.legal-card a {
  color: #1e8fe3;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* Footer */
.legal-footer {
  background: #0b1c3a;
  color: #fff;
  padding: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.section-head::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #22C1DC, #7557F2);
  margin-top: 15px;
}
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(90deg, #22C1DC, #7557F2);
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(117, 87, 242, 0.4);
}
.legal-copy {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 500;
}

.legal-footer {
  background: #071a3d;
  color: #ffffff;
  padding: 28px 0;
}

.legal-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.legal-footer a:hover {
  color: #22c8ff;
}

.single-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-main-clean {
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 90px;
}

.footer-bottom-clean {
  display: block;
  text-align: center;
}

.footer-copy {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-disclaimer {
  margin-top: 20px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .footer-main-clean {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom-clean {
    text-align: left;
  }

  .footer-disclaimer {
    text-align: left;
  }
}
/* =====================
   MOBILE RESPONSIVE
===================== */

@media (max-width: 900px) {
  .container,
  .hero-content,
  .footer-inner {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 70px;
    background:
      linear-gradient(rgba(34,193,220,0.85), rgba(30,143,227,0.85)),
      url("images/hero-holographic.png") center right / cover no-repeat;
  }

  .hero-content {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-disclaimer {
    max-width: 100%;
    font-size: 12px;
  }

  .about-grid,
  .contact-grid,
  .sharia-grid {
    grid-template-columns: 1fr !important;
    gap: 35px;
  }

  .cards-grid,
  .steps-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
    display: grid;
    gap: 24px;
  }

  .team-grid {
    justify-items: center;
  }

  .footer-main,
  .footer-main-clean {
    grid-template-columns: 1fr !important;
    gap: 38px;
  }

  .footer-bottom,
  .footer-bottom-clean {
    text-align: left;
  }

  .footer-disclaimer {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  header .container,
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }

  nav,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .logo {
    max-width: 140px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-title,
  .section-head h1,
  .about h2,
  .contact h3 {
    font-size: 32px !important;
    line-height: 1.15;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  #backToTop {
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-container,
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .nav-links.active,
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
  }

  .menu-toggle,
  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .logo {
    width: 135px;
  }
}
@media (max-width: 768px) {
 .nav-links {
    top: 72px;
    right: 16px;
    left: auto;
    width: 230px;
    max-width: calc(100vw - 32px);
    border-radius: 14px;
  }
}


  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: left;        /* 👈 looks more natural */
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
  }
  /* FINAL FOOTER CLEANUP */
.footer-bottom,
.footer-bottom-clean {
  display: block !important;
  text-align: center !important;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-disclaimer {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto 18px !important;

  color: rgba(255,255,255,0.68) !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
  text-align: center !important;
}

.footer-copy {
  display: block;
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}
/* APP BUTTONS */
.nav-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #6D28D9 0%, #2563EB 100%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  white-space: nowrap;
}

.hero-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #6D28D9 0%, #2563EB 100%);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.hero-app-btn:hover,
.nav-app-btn:hover {
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
}

.nav-links a {
  white-space: nowrap;
}

.nav-app-btn {
  margin-left: 10px;
  padding: 12px 22px;
  min-width: 112px;
}