/*
Theme Name: Shivans Insurance Service
Theme URI: https://example.com/
Author: Suchit Patel
Author URI: https://example.com/
Description: Custom WordPress theme for Shivans Insurance Service.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 7.4
Text Domain: shivans-insurance-service
*/

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

:root {
  --navy: #112d4e;
  --navy-soft: #1d3f66;
  --text: #253448;
  --muted: #6d7685;
  --border: #e7e9ee;
  --bg: #f6f7f9;
  --white: #ffffff;
  --accent: #f78b1f;
  --accent-dark: #e3770b;
  --section-soft: #eff1f4;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 31, 52, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #112d4e;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-wrap a.brand {
    width: max-content;
    max-width: 220px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.main-nav {
  margin-left: auto;
}

.main-nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav .current-menu-item > a, .main-nav .current-menu-ancestor > a, .main-nav .current-page-ancestor > a {
    color: var(--accent);
}

/* ── Dropdown sub-menus (one level) ─────────────────────────── */
.main-nav .nav-menu li {
  position: relative;
}

.main-nav .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 40;
}

.main-nav .menu-item:hover > .sub-menu,
.main-nav .menu-item:focus-within > .sub-menu {
  display: flex;
}

.main-nav .sub-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.main-nav .sub-menu a:hover {
  background: var(--section-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-dark {
  background: var(--accent);
  color: var(--white);
}

.btn-dark:hover {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    border-color: var(--navy);
}
.btn-light:hover {
    background: var(--navy);
    color: white;
}

.blue-bg{
	background:var(--navy);
	border-color:var(--navy);
	color:white;
}
.blue-bg:hover{
	background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}


.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.hero {
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-content p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-heading p {
    color: #6B7280;
    font-size: 16px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.investment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
}

.service-card h3, .investment-card h3, .feature-item h3 {
    color: var(--navy);
    font-size: 1.28rem;
    line-height: 1.3;
    margin: 16px 0;
    font-weight: 700;
}

.service-card p,
.investment-card p,
.feature-item p {
  color: var(--muted);
  font-size: 15px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

.card-icon.orange {
  background: var(--accent);
  color: #111;
}

.section-accent {
  background: var(--accent);
}

.section-accent .section-heading h2,
.section-accent .section-heading p {
  color: #0f2239;
}

.investment-card {
    text-align: center;
    padding: 34px 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.round-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  font-weight: 700;
}



.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  text-align: center;
}

.feature-item {
  padding: 12px 12px 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e5e8ee;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
}

.cta {
  background: #edf0f4;
}

.cta-box {
  text-align: center;
  max-width: 760px;
}

.cta-box h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.cta-box p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 30px;
}

.site-footer {
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 72px 0 38px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 330px;
  color: #FFF;
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
  justify-content: end;
}

footer.site-footer {
    background: var(--navy);
}
.footer-bottom p {
    color: white;
}

.footer-bottom-links a {
    color: #ffffffbd;
}
.footer-links h4 {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    width: max-content;
}

.footer-links a:hover, .footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Services Page */
.services-page-main{background:#f4f6f8;}
.services-hero {
    background: linear-gradient(180deg, #0c4178 0%, #0f497f 100%);
    padding: 120px 0 110px;
    background: var(--accent-dark);
}
.services-hero-inner{text-align:center;max-width:760px;}
.services-hero h1{color:#fff;font-size:clamp(2.6rem,4vw,4.4rem);line-height:1.08;font-weight:800;letter-spacing:-0.03em;margin-bottom:20px;}
.services-hero p{color:rgba(255,255,255,0.82);font-size:17px;max-width:680px;margin:0 auto;}
.service-row{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:stretch;margin-bottom:56px;}
.service-row:last-child{margin-bottom:0;}
.service-media {
    display: flex;
    position: relative;
    padding-top: 55%;
}
.service-link span, .service-link svg {
    display: flex;
    align-items: center;
}
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
    position: absolute;
    left: 0;
    top: 0;
}
.status-publish {
    overflow: hidden;
}
.icrm-content-card {
    overflow: auto;
}
.service-copy{max-width:470px;}
.service-row-text-left .service-copy{order:1;}
.service-row-text-left .service-media{order:2;}
.service-tag{display:inline-block;padding:7px 12px;border-radius:999px;background:#f8ece5;color:#8c6d56;font-size:11px;font-weight:700;letter-spacing:0.08em;margin-bottom:14px;}
.service-copy h3{color:#103d6b;font-size:clamp(1.8rem,2.4vw,2.8rem);line-height:1.2;margin-bottom:14px;font-weight:800;}
.service-copy p{color:#738194;font-size:15px;margin-bottom:16px;}
.service-copy ul{list-style:none;margin-bottom:22px;}
.service-copy ul li{position:relative;padding-left:18px;margin-bottom:10px;color:#3f4f63;font-size:14px;font-weight:500;}
.service-copy ul li::before{content:"•";position:absolute;left:0;top:0;color:var(--accent);font-size:16px;line-height:1;}
.service-link{display:inline-flex;align-items:center;gap:8px;color:#103d6b;font-size:14px;font-weight:700;}
.services-investment-band{background:#0c4178;padding:86px 0;}
.section-heading-light h2,.section-heading-light p{color:#fff;}
.section-heading-light p{opacity:0.82;}
.investment-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-bottom:34px;}
.investment-service-card{background:#fff;border-radius:14px;padding:28px 24px;min-height:100%;}
.mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f8ece5;
    color: #103d6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 18px;
    font-weight: 700;
    padding: 11px;
}
.investment-service-card h3{color:#103d6b;font-size:1.6rem;line-height:1.3;margin-bottom:14px;font-weight:800;}
.investment-service-card p{color:#6d7b8d;font-size:14px;margin-bottom:20px;}
.mini-btn{display:inline-flex;align-items:center;justify-content:center;min-width:150px;padding:11px 18px;border:1px solid #d9dfe7;border-radius:8px;color:#103d6b;font-size:13px;font-weight:700;}
.sip-calculator-wrap{display:grid;grid-template-columns:1.35fr 0.95fr;overflow:hidden;border-radius:18px;background:#fff;box-shadow:var(--shadow);}
.sip-calculator-left {
    padding: 34px 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sip-calculator-left h3{color:#103d6b;font-size:2rem;line-height:1.2;margin-bottom:10px;font-weight:800;}
.sip-calculator-left p{color:#7a8898;font-size:14px;margin-bottom:26px;}
.range-group{margin-bottom:28px;}
.range-group:last-child{margin-bottom:0;}
.range-label-row{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:10px;}
.range-label-row label{color:#103d6b;font-size:14px;font-weight:700;}
.range-label-row span{background:#eef3f8;color:#103d6b;padding:6px 10px;border-radius:8px;font-size:13px;font-weight:700;white-space:nowrap;}
.range-group input[type="range"]{width:100%;appearance:none;height:6px;border-radius:999px;background:#d5dde7;outline:none;}
.range-group input[type="range"]::-webkit-slider-thumb{appearance:none;width:18px;height:18px;border-radius:50%;background:#0c4178;cursor:pointer;border:2px solid #fff;box-shadow:0 2px 8px rgba(12,65,120,0.25);}
.range-group input[type="range"]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:#0c4178;cursor:pointer;border:2px solid #fff;box-shadow:0 2px 8px rgba(12,65,120,0.25);}
.range-min-max{display:flex;justify-content:space-between;gap:16px;margin-top:8px;color:#9aa5b4;font-size:12px;font-weight:600;}
.sip-calculator-right{background:#f79a19;padding:28px 28px 32px;display:flex;flex-direction:column;justify-content:center;}
.sip-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid #112d4ea6;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-lite-box a {
    gap: 12px;
}
.sip-circle-label{display:block;color:rgba(16,31,52,0.75);font-size:12px;font-weight:700;margin-bottom:8px;}
.sip-circle strong{color:#0f2239;font-size:2rem;line-height:1.1;font-weight:800;}
.sip-stats{margin-bottom:22px;}
.sip-stat-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:8px 0;color:#0f2239;font-size:14px;}
.sip-stat-row strong{font-weight:800;}
.sip-stat-row.total{border-top:1px solid rgba(15,34,57,0.16);margin-top:4px;padding-top:14px;}
.sip-chart{display:flex;align-items:end;gap:16px;height:180px;margin-bottom:22px;}
.sip-chart-bar{width:100%;border-radius:12px 12px 0 0;min-height:20px;transition:height 0.25s ease;}
.bar-invested{background:#ffd38f;}
.bar-returns{background:#0c4178;}
.sip-invest-btn{width:100%;}
.services-cta-lite{background:#f1f4f8;padding:90px 0;}
.cta-lite-box{text-align:center;max-width:720px;margin:0 auto;}
.cta-lite-box h2{color:#103d6b;font-size:clamp(2rem,3vw,3rem);line-height:1.15;margin-bottom:16px;font-weight:800;}
.cta-lite-box p{color:#7c8a9b;font-size:16px;margin-bottom:28px;}

/* ===== BLOG PAGE ===== */

.blog-page .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.blog-page .tag {
    display: inline-block;
    background: #eef2f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    width: 100%;
	color: var(--navy);
    font-weight: 400;
}

.blog-page .tag.light {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    color: white;
    font-weight: 400;
}

/* HERO SECTION */
.blog-page .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: stretch;
}

.btn-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* LEFT */
.blog-page .hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f2c4c;
}

.blog-page .hero-left p {
    margin-top: 20px;
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
}

/* BUTTONS */
.blog-page .btn.dark {
    background: #1e3a5f;
    color: #fff;
}

/* STATS BOX */
.blog-page .stats-box {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.blog-page .stat-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.blog-page .stat-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* RIGHT */
.blog-page .hero-right {
    position: relative;
	display:flex;
}

.blog-page .hero-right img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* TOP STRIP */
.blog-page .hero-top-strip {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
}

/* OVERLAY CARD */
.blog-page .hero-card {
        position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 44, 76, 0.7);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 360px;
    backdrop-filter: blur(21px);
    box-shadow: 0 11px 30px rgba(13, 13, 18, 0.1);
}
.hero-card ::marker {
    color: var(--accent);
}
.blog-page .hero-card h4 {
    margin-bottom: 10px;
}

.blog-page .hero-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-page .hero-card ul {
    padding-left: 18px;
}

.blog-page .hero-card li {
    margin-bottom: 6px;
}

/* STORY SECTION */
.blog-page .story {
    background: #f4f6f9;
    padding: 100px 0;
}

.blog-page .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2c4c;
    margin-bottom: 10px;
}

.blog-page .section-desc {
    color: #6b7280;
    max-width: 700px;
    margin-bottom: 50px;
}

/* GRID */
.blog-page .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* LEFT CARD */
.blog-page .story-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.blog-page .story-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-page .story-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

.blog-page .story-card img {
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

/* TIMELINE */
.blog-page .timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-page .timeline-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* YEAR BADGE */
.blog-page .timeline-row .year {
    background: #1e3a5f;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    min-width: 70px;
    text-align: center;
}

/* TIMELINE CARD */
.blog-page .timeline-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.blog-page .timeline-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0f2c4c;
}

.blog-page .timeline-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* TEAM SECTION */
.blog-page .team {
    padding: 100px 0;
}

.blog-page .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2c4c;
    margin-bottom: 10px;
}

.blog-page .section-desc {
    color: #6b7280;
    max-width: 700px;
    margin-bottom: 50px;
}

/* GRID */
.blog-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-page .team-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.blog-page .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-page .team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */
.blog-page .team-content {
    padding: 20px;
}

.blog-page .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #0f2c4c;
}

/* ROLE (ORANGE LIKE FIGMA) */
.blog-page .team-content .role {
    display: block;
    font-size: 13px;
    color: #ff6a00;
    margin-bottom: 10px;
    font-weight: 500;
}

/* DESCRIPTION */
.blog-page .team-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== VALUES SECTION (PIXEL PERFECT) ===== */

.blog-page .values {
    background: linear-gradient(180deg, #153a5b 0%, #0f2c4c 100%);
    padding: 100px 0;
    position: relative;
    color: #fff;
}

/* TEXT */
.blog-page .section-title.light {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.blog-page .section-desc.light {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin-bottom: 50px;
}

/* GRID */
.blog-page .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-page .value-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* HOVER */
.blog-page .value-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
}

/* ICON */
.blog-page .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.blog-page .icon-box img {
    width: 22px;
}

/* TITLE */
.blog-page .value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.blog-page .value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}


/* ===== TRUST SIGNALS SECTION ===== */

.blog-page .trust-signals {
    background: #fff;
    padding: 100px 0;
}

/* GRID */
.blog-page .trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* CARD */
.blog-page .trust-card {
    background: #e9eef3;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* HOVER */
.blog-page .trust-card:hover {
    transform: translateY(-3px);
    background: #dfe7ee;
}

/* ICON BOX */
.blog-page .trust-card .icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page .trust-card .icon img {
    width: 18px;
}

/* TEXT */
.blog-page .trust-card span {
    font-size: 14px;
    font-weight: 500;
    color: #0f2c4c;
}


/* ===== CTA SECTION (PIXEL PERFECT) ===== */

.blog-page .cta {
    background: var(--navy);
    padding: 80px 0;
}

/* INNER BOX */
.blog-page .cta-box {
    background: #f78b1f;
    padding: 50px 60px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 100%;
}

.blog-page .cta-content {
    max-width: 80%;
    text-align: left;
}

.blog-page .cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-page .cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* BUTTON */
.blog-page .cta-action {
    flex-shrink: 0;
}

.blog-page .cta .btn.white {
    background: #ffffff;
    color: #0f2c4c;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* HOVER */
.blog-page .cta .btn.white:hover {
    background: transparent;
    color: white;
    border: 1px solid var(--white);
}

.footer-brand a.brand.footer-logo {
    max-width: 220px;
    width: 100%;
}
 
.footer-links h4 {
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-page .hero-grid,
    .blog-page .story-grid,
    .blog-page .team-grid,
    .blog-page .values-grid,
    .blog-page .trust-grid {
        grid-template-columns: 1fr;
    }

     .blog-page .stats-box, 
     .blog-page .timeline-row {
        flex-direction: column;
    }

    .blog-page .hero-card {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    .blog-page .hero-top-strip {
        position: static;
        transform: none;
        margin-bottom: 10px;
        display: inline-block;
    }

    .blog-page .team-grid,
    .blog-page .values-grid {
        grid-template-columns: 1fr;
    }

    .blog-page .cta-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

     .blog-page .timeline-row .year {
        width: fit-content;
    }

    .blog-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .blog-page .cta-action {
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
  .hero-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-content {
    max-width: 680px;
  }

  .card-grid-3,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand p {
    max-width: 100%;
  }

  .service-row,.sip-calculator-wrap{grid-template-columns:1fr;}
  .investment-service-grid{grid-template-columns:1fr;}
  .service-copy,.service-row-text-left .service-copy{max-width:100%;order:initial;}
  .service-row-text-left .service-media{order:initial;}
	
	.footer-links {
    	width: 100%;
    	justify-content: start;
	}
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding: 68px 0;
  }

  .nav-wrap {
    flex-wrap: wrap;
    position: relative;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 4px;
  }

  /* On mobile, show sub-menus inline (indented) rather than as a dropdown */
  .main-nav .sub-menu {
    position: static;
    display: flex;
    min-width: 0;
    padding: 4px 0 4px 16px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-image-card img {
    min-height: 260px;
  }

  .card-grid-3,
  .features-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .footer-top {
    gap: 34px;
    padding-top: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .services-hero{padding:90px 0 80px;}
  .service-row{gap:24px;margin-bottom:40px;}
  .service-media img{height:240px;}
  .sip-calculator-left,.sip-calculator-right{padding:24px 20px;}
  .sip-circle{width:150px;height:150px;}
  .sip-circle strong{font-size:1.6rem;}

  /* Blog Page */
   .blog-page .stats,
    .blog-page .team-grid,
    .blog-page .values-grid {
        flex-direction: column;
    }

    .blog-page .timeline-item {
        flex-direction: column;
    }
	
	section.services.section {
    padding-top: 0;
}
	.service-card h3, .investment-card h3, .feature-item h3 {
    margin: 0 0 12px;
}
	.cta-box h2 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
	.service-card h3, .investment-card h3, .feature-item h3 {
    margin: 12px 0;
}
	.why-us .feature-icon {
    margin-bottom: 4px;
}
	
/* About Page */

	.blog-page .hero-left h1 {
		font-size: 36px;
		color: #0f2c4c;
		padding-top: 12px;
	}
	.blog-page .hero-grid {
    padding: 50px 0;
}
	.btn-group {
    margin-top: 24px;
}
	.blog-page .hero-top-strip {
    display: none;
}
	.blog-page .hero-right {
    flex-direction: column;
}
	.blog-page .hero-card {
		margin-top: 30px;
		background: var(--navy);
		backdrop-filter: unset;
		box-shadow: unset;
	}

.blog-page .story , .blog-page .cta , .blog-page .trust-signals , .blog-page .values , .blog-page .team , .services-hero , .section , .services-investment-band , .services-investment-band , .services-cta-lite {
	padding: 50px 0;
}
.blog-page .section-title , .blog-page .cta-content h2 , .blog-page .section-title.light , .cta-lite-box h2 {
    font-size: 24px;
    line-height: 1.4;
}
	
	.blog-page .section-desc , .blog-page .section-desc.light {
    margin-bottom: 30px;
}
	.blog-page .cta-content {
    max-width: 100%;
    text-align: center;
}

.blog-page .cta-action {
    margin: unset;
    width: 100%;
}

.blog-page .cta-content p {
    text-align: center;
    font-size: 14px;
}
	
	
/* Service Page	 */
	
	.services-hero h1 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 16px;
}
	
	.services-solutions .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-heading {
    margin-bottom: unset;
}

.service-media {padding-top: 100%;}

.service-media img {
    height: 100%;
}

.service-row {display: flex;flex-direction: column;margin: unset;}

.services-solutions .container .service-row:nth-child(odd) {flex-direction: column-reverse;}
	.investment-service-grid {
    margin-top: 30px;
}
	.investment-service-card h3 {
    font-size: 22px;
    line-height: 1.5;
}
	
/* Contact Form	 */
	.page-id-9 .entry-content, .page-template-default .entry-content {
    margin-bottom: unset;
}
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .investment-card {
    padding: 24px 20px;
  }
}






#loginform {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e8edf3;
}

/* Heading */
article h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #0f2c4c;
    font-size: 36px;
    font-weight: 700;
}

/* Labels */
#loginform label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0f2c4c;
}

/* Input Fields */
#loginform .input {
    width: 100%;
    height: 55px;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    transition: all .3s ease;
    background: #fff;
    box-sizing: border-box;
}

#loginform .input:focus {
    border-color: #0f2c4c;
    box-shadow: 0 0 0 3px rgba(15,44,76,.12);
    outline: none;
}

/* Form Spacing */
#loginform p {
    margin-bottom: 20px;
}

/* Remember Me */
.login-remember {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.login-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

/* Submit Button */
#wp-submit {
    width: 100%;
    height: 55px;
    background: #0f2c4c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

#wp-submit:hover {
    background: #17426f;
    transform: translateY(-2px);
}

/* Forgot Password Link */
.entry-content > p a {
    color: #0f2c4c;
    font-weight: 600;
    text-decoration: none;
}

.entry-content > p a:hover {
    text-decoration: underline;
}



/* Mobile */
@media (max-width: 767px) {
    #loginform {
        padding: 25px;
    }

    article h1 {
        font-size: 28px;
    }
}

span.hamburger {

    display: flex;

}

.menu-toggle {

    width: 40px;

    height: 40px;

    padding: 7px;

    align-items: center;

    justify-content: center;

}

.menu-toggle span.close-icon {

    display: none;

}

.menu-toggle.active span.hamburger {

    display: none;

}

.menu-toggle.active span.close-icon {

    display: flex;

}
 

.icrm-cd-header::after {
    z-index: -1 !important;
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}


.founder-section .tag{
display:inline-block;
background:#eaf2ff;
color:#123a6d;
padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:18px;
}
.founder-section .section-title{
font-size:46px;
line-height:1.2;
font-weight:800;
color:#0f2d57;
margin-bottom:20px;
}
.founder-section .section-desc{
max-width:820px;
font-size:18px;
line-height:1.8;
color:#58677a;
margin-bottom:45px;
}
.founder-section .founder-card{
display:grid;
grid-template-columns:45% 1fr;
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.founder-section .founder-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
.founder-section .content{
padding:50px;
}
.founder-section .label{
display:inline-block;
background:#fff3eb;
color:#f26a21;
padding:8px 18px;
border-radius:30px;
font-size:13px;
font-weight:700;
text-transform:uppercase;
letter-spacing:1px;
} 
.founder-section h2.name{
margin:18px 0 10px;
}
.founder-section .subtitle{
font-size:22px;
font-weight:700;
color:#334d6e;
margin-bottom:25px;
}
.founder-section .content p{


color:#5d6a7d;
margin-bottom:18px;
}
.founder-section .features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin:35px 0;
}
.founder-section .feature{
border:1px solid #e7edf5;
border-radius:16px;
padding:20px;
transition:.3s;
}
.founder-section .feature:hover{
transform:translateY(-5px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
}
.founder-section .icon{
width:54px;height:54px;border-radius:50%;
background:#fff3eb;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
}
.founder-section .icon svg{width:28px;height:28px;stroke:#f26a21;fill:none;stroke-width:2}
.founder-section .feature h4{
font-size:18px;
margin-bottom:8px;
color:#12345d;
}
.founder-section .feature p{
font-size:15px;
line-height:1.7;
margin:0;
}
.founder-section .quote{
margin-top:15px;
background:#f6f9fd;
border-left:5px solid #f26a21;
padding:25px;
border-radius:12px;
}
.founder-section .quote blockquote{
font-size:18px;
font-style:italic;
line-height:1.8;
color:#30445e;
margin-bottom:10px;
}
.founder-section .quote strong{color:#12345d}
@media(max-width:992px){
.founder-section .founder-card{grid-template-columns:1fr}
.founder-section .section-title{font-size:34px}
.founder-section .content{padding:35px}
}
@media(max-width:640px){
.founder-section .features{grid-template-columns:1fr}
.founder-section .section-title{font-size:30px}
.founder-section h2.name{font-size:32px}
}