body{font-family:'Inter',sans-serif;margin:0;background:#f9fafc;color:#0f172a;line-height:1.6}
.container{max-width:1100px;margin:auto;padding:2rem}
.nav{background:white;box-shadow:0 1px 6px rgba(0,0,0,0.06);position:sticky;top:0;z-index:10;height: 100px;justify-content: center;align-items: center;}
.nav-inner{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:0.6rem;font-weight:700;font-size:1.1rem}
.logo{height:50px}
.nav-links a{margin-left:1rem;text-decoration:none;color:#333;transition:0.2s}
.nav-links a:hover{color:#0047ab}
.nav-links .cta{background:#0047ab;color:white;padding:0.6rem 1rem;border-radius:8px}
.hero{padding:4rem 0;background:linear-gradient(90deg,#fff 0%,#eef4ff 100%)}
.hero h1{font-size:2rem;margin-bottom:.5rem}
.hero-cta{margin-top:1rem;display:flex;gap:1rem}
.btn{background:#0047ab;color:white;text-decoration:none;padding:.8rem 1rem;border-radius:8px;display:inline-block}
.link-btn{border:1px solid #0047ab;color:#0047ab;padding:.8rem 1rem;border-radius:8px;text-decoration:none}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1rem;margin-top:1.5rem}
.card{background:white;padding:1.2rem;border-radius:10px;box-shadow:0 2px 6px rgba(0,0,0,0.04)}
.footer{background:white;padding:1rem 0;margin-top:2rem;font-size:0.9rem;color:#555}
.foot-inner{display:flex;justify-content:space-between;align-items:center}
.contact-form{display:grid;gap:0.6rem;max-width:500px}
.contact-form input,.contact-form textarea{padding:0.8rem;border:1px solid #ddd;border-radius:6px}
@media(max-width:700px){.nav-links a{margin-left:0.6rem;font-size:0.9rem}}



/* ==== Basic Reset ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==== Navbar Container ==== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ==== Navbar Inner ==== */
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

/* ==== Brand ==== */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a23;
}

.brand img {
    transition: transform 0.3s ease;
}

.brand:hover img {
    transform: rotate(-5deg) scale(1.05);
}

/* ==== Links ==== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #0a4cbf;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ==== CTA Button ==== */
.nav-links .cta {
    
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links .cta:hover {
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}



/* Interactive Financial Strategies Hero */
.financial-hero {
    position: relative;
    background: radial-gradient(circle at top left, #0f172a, #1e3a8a 40%, #312e81);
    color: #fff;
    padding: 1rem 1rem;
    overflow: hidden;
}

/* Glowing animated background orbs */
.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

.hero-bg-shapes::before {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: #60a5fa;
}

.hero-bg-shapes::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #a78bfa;
    animation-delay: 3s;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Hero content layout */
.financial-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.financial-hero-text {
    flex: 1 1 500px;
    max-width: 600px;
    animation: fadeUp 1s ease forwards;
}

.financial-hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(to right, #93c5fd, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.financial-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
}

.btn-outline {
    border: 2px solid #93c5fd;
    color: #93c5fd;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
    background: #93c5fd;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* Floating cards */
.financial-hero-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease forwards;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 170px;
    animation: floatAnimation 3s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.floating-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.07);
    box-shadow: 0 0 30px rgba(147, 197, 253, 0.3);
}

.floating-card:hover::after {
    opacity: 1;
}

.floating-card img {
    width: 60px;
    margin-bottom: 1rem;
    animation: pulseIcon 2.5s infinite ease-in-out;
}

.floating-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
}

@keyframes pulseIcon {

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

    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {

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

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

/* Responsive */
@media (max-width: 900px) {
    .financial-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Financial Future Section */
.financial-future {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Subtle floating gradient animation background */
.financial-future::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1), transparent 60%);
    animation: moveGradient 15s linear infinite;
    z-index: 0;
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5%, 5%);
    }

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

.financial-future .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Grid Layout */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
}

.strategy-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.15);
}

.strategy-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.strategy-card:hover img {
    transform: scale(1.05);
}

.strategy-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.strategy-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight {
    color: #16a34a;
}

/* Scroll Animation */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .strategy-card img {
        max-width: 150px;
    }
}

/* 
why choose us section */
.home-info {
    text-align: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    color: #222;
}

.home-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002a6b;
    margin-bottom: 10px;
}

.home-info .intro-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 60px;
}

/* ==== One-Line Features Row ==== */
.features-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
    /* ensures one row */
    overflow-x: auto;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #eaf2ff);
    border: 2px solid #d7e3ff;
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 50, 150, 0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #002a6b;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/* ==== Hover Effects ==== */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 100, 200, 0.15);
    background: linear-gradient(135deg, #e3f2ff, #ffffff);
    border-color: #0077b6;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: #00b67a;
}

/* ==== Responsive ==== */
@media (max-width: 900px) {
    .features-row {
        flex-wrap: wrap;
        /* stack on small screens */
    }
}

/* 
footer section */

.footer {
    background: linear-gradient(135deg, #002b5b, #004aad);
    color: #fff;
    padding: 60px 10% 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Left Section */
.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-left p {
    color: #cdd8f3;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Middle Section */
.footer-links {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00b67a;
}

.footer-links a {
    color: #e6ecff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #00b67a;
    transform: translateX(5px);
}

/* Right Section */
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00b67a;
}

.footer-right p {
    color: #e0e6ff;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    color: white;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.3) rotate(1deg);
    color: #00b67a;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #cdd8f3;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}




