
         * {
            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: "ErasDemiITC";
           
        }

        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;
        }

        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: 3rem 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-text p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            color: #fff;
        }

        .hero-content .Services-path-link{
            text-align: left;
            margin-bottom: 5px;
        }
     .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-image {
            position: relative;
            height: 400px;
        }

        .dashboard-card {
            background: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: absolute;
            width: 90%;
            max-width: 350px;
        }

        .dashboard-card.main {
            top: 0;
            right: 0;
            animation: float 3s ease-in-out infinite;
        }

        .dashboard-card.secondary {
            bottom: 20px;
            left: 0;
            animation: float 3s ease-in-out 1.5s infinite;
            opacity: 0.9;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .card-title {
            font-weight: 700;
            color: var(--text-dark);
        }

        .badge {
            background: var(--accent-green);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .card-body {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .amount {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 1rem;
        }

        /* 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.3rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 500;
            text-align: center;
        }

        .how-section .step p {
            font-size: 1rem;
            /* color: #6b7280; */
            line-height: 1.6;
            max-width: 200px;
            margin: 0 auto;
            text-align: center;
        }

        @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;
        }
      

       /* 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.5rem;
            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: 900px) {
       .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
           }

           .hero-text h1{
            font-size: 2.5rem;
            text-align: center;
           }
           .hero-text p{
            text-align: center;
           }
           .hero-buttons{
            justify-content: center;
           }

           .hero-content .Services-path-link{
                text-align: center;
                margin-bottom: 15px;
            }

         }



        @media (max-width: 768px) {
            h2{
                font-size: 2.3rem;
            }

            H2 span {
                font-size: 2.3rem;
            }
             .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.3rem;
            }

            .hero-buttons {
                flex-direction: column;
            }
            .why-imp{
                text-align: center;
            }
            .why-content h2{
                text-align: center;
            }
            .why-imp p{
                font-size: 1.1rem;
                text-align: center;
            }
            .why-rgt{
                justify-content: center;
            }
            .section-badge{
                justify-content: center;
            }

            .why-content,
            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 2rem 1rem;
            }

            .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;
            }


        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            H2 span {
                font-size: 2rem;
            }
            .hero::before{
                top: -80%;
                right: -50%;
            }

            .section-title {
                font-size: 2rem;
            }
              .hero-buttons {
                flex-direction: column;
            }
            .why-content h2{
                font-size: 2rem;
            }
            .how-section .step h3{
                font-size: 1.3rem;
            }

            .why-imp p{
                font-size: 1rem;
            }
            .why-rgt h3{
                font-size: 1.7rem;
            }
            .why-rgt span{
                font-size: 1.7rem;
            }
            .security-lft{
                padding: 2rem;
            }
            .security-container h2{
                font-size: 1.3rem;
            }
            .security h2{
                font-size: 2rem;
            }
            .cta-buttons {
                flex-direction: column;
            }

               .bbp-btn a {
               font-size: 1.2rem;
               padding: 15px 30px;
            }
        }
    
  