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

body {
    /* Main text uses Roboto */
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background: #061b92;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d0d3db;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    /* UI elements use Inter */
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


.btn-primary {
    background: #061b92;
    color: #ffffff;
    font-weight: bold;
}

.btn-primary:hover {
    background: #000d5a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #061b92;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23061b92" width="1200" height="600"/><path fill="%23ffffff" opacity="0.06" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 5% 6rem;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-subtext {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Section Styling */
section {
    padding: 4rem 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #061b92;
}

/* Explicit heading font (Roboto) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    border: 1px solid rgba(26, 40, 71, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    border: 1px solid rgba(6, 27, 146, 0.35);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #061b92;
    margin-bottom: 0.5rem;
}

.step-number {
    display: inline-block;
    background: #061b92;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Investment Options */
.investments {
    background: #f5f5f5;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 40, 71, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(6, 27, 146, 0.35);
}

.investment-image {
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 38%), linear-gradient(135deg, #061b92 0%, #000d5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.investment-details {
    padding: 1.75rem;
}

.investment-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.investment-roi {
    font-size: 2rem;
    color: #061b92;
    font-weight: bold;
    margin: 0.5rem 0;
}

.investment-period {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #061b92;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #061b92;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #061b92;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Calculator Section */
.calculator {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.calculator h3 {
    color: #061b92;
    margin-bottom: 1.5rem;
}

.calc-input {
    margin-bottom: 1.5rem;
}

.calc-input label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.calc-input input,
.calc-input select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.calc-result {
    background: #061b92;
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
}

.calc-result h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.calc-result .amount {
    font-size: 2rem;
    font-weight: bold;
}

/* Footer */
footer {
    background: #061b92;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #d0d3db;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.footer-bottom {
    /* Push the bottom line lower (more breathing room above it) */
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Page Content */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
}






.footer {
    background-color: #061b92; /* brand blue */
}

.social-links a {
    color: #ffffff;   /* THIS is the key fix */
    font-size: 22px;
}




.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.social-links a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.social-links a:hover .fa-facebook-f { color: #061b92; }
.social-links a:hover .fa-instagram { color: #e1306c; }
.social-links a:hover .fa-x-twitter { color: #ffffff; }
.social-links a:hover .fa-whatsapp { color: #25d366; }




.hero {
    background-image: url("IMAGES/background-img\ 4.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 90vh;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
    align-items: flex-start;
}

/* Optional dark overlay for better text readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero * {
    position: relative;
    z-index: 1;
}


.disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    line-height: 1.4;
}

/* Restore original styling over Bootstrap (footer, nav, body) */
body {
    margin: 0 !important;
    font-size: 1rem;
    line-height: 1.6;
}
footer,
footer * {
    box-sizing: border-box;
}
footer {
    padding: 3rem 5% !important;
}
footer .footer-content {
    gap: 2rem;
}
footer .footer-section h3 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}
footer .footer-section p,
footer .footer-section a {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.5 !important;
}
footer .footer-bottom {
    margin-top: 3.5rem !important;
    padding-top: 2.5rem !important;
}
footer .footer-bottom p {
    margin-bottom: 0.25rem !important;
    font-size: 0.9rem !important;
}
footer .social-links {
    font-size: 1.5rem !important;
    gap: 1rem;
}
footer .social-links a {
    width: 44px;
    height: 44px;
    font-size: 22px !important;
}












/* Prevent logo container from forcing navbar height */
.logo {
    height: auto;
}

/* Control logo size directly */
.logo img {
    height: 160px;   /* increase/decrease logo size here */
    width: auto;
}

/* Lock navbar height so it never stretches */
nav {
    min-height: 80px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Keep navbar content vertically centered */
nav,
.logo,
.nav-links,
.nav-buttons {
    align-items: center;
}


