
        :root {
            --bg-color: #F5F3FF;
            --primary-text: #1E1B4B;
            --secondary-text: #6B7280;
            --primary-color: #7C3AED;
            --secondary-color: #EDE9FE;
            --accent-color: #A78BFA;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-text);
            background-color: #ffffff;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://m.economictimes.com/thumb/msid-110516177,width-1600,height-900,resizemode-4,imgsize-72224/where-do-thematic-funds-stand-in-the-risk-matrix.jpg') center/cover;
            opacity: 0.2;
        }

        .nav-item{
            margin-left:30px !important;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size:4rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--secondary-text);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--bg-color);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-text);
        }
        
        .counter-label {
            color: var(--secondary-text);
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }
        
        /* Feature Box */
        .feature-box {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Process Step */
        .process-step {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
            transform: translateY(-50%);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        /* Service Card */
        .service-card {
            background-color: var(--bg-color);
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
        }
        
        .service-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-title {
            font-weight: bold;
            color: var(--primary-text);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        
        .service-card-text {
            color: var(--secondary-text);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Review Card */
        .review-card {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .review-text {
            color: var(--secondary-text);
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .review-rating {
            color: #FFC107;
            margin-bottom: 1rem;
        }
        
        .review-author {
            color: var(--primary-text);
            font-weight: 500;
            margin: 0;
        }
        
        /* FAQ */
        .faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.25rem;
            background-color: var(--secondary-color);
            font-weight: 600;
            color: var(--primary-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        .faq-answer {
            padding: 1.25rem;
            color: var(--secondary-text);
            line-height: 1.6;
            display: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: var(--bg-color);
            border-radius: 10px;
        }
        
        .contact-info-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-text);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-title {
            color: var(--accent-color);
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
