/* ===============================
   GLOBAL SPACING SYSTEM (FINAL FIX)
=============================== */

/* REMOVE RANDOM MARGINS */
section {
  margin: 0 !important;
}

/* STANDARD SECTION SPACING */
.section,
.mutual-funds,
.testimonial-section,
.services-section,
.why-section,
.how-works,
.investor-tools,
.consultation-section,
.counter-section,
.calculator-section {
  padding: 60px 20px 40px !important; /* TOP 60, BOTTOM 40 */
}

/* HERO (SPECIAL CASE) */
.hero-area {
  padding: 60px 20px 30px !important;
}

/* TRUST STRIP (SMALL SECTION) */
.trust-section {
  padding: 20px 0 !important;
}

/* CTA STRIP (COMPACT) */
.cta-strip {
  padding: 40px 20px !important;
}

/* REMOVE EXTRA GAP CAUSED BY THIS */
section + section {
  margin-top: 0 !important;
}

/* OPTIONAL: SOFT DIVIDER (VERY CLEAN LOOK) */
.section,
.mutual-funds,
.testimonial-section,
.services-section,
.why-section,
.how-works,
.investor-tools {
  border-bottom: 1px solid #f1f5f9;
}
/* HERO (top section bigger) */
.hero-area {
  padding: 60px 20px 30px;
}

section {
  border-bottom: 1px solid #f1f5f9;
}

/* ===============================
   RESET
=============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* =================================================================================
   CONTAINER + SPACING SYSTEM
======================================================================================== */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =======================================================================================================================
   HEADER
======================================================================================================================= */

.header-area {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.header-top {
    padding: 6px 0 !important;
}

/* =======================================================================================================================
   HERO
======================================================================================================================= */

.hero-area {
    padding: 60px 0 40px;
    background: #ffffff;
}

.hero-container {
     display: flex;
    justify-content: space-between;
    align-items: center; /* KEY FIX */
    gap: 40px;
    min-height: 350px;
}

/* LEFT */
.hero-left {
    max-width: 550px;
}

.hero-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.hero-left p {
    font-size: 16px;
    margin: 15px 0 25px;
    color: #475569;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

/* RIGHT CARDS */
.hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;   /* FIX */
    margin-top: 90px;
}

.hero-card {
    border: 1px solid #2563eb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 170px;
    background: #ffffff;
    transition: 0.3s;
}

.hero-card .icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.hero-card span {
    font-weight: 600;
    color: #0f172a;
}

.hero-card:hover {
    background: #eff6ff;
    transform: translateY(-4px);
}

/* =======================================================================================================================
   TRUST SECTION
======================================================================================================================= */

.trust-section {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-item .icon {
    color: #2563eb;
}

.trust-item p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}

/* =======================================================================================================================
   SERVICES
======================================================================================================================= */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    color: #0f172a;
}

.section-header p {
    color: #64748b;
    margin-top: 10px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}



/* CARD */
.service-card {
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    transition: 0.3s;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.service-btn {
    color: #2563eb;
    font-weight: 600;
}

/* HOVER */
.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    background: #eff6ff;
}

/* =======================================================================================================================
   FLOATING BUTTONS
=============================== ========================================================================================*/

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.contact-btn {
    padding: 10px 16px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
}

.call-btn {
    background: #0f172a;
}

.whatsapp-btn {
    background: #25D366;
}

/* =======================================================================================================================
   MOBILE
======================================================================================================================= */

@media (max-width:768px) {

.hero-container {
    flex-direction: column;
    text-align: center;
}

.hero-left h2 {
    font-size: 28px;
}

.hero-right {
    grid-template-columns: 1fr 1fr;
}

.hero-card {
    width: 100%;
}

.services-grid {
    grid-template-columns: 1fr;
}

}

/* =======================================================================================================================
   Counter Section
======================================================================================================================= */
/* COUNTER SECTION */
.counter-section {
    padding: 70px 0;
    background: #ffffff;
}

/* GRID */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.counter-box {
    border: 1px solid #e2e8f0;
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* NUMBER */
.counter-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
}

/* TEXT */
.counter-box p {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    font-weight: 600;   /* makes it bold */
}

/* HOVER EFFECT */
.counter-box:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-6px);
}

/* MOBILE */
@media (max-width:768px) {
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ICON */
.counter-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2563eb;
}

/* HOVER ENHANCEMENT */
.counter-box {
    border: 1px solid #e2e8f0;
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* PREMIUM HOVER */
.counter-box:hover {
    border-color: #2563eb;
    background: #f8fbff;  /* very light blue */
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
    transform: translateY(-6px);
}

/* ICON ANIMATION ON HOVER */
.counter-box:hover .counter-icon {
    transform: scale(1.1);
    transition: 0.3s;
}


/* =======================================================================================================================
  WHY.PHP GRID
======================================================================================================================= */
/* ALIGN ICON + TITLE */
.why-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* ICON */
.why-icon {
    color: #2563eb;
    font-size: 18px;
}

/* WHY CHOOSE CARD */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 20px 20px 25px;
  position: relative;
  transition: 0.3s;
  border: 1px solid rgba(59,130,246,0.15);
}

/* 🔥 LEFT BLUE STRIP */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg,#3b82f6,#38bdf8);
}

/* HOVER */
.why-card:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(59,130,246,0.15);
}

.why-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* TITLE */
.why-card h3 {
    margin: 0;
    font-size: 18px;
    color: #0f172a;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    transition: 0.3s;
}

/* ICON */
.why-icon {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 10px;
}

/* TITLE */
.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0f172a;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #64748b;
}

/* REMOVE EXTRA SPACE FROM TITLE */
.why-card h3 {
    margin-top: 0;
}

/* ALIGN ICON + TITLE NATURALLY */
.why-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.why-card h3 {
    display: inline-block;
    vertical-align: middle;
}

/* HOVER */
.why-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/*============================
   TESTIMONIAL SECTION
=============================*/

