
        :root {
            --primary-blue: #1E40AF;
            --light-blue: #60A5FA;
            --light-gray: #E5E7EB;
            --dark-text: #1F2937;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            background: transparent !important;
            box-shadow: none;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue) !important;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .cta-btn {
            background: var(--primary-blue);
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
        }

        .cta-btn:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(240, 221, 10, 0.9), rgba(96, 165, 250, 0.9)),
                        url('https://media.istockphoto.com/id/1487894858/photo/candlestick-chart-and-data-of-financial-market.jpg?s=612x612&w=0&k=20&c=wZ6vVmbm4BV2JOePSnNNz-0aFVOJZ0P9nhdeOMGUg5I=');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size:4.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .nav-item{
            margin-left:35px !important;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--light-blue);
            border-radius: 2px;
        }

        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--light-blue);
            margin-bottom: 1rem;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Service Cards */
        .service-card {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: none;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .service-card h4 {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        /* Reviews */
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .stars {
            color: #FFC107;
            margin-bottom: 1rem;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--light-blue);
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--light-blue);
            margin-bottom: 1.5rem;
        }

        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--light-blue);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        /* Form Styles */
        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            padding: 0.75rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--light-blue);
            box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
