*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================================================
   INVESTOR GOAL – BRAND COLOR SYSTEM (FINAL)
========================================================= */
:root {
  /* Backgrounds */
  --bg: #FFFFFF;                 /* Clean white main background */
  --bg-alt: #E8F5E9;              /* Light green sections */
  --bg-white: #FFFFFF;

  /* Cards */
  --card: #FFFFFF;
  --card-alt: #F1F8F4;            /* Very soft green card bg */

  /* Primary Brand (GREEN – Growth & Trust) */
  --primary: #9BE6A3;             /* Main Green */
  --primary-hover: #CFF4B2;       /* Darker Green on hover */
  --primary-soft: rgba(46,125,50,.12); /* Soft green background */

  /* Accent (GOLD – CTA / Highlights) */
  --accent: #C9A227;              /* Gold */
  --accent-hover: #B8961E;        /* Dark Gold hover */

  /* Text */
  --text: #1C1C1C;                /* Main text */
  --text-dark: #0F172A;
  --text-light: #FFFFFF;
  --muted: #6B7280;

  /* Borders & States */
  --border: #D1D5DB;
  --danger: #B91C1C;
  --success: #2E7D32;             /* Same as primary (positive growth) */

  /* Radius */
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-soft: 0 20px 50px rgba(46, 125, 50, 0.08);
  --shadow-card: 0 16px 40px rgba(46, 125, 50, 0.06);
}


/* =========================================================
   BASE STYLES
========================================================= */
html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}


/* =========================================================
   MAIN NAVBAR (PERMANENT WHITE)
========================================================= */
/* =========================================================
   NAVBAR
========================================================= */
.main-navbar{
  position:fixed;
  top:0;
  width:100%;
  background:var(--bg-white);
  z-index:1000;
  box-shadow:0 6px 16px rgba(46,125,50,.08);
}

/* INNER (PADDING REDUCED 👇) */
.main-nav-inner{
  max-width:1200px;
  margin:auto;
  padding:10px 20px;   
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.main-logo{
  display:flex;
  align-items:center;
  gap:8px;             
  text-decoration:none;
}

.main-logo-img{
  height:50px;       
}

.logo-text{
  font-size:19px;      
  font-weight:600;
  color:var(--primary);
  line-height:1;
}

.logo-text strong{
  color:var(--accent);
}

/* NAV LINKS */
.main-nav-links{
  display:flex;
  gap:16px;           
}

.main-nav-links a{
  font-size:14.5px;
  font-weight: bold;
  color:var(--text-dark);
  text-decoration:none;
  padding-bottom:3px;
  position:relative;
}

.main-nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--primary);
  transition:.3s;
}

.main-nav-links a:hover{
  color:var(--primary);
}

.main-nav-links a:hover::after{
  width:100%;
}

/* CTA (SLIM) */
.main-nav-cta{
  padding:8px 18px;    /* ⬅️ reduced */
  border-radius:24px;
  background:var(--primary);
  color:#fff;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.main-nav-cta:hover{
  background:var(--primary-hover);
  transform:translateY(-1px);
}

/* HAMBURGER */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
}

.nav-toggle span{
  width:24px;
  height:2.5px;
  background:var(--primary);
}

/* COLLAPSE */
.collapse{display:none;}
.collapse.show{display:block;}

/* MOBILE */
@media(max-width:900px){

  .main-logo-img{
    height:36px;
  }

  .logo-text{
    font-size:15px;
  }

  .nav-toggle{
    display:flex;
  }

  .main-nav-collapse{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-top:3px solid var(--primary);
  }

  .main-nav-links{
    flex-direction:column;
    gap:0;
  }

  .main-nav-links a{
    padding:10px 18px;
    border-bottom:1px solid #eee;
  }

  .desktop-cta{display:none;}
  .mobile-cta{
    margin:14px;
    text-align:center;
  }
}

@media(min-width:901px){
  .mobile-cta{display:none;}
  .collapse{display:block!important;}
}



.logo-tagline{
  display:block;
  font-size:10px;
  font-weight:500;
  color:#777;
  margin-top:2px;
}
.nav-dropdown{
  position:relative;
}

.nav-dropdown > a{
  cursor:pointer;
}

.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  min-width:190px;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:999;
}