/* SECTION */
.testimonial-section{
  
  background:#fff;
  text-align:center;
}

/* HEADER */
.section-header h2{
  font-size:32px;
  margin-bottom:10px;
}

.section-header p{
  color:#666;
  margin-bottom:40px;
}

/* SLIDER */
.testimonial-slider{
  overflow:hidden;
  position:relative;
}

.testimonial-track{
  display:flex;
  gap:20px;
}

/* CARD */
.testimonial-card{
  background:#ffffff;
  border-radius:14px;
  padding:25px;
  position:relative;
  transition:0.3s ease;
  border:1px solid rgba(59,130,246,0.12);
  overflow:hidden;

  min-width:260px;   /* 🔥 IMPORTANT FIX */
  max-width:260px;
  text-align:left;
}

/* TEXT */
.testimonial-card p{
  font-size:14px;
  color:#444;
  margin-bottom:15px;
  line-height:1.5;
}

/* USER */
.testimonial-user{
  display:flex;
  align-items:center;
  gap:10px;
}

.testimonial-user img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* NAME */
.testimonial-user h4{
  font-size:16px;
  margin:0;
  color:#0f172a;
  white-space:nowrap; /* 🔥 FIX TEXT BREAK */
}

/* ROLE */
.testimonial-user span{
  font-size:13px;
  color:#64748b;
}

/* 🔥 BOTTOM STRIP */
.testimonial-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#3b82f6,#38bdf8);
  border-radius:0 0 14px 14px;
}

/* HOVER (SINGLE CLEAN EFFECT) */
.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(59,130,246,0.15);
}

/* STRIP GROW */
.testimonial-card:hover::after{
  height:6px;
}

/* STARS */
.stars{
  color:#f4c150;
  margin-bottom:10px;
}

/* Investor Tool SECTION FIX */

.investor-tools{
  
  background:#f8fafc; /* clean light bg */
  text-align:center;
}

/* HEADER */
.investor-tools .sub-title{
  color:#4f46e5;
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
}

.investor-tools h2{
  font-size:34px;
  margin:10px 0;
}

.investor-tools p{
  color:#666;
  margin-bottom:40px;
}

/* GRID */
.tools-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
}

/* CARD */
.tool-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  border:1px solid #eee;
  text-align:left;
  transition:0.3s;
}

.tool-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* TEXT */
.tool-card h3{
  margin-bottom:10px;
}

.tool-card p{
  font-size:14px;
  color:#555;
}

/* LINK */
.tool-card a{
  display:inline-block;
  margin-top:10px;
  color:#4f46e5;
  font-weight:500;
  text-decoration:none;
}

/* MODAL BACKGROUND */
.calc-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* BOX */
.calc-content{
  background:#fff;
  padding:25px;
  border-radius:12px;
  width:320px;
  text-align:left;
  position:relative;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

/* INPUTS */
.calc-content input{
  width:100%;
  padding:8px;
  margin:8px 0 15px;
  border:1px solid #ddd;
  border-radius:6px;
}

/* BUTTON */
.calc-content button{
  width:100%;
  padding:10px;
  background:#4f46e5;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}


/* RESULT BOX */
.result-box{
  background:#f1f5f9;
  padding:15px;
  border-radius:8px;
  margin-top:15px;
  font-size:14px;
}

/* CTA SECTION */
.retire-cta{
  margin-top:20px;
  text-align:center;
}

.retire-cta p{
  font-size:13px;
  color:#555;
  margin-bottom:10px;
}

/* PREMIUM BUTTON */
.premium-btn{
  background:#16a34a;
  color:#fff;
  border:none;
  padding:10px 15px;
  border-radius:6px;
  cursor:pointer;
  font-weight:500;
}

.premium-btn:hover{
  background:#15803d;
}


/*============================ 
   Mutual Funds Section
=============================*/

/* SECTION */
.mutual-funds{
 
  background:#f8fafc;
  text-align:center;
}


/* SMOOTH TRANSITION */
.fund-card img,
.slide img {
  transition: transform 0.3s ease;
}

/* ZOOM ON HOVER */
.fund-card:hover img,
.slide:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 10px 20px rgba(59,130,246,0.3));
}
/* GRID */
.funds-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
  gap:25px;
  margin-top:40px;
}

/* FUND CARD (CLEAN FINAL) */
.fund-card{
  background:#ffffff;
  border-radius:12px;
  padding:20px 20px 20px 24px;
  position:relative;
  text-align:center;
  transition:0.3s ease;
  border:1px solid rgba(59,130,246,0.15);
  display:flex;
  flex-direction:column;
  justify-content:center;
  cursor:pointer;
  overflow:hidden;
}

/* 🔥 LEFT BLUE STRIP */
.fund-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(180deg,#3b82f6,#38bdf8);
  border-radius:12px 0 0 12px;
}

/* LOGO */
.fund-card img{
  width:45px;
  height:45px;
  object-fit:contain;
  margin:0 auto 10px;
}

/* TEXT */
.fund-card span{
  font-size:13px;
  color:#1e293b;
  font-weight:500;
}

/* HOVER EFFECT */
.fund-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(59,130,246,0.15);
}

/* OPTIONAL: SLIGHT RIGHT MOVE */
.fund-card:hover{
  transform:translateX(4px);
}

/* COMMON SECTION SPACING */

.how-it-works{
  border-top:3px solid #2563eb;
  border-bottom:3px solid #2563eb;
  padding-top:60px;
  padding-bottom:60px;
}

/* SECTION */
.consultation-section{
  
  background:#f8fafc;
}

