
        :root {
            --primary-color: #2B2B2B;
            --secondary-color: #2979FF;
            --light-color: #FFFFFF;
            --gray-color: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
        }
        
        /* Navbar */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--secondary-color), #1a5fd4);
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(41, 121, 255, 0.3);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(41, 121, 255, 0.9), rgba(26, 95, 212, 0.9)), url('https://assets.upstox.com/content/assets/images/learning_center_thumbnail/investment-returns-analysis.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 150px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
       
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .hero-section .cta-btn {
            background: white;
            color: var(--secondary-color) !important;
            font-size: 1.1rem;
            padding: 15px 40px;
        }
        
        .hero-section .cta-btn:hover {
            background: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-color);
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--secondary-color), #1a5fd4);
            padding: 80px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        /* Vision Mission */
        .vision-mission-section {
            padding: 100px 0;
        }
        
        .vision-mission-box {
            padding: 40px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .vision-mission-box h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--gray-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            background: white;
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), #1a5fd4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .service-card-body p {
            color: #666;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 100px 0;
            background: var(--gray-color);
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }
        
        .review-card h6 {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--secondary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .accordion-body {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #1a1a1a);
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-section .cta-btn {
            background: var(--secondary-color);
            color: white !important;
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        
        .cta-section .cta-btn:hover {
            background: #1a5fd4;
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--gray-color);
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-info h5 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form h5 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(41, 121, 255, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 80px 0 30px;
        }
        
        footer h5 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .subscribe-form button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .subscribe-form button:hover {
            background: #1a5fd4;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .counter-number {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