.dropdown-menu a{
  padding:10px 14px;
  font-size:14px;
  border-bottom:1px solid #eee;
}

.dropdown-menu a:last-child{
  border-bottom:none;
}

.dropdown-menu a:hover{
  background:#f6f8f6;
  color:var(--primary);
}
@media(min-width:901px){
  .nav-dropdown:hover .dropdown-menu{
    display:flex;
  }
}
@media(max-width:900px){
  .dropdown-menu{
    position:static;
    box-shadow:none;
    border-radius:0;
    display:none;
  }

  .nav-dropdown.active .dropdown-menu{
    display:flex;
  }
}



/* =========================================================
   SIP CALCULATOR
========================================================= */

/* Navbar height compensation */

.sip-wrapper{
  max-width:1100px;
  margin:auto;
  padding:80px 20px;
}

.sip-title{text-align:center;font-size:36px;}
.sip-subtitle{text-align:center;color:#6b7280;margin-bottom:40px;}

.sip-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.sip-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.sip-field{margin-bottom:22px;}

.sip-field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}

.sip-value-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}

.sip-value-row input{
  width:120px;
  padding:6px 10px;
  border:1px solid #d1d5db;
  border-radius:6px;
}

input[type=range]{
  width:100%;
  appearance:none;
  height:6px;
  background:#e5e7eb;
  border-radius:5px;
}

input[type=range]::-webkit-slider-thumb{
  appearance:none;
  width:18px;
  height:18px;
  background:var(--primary);
  border-radius:50%;
  cursor:pointer;
}

.sip-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:var(--primary);
  color:#fff;
  font-size:16px;
  cursor:pointer;
}

.sip-btn:hover{background:var(--primary-hover);}

.sip-result-row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px dashed #e5e7eb;
}

.sip-graph-card{
  margin-top:40px;
  background:#fff;
  padding:30px;
  border-radius:18px;
}

/* lumpsum calculator */

.lumpsum-wrapper{
  max-width:1100px;
  margin:auto;
  padding:80px 20px;
}

.lumpsum-title{text-align:center;font-size:36px;}
.lumpsum-subtitle{text-align:center;color:#6b7280;margin-bottom:40px;}

.lumpsum-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.lumpsum-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.lumpsum-field{margin-bottom:22px;}

.lumpsum-field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}

.lumpsum-value-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}

.lumpsum-value-row input{
  width:140px;
  padding:6px 10px;
  border:1px solid #d1d5db;
  border-radius:6px;
}

input[type=range]{
  width:100%;
  appearance:none;
  height:6px;
  background:#e5e7eb;
  border-radius:5px;
}

input[type=range]::-webkit-slider-thumb{
  appearance:none;
  width:18px;
  height:18px;
  background:var(--primary);
  border-radius:50%;
  cursor:pointer;
}

.lumpsum-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:var(--primary);
  color:#fff;
  font-size:16px;
  cursor:pointer;
}

.lumpsum-btn:hover{background:var(--primary-hover);}

.lumpsum-result-row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px dashed #e5e7eb;
}

.lumpsum-graph-card{
  margin-top:40px;
  background:#fff;
  padding:30px;
  border-radius:18px;
}

@media(max-width:900px){
  .lumpsum-grid{
    grid-template-columns:1fr;
  }
}


/* setpup calculator */
/* Container */
.sipcalculator123{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:45px;
}

/* Primary Button */
.sipcalculator123 .btn-primary{
  padding:14px 26px;
  border-radius:30px;
  background:var(--primary);   /* primary color */
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
  text-align:center;
  white-space:nowrap;
}

/* Hover */
.sipcalculator123 .btn-primary:hover{
  background:var(--primary-hover);   /* primaryhover */
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(46,125,50,.12);
}

/* 📱 Mobile */
@media (max-width: 600px){
  .sipcalculator123{
    flex-direction:column;
    align-items:stretch;
  }

  .sipcalculator123 .btn-primary{
    width:100%;
    padding:16px;
    font-size:16px;
  }
}

/* 📱 Tablet */
@media (min-width: 601px) and (max-width: 900px){
  .sipcalculator123{
    justify-content:center;
  }

  .sipcalculator123 .btn-primary{
    min-width:220px;
  }
}
/* sept up */