/* LAYOUT */
.consultation-wrapper{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* LEFT */
.consultation-left{
  flex:1;
}

.consultation-left h2{
  font-size:40px;
  margin-bottom:15px;
}

.consultation-left p{
  color:#666;
  margin-bottom:15px;
}

.consultation-left ul{
  list-style:none;
  padding:0;
}

.consultation-left li{
  margin-bottom:8px;
  color:#333;
}

/* FORM */
.consultation-form{
  flex:1;
  background:#fff;
  padding:25px;
  border-radius:12px;
  border:1px solid #eee;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* INPUTS */
.consultation-form input,
.consultation-form select{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

/* BUTTON */
.consultation-form button{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

.consultation-form button:hover{
  background:#1d4ed8;
}
.consultation-form input:focus,
.consultation-form select:focus{
  border-color:#2563eb;
  outline:none;
}

/* ERROR TEXT */
.error{
  color:red;
  font-size:12px;
  display:block;
  margin-top:-10px;
  margin-bottom:10px;
}

/* POPUP */
.popup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-box{
  background:#fff;
  padding:25px;
  border-radius:10px;
  text-align:center;
}

.popup-box button{
  margin-top:10px;
  padding:8px 15px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:5px;
}

.consultation-wrapper{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.consultation-form{
  flex:1;
  background:#fff;
  padding:25px;
  border-radius:12px;
  border:2px solid #2563eb;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* INPUT FIX */
.consultation-form input,
.consultation-form select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:2px solid #2563eb;
  border-radius:8px;
}

/* BUTTON */
.consultation-form button{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:8px;
}
/* QR SECTION */
.app-qr-section{
  text-align:center;
}

/* QR WRAPPER */
.qr-wrapper{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  margin:20px 0;
}

/* QR BOX */
.qr-box{
  background:#fff;
  border:2px solid #2563eb;
  border-radius:12px;
  padding:15px;
  width:140px;
  text-align:center;
  transition:0.3s;
}

/* HOVER */
.qr-box:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(37,99,235,0.2);
}

/* IMAGE */
.qr-box img{
  width:100px;
  height:100px;
  object-fit:contain;
}

/* TEXT */
.qr-box p{
  font-size:13px;
  margin-top:8px;
  color:#333;
}

/* STORE LINKS */
.store-links{
  width:100%;
  text-align:center;
  margin-top:15px;
}

.store-links a{
  margin:0 10px;
  color:#2563eb;
  font-weight:500;
  text-decoration:none;
}

/* HEADING */
.app-qr-section h4{
  margin-bottom:10px;
  font-weight:600;
}

.cta-strip{
  background:linear-gradient(135deg, #0f766e, #2563eb);
  padding:40px 20px;
  color:#fff;
}

/* LAYOUT */
.cta-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

/* TEXT */
.cta-text h3{
  font-size:26px;
  margin-bottom:5px;
}

.cta-text p{
  font-size:14px;
  opacity:0.9;
}

/* BUTTONS */
.cta-btn{
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  margin-left:10px;
  transition:0.3s;
}

/* PRIMARY */
.cta-btn.primary{
  background:#fff;
  color:#2563eb;
}

.cta-btn.primary:hover{
  background:#e0e7ff;
}

/* SECONDARY */
.cta-btn.secondary{
  border:2px solid #fff;
  color:#fff;
}

.cta-btn.secondary:hover{
  background:#fff;
  color:#2563eb;
}

/* CTA STRIP */
.cta-strip{
  background:linear-gradient(135deg, #0f766e, #2563eb);
  padding:40px 20px;
  color:#fff;
}

.cta-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.cta-text h3{
  font-size:26px;
  margin-bottom:10px;
}

.cta-sub{
  font-size:13px;
  margin-top:10px;
}

/* BUTTONS */
.cta-btn{
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  margin-left:10px;
}

.cta-btn.primary{
  background:#fff;
  color:#2563eb;
}

.cta-btn.secondary{
  border:2px solid #fff;
  color:#fff;
}

/* POPUP */
.popup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  width:320px;
  text-align:center;
  position:relative;
}

.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:20px;
}

.popup-box input,
.popup-box select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

.popup-box button{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:6px;
}

/* BACKDROP */
.popup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(5px);
  justify-content:center;
  align-items:center;
  z-index:9999;
  animation:fadeIn 0.3s ease;
}

/* BOX */
.popup-box{
  background:#fff;
  padding:30px 25px;
  border-radius:16px;
  width:340px;
  text-align:center;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
  animation:slideUp 0.3s ease;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:12px;
  right:15px;
  font-size:20px;
  cursor:pointer;
  color:#888;
}

.close-btn:hover{
  color:#000;
}

/* TEXT */
.popup-box h3{
  margin-bottom:5px;
  font-size:20px;
}

.popup-sub{
  font-size:13px;
  color:#666;
  margin-bottom:15px;
}

/* INPUT */
.popup-box input,
.popup-box select{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:2px solid #e5e7eb;
  border-radius:8px;
  font-size:14px;
  transition:0.3s;
}

/* FOCUS */
.popup-box input:focus,
.popup-box select:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.15);
  outline:none;
}

/* BUTTON */
.popup-box button{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
}

.popup-box button:hover{
  background:#1d4ed8;
  box-shadow:0 8px 20px rgba(37,99,235,0.3);
}

/* TRUST TEXT */
.popup-trust{
  font-size:12px;
  color:#666;
  margin-top:10px;
}

/* ERROR */
.error{
  color:red;
  font-size:11px;
  text-align:left;
  display:block;
  margin-top:-8px;
  margin-bottom:8px;
}

/* ANIMATION */
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes slideUp{
  from{transform:translateY(20px); opacity:0;}
  to{transform:translateY(0); opacity:1;}
}

.popup-box input[type="email"]{
  border:2px solid #e5e7eb;
}

/* ================= POPUP ANIMATION ================= */
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes slideUp{
  from{transform:translateY(20px); opacity:0;}
  to{transform:translateY(0); opacity:1;}
}

/* EMAIL INPUT */
.popup-box input[type="email"]{
  border:2px solid #e5e7eb;
}

/* ================= BOTTOM STRIPE ================= */
/* ================= BOTTOM STRIPE PREMIUM ================= */
.bottom-invest-strip{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:999;

  background:linear-gradient(135deg, #f8fafc, #eef2ff);
  border-top:2px solid #22c55e;
  padding:12px 20px;
  font-size:14px;

  box-shadow:0 -2px 12px rgba(0,0,0,0.08);
  transition:0.3s;
}

/* HOVER BACKGROUND SHIFT */
.bottom-invest-strip:hover{
  background:linear-gradient(135deg, #eef2ff, #e0f2fe);
}

/* LAYOUT */
.bottom-strip-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

/* TEXT */
.bottom-strip-text strong{
  font-weight:600;
  margin-right:10px;
}

.bottom-strip-text span{
  color:#555;
}

/* DIVIDER LINE */
.bottom-strip-text{
  border-right:1px solid #ddd;
  padding-right:15px;
}

/* CTA BUTTON STYLE */
.bottom-strip-cta a{
  margin-left:10px;
  padding:6px 14px;
  border-radius:6px;
  background:#2563eb;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
  position:relative;
}

/* HOVER EFFECT */
.bottom-strip-cta a:hover{
  background:#1d4ed8;
  transform:translateY(-1px);
  box-shadow:0 5px 12px rgba(37,99,235,0.3);
}

/* SECOND BUTTON VARIANT */
.bottom-strip-cta a:nth-child(2){
  background:#22c55e;
}

.bottom-strip-cta a:nth-child(2):hover{
  background:#16a34a;
  box-shadow:0 5px 12px rgba(34,197,94,0.3);
}

/* SUBTLE TOP LINE ANIMATION */
.bottom-invest-strip::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:2px;
  width:100%;
  background:linear-gradient(90deg, #22c55e, #2563eb);
  animation:lineMove 4s linear infinite;
}

@keyframes lineMove{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}

/* ================= FOOTER ENHANCEMENT ================= */
footer{
  background:#f9fafb;
  padding:60px 0 30px;
}

/* FOOTER HEADINGS */
footer h5{
  font-weight:600;
  margin-bottom:15px;
  position:relative;
}

/* UNDERLINE EFFECT */
footer h5::after{
  content:"";
  width:30px;
  height:2px;
  background:#22c55e;
  position:absolute;
  bottom:-5px;
  left:0;
}

/* LINKS */
footer a{
  color:#555;
  text-decoration:none;
  transition:0.3s;
}

footer a:hover{
  color:#2563eb;
}

/* SOCIAL ICONS */
footer .social-icons a{
  display:inline-block;
  margin-right:10px;
  width:36px;
  height:36px;
  line-height:36px;
  text-align:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  transition:0.3s;
}

footer .social-icons a:hover{
  transform:translateY(-3px);
  background:#2563eb;
  color:#fff;
}

/* ================= COPYRIGHT STRIP ================= */
.footer-bottom{
  background:#0f172a;
  color:#cbd5e1;
  padding:12px 20px;
  font-size:13px;
}

.footer-bottom-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

/* LINK STYLE */
.footer-bottom a{
  color:#38bdf8;
  text-decoration:none;
  font-weight:500;
}

.footer-bottom a:hover{
  color:#fff;
}

/* SECTION */
.how-works {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  text-align: center;
}

/* HEADER */
.sub-title {
  color: #6366f1;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
}

.section-header h2 {
  font-size: 34px;
  margin: 10px 0;
}

.section-header p {
  color: #64748b;
  margin-bottom: 50px;
}

/* STEPS */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CONNECTING LINE */
.steps-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, #6366f1, #38bdf8);
  z-index: 0;
}

/* CARD */
.step-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(59,130,246,0.15);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,#3b82f6,#38bdf8);
  border-radius: 0 0 14px 14px;
}

/* HOVER EFFECT */
/* HOVER EFFECT */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59,130,246,0.15);
}

