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

html {
  overflow-x: hidden; 
}
html {
  overscroll-behavior-y: none;  
}

body {
  background-color: #ffffff; 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden; 
}

/* ===== HERO WRAPPER ===== */
.hero-wrapper {              
  margin: 0px auto;       

  background-image: url('assets/home/bghome.webp'); 
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;

  border-bottom-left-radius: 60px;  
  border-bottom-right-radius: 60px; 

  overflow: hidden;
  position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 98%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5C445;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  margin: 0 auto;
  padding: 0 35px;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 100%;
  height: 100%;
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  top: 85px;                       
  border-top-left-radius: 10px;    
  border-top-right-radius: 10px;
}

.nav-links li a {
  text-decoration: none;
  color: #2B1B0E;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}

.nav-links li.active a {
  background-color: #3D2120;
  color: #F6C547;
}

.nav-links li:not(.active) a:hover {
  background-color: rgba(43, 27, 14, 0.1);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 60px;  
  gap: 30px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 700;
  color: #F5C445;
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero-text p {
  font-size: 20px;
  color: #F6C547;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 22px;

}

.cta-btn {
  background: transparent;
  border: 1px solid #F6C547;
  color: #F6C547;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 12px 55px;
}

.cta-btn:hover {
  background-color: #F6C547;
  color: #3D2120;
}

.hero-image img {
  width: 600px;
  height: 620px;
  object-fit: contain;
  position: relative;
  top: 12px;   
  right: 80px;
}
/* ===== APP PROMOTION SECTION ===== */
.app-section {  
  width: 92%;
  min-height: 100%;
  margin: 60px auto 40px auto;   

  background-image: url('assets/home/bg2.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 36px;         
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 85px 70px;
  gap: 10px;
  overflow: hidden;
  height:550px;
}

/* ===== LEFT TEXT BLOCK ===== */
.app-text {
  max-width: 480px;
  min-width: 0;
  opacity: 0;
  transform: translateX(-800px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.app-text h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px; 
  white-space: nowrap;
  background: linear-gradient(90deg, #F6C547 0%, #836416 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;       
}

/* .app-text h2 span {
  color: #E0A526;       
  display: block; 
  font-size: 50px;
} */

.app-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #000000;      
  margin-bottom: 28px;

}

/* ===== STORE BADGES ===== */
.store-badges {
  display: flex;
  gap: 16px;
}

.store-badges img {
  height: 48px;       
  width: auto;
  cursor: pointer;
}
.store-badges .store-badge1{
    border-radius: 10px;
    
}
.app-image {
  opacity: 0;
  transform: translateY(500px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.app-image img {
  width: 600px;                                                     
  height: auto;
  object-fit: contain;



}
.app-section.in-view .app-text,
.app-section.in-view .app-image {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== WHY INVEST SECTION ===== */
.why-section {
  width: 100%;
  margin: 120px auto 60px auto;
  text-align: center;
  padding:0 40px;
}

.why-section h2 {
  font-size: 55px;
  font-weight: 700;
  color: #3D2120;     
  margin-bottom: 90px;
}

/* ===== CARDS CONTAINER ===== */
.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;   
}
.cards-viewport {
  position: relative;  
  overflow: hidden;    
  width: 100%;
  max-width: calc(5 * 240px + 4 * 23px); 
  margin: 0 auto; 
  padding: 20px 0;                          
}
.cards-scroll {
 width: 100%;
 overflow-x: hidden;   
}

.cards-track {
  display: flex;
  align-items: stretch;
  gap: 23px;
  transition: transform 0.8s ease;   
}

 .feature-card {
  flex: 0 0 240px;    
  width: 240px;
  height: 300px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }



.card-icon {
  width: 75px;
  height: 82px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-top: 0px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
}
.center-highlight {
  position: absolute;
  top: 20px;
  left: calc(2 * (240px + 22px)); 
  width: 240px;
  height: 260px;
  border: 1px solid #F6C547;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(246, 197, 71, 0.45);
  pointer-events: none; 
  z-index: 10;            
}
.highlight-anchor {
  position: static;  
}
/* ===== WEALTH SECTION ===== */
.wealth-section {
  width: 95%;
  margin: 80px auto;
  padding: 0px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin: 240px auto 80px auto;
}

/* ===== LEFT TEXT ===== */
.wealth-text {
  max-width: 700px;
  min-width: 0;   
}

.wealth-text h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F6C547 0%, #836416 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;  

}

.wealth-text p {
  font-size: 20px;
  line-height: 40px;
  color: #000000;
  margin-bottom: 28px;
}

.cta-btn-filled {
  background-color: #2B1B0E;  
  border: 1px;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 55px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color:#F6C547
}

.cta-btn-filled:hover {
  background-color: #3D2120;  
}

/* ===== RIGHT SIDE IMAGE STACK ===== */
.wealth-images {
  position: relative;     
   width: 380px;
  height: 380px; 
  flex-shrink: 0;  
  aspect-ratio: 1 / 1;                        
}

.wealth-img {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
}

.wealth-img-back {
  width: 373px;
  height: 445px;
  top: 10px;
  right: 40px;
  z-index: 1;
}


.wealth-img-front {
  width:270px;
  height: auto;
  top: 160px;   
  bottom: 0;
  left: -200px;  
  z-index: 2;  
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);  
}

.wealth-glow-img {
  position: absolute;
  top: 75%;
  left: 60px;
  transform: translate(-50%, -50%);
  width: 900px;     
  height: auto;
  z-index: 0;          
  pointer-events: none;
}
/* ===== WEALTH SECTION ANIMATIONS ===== */


.wealth-text {
  opacity: 0;
  transform: translateX(-800px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.wealth-img-back {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* Front image: same grow-in effect, slightly delayed */
.wealth-img-front {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}


.wealth-section.in-view .wealth-text {
  opacity: 1;
  transform: translateX(0);
}

.wealth-section.in-view .wealth-img-back,
.wealth-section.in-view .wealth-img-front {
  opacity: 1;
  transform: scale(1);
}
/* ===== CTA / TREASURE CHEST SECTION ===== */
.cta-section {
  position: relative;   
  width: 100%;
  margin: 185px auto 150px auto;

  background-image: url('assets/home/investsection.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 400px;      
  display: flex;
  align-items: center;
  padding: 0 35px;
  overflow: visible;
}

.cta-text {
  position: relative;  
  z-index: 1;
  max-width: 600px;
  min-width: 0;   
}

.cta-text h2 {
  font-size: 55px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
}

.cta-tagline {
  font-size: 35px;
  font-family: 'Solitreo';
  color: #000000;
  margin-bottom: 35px;
}

.cta-text .store-badges {
  display: flex;
  gap: 16px;
}

.cta-text .store-badges img {
  height: 40px;
  width: auto;
  cursor: pointer;
  width: 140px;
  height: 42px;
}

.cta-chest {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-60%);
  width: 780px;
  height: auto;
  z-index: 2;
  opacity: 1;
}

.cta-chest-mobile {
  display: none;  
}


.reinvented-section {
  width: 95%;
  margin: 80px auto;
  padding: 0px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin: 100px auto 80px auto;   
}


.reinvented-text {
  max-width: 700px;
}

.eyebrows {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3D2120;
  margin-bottom: 16px;
}

.eyebrows-arrow {
  color: #E0A526;
}
.eyebrows-arrow-icon {
  width:35px;
  height: auto;
  vertical-align: middle;   
  margin-right: 4px;
}

.reinvented-text h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F6C547 0%, #836416 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.reinvented-text p {
  font-size: 22px;
  color: #000000;
  margin-bottom: 28px;
  line-height: 40px;
}

.reinvented-tagline {
  font-family: 'Solitreo';
  font-size: 25px;
  color: #3D2120;
  margin-top: 10px;
}


.reinvented-images {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.reinvented-img {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
}


.reinvented-img-back {
  width: 373px;
  height: 445px;
  top: 20px;
  left: -10px;      
  z-index: 1;
}


.reinvented-img-front {
  width: 300px;
  height: 377px;
  top: 170px;
  right: -110px;    
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.reinvented-glow {
  position: absolute;
  top: 77%;
  right: 180px;        
  transform: translate(50%, -50%);   
  width: clamp(400px, 55vw, 900px);   
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.reinvented-text {
  opacity: 0;
  transform: translateX(800px);   
  transition: opacity 1.8s ease, transform 1.8s ease;
}


.reinvented-img-back {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.2s ease, transform 1.2s ease;
}


.reinvented-img-front {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}


.reinvented-section.in-view .reinvented-text {
  opacity: 1;
  transform: translateX(0);
}

.reinvented-section.in-view .reinvented-img-back,
.reinvented-section.in-view .reinvented-img-front {
  opacity: 1;
  transform: scale(1);
}

.faq-section {
  max-width: 1000px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 40px auto;
  margin-top: 100px;
}

.faq-title {
  text-align: center;
  margin-bottom: 70px;
  font-size: 55px;
}


.faq-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.faq-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}


summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  font-size: 1.18rem;
}

/* Remove default triangle */
summary::-webkit-details-marker {
  display: none;
}

.icon {
  font-size: 16px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: #000000;
}

details[open] .icon {
  transform: rotate(180deg);
}

/* Answer content */
.faq-answer {
  padding: 0 20px 20px 20px;
  color: #000000;
  line-height: 1.6;
}


.contact-section {
  width: 95%;
  margin: 80px auto;

  background-image: url('assets/home/contactus.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3D2120;
  margin-bottom: 16px;
}
.eyebrow-arrow{
  color:#F6C547;
}

.contact-text {
  max-width: 500px;
  min-width: 0;   
}

.contact-text h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #F6C547 0%, #836416 100%);
  white-space: nowrap;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;  
}

.contact-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.contact-icon {
  width: 20px;
  height: 18px;
  margin-top: 2px;   
  flex-shrink: 0;      
}

/* ===== RIGHT FORM ===== */
.contact-form {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 38px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5D9B8;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #000000;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #A8A8A8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #F6C547;  
}

.contact-form textarea {
  resize: vertical;    
  min-height: 120px;
}

.contact-form button {
  align-self: flex-start;   
  background-color: #2B1B0E;
  color: #F6C547;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 72px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #4a2e12;
}
/* ===== FOOTER ===== */
.site-footer {
  width: 98%;
  margin: 40px auto 0px auto;

  background-color: #F6C547;   
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 40px 40px 30px 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */

.footer-logo-icon {
  width: 340px;
  height: 60px;
  margin: 30px 0;
}



/* Links row */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 52px;
  margin-bottom: 30px;

}

.footer-links a {
  text-decoration: none;
  color: #3D2120;
  font-size: 17px;
  font-weight: 700;
}

/* .footer-links a:hover {
  text-decoration: underline;
} */

/* Contact row */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #3D2120;
}

.footer-icon {
  width: 16px;
  height: 16px;
}






.hamburger-btn {
  display: none;            
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;             
}

.hamburger-line {
  width: 90%;
  height: 3px;
  background-color: #2B1B0E;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1460px) {

  .navbar { padding: 0 30px;width:98% }
  .hero-content {max-width: 1480px; margin: 0 auto; padding: 0px 30px; }
  .hero-text h1 { font-size: 42px;}
  .hero-image img { width: 520px; height: auto; right:100px; top: 0; }

  .app-section { padding: 60px 40px; }
  .app-text h2 { font-size: 40px; white-space: normal; }
  .app-image img { width: 460px;margin-right: 60px; }

  .why-section h2 { font-size: 40px; }

  .wealth-section, .reinvented-section {
    gap: 30px;
    padding: 0 24px;
  }
  .wealth-text h2, .reinvented-text h2 { font-size: 40px; white-space: normal; }
  .wealth-images, .reinvented-images { width: 300px; height: 300px; }
  .wealth-img-back, .reinvented-img-back { width: 280px; height: 340px; }
  .wealth-img-front, .reinvented-img-front { width: 220px; height: 280px; }

  .cta-section { padding: 0 70px; }
  .cta-text h2 { font-size: 42px; white-space: normal; }
  .cta-chest { width: 720px; right: 35px;
  top: 50%;
  transform: translateY(-60%);
  height: auto;
  z-index: 2;
  opacity: 1; }

  .contact-section { padding: 40px; gap: 30px; }
  .contact-text h2 { font-size: 40px; white-space: normal; }
}

 
  @media (max-width: 1320px) {
  .wealth-images, .reinvented-images { width: 280px; height: 280px; }
  .wealth-img-back, .reinvented-img-back { width: 260px; height: 310px; top: 10px; }
  .wealth-img-front, .reinvented-img-front { width: 210px; height: 260px; top: 140px; }
  .wealth-glow-img { width: 500px; }
  .reinvented-glow { width: 500px;}

  .wealth-img-front { left: -60px; }
  .reinvented-img-front { right: -60px; }

   .cta-chest { width: 680px; right: 25px;
  top: 50%;
  transform: translateY(-62%);
  height: 450px;
  z-index: 2;
  opacity: 1; }
}

@media (max-width: 1170px) {

  .hero-image img {
    width: 340px;
    height: auto;
    right: 80px;
    top: 0;
  }
  .hero-content{
    padding: 50px 60px;
  }

  .app-image img { width: 460px;margin-right: 6px; }

  .wealth-section {
    flex-direction: column;
    margin: 100px auto 60px auto;
    padding: 0 20px;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .wealth-text { max-width: 100%; }
  .wealth-text h2 { font-size: 45px; white-space: normal; }
  .wealth-text p { font-size: 20px; text-align: justify; }
  .cta-btn-filled { margin: 0 auto; }

  .cta-chest { width: 520px; right: 15px;
  transform: translateY(-50%);
  height: auto;
  z-index: 2;
  opacity: 1; }


  .reinvented-section {
    flex-direction: column-reverse;
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .reinvented-text { max-width: 100%; }
  .reinvented-text h2 { font-size: 45px; white-space: normal; }
  .reinvented-text p { font-size: 20px; text-align: justify; }
  .reinvented-text p.reinvented-tagline{text-align: center;}

  .wealth-images, .reinvented-images {
    width: 260px;
    height: 260px;
    margin-top: 20px;
  }
  .wealth-img-back, .reinvented-img-back { width: 220px; height: 260px; top: 0; }
  .wealth-img-front, .reinvented-img-front { width: 170px; height: 210px; top: 110px; }
  .wealth-img-back { right: 20px; }
  .reinvented-img-back { left: 10px; }
  .wealth-img-front { left: -10px; }
  .reinvented-img-front { right: -10px; }
  .eyebrows{justify-content: center;font-size: 18px;}


  .wealth-glow-img { width: 500px; transform:translate(-40%, -50%);}
  .reinvented-glow {
    width: 500px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-section { padding: 0 20px; margin-top: 150px; }

  
}
@media (max-width: 1365px) {
  .feature-card {
    flex: 0 0 320px;
    width: 420px;
    height: 280px;
  }

  .cards-viewport {
    max-width: calc(3 * 320px + 2 * 30px);   /* 3 cards + 2 gaps */
  }

  .cards-track {
    gap: 30px;
  }

  .center-highlight {
    width: 320px;
    left: calc(1 * (320px + 30px));   /* index 1 = the middle card of 3 */
  }
}
@media (max-width: 1135px) {
  .cta-text h2 {
    font-size: 36px;
  }
  .cta-tagline {
    font-size: 26px;
  }
.cta-section{
    min-height: 300px;
}
.cta-chest{
  transform:translateY(-60%);
}
}


@media (max-width: 920px) {

  .navbar {
    height: 70px;
    padding: 0 20px;
    position: relative;
    width: 95%;
  }

  .hamburger-btn { display: flex;}  

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 80px;                 
    left: 0;
    width: 100%;
    background-color: #F6C547;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    max-height: 0;            
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 15;
  }

  .nav-links.nav-open {
    max-height: 300px;          
  }

  .nav-links li {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links li a { display: block; }

  /* ---- HERO ---- */
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: 32px; line-height: 1.4; }
  .hero-text p { max-width: 100%; margin: 0 auto 20px auto; }
  .hero-image img {
    width: 80%;
    max-width: 320px;
    height: auto;
    position: static;         
  }


  .app-section {
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    text-align: center;
    height:100%;
  }
  .app-text { max-width: 100%; }
  .app-text h2 { font-size: 40px; white-space: normal; }
  .app-text p { font-size: 20px;text-align: justify; }
  .store-badges { justify-content: center; height:60%; }
  .app-image img { width: 90%; max-width: 340px; }

  /* ---- WHY INVEST / CARDS CAROUSEL ---- */
  .why-section { margin: 60px auto 40px auto; padding: 0 20px; }
  .why-section h2 { font-size: 30px; margin-bottom: 50px; }

  .feature-card { flex: 0 0 180px; width: 180px; height: 210px; }
  .cards-viewport { max-width: calc(3 * 180px + 2 * 16px); }
  .cards-track { gap: 16px; }
  .center-highlight {
    width: 180px;
    left: calc(1 * (180px + 16px));
    height: 210px;
    top:20px;
}
  .card-icon { width: 45px; height: 50px; }
  .feature-card h3 { font-size: 15px; }
  .feature-card p { font-size: 12px; }

  /* ---- WEALTH SECTION ---- */
  .wealth-section {
    flex-direction: column;
    margin: 100px auto 60px auto;
    padding: 0 20px;
    gap: 40px;
    text-align: center;
    align-items: center;
    
  }
  .wealth-text { max-width: 100%; }
  .wealth-text h2 { font-size: 40px; white-space: normal;line-height: 40px;margin-bottom: 40px; }
  .wealth-text p { font-size: 19px; text-align: justify; }
  .cta-btn-filled { margin: 0 auto; }

  .wealth-images {
    width: 260px;
    height: 260px;
    margin-top: 20px;
    margin-bottom: 60px;
    
  }
  .wealth-img-back { width: 220px; height: 260px; top: 0; right: 20px; }
  .wealth-img-front { width: 170px; height: 210px; top: 110px; left: -10px; }
  .wealth-glow-img { width: 500px; }

  /* ---- CTA / TREASURE CHEST ---- */
  .cta-section {
    flex-direction: column;
    padding: 40px 20px;
    margin: 80px auto;
    text-align: center;
    align-items: center;
  }
  .cta-text { max-width: 100%; }
  .cta-text h2 { font-size: 30px; white-space: normal; }
  .cta-tagline { font-size: 22px; }
  .cta-text .store-badges { justify-content: center; }
  .cta-chest {
    display: block;  
  }
  .cta-chest-mobile {
    display: none; 
  }
  .cta-chest {
    position: static;
    transform: none;
    width: 240px;
    margin-top: 30px;
  }


  .reinvented-section {
    flex-direction: column-reverse; 
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .reinvented-text { max-width: 100%; }
  .reinvented-text h2 { font-size: 40px; white-space: normal;margin-bottom: 40px; }
  .reinvented-text p { font-size: 19px;text-align: justify;line-height: 35px;}
  .reinvented-text p.reinvented-tagline{text-align: center;}
  .eyebrow { justify-content: start;font-size: 18px; }

  .reinvented-images { width: 260px; height: 260px;}
  .reinvented-img-back { width: 220px; height: 260px; top: 0; left: 10px; }
  .reinvented-img-front { width: 170px; height: 210px; top: 110px; right: -10px; }
  .reinvented-glow { width: 500px; right: auto; left: 50%; }

  /* ---- FAQ ---- */
  .faq-section { padding: 0 20px; margin-top: 150px; }
  .faq-title { font-size: 40px; margin-bottom: 40px; }
  summary { font-size: 1rem; padding: 16px; }

  /* ---- CONTACT ---- */
  .contact-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    /* text-align: center; */
    align-items: center;
  }
  .contact-text { max-width: 100%; }
  .contact-text h2 { font-size: 32px; white-space: nowrap; text-align: justify; line-height:50px;}
  .contact-text p {text-align: justify;}

  .contact-form { max-width: 100%; width: 100%; }

  /* ---- FOOTER ---- */
  .footer-logo-icon { width: 220px; height: auto; }
  .footer-links { gap: 16px 24px; }
  .footer-contact { gap: 20px; }
}


@media (max-width: 480px) {

  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 16px; }
  .cta-btn { padding: 10px 30px !important; font-size: 15px; }

  .app-text h2 { font-size: 26px; }
  .app-text p { font-size: 16px; }

  .why-section h2 { font-size: 24px; }

  .feature-card {
    flex: 0 0 100%;       
    width: 85%;
    height: 260px;
    scroll-snap-align: center;   
  }
  .cards-viewport {
    max-width: 85%;

  }
  .cards-scroll {
    overflow-x: auto;
   -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .cards-scroll::-webkit-scrollbar {
    display: none;                        
  }
  .cards-track {
    gap: 0px;               
  }
  .center-highlight {
  width: 95%;
  left: calc((100% - 95%) / 2);
  height:260px;
  top:20px;
  will-change:transform;   
  }
  .card-icon { width: 55px; height: 60px; }
  .feature-card h3 { font-size: 22px ; }
  .feature-card p { font-size: 17px; }
  

  

  .wealth-text h2, .reinvented-text h2 { font-size: 28px;margin-bottom: 40px; }
  .wealth-text p, .reinvented-text p { font-size: 16px;line-height: 1.8; }
  .reinvented-tagline{font-size: 16px;}
  .wealth-images, .reinvented-images { width: 220px; height: 220px; }
  .wealth-img-back, .reinvented-img-back { width: 180px; height: 220px; }
  .wealth-img-front, .reinvented-img-front { width: 140px; height: 175px; }

  .cta-text h2 { font-size: 24px; }
  .cta-tagline { font-size: 18px; }
  .cta-chest { width: 180px; }

  .faq-title { font-size: 24px; }
  summary { font-size: 0.95rem; padding: 14px; }

  .contact-text h2 { font-size: 28px;line-height: 1.5; }
  .contact-text p { font-size: 18px; }

  .footer-links { gap: 12px 18px; }
  .footer-links a { font-size: 13px; }
}





/* ==========================================================================
   Exact Index.html Header Backdrop & Clean White Policy Layout
   ========================================================================== */

.hero-wrapper-policy {
  margin: 0 auto;
  background-image: url('assets/home/bghome.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

.policy-header-title {
  text-align: center;
  padding: 10px 20px 10px;
  position: relative;
  z-index: 1;
}

.policy-badge { display: none !important; }

.policy-header-title h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.policy-header-title p {
  font-size: 16px;
  color: #e5d8be;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

.policy-content-section {
  background-color: #ffffff;
  padding: 45px 20px 80px;
  color: #2b2319;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.policy-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2b2319;
  margin-top: 30px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e0d8c8;
  padding-bottom: 8px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3, .policy-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #2b2319;
  margin-top: 22px;
  margin-bottom: 8px;
}

.policy-card b, .policy-card strong {
  font-weight: 600;
  color: #2b2319;
}

.policy-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a3f31;
  margin-bottom: 14px;
}

.policy-card ul, .policy-card ol {
  margin-bottom: 20px;
  padding-left: 22px;
}

.policy-card li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a3f31;
  margin-bottom: 8px;
}

.policy-card li span {
  font-weight: 400;
  color: #4a3f31;
}

.policy-card a {
  color: #a87f13;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-card a:hover {
  color: #000000;
}

@media (max-width: 768px) {
  .hero-wrapper-policy { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; padding-bottom: 25px; }
  .policy-header-title h1 { font-size: 28px; }
  .policy-header-title p { font-size: 14px; }
  .policy-card h2 { font-size: 20px; }
  .policy-card h3 { font-size: 16px; }
  .policy-card p, .policy-card li { font-size: 14px; }
}




/* ==========================================================================
   Clean Policy Page & Footer Styling (Exact Match with Index.html)
   ========================================================================== */

/* Header Top Portion - Transparent Background, No Brown Backdrop */
.hero-wrapper-policy {
  margin: 0 auto !important; padding-top: 0 !important; top: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border-radius: 0 !important;
  overflow: visible;
  position: relative;
  padding-bottom: 10px;
}

/* Page Title Header (Plain background, w700 main heading, no gradient box) */
.policy-header-title {
  text-align: center;
  padding: 30px 20px 10px;
  position: relative;
  z-index: 1;
}

.policy-badge { display: none !important; }

.policy-header-title h1 {
  font-size: 38px;
  font-weight: 600 !important; /* w700 main heading */
  color: #1c150c;
  margin: 0 0 8px;
  line-height: 1.25;
}

.policy-header-title p {
  font-size: 16px;
  color: #5c4d3c;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Policy Content Section & Card Container (Only Border, No Dark Gradient) */
.policy-content-section {
  background-color: #ffffff;
  padding: 30px 20px 60px;
  color: #2b2319;
}

.policy-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid #e0d8c8 !important; /* Card ONLY border */
  border-radius: 16px;
  box-shadow: none !important;
  padding: 40px 48px;
}

.policy-card h2 {
  font-size: 24px;
  font-weight: 600 !important; /* Section headings w700 */
  color: #8c6709;
  margin-top: 30px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e0d8c8;
  padding-bottom: 8px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3, .policy-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #2b2319;
  margin-top: 22px;
  margin-bottom: 8px;
}

.policy-card b, .policy-card strong {
  font-weight: 600;
  color: #2b2319;
}

.policy-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a3f31;
  margin-bottom: 14px;
}

.policy-card ul, .policy-card ol {
  margin-bottom: 20px;
  padding-left: 22px;
}

.policy-card li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a3f31;
  margin-bottom: 8px;
}

.policy-card li span {
  font-weight: 400;
  color: #4a3f31;
}

.policy-card a {
  color: #926d0b;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-card a:hover {
  color: #000000;
}

/* Footer Styling (Identical to index.html) */
.site-footer {
  width: 98% !important;
  margin: 40px auto 0px auto !important;
  background-color: #F6C547 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  padding: 40px 40px 30px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  list-style: none !important;
  gap: 52px !important;
  margin-bottom: 30px !important;
}

.footer-links a {
  text-decoration: none !important;
  color: #3D2120 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}

.footer-links a:hover {
  text-decoration: underline !important;
}

.footer-contact {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 40px !important;
}

.footer-contact-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #3D2120 !important;
}

@media (max-width: 768px) {
  .policy-header-title h1 { font-size: 28px; }
  .policy-header-title p { font-size: 14px; }
  .policy-card { padding: 24px 20px; }
  .policy-card h2 { font-size: 20px; }
  .policy-card h3 { font-size: 16px; }
  .policy-card p, .policy-card li { font-size: 14px; }
  .footer-links { gap: 16px 24px !important; }
}


/* Sticky Header Rule */
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}


/* Flexbox Sticky Footer when content height is small */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.hero-wrapper, .hero-wrapper-policy {
  flex-shrink: 0;
}

.policy-content-section, .hero-section, main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto !important;
  flex-shrink: 0;
}


/* ==========================================================================
   Header & Footer Exact Match with Flutter Web App
   ========================================================================== */

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.hero-wrapper, .hero-wrapper-policy {
  flex-shrink: 0;
  margin: 0 auto !important;
  padding-top: 0 !important;
  top: 0 !important;
}

.policy-content-section, .hero-section, main {
  flex: 1 0 auto;
}

/* NAVBAR (100% Match with Flutter Web App) */
.navbar {
  width: 98% !important;
  height: 85px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: #F5C445 !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  margin: 0 auto !important;
  padding: 0 60px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.logo-icon {
  height: 48px !important;
  width: auto !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links li a {
  text-decoration: none !important;
  color: #3D2120 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.nav-links li.active a {
  background-color: #3D2120 !important;
  color: #ffffff !important;
}

.nav-links li:not(.active) a:hover {
  background-color: rgba(61, 33, 32, 0.1) !important;
}

/* SITE FOOTER (100% Match with Flutter Web App) */
.site-footer {
  width: 98% !important;
  margin: 40px auto 0 auto !important;
  margin-top: auto !important;
  background-color: #F6C547 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  padding: 40px 40px 30px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}

.footer-logo-icon {
  height: 50px !important;
  width: auto !important;
  margin-bottom: 25px !important;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  list-style: none !important;
  gap: 40px !important;
  margin-bottom: 30px !important;
  padding: 0 !important;
}

.footer-links a {
  text-decoration: none !important;
  color: #3D2120 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  transition: opacity 0.2s ease !important;
}

.footer-links a:hover {
  text-decoration: underline !important;
  opacity: 0.85 !important;
}

.footer-contact {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 40px !important;
}

.footer-contact-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #3D2120 !important;
  white-space: nowrap !important;
}




/* ==========================================================================
   Outer Horizontal Margin/Padding (98% Width matching Flutter Web App)
   ========================================================================== */

.hero-wrapper, .hero-wrapper-policy, header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.navbar {
  width: 98% !important;
  max-width: 98% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  height: 85px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: #F5C445 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  padding: 0 50px !important;
  box-sizing: border-box !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.site-footer {
  width: 98% !important;
  max-width: 98% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  background-color: #F6C547 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  padding: 40px 40px 30px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}


/* Footer Phone & Email Redirect Links */
a.footer-contact-row, .footer-contact-link {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #3D2120 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: opacity 0.2s ease !important;
  cursor: pointer !important;
}

a.footer-contact-row:hover, .footer-contact-link:hover {
  text-decoration: underline !important;
  opacity: 0.85 !important;
}




/* ==========================================================================
   Clean Contact Us Section Layout (Light Yellow Circle & Fully Responsive)
   ========================================================================== */
.contact-section {
  width: 95%;
  margin: 80px auto;
  background-image: url('assets/home/contactus.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 70px;
  box-sizing: border-box;
}

.contact-text {
  max-width: 520px;
  flex: 1;
}

.contact-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #3D2120;
  margin-bottom: 20px;
  line-height: 1.25;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #3D2120;
  opacity: 0.9;
}

.contact-details-box {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 184, 66, 0.35);
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: #3D2120;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(61, 33, 32, 0.1);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #FFF4D4 !important; /* Soft Light Yellow Shade */
  border: 1px solid rgba(212, 165, 30, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon img {
  width: 22px;
  height: 22px;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8c6709;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: #2b1b0e;
  line-height: 1.45;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    padding: 45px 30px;
    gap: 35px;
    margin: 50px auto;
  }
  .contact-text {
    max-width: 100%;
    text-align: center;
  }
  .contact-text h2 {
    font-size: 34px;
  }
  .contact-details-box {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 30px 20px;
    gap: 25px;
    margin: 35px auto;
    border-radius: 18px;
  }
  .contact-text h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  .contact-text p {
    font-size: 14px;
  }
  .contact-card {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 14px;
  }
  .contact-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .contact-card-icon img {
    width: 18px;
    height: 18px;
  }
  .contact-card-value {
    font-size: 14px;
  }
}
