
        :root {
            --primary: #2563eb;
            --primary-light: #3b82f6;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --secondary-light: #34d399;
            --accent: #f59e0b;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #2c3138;
        }
        
        
        body {
            background-color: #f8fafc;
            color: var(--dark);
        }
        
        .hero {
            position: relative;
            overflow: hidden;
            background:#cfe9fcce;
            color: var(--dark);
            padding: 20px 0 20px;
        }
        
        /* Modern 3D Financial Background */
        .hero-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-heading {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .hero-heading h1 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .hero-heading p {
            font-size: 1.2rem;
            line-height: 1.4;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            color: var(--dark);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background:#F1F5F9;
            backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #1A365D;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);

            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #f59e0b 15%, #ffe2b0) 90%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }
        
        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-card p {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.6;
            color: var(--dark);
        }
        
        .service-cta {
            display: inline-block;
            background-color: rgb(39, 34, 34);
            color: white;
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
            background-color: var(--secondary-light);
            color: white;
        }
        
        /* Floating 3D Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.15;
            z-index: 0;
        }
        
        .element-1 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            top: -100px;
            right: -100px;
            animation: float 15s infinite ease-in-out;
        }
        
        .element-2 {
            width: 400px;
            height: 400px;
            background: var(--accent);
            bottom: -150px;
            left: -150px;
            animation: float 18s infinite ease-in-out reverse;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(20px, 30px);
            }
        }
        
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 20px 0 10px;
            }
            
            .hero-heading h1 {
                font-size: 1.5rem;
            }
            
            .hero-heading p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
                padding: 0 15px;
            }
            
            .service-card {
                padding: 25px;
            }
        }



        .mini-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
          }
          
          .mini-feature-item {
            display: flex;
            align-items: start;
            padding: 8px 0;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
          }
          
          .mini-feature-item:last-child {
            border-bottom: none;
          }
          
          .mini-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            background: linear-gradient(135deg, #4361ee, #3f37c9);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            margin-right: 12px;
          }
          
          .mini-feature-item h5 {
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0;
            color: var(--gray);
          }
          
          /* Color variations */
          .mini-feature-item:nth-child(2) .mini-icon {
            background: linear-gradient(135deg, #f72585, #b5179e);
          }
          
          .mini-feature-item:nth-child(3) .mini-icon {
            background: linear-gradient(135deg, #4cc9f0, #4895ef);
          }


          /* banner css */

          .banner-container {
              /* background:  #26497a; */
              background:  #2563EB;
              border-radius: 16px;
              box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
              margin-bottom: 2rem;
          }
          
          .promo-banner {
              height: 15vh;
              min-height: 220px;
      
              border-radius: 12px;
              overflow: hidden;
              box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
              transition: all 0.3s ease;
              position: relative;
          }
          
          .promo-slide {
              display: flex;
              align-items: center;
              justify-content: space-between;
              height: 100%;
              padding: 1.5rem;
              position: relative;
          }
          
          .promo-text {
              max-width: 60%;
              z-index: 2;
          }
          
          .promo-tag {
              display: inline-block;
              background: rgba(221, 218, 218, 0.2);
              backdrop-filter: blur(5px);
              padding: 0.25rem 0.75rem;
              border-radius: 50px;
              font-size: 0.75rem;
              font-weight: 600;
              margin-bottom: 0.75rem;
              /* color: rgb(52, 49, 49); */
              color: white;
              text-transform: uppercase;
              letter-spacing: 0.5px;
          }
          
          .promo-title {
              font-size: 1.25rem;
              font-weight: 700;
              line-height: 1.3;
              margin-bottom: 0.2rem;
              /* color: rgb(52, 49, 49); */
              color: white;
      
          }
          
          .promo-subtext {
              font-size: 0.9rem;
              /* color: rgba(52, 49, 49, 0.726); */
              color: white;
              margin-bottom: 1.25rem;
          }
          
          .promo-code {
              font-weight: 700;
              color: white;
              background: rgba(0, 0, 0, 0.2);
              padding: 0.2rem 0.5rem;
              border-radius: 4px;
          }
          
          .promo-btn {
              background: #244574;
              /* background: #2563EB; */
          
              color: white;
              font-weight: 600;
              padding: 0.5rem 1.25rem;
              border-radius: 50px;
              font-size: 0.9rem;
              border: none;
              transition: all 0.3s ease;
              box-shadow: 0 4px 12px rgba(232, 230, 230, 0.1);
              display: inline-flex;
              align-items: center;
          }
          
          .promo-btn:hover {
              transform: translateY(-2px);
              background: #244574;
              box-shadow: 0 6px 16px rgba(178, 175, 175, 0.2);
              color: #fbfeff;
          }
          
          .promo-img {
              height: 100%;
              width: 40%;
              object-fit: contain;
              position: absolute;
              right: 1.5rem;
              bottom: 0;
              filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
              z-index: 1;
          }
          
          /* Carousel indicators */
          .carousel-indicators {
              bottom: -1.5rem;
              margin: 0;
          }
          
          .carousel-indicators [data-bs-target] {
              width: 8px;
              height: 8px;
              border-radius: 50%;
              background-color: rgba(255, 255, 255, 0.4);
              border: none;
              margin: 0 4px;
              transition: all 0.3s ease;
          }
          
          .carousel-indicators .active {
              background-color: white;
              transform: scale(1.2);
          }
          
          /* Responsive adjustments */
          @media (min-width: 576px) {
              .promo-title {
                  font-size: 1.5rem;
              }
              
              .promo-subtext {
                  font-size: 1rem;
              }
              
              .promo-btn {
                  padding: 0.6rem 1.5rem;
                  font-size: 1rem;
              }
          }
          
          @media (min-width: 768px) {
              .promo-banner {
                  height: 18vh;
                  min-height: 200px;
              }
              
              .promo-text {
                  max-width: 50%;
              }
              
              .promo-img {
                  width: 40%;
                  right: 2rem;
              }
          }
          
          @media (min-width: 992px) {
              .promo-banner {
                  height: 20vh;
                  min-height: 220px;
              }
              
              .promo-title {
                  font-size: 1.75rem;
              }
              
              .promo-img {
                  width: 40%;
                  right: 3rem;
              }
          }
          
          @media (max-width: 575px) {
              .banner-container{
                  padding: 0rem 0rem;
              }
              .promo-img {
                  opacity: 0.15;
                  width: 50%;
                  right: 0;
              }
              
              .promo-text {
                  max-width: 100%;
              }
              .promo-tag{
                display: none;
              }
          }
   
          .promo-list {
            list-style: none;
            padding-left: 0;
            font-size: 0.8rem;
            color: white; /* dark slate */
          }
          
          .promo-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.3rem;
          }
          
          @media (max-width: 576px) {
            .promo-list {
              font-size: 0.75rem;
            }
          }
          