/* OPTIONAL: GROW STRIP ON HOVER */
.step-card:hover::after {
  height: 6px;
}
/* STEP NUMBER */
.step-number {
  width: 60px;
  height: 60px;
  margin: auto;
  background: linear-gradient(135deg, #6366f1, #38bdf8);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 18px;
}

/* TEXT */
.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }

  .steps-container::before {
    display: none;
  }
}

.step-card:hover {
  box-shadow: 0 0 25px rgba(99,102,241,0.3);
}

/* SLIDER WRAPPER */
.slider {
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

/* TRACK */
.slide-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

/* CARD */
.slide {
  min-width: 180px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER EFFECT */
.slide:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 20px rgba(59,130,246,0.25);
}

/* LOGO */
.slide img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 8px;
}

.slide p {
  font-size: 13px;
  font-weight: 500;
}

/* SMOOTH INFINITE ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.slider:hover .slide-track {
  animation-play-state: paused;
}
.slide img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
/* SECTION BACKGROUND */
.counter-section {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  padding: 80px 20px;
  background: linear-gradient(180deg,#f8fafc,#eef2f7);
}

/* CARD */
.counter-card {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* 🔥 TOP GRADIENT STRIP */
.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#3b82f6,#38bdf8);
}

/* ICON BOX */
.icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg,#3b82f6,#38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

/* ICON IMAGE */
.icon-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* NUMBER */
.counter-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* TITLE */
.counter-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.counter-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* ✨ HOVER EFFECT */
.counter-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(59,130,246,0.2);
}

/* ICON ANIMATION */
.counter-card:hover .icon-box {
  transform: rotate(5deg) scale(1.1);
}

/* GLOW EFFECT */
.counter-card:hover::before {
  height: 6px;
  background: linear-gradient(90deg,#2563eb,#0ea5e9);
}

.counter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(59,130,246,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.counter-card:hover::after {
  opacity: 1;
}

/* GRID */
.calculator-section {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  padding: 60px 20px;
}

/* CARD */
.calculator-card {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.2);
  overflow: hidden;
}

/* TOP STRIP (SAME AS COUNTER) */
.calculator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#3b82f6,#38bdf8);
}

