:root {
    --primary: #4caf50;
    /* Solid Light Green */
    --primary-dark: #388e3c;
    --secondary: #81c784;
    /* Soft Pastel Green */
    --accent: #c8e6c9;
    /* Very Light Pastel Green */
    --light: #f1f8e9;
    /* Pale Lime Background */
    --white: #ffffff;
    --dark: #1b301b;
    /* Deep Mossy Dark */
    --text: #2e3d2e;
    /* Dark leafy green for text */
    --shadow-sm: 0 2px 10px rgba(76, 175, 80, 0.05);
    --shadow-md: 0 10px 30px rgba(76, 175, 80, 0.1);
    --shadow-lg: 0 20px 50px rgba(76, 175, 80, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    /* Increased from 1200px to support big cards */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(241, 248, 233, 0.9);
    /* Suble light green tint */
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: var(--white);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    /* Space between logo and text */
    text-decoration: none;
    transition: var(--transition);
}

.brand-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 60px;
    /* Adjust height for navbar */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.navbar.scrolled .navbar-logo {
    height: 50px;
    /* Slightly smaller on scroll */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--dark);
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-quote {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 8px solid var(--secondary);
    margin-bottom: 2.5rem;
}

.hero-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 600px;
    /* Constrain height */
    overflow: visible;
}

.main-img {
    width: 100%;
    max-width: 450px;
    height: 550px;
    /* Set fixed height */
    object-fit: contain;
    /* Don't crop the poster text */
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    /* Slightly sharper for poster look */
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 5%;
    right: -15%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 5%;
    left: -15%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 80, 0.2);
}

.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.learn-more {
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.feature-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white) !important;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

