
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         @font-face {
            font-family:"PublicSans-Bold" ;
            src: url("../fonts/Public_Sans/static/PublicSans-Bold.ttf");
        }

        @font-face {
           font-family:"Inter_18pt-Regular" ;
           src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf");
       }
     
        @font-face {
            font-family: "ErasDemiITC";
            src: url(../fonts/ErasDemiITC.ttf);
        }

        body {
            color: #1a1a1a;
            background-color: #ffffff;
        }


              
          :root {
            --primary-blue: #0052CC;
            --dark-blue: #001F5C;
            --light-blue: #F0F4FF;
            --accent-green: #27AE60;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --white: #ffffff;
            --border-color: #E8E8E8;
        }

        H2 span {
            font-size: 2.7rem;
            color: #0047bb;
            font-weight: bold;  
            font-family: "PublicSans-Bold", sans-serif;
           
        }

        h2 {
            font-size: 2.5rem;
            line-height: 1.2em;
            color: #021440;
            font-family: "PublicSans-Bold", sans-serif;
        }

        h3 {
            font-size: 17px;
            line-height: 25px;
            font-weight: 600;
            color: #021440;
             font-family: "PublicSans-Bold", sans-serif;
        }

        p {
            font-size: 17px;
            line-height: 25px;
            color: #434e5c;
            font-family: "Inter_18pt-Regular";
        }

        .wrap {
            max-width: 1170px;
            min-width: 320px;
           /* padding: 0px 2%; */
            margin: 0 auto;
            /* min-width: 290px; */
            width: 96%;
           }
       

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 3px 3px 3px #201f1f;
        }

        .hero-content .Services-path-link{
            text-align: left;
            margin-bottom: 5px;
        }

        .hero-text span{
            color: #f2b500;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            color: #fff;
        }

     .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: left;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #f2b500;
            color: rgb(0, 0, 0);
            padding: 0.65rem 1.7rem;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
            transition: background-color 0.3s;
            text-align: center;
        }

        .btn-primary:hover {
            background-color: #f0faff;
            box-shadow: none;
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            padding: 0.65rem 1.5rem;
            border: 2px solid white;
            border-radius: 3px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
            transition: all 0.3s;
            text-align: center;
        }

        .btn-secondary:hover {
            background-color: white;
            color: #003d82;
            box-shadow: none;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            margin-top: 1.5rem;
        }

        .stars {
            color: #FFD700;
        }

          .hero-visual {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .dashboard-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            width: 90%;
            max-width: 400px;
            border: 1px solid #f0f0f0;
            animation: float 3s ease-in-out infinite;
        }

        .dashboard-card h2{
            font-size: 1.3rem;
            padding-bottom: 5px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .dashboard-header .dashboard-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        .profit-badge {
            background: #10b981;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .dashboard-chart {
            height: 120px;
            background: linear-gradient(135deg, #2563eb15 0%, #1d4ed815 100%);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 1rem;
            gap: 3px;
        }

        .chart-bar {
            width: 20%;
            background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
            border-radius: 4px 4px 0 0;
            transition: all 0.3s;
        }

        .chart-bar:hover {
            transform: scaleY(1.1);
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .stat-item {
            background: #f8faff;
            padding: 1rem;
            border-radius: 8px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #6b7280;
            margin-bottom: 0.3rem;
        }

        .stat-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
        }


           /* Added dashboard showcase section */
        .dashboard-section {
            padding: 4rem 2rem;
            background: radial-gradient(ellipse at top,#f0f8ff 0%,#ffffff 70%);
            text-align: center;
        }

        .dashboard-container {
            margin: 0 auto;
            text-align: center;
        }
        .dashboard-container span {
            color: #0047bb;
            font-weight: bold;  
             font-family: "ErasDemiITC";
        }

        .dashboard-title {
            font-size: 2.5rem;
            font-weight: 700;
            /* color: #1a1a1a; */
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .dashboard-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .showcase-cta-btn {
            display: inline-block;
          /* background: #005aeb; */
            color: #fff;
          /* padding: 12px 28px; */
           border-radius: 6px;
           font-weight: 600;
           text-decoration: none;
           transition: 0.3s;
           font-size: 16px;
           color: #0047bb;
           text-decoration: underline;
           text-align: center;
           padding-bottom: 20px;
        }

        .dashboard-image {
            width: 100%;
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid #e0e0e0;
        }

        /* Section */
        .section {
            padding: 4rem 2rem;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #021440;
            text-align: center;
            font-family:"PublicSans-Bold" ;
        }

        .section-subtitle {
            font-size: 1rem;
            /* color: #666; */
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        /* Why Section */
        .why-section {
           padding: 80px 0;
           background: radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
        }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .why-content h2{
            margin-bottom: 1rem;
          
        }

        .why-rgt {
            /* background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%); */
            display: flex;
            justify-content: end;
            
        }

        .why-rgt h3{
            font-size: 2rem;
            font-weight: 600;
            max-width: 400px;
            color: #021440;
            line-height: 1.8;
            text-align: center;
        }

        .why-rgt span{
          font-size: 29px;
          color: #002d77;
          background-color: #eaf3ff;
          padding: .2em;
          
        }

        .why-text h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
      
        }

        .why-text p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Benefits Cards */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: #002d77;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
            border-color: #0066cc;
        }
         .benefits .even{
         background:#0047bb;
        }
        .benefit-card img {
            width: 30px;
            height: 30px;
            margin-bottom: 1.5rem;
        }


        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
            letter-spacing: 0.05rem;
        }

        .benefit-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #ffffff;
        }

        /* How It Works */
       .how-section {
            background: #fff;
            padding: 80px 60px;
            /* max-width: 900px; */
            margin: 0 auto;
            margin-bottom: 4rem;
            animation: fadeIn 0.8s ease;
        }

        .how-section .header {
            text-align: center;
            margin-bottom: 10px;
        }

        .how-section .icon-top {
            width: 60px;
            height: 60px;
            background: #0d9f16;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
        }

        .how-section .icon-top::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            top: 15px;
            left: 15px;
        }

        .how-section .icon-top::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            top: 15px;
            right: 15px;
        }

        .how-section .dot-bottom-left {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            bottom: 15px;
            left: 15px;
        }

        .how-section .dot-bottom-right {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            bottom: 15px;
            right: 15px;
        }

        .how-section .section-title {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .how-section .section-subtitle {
            font-size: 1.15rem;
            /* color: #6b7280; */
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }

        .how-section .process-wrapper {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            padding-top: 40px;
        }

        .how-section .step {
            flex: 1;
            text-align: center;
            position: relative;
            animation: slideUp 0.8s ease;
        }

        .how-section .step:nth-child(1) { animation-delay: 0.2s; }
        .how-section .step:nth-child(2) { animation-delay: 0.4s; }
        .how-section .step:nth-child(3) { animation-delay: 0.6s; }

        .how-section .step-top {
            margin-bottom: 40px;
            position: relative;
        }

        .how-section .step-number {
            font-size: 0.9rem;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }

        .how-section .icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto;
            position: relative;
        }

        .how-section .circle-outer {
            width: 80px;
            height: 80px;
            border: 2px dashed #d1d5db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .how-section .step:hover .circle-outer {
            border-color: #2d7a6e;
            transform: scale(1.05);
        }

        .how-section .circle-inner {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #2d7a6e 0%, #3d8f80 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(45, 122, 110, 0.2);
            transition: all 0.3s ease;
        }

        .how-section .step:hover .circle-inner {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(45, 122, 110, 0.3);
        }

        .how-section .icon {
            font-size: 1.5rem;
            color: #fff;
        }
         .how-section .icon img {
            width: 100%;
            height: auto;
         }

        .how-section .dashed-line {
            position: absolute;
            top: 40px;
            left: 60%;
            width: 100%;
            height: 2px;
            border-top: 2px dashed #d1d5db;
            z-index: 0;
        }

        .how-section .step:last-child .dashed-line {
            display: none;
        }

        .how-section .step h3 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
            text-align: center;
        }

        .how-section .step p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 auto;
            text-align: center;
            padding: 10px 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .how-section {
                padding: 50px 30px;
            }

            .how-section .section-title {
                font-size: 1.6rem;
            }

            .how-section .process-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .how-section .dashed-line {
                display: none;
            }

            .how-section .step p {
                max-width: 100%;
            }
        }



        /* Additional Features */
        .features-section {
            background: #022f57;
            padding: 60px 20px;
        }
        .section-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-top: 2rem;
        }

        .features-grid {
            /* display: grid; */
            /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
            gap: 1.5rem;
            /* margin-top: 2rem; */
            padding-left: 20px;
        }
       
        .features-grid h2{
            text-align: left;
            color: #ffffff;
        }

        .features-grid p{
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffffff;

        }
        .features-grid span{
          color: #ffffff;
            font-family: "ErasDemiITC";
         
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            font-size: 1.1rem;
        }

        .feature-check {
            color: #00cc66;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-item p {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .section-grid img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
         
          .bbp-btn {
           margin-top: 55px;
           text-align: center;
         /* margin-bottom: 40px; */
        }

        .bbp-btn a {
           display: inline-block;
           padding: 18px 40px;
           background: #0d9f16;
           color: #ffffff;
           font-size: 1.5rem;
           border-radius: 5px;
           text-decoration: none;
           box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
           transition: background 0.3s ease;
        }

        .bbp-btn a:hover {
           box-shadow: none;
        }
      

        /* Before & After */
        .comparison-section {
            background: linear-gradient(135deg, #002d77 0%, #003d9e 100%);
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .comparison-section h2{
            text-align: center;
            color: #ffffff;
        }

        .comparison-section p{
            text-align: center;
            color: #ffffff;
        }

        .comparison-section span{
          color: #f2b500;
          font-family: "ErasDemiITC";
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .comparison-item.before{
            background: #fef2f2;
            border: 1px solid #fecaca;
            padding: 2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        .comparison-item.after{
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            padding: 2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }


        .comparison-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #021440;
            display: inline-block;
            background: #ffffff;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }

        .comparison-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #021440;
        }

        .comparison-item p {
            opacity: 0.9;
            font-size: 1rem;
            color: #000000;
            text-align: left;
        }

         .before ul, .after ul {
            list-style: none;
        }

        .before li, .after li {
            padding: 0.8rem 0;
            padding-left: 1.5rem;
            font-size: 1rem;
            position: relative;
            color: #021440;
            padding-left: 30px;
        }

        .before li:before {
            content: "✗";
            position: absolute;
            left: 0;
            top: 7px;
            color: #dc2626;
            font-weight: bold;
            font-size: 1.7rem;
        }

        .after li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 7px;
            color: #16a34a;
            font-weight: bold;
            font-size: 1.7rem;
        }

        .arrow {
            font-size: 2rem;
            margin: 1rem 0;
            color: white;
            text-align: center;
        }
        .comparison-botom{
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

         .comparison-section a{
            text-decoration: none;
            color: rgb(0, 0, 0);
            background: #f2b500;
            padding: 14px 28px;
            border-radius: 5px;
            font-weight: 500;
            font-size: 16px;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
        }

        .comparison-section a:hover{
            box-shadow: none;
        }




       /* Security Section */
        .security {
            padding: 5rem 2rem;
            background-color: #ffffff;
        }
        
        .security h2{
            text-align: center;
            margin-bottom: 2rem;
        }
        .security-container {
            display: flex;
            max-width: 1170px;
            margin: 0 auto;
            background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
            /* padding: 4rem; */
            border-radius: 16px;
            color: white;
            text-align: center;
        }

        .security-lft {
            padding: 4rem;
        }

        .security-container h2 {
            font-size: 1.7rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-align: left;
            letter-spacing: 0.03rem;
        }

        .security-container p {
            font-size: 1.1rem;
            opacity: 0.95;
            line-height: 1.8;
            color: #fff;
        }

        .security-rgt {
            background: url("../images/inner-pages/sec.webp") no-repeat;
            height: auto;
            width: 100%;
            background-position: center;
            background-size: cover;
            border-radius: 5px;
            border-radius: 0px 16px 16px 0px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 0.8rem 2rem;
            border: 2px solid white;
            background: transparent;
            color: white;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-cta:hover {
            background: white;
            color: #0066cc;
        }

        .btn-cta.filled {
            background: white;
            color: #0066cc;
        }

        .btn-cta.filled:hover {
            background: transparent;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
             
            .hero::before {
              width: 400px;
              height: 400px;
              top: -45%;
              right: -20%;
           }

            h2{
                font-size: 2.3rem;
            }

            H2 span {
                font-size: 2.3rem;
            }
             .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.3rem;
                text-align: center;
            }
            
            .hero-text p{
                text-align: center;
            }

            .hero-content .Services-path-link{
                text-align: center;
                margin-bottom: 15px;
            }

            .hero-buttons {
                flex-direction: column;
            }
            .hero-visual{
                display: none;
            }

            .why-content,
            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 2rem 1rem;
            }
            .dashboard-title {
                font-size: 2.3rem;
            }

            .section-title {
                font-size: 2.3rem;
            }
            .section-grid{
                grid-template-columns: 1fr;
            }
     
            .how-section .step{
                margin: auto;
            }
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

               .security-container {
                flex-direction: column;
            }

            .security-rgt {
                margin-top: 2rem;
                border-radius: 0px 0px 16px 16px;
            }
           
            .comparison-botom{
                flex-direction: column;
            }

        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero-text p{
                font-size: 1.2rem;
            }
            h2{
                font-size: 2rem;
            }
            p{
                font-size: 1rem;
            }
            
            H2 span{
                font-size: 2rem;
            }

            .dashboard-title {
                font-size: 2rem;
            }
            .dashboard-subtitle {
                font-size: 15px;
            }
            .section-title {
                font-size: 2rem;
            }
              .hero-buttons {
                flex-direction: column;
            }
            .security-lft {
                padding: 2rem;
            }
            .security-container p{
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }
            .bbp-btn a {
               font-size: 1.2rem;
               padding: 15px 30px;
            }

        }
    
  