/* ICON */
.calculator-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg,#2563eb,#38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.calculator-card .icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* TEXT */
.calculator-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.calculator-card p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CTA LINK */
.calculator-card a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.calculator-card a:hover {
  letter-spacing: 1px;
}

/* HOVER EFFECT (SAME AS COUNTER) */
.calculator-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(59,130,246,0.2);
}

/* POPUP BACKDROP */
.calc-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* BOX */
.calc-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 350px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.close-btn:hover {
  color: #000;
}

/* CLOSE */
.close-btn {
  font-size: 22px;
  cursor: pointer;
  color: #555;
}
/* INPUT */
.calc-box input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* BUTTON */
.calc-box button {
  width: 100%;
  padding: 10px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* HIDE ALL */
.calc-content {
  display: none;
}

/* FUND CARD */
/* FUND CARD = SAME AS HERO CARD */
.fund-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-left: 4px solid #2563eb;
}


/* LOGO */
.fund-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* TEXT */
.fund-card span {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

/* HOVER SAME AS HERO */
.fund-card:hover {
  transform: translateY(-6px);
}

/* OPTIONAL: ACTIVE CARD (CENTER ONE STYLE) */
.fund-card.active {
  background: linear-gradient(135deg,#eff6ff,#dbeafe);
  border-color: #2563eb;
}
.fund-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fund-header h4 {
  font-size: 14px;
  margin: 0;
  color: #0f172a;
}
.fund-header img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.fund-details p {
  margin: 3px 0;
  font-size: 12px;
}

.returns {
  color: green;
  font-weight: bold;
}
/* SCROLL FIX */
.fund-modal-box::-webkit-scrollbar {
  width: 6px;
}

.fund-modal-box::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}


/* SERVICE CARD */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  position: relative;
  transition: 0.3s;
  border: 1px solid rgba(59,130,246,0.15);
}

/* 🔥 TOP BLUE STRIP */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg,#3b82f6,#38bdf8);
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  position: relative;
  transition: 0.3s;
  border: 1px solid rgba(59,130,246,0.15);
   border-left: 4px solid #2d5be3;  /* LEFT LINE */
}

/* 🔥 TOP BLUE STRIP */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg,#3b82f6,#38bdf8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.hero-right-image img{
  max-width: 420px;
  border-radius: 12px;
}

.hero-area{
    position: relative;
    background: url('../img/hero/hero/Banner-1.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* PREMIUM OVERLAY (LEFT LIGHT → RIGHT VISIBLE IMAGE) */
.hero-area::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.96) 35%,
        rgba(255,255,255,0.85) 55%,
        rgba(255,255,255,0.4) 75%,
        rgba(255,255,255,0.1) 90%,
        rgba(255,255,255,0) 100%
    );

    z-index: 1;
}

/* KEEP CONTENT ABOVE BACKGROUND */
.hero-container{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT CONTENT */
.hero-left{
    max-width: 550px;
}

.hero-left h2{
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.hero-left p{
    margin: 15px 0;
    font-size: 18px;
    color: #555;
}

/* BUTTONS */
.btn-primary{
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    margin-right: 10px;
    display: inline-block;
}

.btn-outline{
    border: 1px solid #0072ff;
    padding: 12px 25px;
    border-radius: 30px;
    color: #0072ff;
}

/* RIGHT CARDS */
.hero-right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-card{
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.hero-card:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.9);
}

/* HERO SECTION BACKGROUND */
.hero-area{
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('/newsite/assets/img/hero/Banner-1.jpg'); /* YOUR IMAGE */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* OVERLAY FOR TEXT VISIBILITY */
.hero-area::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.85) 30%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0.2) 70%,
        rgba(255,255,255,0) 100%
    );

    z-index:1;
}

/* KEEP CONTENT ABOVE */
.hero-container{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT TEXT */
.hero-left{
    max-width: 550px;
}

.hero-left h2{
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.hero-left p{
    margin: 15px 0;
    font-size: 18px;
    color: #555;
}

/* BUTTONS */
.btn-primary{
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    margin-right: 10px;
}

.btn-outline{
    border: 1px solid #0072ff;
    padding: 12px 25px;
    border-radius: 30px;
    color: #0072ff;
}

/* RIGHT CARDS */
.hero-right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-card{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.hero-card:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.95);
}

/* ===============================
MUTUAL FUND CLEAN UI (LIKE HOME)
=============================== */

/* BACKGROUND */
.mf-clean-ui {
  background: #ffffff;
}

/* SECTION SPACING */
.mf-clean-ui section {
  padding: 60px 0 !important;
  background: transparent !important;
  margin: 0 !important;
  border-bottom: 1px solid #f1f5f9;
}

/* REMOVE DARK BACKGROUNDS */
.mf-clean-ui .bg-light,
.mf-clean-ui [style*="background"] {
  background: #ffffff !important;
}

/* SECTION TITLE */
.mf-clean-ui .section-title h2,
.mf-clean-ui h1,
.mf-clean-ui h2,
.mf-clean-ui h3 {
  color: #0f172a;
}

.mf-clean-ui p {
  color: #64748b;
}

/* CARDS CLEAN */
.mf-clean-ui .service-box,
.mf-clean-ui .fund-card,
.mf-clean-ui .calculator-box,
.mf-clean-ui .box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 25px;
  transition: 0.3s;
}

/* HOVER */
.mf-clean-ui .service-box:hover,
.mf-clean-ui .fund-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* BUTTON FIX */
.mf-clean-ui .btn,
.mf-clean-ui button {
  background: #2563eb !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px;
}

/* REMOVE EXTRA MARGINS */
.mf-clean-ui .service-box-area {
  margin: 0 !important;
}

/* CONTAINER WIDTH */
.mf-clean-ui .container {
  max-width: 1140px;
}
/* ===============================
REDUCE BLUE HEADER HEIGHT
=============================== */


/* TITLE SIZE ADJUST */
.page-title-area h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* BREADCRUMB POSITION FIX */
.grb-breadcrumb {
    margin-top: 10px;
}