/* --- Aesthetic & Unique Footer --- */
.footer {
    background: #1b301b;
    /* Deep mossy background */
    color: #e8f5e9;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    /* Match previous section background */
    border-radius: 0 0 100% 100%;
    /* The unique curve */
    transform: translateY(-50%);
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.footer-info h4 {
    font-size: 1.8rem;
    color: #81c784;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #e8f5e9;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(10px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-10px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    border-color: transparent;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-text.reveal {
    transform: translateX(-50px);
}

.hero-image.reveal {
    transform: translateX(50px);
}

.revealed.hero-text,
.revealed.hero-image {
    transform: translateX(0);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
}

/* Sub-page Hero */
.hero-sub {
    padding: 120px 0 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.hero-sub h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Common Layouts */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* Cards & Components */
.info-card,
.product-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.info-card i,
.product-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Service Rows */
.service-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    min-width: 60px;
}

.card-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.card-dark .service-icon {
    color: var(--secondary);
}

/* About Page Specific */
.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.bio-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.bio-details i {
    color: var(--primary);
    width: 20px;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.mission-box {
    background: var(--secondary-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.focus-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.5;
}

/* Contact Form */
.glass-form {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.contact-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

@media (max-width: 768px) {

    .grid-2,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .hero-sub h1 {
        font-size: 2.2rem;
    }
}

/* Financial Insights */
/* Financial Insights Superior Layout */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    /* More gap */
    margin-top: 5rem;
    max-width: 1400px;
    /* Force wider grid */
    margin-left: auto;
    margin-right: auto;
}

.insight-item {
    background: var(--white);
    padding: 5rem 3.5rem;
    /* Massive internal padding */
    border-radius: 50px;
    /* More rounded */
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    min-height: 700px;
    /* Substantial height */
}

.insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.insight-header {
    margin-bottom: 2rem;
}

.insight-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.insight-header h3 {
    font-size: 2rem;
    /* Scaled up */
    color: var(--primary-dark);
}

.insight-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    /* Scaled up */
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Internal Box Grid */
.compounding-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comp-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
}

.comp-card.early {
    background: #e8f5e9;
}

.comp-card.late {
    background: #fff5f5;
}

.stat-circle {
    width: 110px;
    /* Scaled up */
    height: 110px;
    /* Scaled up */
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.2rem auto;
    font-weight: 700;
    font-size: 1.1rem;
}

.late .stat-circle {
    background: #c62828;
}

/* Inflation Rows */
.inf-row {
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    text-align: left;
    color: #fff;
}

.inf-row.yellow {
    background: #fbc02d;
    color: #333;
}

.inf-row.blue {
    background: #1976d2;
}

.inf-row.green {
    background: #2e7d32;
}

.year-data {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Quotes and Stats */
.big-percent {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin: 2rem 0 1rem;
}

.einstein-quote {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    font-style: italic;
    color: var(--text-muted);
}

.einstein-quote span {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}

@media (max-width: 1100px) {
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* SIP Data Table */
.data-table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.data-table th {
    background: #fcfcfc;
    color: var(--primary);
    font-weight: 700;
}

.data-table tr.highlight {
    background: #f1f8f1;
    font-weight: 700;
}

.red {
    color: #d32f2f;
    font-weight: 700;
}

.green {
    color: #2e7d32;
    font-weight: 700;
}

/* SWP Specifics */
.swp-summary {
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.swp-val {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.swp-val span {
    font-size: 1rem;
    opacity: 0.8;
}

.swp-val strong {
    font-size: 2.2rem;
}

.swp-details {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.swp-details li {
    padding: 1.2rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
}

.swp-details i {
    color: var(--secondary);
    font-size: 1rem;
}

.total-benefit {
    padding: 2rem;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 20px;
    margin-top: auto;
}

.total-benefit span {
    display: block;
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Inflation Section - Home Page */
.inflation-home {
    background: #fffdf7;
    padding: 100px 0;
}

.inflation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inf-visual-container {
    padding: 2rem;
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* Concentric Circles Visualization */
.eating-money-vis {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 3rem auto;
}

.circle {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}

.circle-1990 {
    width: 350px;
    height: 350px;
    background: #e53935;
    z-index: 1;
}

.circle-2000 {
    width: 280px;
    height: 280px;
    background: #fb8c00;
    z-index: 2;
}

.circle-2005 {
    width: 210px;
    height: 210px;
    background: #fbc02d;
    z-index: 3;
    color: #333;
}

.circle-2025 {
    width: 140px;
    height: 140px;
    background: #fff;
    border: 2px solid #eee;
    z-index: 4;
    color: #333;
}

.circle span {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.circle-2025 span {
    background: #eee;
}

.circle strong {
    font-size: 1.2rem;
}

/* Inflation Comparison Table */
.inf-table-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.inf-table {
    width: 100%;
    border-collapse: collapse;
}

.inf-table th {
    background: #fff8e1;
    color: var(--primary-dark);
    padding: 1.2rem;
    text-align: center;
}

.inf-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: 500;
}

.inf-table .row-year {
    text-align: left;
    font-weight: 700;
    color: var(--primary);
}

.actual-inf-row {
    background: #f1f8f1;
    font-weight: 800 !important;
    color: var(--primary-dark);
}

.inf-icons {
    height: 40px;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .inflation-content {
        grid-template-columns: 1fr;
    }

    .eating-money-vis {
        width: 300px;
        height: 300px;
    }

    .circle-1990 {
        width: 300px;
        height: 300px;
    }

    .circle-2000 {
        width: 240px;
        height: 240px;
    }

    .circle-2005 {
        width: 180px;
        height: 180px;
    }

    .circle-2025 {
        width: 120px;
        height: 120px;
    }
}

/* Warren Buffett Wealth Building Section */
.buffett-section {
    background: #fdfdfd;
    padding: 100px 0;
    border-top: 1px solid #f0f0f0;
}

.buffett-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.buffett-stats-card {
    background: #fff;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
}

.buffett-chart-container {
    text-align: center;
}

.buffett-chart {
    display: flex;
    align-items: stretch;
    /* Change to stretch to give wrappers full height */
    justify-content: space-between;
    height: 450px;
    margin: 5rem 0;
    /* More margin */
    gap: 12px;
    /* Balanced gap */
    padding: 2rem 1.5rem 0;
    /* Added top padding for slanted labels */
    border-bottom: 2px solid #ccc;
    /* Darker base line */
    /* Darker, more visible horizontal grid lines */
    background-image: linear-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 100% 50px;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content to bottom */
    align-items: center;
    height: 100%;
    /* Fill the chart height */
    position: relative;
}

.bar {
    width: 80%;
    /* Slightly wider */
    background: #e0e0e0;
    /* Match light grey from image */
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
}

/* Accuracy Adjustment: The bars in the image are very short until age 59 */
.bar.highlight {
    background: #cfd8dc;
    /* Professional grey for non-extreme milestones */
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: relative;
    padding-bottom: 35px;
    /* Offset for Age label */
}

.bar {
    width: 70%;
    background: #e0e0e0;
    border-radius: 4px 4px 0 0;
    position: relative;
    /* Anchor for bar-value */
    transition: var(--transition);
}

.bar-wrapper:nth-child(1) .bar {
    height: 1%;
}

.bar-wrapper:nth-child(2) .bar {
    height: 1.2%;
}

.bar-wrapper:nth-child(3) .bar {
    height: 1.5%;
}

.bar-wrapper:nth-child(4) .bar {
    height: 2%;
}

.bar-wrapper:nth-child(5) .bar {
    height: 5%;
    background: #e53935;
}

.bar-wrapper:nth-child(6) .bar {
    height: 6%;
}

.bar-wrapper:nth-child(7) .bar {
    height: 7%;
}

.bar-wrapper:nth-child(8) .bar {
    height: 10%;
}

.bar-wrapper:nth-child(9) .bar {
    height: 15%;
}

.bar-wrapper:nth-child(10) .bar {
    height: 22%;
}

.bar-wrapper:nth-child(11) .bar {
    height: 35%;
    background: #e53935;
}

.bar-wrapper:nth-child(12) .bar {
    height: 50%;
}

.bar-wrapper:nth-child(13) .bar {
    height: 70%;
}

.bar-wrapper:nth-child(14) .bar {
    height: 85%;
}

.bar-wrapper:nth-child(15) .bar {
    height: 100%;
    background: #e53935;
}

.bar-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-10%) rotate(-45deg);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
}

.bar-age {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.buffett-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.buffett-table th {
    background: var(--primary-dark);
    color: #fff;
    padding: 1.2rem;
    border: 1px solid #eee;
}

.buffett-table td {
    padding: 1rem;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

.buffett-highlight-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.buffett-highlight-text span {
    color: var(--primary);
}

@media (max-width: 992px) {
    .buffett-grid {
        grid-template-columns: 1fr;
    }
}

/* Start Early Section */
.start-early-container {
    background: #f1f8e9;
    /* Light pastel green background */
    padding: 3rem;
    border-radius: 30px;
    margin-top: 4rem;
    text-align: center;
}

.start-early-header h2 {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.start-early-intro {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.avatar-comparison {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.avatar-box {
    flex: 1;
    text-align: center;
}

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    box-shadow: var(--shadow-md);
}

.avatar-img-early {
    background: #b39ddb;
}

.avatar-img-late {
    background: #cfd8dc;
}

.corpus-tag {
    background: #2e8b57;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    display: inline-block;
    margin-top: 1rem;
}

.early-tag {
    background: #388e3c;
}

.late-tag {
    background: #455a64;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table thead th {
    background: #81c784;
    color: #fff;
    font-size: 1.1rem;
}

.comparison-table .row-label {
    text-align: left;
    background: #66bb6a;
    color: #fff;
    font-weight: 700;
    width: 40%;
}

.comparison-table .val-early {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
}

.comparison-table .val-late {
    background: #f1f8e9;
    color: #558b2f;
    font-weight: 700;
}

.comparison-table .highlight-row td {
    background: #4caf50;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2rem;
    text-align: left;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .avatar-comparison {
        flex-direction: column;
    }

    .comparison-table .row-label {
        width: 50%;
    }
}

/* --- Revitalized SIP Introduction Section --- */
.sip-intro-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
    padding: 6rem 4rem;
    border-radius: 50px;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.sip-intro-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sip-intro-header {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.sip-brand-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.sip-intro-header h2 {
    color: #1a4721;
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.sip-intro-header p {
    font-size: 1.8rem;
    color: #334d36;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.2;
}

.sip-started-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 5rem 0;
    position: relative;
    z-index: 1;
}

.sip-started-card {
    text-align: center;
}

.sip-started-card h3 {
    font-size: 2.8rem;
    color: #1a332d;
    line-height: 1.2;
    font-weight: 300;
}

.sip-started-card h3 strong {
    font-weight: 900;
    color: #2e7d32;
    display: block;
    font-size: 3.5rem;
    margin: 0.5rem 0;
}

.sip-quote-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.sip-quote-box {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: #fff;
    padding: 4rem;
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.sip-quote-box::after {
    content: '“';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.sip-quote-box p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
}

.sip-quote-box .author {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 400;
}

.sip-visual-scene {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 2rem;
    position: relative;
}

.scene-item {
    transition: all 0.5s ease;
}

.walker {
    animation: walkFloat 4s ease-in-out infinite;
}

.growth-hand {
    animation: growFloat 5s ease-in-out infinite;
}

@keyframes walkFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes growFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.sip-footer-back {
    text-align: center;
    margin-top: 5rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #333;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.btn-back:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: #2e7d32;
}

@media (max-width: 992px) {
    .sip-intro-header h2 {
        font-size: 3.5rem;
    }

    .sip-started-card h3 {
        font-size: 2.2rem;
    }

    .sip-started-card h3 strong {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .sip-intro-section {
        padding: 3rem 2rem;
    }

    .sip-intro-header h2 {
        font-size: 2.8rem;
    }

    .sip-quote-box p {
        font-size: 1.3rem;
    }

    .sip-visual-scene {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
}

/* --- AFTER 24 YEARS SIP PERFORMANCE --- */
.sip-performance-24 {
    background: #ffffff;
    padding: 5rem 3rem;
    border-radius: 50px;
    margin-top: 4rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #f0f0f0;
}

.sip-perf-header {
    margin-bottom: 4rem;
}

.sip-perf-header h2 {
    color: #2e7d32;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.sip-perf-header p {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
}

.sleep-illustration {
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.hammock-scene {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 2rem;
}

.money-tree {
    color: #ffd700;
    font-size: 6rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-tree i {
    text-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hammock {
    font-size: 4rem;
    color: #0277bd;
    margin-bottom: 1rem;
    animation: swing 3s ease-in-out infinite;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

.perf-table-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
    background: #fff;
}

.perf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

.perf-table thead th {
    background: #a5d6a7;
    color: #1b5e20;
    padding: 1.5rem;
    font-weight: 800;
}

.perf-table .sub-header th {
    background: #c8e6c9;
    font-size: 1.3rem;
}

.perf-table th,
.perf-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.perf-table tr:last-child {
    background: #f1f8f1;
    font-weight: 800;
    color: #1b5e20;
}

.perf-table .val-neg {
    color: #d32f2f;
    font-weight: 700;
}

.perf-table .val-pos {
    color: #2e7d32;
    font-weight: 700;
}

.perf-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .sip-perf-header h2 {
        font-size: 2.22rem;
    }

    .money-tree {
        font-size: 4rem;
    }

    .hammock {
        font-size: 3rem;
    }

    .perf-table {
        font-size: 0.9rem;
    }
}

/* --- SWP SYSTEMATIC WITHDRAWAL PLAN --- */
.swp-section {
    background: #fefefe;
    padding: 6rem 4rem;
    border-radius: 50px;
    margin-top: 5rem;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.swp-header {
    text-align: left;
    margin-bottom: 5rem;
}

.swp-header h2 {
    color: #43a047;
    /* Green theme for SWP */
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
}

.swp-header p {
    font-size: 1.5rem;
    color: #4b634b;
    font-weight: 600;
}

.swp-scenario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.swp-branch-card {
    background: #fff;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(76, 175, 80, 0.08);
    border-top: 8px solid #66bb6a;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.swp-investment-top {
    text-align: center;
    border-bottom: 1px dashed #c8e6c9;
    padding-bottom: 2rem;
}

.swp-investment-top span {
    display: block;
    color: #558b2f;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swp-investment-top strong {
    font-size: 2.2rem;
    color: #2e7d32;
}

.swp-data-list {
    list-style: none;
    padding: 0;
}

.swp-data-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 1.1rem;
}

.swp-data-list li strong {
    color: #333;
}

.swp-final-box {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: auto;
}

.swp-final-box span {
    display: block;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.swp-final-box strong {
    font-size: 2.5rem;
    color: #1b5e20;
}

@media (max-width: 992px) {
    .swp-scenario-grid {
        grid-template-columns: 1fr;
    }

    .swp-header h2 {
        font-size: 2.8rem;
    }
}

/* --- Detailed SWP Table --- */
.swp-detail-container {
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--accent);
}

.swp-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.swp-detail-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.2rem;
    color: var(--text);
}

.swp-detail-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary-dark);
}

.swp-detail-table .highlight-row {
    background: var(--light);
}

.swp-detail-table .total-row {
    background: var(--primary);
    color: #fff;
}

.swp-detail-table .total-row td {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

/* --- Premium Contact Page Styles --- */
.contact-premium-banner {
    background: linear-gradient(rgba(232, 245, 233, 0.9), rgba(241, 248, 233, 0.95));
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    border-radius: 0 0 100px 100px;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
}

.contact-premium-banner h2 {
    font-size: 3.5rem;
    color: #1b5e20;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-premium-banner p {
    font-size: 2rem;
    color: #388e3c;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
}

.contact-card-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-main-card {
    background: #ffffff;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(76, 175, 80, 0.12);
    text-align: center;
    border: 1px solid #e8f5e9;
}

.contact-logo-box {
    margin-bottom: 3rem;
}

.contact-logo-box img {
    height: 100px;
    margin-bottom: 1rem;
}

.contact-logo-box .brand-name {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2e7d32;
}

.contact-address-box {
    margin-bottom: 3rem;
}

.contact-address-box p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
}

.contact-details-row a {
    color: inherit;
    text-decoration: none;
}

.contact-services-footer {
    background: #2d5a41;
    color: #fff;
    padding: 2rem;
    border-radius: 0 0 40px 40px;
    margin-top: -40px;
    padding-top: 60px;
}

.services-list-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.services-list-bar span {
    position: relative;
}

.services-list-bar span::after {
    content: '|';
    margin-left: 1.5rem;
    opacity: 0.5;
}

.services-list-bar span:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .contact-premium-banner h2 {
        font-size: 2.22rem;
    }

    .contact-premium-banner p {
        font-size: 1.4rem;
    }

    .contact-details-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- About Page Enhancements --- */
.about-hero-slim {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    padding: 6rem 0;
    text-align: center;
    border-radius: 0 0 80px 80px;
    margin-bottom: 4rem;
}

.about-hero-slim h1 {
    font-size: 3.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.about-intro-card {
    background: #fff;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e8f5e9;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.about-intro-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #334d36;
    font-weight: 500;
}

.about-section-heading {
    color: #2e7d32;
    font-size: 2.22rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-section-heading i {
    font-size: 1.5rem;
    opacity: 0.6;
}

.premium-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.premium-list-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.premium-list-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.premium-list-item i {
    color: var(--primary);
    font-size: 1.5rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 12px;
}

.premium-list-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #444;
}

.about-mission-section {
    background: var(--light);
    padding: 6rem 0;
    border-radius: 60px;
    margin: 5rem 0;
}

/* --- Premium About Us Styles --- */
.about-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-intro-text {
    max-width: 800px;
    margin: 3rem auto;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.about-intro-text::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: serif;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--primary);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.focus-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.focus-pill {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
}

.focus-pill i {
    color: var(--primary);
    font-size: 1.2rem;
}

.services-about-section {
    background: #f1f8e9;
    padding: 80px 0;
    border-radius: 50px;
    margin: 4rem 0;
}

.service-about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-about-card i {
    background: var(--light);
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .focus-list {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

/* --- Magazine/Bio Style About Page --- */
.bio-page-container {
    max-width: 1100px;
    margin: 4rem auto;
    background: #f1f8e9;
    /* Light sage background for the whole container */
    display: flex;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    min-height: 1000px;
}

.bio-sidebar {
    width: 320px;
    background: #c8e6c9;
    /* Distinct Pastel Green */
    padding: 3rem 2rem;
    color: #1b301b;
    display: flex;
    flex-direction: column;
}

.bio-founder-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.bio-sidebar-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.bio-sidebar-text strong {
    font-size: 1.3rem;
    display: block;
    margin: 0.5rem 0;
}

.bio-products-list {
    margin-top: auto;
}

.bio-products-list h3 {
    font-size: 1.4rem;
    border-bottom: 2px solid #1b301b;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.bio-products-list ul {
    list-style: none;
    padding: 0;
}

.bio-products-list li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.bio-main-content {
    flex: 1;
    background: #ffffff;
    padding: 4rem;
    position: relative;
}

.bio-header-logo {
    text-align: right;
    margin-bottom: 2rem;
}

.bio-header-logo img {
    height: 80px;
}

.bio-header-logo .brand {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2e7d32;
    margin-top: 0.5rem;
}

.bio-text-section {
    margin-top: 0;
}

.bio-text-section p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

.bio-text-section h3 {
    font-size: 1.3rem;
    color: #1b301b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.bio-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.bio-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #444;
}

.bio-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 900px) {
    .bio-page-container {
        flex-direction: column;
    }

    .bio-sidebar {
        width: 100%;
    }

    .bio-main-content {
        padding: 2rem;
    }
}

/* --- Dropdown Menu Styles --- */
.dropdown {
    position: relative;
    padding: 15px 0;
    /* Add padding to bridge gap between link and menu */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    border: 1px solid #e8f5e9;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f1f8e9;
    color: #2e7d32;
    padding-left: 2rem;
}

.nav-links li i {
    font-size: 0.8rem;
    margin-left: 5px;
    opacity: 0.6;
}

/* --- Product Insight Box (Premium) --- */
.product-insight-box {
    margin-top: 4rem;
    padding: 3rem;
    background: #f1f8e9;
    border-radius: 40px;
    position: relative;
    border-left: 12px solid #2e7d32;
    /* Thick left accent from image */
    transition: var(--transition);
}

.product-insight-box:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-insight-box h2 {
    color: #1b5e20;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-insight-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #334d36;
    margin: 0;
}

@media (max-width: 768px) {
    .product-insight-box {
        padding: 2rem;
        border-radius: 25px;
        border-left-width: 8px;
    }
}

/* --- Blog Cards System --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.6rem;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(76, 175, 80, 0.2);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e8f5e9, #f1f8e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.blog-card-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8rem 2rem;
    background: #f9f9f9;
    border-radius: 40px;
    border: 2px dashed #ddd;
}

/* --- SIP & SWP Sections --- */
.sip-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #ffe0b2;
    padding-bottom: 0.5rem;
}

.data-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .sip-content-grid {
        grid-template-columns: 1fr;
    }

    .swp-card-container .row {
        flex-direction: column;
    }
}