<style>
  * { margin:0; padding:0; box-sizing:border-box; }
    body { background:#fdfdf9; font-family:'Helvetica Neue',Helvetica,Arial,sans-serif; color:#222; line-height:1.7; }
    a { transition:all 0.3s ease; }

    /* Rotating Banner */
    .top-banner {
      background:#a07c3b; color:#fff; padding:14px; text-align:center; font-weight:500; font-size:15px;
      overflow:hidden; white-space:nowrap; position:relative;
    }
    .banner-text { display:inline-block; animation: scroll 25s linear infinite; }
    @keyframes scroll { 0% { transform:translateX(100%); } 100% { transform:translateX(-100%); } }

    /* Navbar - Fixed & Beautiful */
    .navbar {
      background:#C1A875; padding:12px 20px; position:sticky; top:0; z-index:1000;
      display:flex; justify-content:space-between; align-items:center; box-shadow:0 2px 15px rgba(0,0,0,.12);
    }
     /* ===========================
   LOGO — More Prominent & Premium
=========================== */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;                /* slightly more breathing room */
  text-decoration: none;
  font-weight: 800;         /* bolder for premium feel */
  font-size: 1.45rem;       /* bigger text – adjust to 1.45rem if too big */
  color: #fff;
  letter-spacing: 0.5px;
 

  /* Removed white bg – let it blend with gold navbar */
  padding: 8px 16px;        /* gentle padding around logo+text */
  border-radius: 14px;
  transition: all 0.35s ease;

  /* Subtle premium effects */
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);           /* depth on text */
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 16px rgba(0,0,0,0.2);
}

.logo:hover {
  transform: scale(1.06) translateY(-2px);   /* lift + grow */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 24px rgba(0,0,0,0.28);
  filter: brightness(1.08);                   /* slight shine on hover */
}

.logo img {
  height: 80px;               /* ← bigger & more prominent – try 68px or 80px */
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35)) brightness(1.05);
  transition: transform 0.4s ease;
}

.logo:hover img {
  transform: rotate(3deg) scale(1.05);   /* playful subtle tilt + grow on hover */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .logo {
    font-size: 1.35rem;
    gap: 10px;
    padding: 6px 12px;
  }
  
  .logo img {
    height: 58px;             /* still prominent but fits small screens */
  }
}

    .nav-links { display:flex; list-style:none; gap:28px; }
    .nav-links a {
      color:#fff; text-decoration:none; font-weight:600; font-size:14px; padding:8px 14px; border-radius:6px;
      transition:background .3s, color .3s;
    }
    .nav-links a:hover, .nav-links a.active { background:#fff; color:#C1A875; }
    .trader-login {
      background:#fff; color:#C1A875; padding:10px 20px; border-radius:50px; font-weight:bold; font-size:14px;
      text-decoration:none; box-shadow:0 3px 10px rgba(0,0,0,.15);
    }
    .trader-login:hover { background:#f0f0f0; transform:translateY(-2px); }
    .hamburger { display:none; cursor:pointer; padding:4px; }
    .hamburger span { width:26px; height:3px; background:#fff; display:block; margin:3px 0; border-radius:2px; transition:.3s; }

    @media (max-width: 992px) {
      .nav-links { gap:18px; }
      .nav-links a { font-size:13px; padding:6px 10px; }
    }
    @media (max-width: 768px) {
      .navbar { padding:12px 16px; }
      .hamburger { display:block; }
      .nav-links {
        position:absolute; top:100%; left:0; right:0; background:#C1A875;
        flex-direction:column; max-height:0; overflow:hidden; transition:max-height .4s ease;
        box-shadow:0 6px 15px rgba(0,0,0,.15);
      }
      .nav-links.active { max-height:500px; }
      .nav-links a { text-align:center; padding:16px; border-bottom:1px solid rgba(255,255,255,.1); }
      .trader-login { margin:15px auto; display:block; width:fit-content; }
    }

    /* Hero */
    header {
      padding:120px 20px 90px; background:url('/assets/img/hero-home.jpg') center/cover no-repeat;
      position:relative; color:#fff; text-align:center;
    }
    header::before { content:''; position:absolute; inset:0; background:rgba(0,0,0,.58); }
    header > * { position:relative; z-index:2; }
    header img { width:150px; margin-bottom:18px; }
    header h1 { font-size:42px; font-weight:500; margin-bottom:14px; }
    header p { font-size:19px; max-width:750px; margin:12px auto; opacity:.95; }
    .founder { font-weight:bold; color:#eee; margin-top:24px; font-size:17px; }

    /* Trust Bar */
    .trust-bar {
      background:#f8f5ec; padding:18px; display:flex; justify-content:center; gap:40px;
      font-size:15px; color:#a07c3b; flex-wrap:wrap; font-weight:500;
    }
    .trust-bar span { position:relative; padding-left:26px; }
    .trust-bar span::before { content:"✓"; color:#C1A875; font-weight:bold; position:absolute; left:0; top:-1px; font-size:18px; }

    /* Cards */
    .cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:28px; padding:70px 20px; max-width:1200px; margin:auto; }
    .card { background:#fff; border-radius:18px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.1); transition:all .4s; text-align:center; }
    .card:hover { transform:translateY(-10px); box-shadow:0 20px 50px rgba(0,0,0,.16); }
    .card img { width:100%; height:200px; object-fit:cover; }
    .card .content { padding:28px; }
    .card h3 { font-size:1.4rem; color:#a07c3b; margin-bottom:14px; }
    .btn-card { background:#C1A875; color:#fff; padding:14px 28px; border-radius:50px; font-weight:bold; display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
    .btn-card:hover { background:#a07c3b; }

    /* Pulse Teaser - Text-Only Grid */
    .pulse-teaser { background:#1a1a1a; color:#fff; padding:60px 20px; text-align:center; cursor:pointer; transition:background .3s; }
    .pulse-teaser:hover { background:#222; }
    .pulse-teaser h2 { font-size:26px; color:#C1A875; margin-bottom:32px; }
    .pulse-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; max-width:1000px; margin:auto; }
    .pulse-item { background:linear-gradient(135deg,#2a2a2a,#1f1f1f); border-radius:12px; padding:20px; transition:all .3s; }
    .pulse-item:hover { transform:translateY(-6px); box-shadow:0 12px 25px rgba(193,168,117,.2); }
    .pulse-item h4 { font-size:1.1rem; color:#C1A875; margin-bottom:8px; }
    .pulse-item .price { font-size:1.3rem; font-weight:bold; color:#fff; margin:10px 0; }
    .pulse-item .change { font-size:0.85rem; opacity:.9; }

    /* Stock Teaser */
    .stock-teaser { background:#f8f5ec; padding:60px 20px; text-align:center; }
    .stock-teaser h2 { font-size:26px; color:#a07c3b; margin-bottom:32px; }
    .stock-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; max-width:1000px; margin:auto; }
    .stock-item { background:#fff; border-radius:12px; padding:16px; box-shadow:0 4px 15px rgba(0,0,0,.06); text-align:left; display:flex; gap:12px; align-items:center; transition:all .3s; cursor:pointer; text-decoration:none; color:inherit; }
    .stock-item:hover { transform:translateY(-6px); box-shadow:0 12px 25px rgba(193,168,117,.15); }
    .stock-item img { width:60px; height:60px; object-fit:cover; border-radius:8px; background:#f0f0f0; display:flex; align-items:center; justify-content:center; }
    .stock-item h4 { font-size:1rem; color:#a07c3b; margin-bottom:4px; }
    .stock-item p { font-size:0.85rem; color:#666; margin:2px 0; }

     /* Alliya Float Button */
.alliya-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #C1A875;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    z-index: 999;
    font-size: 15px;
    transition: all 0.3s ease;
}

.alliya-float:hover {
    background: #a07c3b;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .alliya-float {
        bottom: 80px;
        right: 15px;
        padding: 14px 20px;
    }
}

/* ──────────────────────────────────────── */
/* Modal & Alliya Box */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 32px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #000;
}

.alliya-box h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a07c3b;
    font-size: 22px;
    margin-bottom: 24px;
}

/* Input + Suggestions wrapper */
.alliya-query-wrapper {
    position: relative;
    width: 100%;
}

.alliya-box input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.alliya-box input:focus {
    outline: none;
    border-color: #C1A875;
    box-shadow: 0 0 0 4px rgba(193,168,117,0.25);
}

/* Suggestions dropdown */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: none;           /* controlled by JS */
}

.suggestions div {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.suggestions div:last-child {
    border-bottom: none;
}

.suggestions div:hover,
.suggestions div:focus {
    background: #f8f5ec;
}

/* Button & Reply */
.alliya-box button {
    margin-top: 20px;
    padding: 14px;
    background: #C1A875;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.alliya-box button:hover {
    background: #a07c3b;
}

.reply {
    margin-top: 24px;
    padding: 16px;
    background: #f8f5ec;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    display: none;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

    /* CTA */
    .cta-banner { background:linear-gradient(135deg,#C1A875,#a07c3b); padding:80px 20px; text-align:center; color:#fff; }
    .cta-banner h2 { font-size:28px; margin-bottom:12px; }
    .cta-banner p { font-size:18px; max-width:700px; margin:0 auto 20px; opacity:.95; }
    .btn-cta { background:#fff; color:#C1A875; padding:16px 40px; border-radius:50px; font-weight:bold; font-size:1.2rem; display:inline-flex; align-items:center; gap:12px; text-decoration:none; box-shadow:0 6px 20px rgba(0,0,0,.2); }
    .btn-cta:hover { transform:scale(1.05); background:#f8f8f8; }
 
    /* ---------- SOCIAL ---------- */
.social {
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
}
.social h2 {
  font-size: 28px;
  color: #a07c3b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social a {
  font-size: 2.2em;
  color: #C1A875;
  margin: 0 16px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social a:hover {
  color: #a07c3b;
  transform: scale(1.1);
}

/* ---------- TRUST BLOCK ---------- */
.trust-block {
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  padding: 40px 20px;
  background-color: #f9f9f9; /* Light background for contrast */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.trust-block h2 {
  font-size: 28px;
  color: #C1A875;
  margin-bottom: 20px;
}
.trust-block p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.trust-block ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
}
.trust-block li {
  font-size: 15px;
  color: #555;
  margin: 12px 0;
  text-align: left;
}
.trust-block li strong {
  color: #a07c3b;
}
@media (max-width: 768px) {
  .trust-block {
    padding: 30px 15px;
  }
}

/* ---------- FOOTER ---------- */
footer {
  background-color: #111; /* Dark professional background */
  color: #ddd;
  padding: 60px 20px 20px;
  margin-top: 80px; /* Space from main content */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col h3 {
  color: #C1A875; /* Gold accent for brand */
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col ul {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #C1A875;
}

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

.footer-col li {
  margin: 8px 0;
}

/* Social Links in Footer */
.social-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.social-links a {
  font-size: 24px;
  margin-right: 16px;
  color: #ddd;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #C1A875;
}

/* Bottom */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

.footer-bottom a {
  color: #C1A875;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    margin: 0 12px;
  }

}

</style>