/* ===============================
FORCE REDUCE BLUE HEADER HEIGHT
=============================== */


/* REMOVE EXTRA SPACE INSIDE */
.page-title-area .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* TITLE SIZE */
.page-title-area h1 {
    font-size: 32px !important;
    margin-bottom: 8px !important;
}

/* BREADCRUMB FIX */
.page-title-area .breadcrumb {
    margin: 0 !important;
    padding: 8px 15px !important;
}


.page-title-area h1 {
    color: #0f172a !important;
}

/* PREMIUM BLUE BUTTON */
.btn-primary,
.grow-btn {
    background: linear-gradient(135deg,#2563eb,#4f67d9) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover,
.grow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}
/* CLEAN WHITE BACKGROUND */
.mutual-intro-section {
    background: #ffffff !important;
    padding: 60px 0;
}


/* ================= MODAL ================= */

/* MODAL */
.fund-modal {
  display: none;   /* 👈 VERY IMPORTANT */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* BOX */
.fund-modal-box {
  background: #ffffff;
  width: 95%;
  max-width: 1100px;
  border-radius: 16px;
  padding: 25px;
  max-height: 85vh;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.fund-search {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.fund-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.fund-modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
#fundContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
/* HEADER */
.fund-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* GRID FIX (MAIN ISSUE FIXED HERE) */
.fund-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */

/* TITLE */
.fund-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* DETAILS */
.fund-details {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}

/* RETURN */
.returns {
  color: #16a34a;
  font-weight: 600;
}

/* BUTTON */
.invest-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
button.invest-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
}
.invest-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
}


/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}
.service-card {
  cursor: pointer;
}
/* MODAL TITLE FIX */
#fundModalTitle {
  color: #2563eb;   /* blue */
  font-weight: 700;
}
/* CARD FLEX FIX */
.fund-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;   /* equal height */
}

/* DETAILS TAKE SPACE */
.fund-details {
  flex-grow: 1;
}

/* BUTTON ALWAYS BOTTOM */
.invest-btn {
  margin-top: auto;
}

/* SECTOR LIST UI */
.sector-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sector-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.sector-item:hover {
  border-color: #22c55e;
  background: #f0fdf4;
}

.sector-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sector-icon {
  font-size: 22px;
  background: #22c55e;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.sector-item h4 {
  margin: 0;
  font-size: 15px;
}

.sector-item p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #64748b;
}

.sector-right {
  font-size: 18px;
  color: #22c55e;
}
.back-btn {
  margin-bottom: 15px;
  font-size: 14px;
  color: #2563eb;
  cursor: pointer;
  font-weight: 500;
}
.back-btn {
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.back-btn:hover {
  text-decoration: underline;
}
.fund-modal-box {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sector-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.sector-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.sector-card:hover {
  border-color: #2563eb;
  background: #f8fbff;
}

.sector-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.sector-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
}

.sector-card span {
  color: #2563eb;
  font-weight: 600;
}
.returns-box {
  background: #ecfdf5;
  color: #16a34a;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
}
.back-link {
  color: #2563eb;
  font-size: 14px;
  cursor: pointer;
  margin-right: 10px;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

.topfunds-section {
  text-align: center;
  padding: 40px 20px;
}

.topfunds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.topfund-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* KEY FIX */
  
   border-top: 4px solid #2d5be3;  /* LEFT BLUE LINE */
}

.card-content {
  flex-grow: 1;
}
.topfund-card:hover {
  transform: translateY(-5px);
}

.fund-logo {
  height: 40px;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.fund-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 5px 0;
}

.return {
  color: green;
  font-weight: bold;
}

.view-more-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: #2d5be3;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: gray;
}
@media (max-width: 1200px) {
  .topfunds-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .topfunds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .topfunds-grid {
    grid-template-columns: 1fr;
  }
}

.amc-section {
  text-align: center;
  padding: 40px 20px;
}

.amc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.amc-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.3s;
  text-align: center;
  border-left: 4px solid #2d5be3;  /* ✅ LEFT BLUE LINE */
}
.amc-card {
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #2d5be3, #00c6ff) 1;
}

.amc-card img {
  height: 35px;
  margin-bottom: 8px;
}

.amc-card p {
  font-size: 13px;
  font-weight: 500;
}

.amc-card:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
  .amc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .amc-grid { grid-template-columns: repeat(2, 1fr); }
}

.topfund-card.compact {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.3s;

  border-left: 4px solid #2d5be3;
}

.topfund-card.compact img {
  height: 40px;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}

.topfund-card.compact h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.topfund-card.compact .fund-meta {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

.topfund-card.compact:hover {
  transform: translateY(-4px);
}
/* ===== MAIN WRAPPER ===== */
.calc-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}

