     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #0144fd;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
		    padding-top: 100px;

        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://media.istockphoto.com/id/2149359490/photo/financial-advisor-stock-photo.jpg?s=612x612&w=0&k=20&c=JMNXXhI0uzfDPX670xkAHuhCqF-lL-P6yox5qH1L9lI=") center/cover no-repeat;
            height: 90vh;
            color: white;
            padding: 150px 40px 50px 40px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.1) 150%);
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        .hero:hover::before {
            opacity: 1;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s 0.2s forwards;
        }
        .cta-buttons {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s 0.4s forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 5px;
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s ease;
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn-primary {
            background-color: #0144fd;
            color: white;
        }
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn:active {
            transform: translateY(0);
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 40px 0;
            background-color: #fff;
            padding: 30px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .feature {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .feature:hover {
            transform: translateY(-5px);
        }
        .icon-circle {
            width: 70px;
            height: 70px;
            background-color: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .feature:hover .icon-circle {
            background-color: #0144fd;
        }
        .feature:hover .icon-circle i {
            color: white;
            transform: scale(1.2);
        }
        .icon-circle::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .feature:hover .icon-circle::after {
            border-color: #0144fd;
            transform: scale(1.1);
            opacity: 0;
        }
        .icon-circle i {
            color: #0144fd;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        .feature h3 {
            color: #0144fd;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .feature:hover h3 {
            color: #0144fd;
        }
        .feature p {
            color: #666;
            font-size: 0.9rem;
        }
        .section {
            padding: 60px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .section-heading {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-heading h2 {
            font-size: 2rem;
            color: #0144fd;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        .section-heading h2::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: #0144fd;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.5s ease;
        }
        .section-heading:hover h2::after {
            width: 100px;
        }
        .section-heading p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            
        }
        .card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            top: 0;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0144fd, #0144fd);
            top: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .card:hover::before {
            transform: scaleX(1);
        }
        .card-content {
            padding: 25px;
        }
        .card-title {
            color: #0144fd;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .card:hover .card-title {
            color: #0144fd;
        }
        .card-text {
            color: #666;
            margin-bottom: 20px;
        }
        .card-icon {
            width: 50px;
            height: 50px;
            background-color: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .card:hover .card-icon {
            background-color: #0144fd;
        }
        .card:hover .card-icon i {
            color: white;
            transform: rotate(360deg);
        }
        .card-icon i {
            color: #0144fd;
            font-size: 20px;
            transition: all 0.6s ease;
        }
        .content-block {
            display: flex;
            align-items: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .content-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            transform: translateX(-30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        .content-image.visible {
            transform: translateX(0);
            opacity: 1;
        }
        .content-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .content-image:hover img {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .content-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        .content-text.visible {
            transform: translateX(0);
            opacity: 1;
        }
        .content-text h2 {
            color: #0144fd;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .content-text p {
            color: #666;
            margin-bottom: 20px;
        }
        .cta-section {
            background-color: #0144fd;
            color: rgb(253, 251, 251);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .cta-section:hover::before {
            opacity: 1;
        }
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
        }
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .info-section {
            padding: 60px 0;
            background-color: white;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .info-card {
            background-color: #f5f7fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        .info-card:hover {
            border-left: 3px solid #0144fd;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0144fd;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .info-card:hover h3 {
            color: #0144fd;
        }
        .info-card p {
            color: #666;
            margin-bottom: 20px;
        }
        .info-card ul {
            list-style-position: inside;
            color: #666;
        }
        .info-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 5px;
            transition: transform 0.2s ease;
        }
        .info-card ul li:hover {
            transform: translateX(5px);
            color: #0144fd;
        }
        .service-icons {
            /* background:black; */
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            /* margin: 40px 0; */
        }
        .service-icon {
            text-align: center;
            margin: 15px;
            width: 120px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .service-icon:hover {
            transform: translateY(-5px);
        }
        .service-icon .icon-circle {
            width: 70px;
            height: 70px;
            background-color: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        .service-icon:hover .icon-circle {
            background-color: #0144fd;
        }
        .service-icon:hover i {
            color: white;
            transform: scale(1.2);
        }
        .service-icon i {
            color: #0144fd;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        .service-icon p {
            color: #666;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        .service-icon:hover p {
            color: #0144fd;
            font-weight: 500;
        }
        .testimonials {
            background-color: #2c5282;
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .testimonials::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            top: 0;
            left: -100%;
            transition: left 8s ease-in-out;
        }
        .testimonials:hover::before {
            left: 100%;
        }
        .testimonials h2 {
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 600;
        }
        .testimonial-quote {
            max-width: 800px;
            margin: 0 auto 30px;
            font-style: italic;
            opacity: 0.9;
            position: relative;
            padding: 20px;
        }
        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -20px;
            left: -10px;
            color: rgba(255,255,255,0.2);
            font-family: Georgia, serif;
        }
        .testimonial-quote::after {
            content: '"';
            font-size: 4rem;
            position: absolute;
            bottom: -50px;
            right: -10px;
            color: rgba(255,255,255,0.2);
            font-family: Georgia, serif;
        }
        .footer-mini {
            background-color: #1a365d;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        .footer-mini p {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        /* Ripple effect */
        .ripple {
            position: relative;
            overflow: hidden;
        }
        .ripple::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
            background-repeat: no-repeat;
            background-position: 50%;
            transform: scale(10, 10);
            opacity: 0;
            transition: transform .5s, opacity 1s;
        }
        .ripple:active::after {
            transform: scale(0, 0);
            opacity: .3;
            transition: 0s;
        }
        /* Floating animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        .float {
            animation: float 5s ease-in-out infinite;
        }
        /* Pulse animation */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        /* Text typing animation */
        /* .typing::after {
            content: '|';
            animation: blink 0.7s infinite;
        } */
        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }