      * {
            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;
        }


              
        H2 span {
            font-size: 2.5rem;
            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;
            color: #021440;
        }

        p {
            font-size: 17px;
            line-height: 25px;
            color: #434e5c;
            font-family: "Inter_18pt-Regular";
        }

 

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #002d77 0%, #003d9e 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 3%;
          
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }


        /* .hero::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: url(../images/grid-bg.svg);
           opacity: 0.4;
        } */

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .hero-content span{
            color: #ffbf00;
        }

        .hero h1 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ffffff;
            text-align: center;
            text-shadow: 3px 3px 3px #201f1f;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #ffffff;
            text-align: center;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            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;
        }



        /* 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;
        }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .why-content h2{
            margin-bottom: 1rem;
          
        }

        .why-image {
            background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
            height: 300px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
        }

        .why-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .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(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: white;
            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;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: #0d9f16;
            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;
        }

        .benefit-card p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* How It Works */
       .how-section {
            background: #fff;
            padding: 80px 60px;
            /* max-width: 900px; */
            margin: 0 auto;
            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: 2rem;
            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: 57%;
            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.3remrem;
            margin-bottom: 12px;
            font-weight: 600;
            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%;
            }
        }



        /* Screenshot Section */
        .screenshot-section {
            background: linear-gradient(135deg, #002d77 0%, #003d9e 100%);
            text-align: center;
            padding: 80px 0;
        }

        .screenshot-container {
            margin-top: 3rem;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .ss-section{
            text-align: center;
        }
        
        .screenshot-section h2{
            font-size: 2.5rem;
            text-align: center;
            color: white;
        }
        .screenshot-section p{
            font-size: 1.15rem;
            text-align: center;
            color: white;
        }
        .ss-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: #ffc108;
          text-decoration: underline;
           /* text-align: center; */
          padding-bottom: 20px;
          letter-spacing: 0.038rem;
        }


        .screenshot {
            width: 100%;
            height: auto;
            display: block;
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #0066cc;
        }
          .screenshot-container img {
            width: 100%;
            height: auto;
            display: block;
          }

        /* Additional Features */
        .features-section {
            background: white;
            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;
        }
       
        .features-grid h2{
            text-align: left;
        }

        .features-grid p{
            font-size: 1.2rem;
            margin-bottom: 20px;

        }

        .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-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .comparison-item {
            background: rgba(255, 255, 255, 0.1);
            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: #ffffff;
        }

        .comparison-item p {
            opacity: 0.9;
            font-size: 1rem;
            color: #ffffff;
            text-align: left;
        }

        .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-section {
            background: white;
            text-align: center;
            padding: 80px 0;
        }

        .security-content {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            padding: 3rem 2rem;
            border-radius: 12px;
            margin-top: 2rem;
        }

        .security-content h3 {
            font-size: 1.5rem;
            color: #0066cc;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.038rem;
        }

        .security-content p {
            font-size: 1.15rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* 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) {
            h2{
                font-size: 2.3rem;
                letter-spacing: -0.05rem;
            }

            H2 span {
                font-size: 2.3rem;
            }
            .hero{
                margin-top: 8%;
            }
            .hero h1 {
                font-size: 2.3rem;
            }

            .hero::after {
            content: '';
             position: absolute;
            top: -48%;
            right: -38%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
           }

            .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;
            }

            .how-section .step h3 {
                font-size: 1.5rem;
            }
            .hero::after {
                width: 400px;
                height: 400px;
                top: -30%;
                right: -20%;
            }
        }
        @media (max-width: 480px) {

            h2{
                font-size: 2rem;
            }
            h3{
                font-size: 1.3rem;
            }

            p{
                font-size: 1rem;
            }
                
            H2 span {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p
            {
                font-size: 1.2rem;
            }

            .hero::after {
                top: -40%;
                right: -40%;
            }
            .section-title {
                font-size: 2rem;
            }

            .how-section .step h3 {
                font-size: 1.3rem;
            }

            .features-grid p{
                font-size: 1rem;
            }
            .how-section .section-subtitle{
                font-size: 1rem;
            }


              .hero-buttons {
                flex-direction: column;
            }

            .screenshot-section h2{
                font-size: 2rem;
            }
            
             .bbp-btn a {
               font-size: 1.2rem;
               padding: 15px 30px;
            }

            .comparison-botom{
                flex-direction: column;
            }
            .comparison-item h3{
                font-size: 1.3rem;
            }
            .security-content h3{
                font-size: 1.3rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

        }
    