/* ===== LEFT & RIGHT PANELS ===== */
.calc-left, .calc-right {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ===== REMOVE OLD LIMIT ===== */
.calc-container {
  max-width: 100%;   /* 🔥 IMPORTANT FIX */
  padding: 0;
  box-shadow: none;
  background: transparent;
}

/* ===== TOGGLE ===== */
.calc-toggle {
  display: flex;
  margin-bottom: 20px;
}

.calc-toggle button {
  flex: 1;
  padding: 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: 500;
}

.calc-toggle .active {
  background: #2d5be3;
  color: #fff;
  border-radius: 8px;
}

/* ===== INPUTS ===== */
.calc-left input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

/* ===== BUTTON ===== */
.calc-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #2d5be3;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* ===== RIGHT PANEL ===== */
.calc-right {
  text-align: center;
  min-height: 420px;
}

/* ===== CHART ===== */
.calc-right canvas {
  width: 100% !important;
  max-width: 260px;
  margin: 20px auto;
}

/* ===== RESULT BREAKUP ===== */
.result-breakup {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .calc-wrapper {
    flex-direction: column;
  }

  .calc-left, .calc-right {
    width: 100%;
  }
}

.calc-left {
  border: 1px solid #e0e6f0;
  border-left: 4px solid #2d5be3;
}

.calc-right {
  border: 1px solid #e0e6f0;
  border-left: 4px solid #2d5be3;
}

.calc-left:hover,
.calc-right:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

.orange { background: #ff7a00; }
.blue { background: #2d5be3; }

.calc-right canvas {
  width: 100% !important;
  height: 220px !important;   /* 🔥 REQUIRED */
  max-width: 260px;
  margin: 20px auto;
  display: block;
}
.calc-right canvas {
  height: 220px !important;
}

.section-subtitle {
  color: #6c63ff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.section-header p {
  color: #64748b;
  font-size: 15px;
}
.primary-btn {
  background: linear-gradient(135deg, #2d5be3, #4f7cff) !important;
  color: #fff !important;
  padding: 12px 25px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.primary-btn:hover {
  opacity: 0.9;
}
.hire-btn a.primary-btn {
  background: linear-gradient(135deg, #2d5be3, #4f7cff);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
}
.primary-btn {
  box-shadow: 0 4px 15px rgba(45, 91, 227, 0.3);
}

/* TEXT WHITE */
.page-title-area .section-title,
.page-title-area .section-subtitle,
.page-title-area p {
  color: #ffffff !important;
}
/* REMOVE CROSS LINES */
.page-title-area::after {
  display: none !important;
}
.page-title-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0) invert(1);
  opacity: 0.15; /* control intensity */
  z-index: 0;
}

/* CONTENT ABOVE OVERLAY */
.page-title-content {
  position: relative;
  z-index: 2;
}


   /* BROKING PAGE HERO FIX */


/* DARK OVERLAY */
.page-title-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7); /* dark overlay */
  z-index: 1;
}

/* ===============================
   BROKING PAGE CARD UI (FINAL)
=============================== */

/* COMMON CARD SECTION */
.broking-section {
  background: #ffffff;
  margin: 30px auto;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* LIGHT BLUE VARIANT (OPTIONAL) */
.broking-section.alt {
  background: #f8fafc;
}

/* SECTION TITLE */
.broking-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* REMOVE DARK BACKGROUND */
.about-details {
  background: none !important;
}

/* REMOVE OVERLAY IF ANY */
.page-title-area::before {
  display: none !important;
}

/* PAGE TITLE SIMPLE CLEAN */
.page-title-area {
  background: url('assets/img/bg/page-title-bg.jpg') center center / cover no-repeat;
  position: relative;
  
  padding: 140px 20px 80px;   /* TOP spacing increased */
  
  min-height: auto;
  height: auto;
  color: #fff;
}
.page-title-area {
  padding: 140px 20px 80px !important;
}

/* ===============================
   SPACING IMPROVEMENT (FIX)
=============================== */

/* SECTION SPACING */
.broking-section {
  padding: 50px 40px !important;   /* more space inside */
  margin: 40px auto !important;    /* more gap between sections */
}

/* TITLE SPACING */
.section-title {
  margin-bottom: 50px !important;
}

/* GRID GAP FIX */
.row {
  row-gap: 25px;
}

/* CARD IMPROVEMENT */
.premium-fund-card {
  padding: 25px 22px !important;   /* more inner spacing */
  border-radius: 14px;
}

/* CARD TITLE */
.premium-fund-card h4,
.premium-fund-title {
  font-size: 18px !important;
  margin-bottom: 10px;
}

/* CARD TEXT */
.premium-fund-card p,
.premium-fund-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* ADD SPACE BETWEEN CARDS */
.col-md-4 {
  padding: 10px !important;
}

/* HOVER LITTLE SMOOTH */
.premium-fund-card:hover {
  transform: translateY(-6px);
}


.hire-btn {
  margin-top: 20px;
}

/* ================= CTA FIX ================= */



/* Button styling */
.primary-btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.hire-area::before {
  display: none !important;
}
/* FORCE TEXT VISIBILITY */
.hire-area h4 {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 999;
}
.hire-area {
  position: relative !important;
  background: #0f766e !important;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
/* REMOVE ALL OVERLAYS FROM THEME */
.hire-area::before,
.hire-area::after {
  display: none !important;
  content: none !important;
}
.hire-area .primary-btn {
  position: relative;
  z-index: 999;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
}
/* ================= NEW CTA ================= */

.custom-cta {
  background: linear-gradient(135deg, #0f766e, #2563eb) !important;
  padding: 70px 20px !important;
  text-align: center;
}

.custom-cta h4 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* ================= CTA FINAL UI FIX ================= */

.hire-area {
  background: linear-gradient(135deg, #0f766e, #1e3a8a) !important;
  text-align: center;
  padding: 60px 20px;
}

/* TEXT FIX */
.hire-area h4 {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BUTTON FIX */
.hire-area a {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* BUTTON HOVER */
.hire-area a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* ================= CTA FINAL FIX (OVERRIDE ALL) ================= */

.hire-area {
  background: linear-gradient(135deg, #0f766e, #2563eb) !important;
  padding: 70px 20px !important;
  text-align: center;
  position: relative;
  z-index: 2;
}
/* TEXT FIX */
.custom-cta .cta-title {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BUTTON FIX */
.custom-cta .cta-btn {
  display: inline-block;
  background: linear-gradient(135deg,#2563eb,#4f46e5) !important;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.custom-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}
/* FORCE TEXT VISIBLE */
.hire-area h4 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 600;
  margin-bottom: 20px !important;
}

/* FORCE BUTTON STYLE */
.hire-area a,
.hire-area .primary-btn {
  display: inline-block !important;
  background: linear-gradient(135deg,#2563eb,#4f46e5) !important;
  color: #fff !important;
  padding: 12px 30px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* HOVER */
.hire-area a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}
/* ===== Breadcrumb Box Border Fix ===== */

.grb-breadcrumb,
.breadcrumb {
  border: 1px solid #2563eb;   /* thin blue border */
  border-radius: 8px;          /* smooth corners */
  padding: 10px 20px;
  background: #ffffff;
  display: inline-block;
}
.grb-breadcrumb,
.breadcrumb {
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 10px;
  padding: 12px 25px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.breadcrumb .active {
  color: #2563eb;
  font-weight: 600;
}

/* ===============================
   INSURANCE WHITE TEXT FIX
=============================== */

.about-details {
  background: #ffffff !important;
}

.about-details h2,
.about-details h3,
.about-details h4 {
  color: #111827 !important;
}


/* ===============================
   FORCE FIX INSURANCE TEXT
=============================== */

.about-details .section-title h2,
.about-details h2 {
  color: #111827 !important;
}

.about-details p,
.about-details li {
  color: #6b7280 !important;
}

.about-details * {
  color: #111827 !important;
}

/* INSURANCE TEXT FIX */
.service-box-area h2,
.service-box-area h3,
.service-box-area h4 {
  color: #111827 !important;
}

.service-box-area p {
  color: #6b7280 !important;
}

/* ===============================
   INSURANCE PREMIUM UI
=============================== */

.insurance-block {
  background: transparent;
  padding: 40px 0;
}

.insurance-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Tag */
.insurance-wrapper .tag {
  display: inline-block;
  background: #4ade80;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Subtitle */
.insurance-wrapper .subtitle {
  color: #6b7280;
  margin-top: 10px;
}

/* Cards */
.insurance-card {
  background: #f9fafc;
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #2563eb;
  transition: 0.3s;
  height: 100%;
}

.insurance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Text */
.insurance-card h4 {
  color: #111827;
  font-weight: 700;
  margin-bottom: 10px;
}

.insurance-card p {
  color: #6b7280;
}


/* ===============================
   BROKING / FINANCE COMMON STYLES
================================ */

/* =========================
BROKING HERO
========================= */

.broking-hero-area {
    padding: 90px 0 70px;
    background: linear-gradient(135deg,#f8fafc,#eef4ff);
}

.broking-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 15px;
}

.broking-sub-text {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
}

.broking-breadcrumb-wrap {
    display: inline-block;
    background: #ffffff;
    padding: 16px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.broking-breadcrumb-wrap .breadcrumb-item a {
    color: #2563eb;
    font-weight: 500;
}

.broking-breadcrumb-wrap .active {
    color: #0f172a;
    font-weight: 600;
}


/* =========================
INTRO SECTION
========================= */

.broking-intro-section {
    padding: 90px 0;
    background: #fff;
}

.section-desc {
    max-width: 750px;
    margin: auto;
    margin-top: 20px;
    color: #64748b;
    font-size: 17px;
}


/* IMAGE */

.broking-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


/* FEATURES */

.broking-feature-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0f172a;
}

.broking-feature-content ul {
    padding-left: 0;
    list-style: none;
}

.broking-feature-content ul li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #334155;
    position: relative;
    padding-left: 28px;
}

.broking-feature-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.finance-section-card {
    background: #ffffff;
    padding: 80px 0;
}

.finance-section-light {
    background: #f8fafc;
    padding: 80px 0;
}

.finance-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: .3s ease;
    height: 100%;
    border-top: 4px solid #2d5be3;
}

.finance-card:hover {
    transform: translateY(-8px);
}

.finance-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f172a;
}

.finance-card p {
    color: #64748b;
    margin: 0;
}

.finance-feature-box h3 {
    margin-bottom: 25px;
    font-weight: 700;
}

.finance-list {
    padding-left: 20px;
}

.finance-list li {
    margin-bottom: 15px;
    color: #475569;
}

.custom-cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: white;
    text-align: center;
}

.custom-cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.custom-cta-section p {
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
}

/* =======================================================================================================================
   SERVICE PAGE BLOCKS (WHITISH CARD SECTIONS)
======================================================================================================================= */

/* MAIN SERVICE BLOCK */
.service-block {
  background: #ffffff;
  margin: 30px auto;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

/* ALTERNATE LIGHT GRAY BACKGROUND */
.service-block.alt {
  background: #f8fafc;
}

/* HEADINGS INSIDE SERVICE BLOCKS */
.service-block .section-header {
  margin-bottom: 40px;
}

.service-block .section-title {
  font-size: 28px;
}

.service-block .section-subtitle {
  margin-bottom: 8px;
}

/* SERVICE PAGE BODY BACKGROUND (light gray behind white cards) */
.service-page-body {
  background: #f4f7fb;
}

/* FUND SLIDER SECTION WHITISH */
.fund-slider-section {
  background: #ffffff;
  margin: 30px auto;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

.fund-slider-section .section-header {
  margin-bottom: 30px;
}

/* INSURANCE BLOCK (WHITISH VARIANT) */
.insurance-block {
  background: #ffffff;
  margin: 30px auto;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

/* CARD ALIGNMENT FIX FOR SERVICE GRIDS */
.service-block .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.service-block .service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 140px;
}

.service-block .service-card h3,
.service-block .service-card h4 {
  margin-bottom: 8px;
}

/* CUSTOM CTA (compact blue CTA bar) */
.custom-cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 1200px;
  border-radius: 16px;
}

.custom-cta .cta-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.custom-cta .cta-btn {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.custom-cta .cta-btn:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE FOR SERVICE BLOCKS */
@media (max-width: 768px) {
  .service-block {
    margin: 15px 10px;
    padding: 30px 18px;
    border-radius: 14px;
  }

  .fund-slider-section {
    margin: 15px 10px;
    padding: 30px 18px;
    border-radius: 14px;
  }

  .insurance-block {
    margin: 15px 10px;
    padding: 30px 18px;
    border-radius: 14px;
  }

  .service-block .services-grid {
    grid-template-columns: 1fr;
  }

  .custom-cta {
    margin: 0 10px 15px;
    border-radius: 12px;
  }
}