
        
        @font-face {
            font-family: "Eras Light ITC";
            src: url("../fonts/ErasITC-Light.woff2") format("woff2"),
                url("../fonts/ErasITC-Light.woff") format("woff");
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: "Eras Medium ITC";
            src: url("../fonts/ErasITC-Medium.woff2") format("woff2"),
                url("../fonts/ErasITC-Medium.woff") format("woff");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }


        @font-face {
            font-family: "ErasITC-Medium";
            src: url("../fonts/ErasITC-Medium.woff");
        }


        @font-face {
            font-family: "Inter_18pt-Regular";
            src: url(../fonts/Inter/static/Inter_18pt-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Regular";
            src: url(../fonts/Public_Sans/static/PublicSans-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Bold";
            src: url(../fonts/Public_Sans/static/PublicSans-Bold.ttf);
        }


        @font-face {
            font-family: "ErasDemiITC";
            src: url(../fonts/ErasDemiITC.ttf);
        }


 
       
        H2 span {
            /* font-size: 2.9rem; */
            color: #0047bb;
            font-weight: bold;
            /* font-family: "Raleway-Medium"; *  /* font-family: "Montserrat-Regular"; */
            font-family: "PublicSans-Bold", sans-serif;
            /* font-family: "ErasDemiITC"; */
        }

        h2 {
            /* text-align: center; */
            font-size: 2.5rem;
            line-height: 1.4em;
            color: #021440;
            /* font-family: "Raleway-Medium"; */
            /* font-family: "Montserrat-Regular"; */
            font-family: "PublicSans-Bold", sans-serif;
            /* margin-bottom: 90px; */
        }

        h3 {
            text-align: left;
            font-size: 17px;
            line-height: 25px
        }

        p {
            font-size: 17px;
            line-height: 25px;
            color: #434e5c;
            /* letter-spacing: 1.5px; */
            /* text-align: center; */
            /* font-family: "Poppins-Regular"; */
            font-family: "Inter_18pt-Regular";
        }


        .hero-section {
            background: linear-gradient(135deg, #002d77, #002d77);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 50px;
        }

        .hero-section::before {
           content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/grid-bg.svg);
    opacity: 0.4;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 0px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 1px;
            align-items: center;
            height: 78vh;
            padding:8px 0;
        }

        .content-left {
            opacity: 0;
            animation: slideInLeft 1s ease 0.3s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 13px; 
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            letter-spacing: -0.02em;
        }

       .hero-title span{
          color: #f2b500;
       }

        .hero-title .highlight,  .industry-title .highlight { font-size: 4rem;   font-weight: 900;
            color: #0047bb; font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 40px;
            max-width: 80%;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #f2b500;
            color: rgb(0, 0, 0);
            padding: 13px 22px;
            border: none;
              border-radius: 5px;
            font-size: 1.125rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(243, 246, 59, 0.3);
        }

        .btn-primary:hover {
            background: #ce9a01;
            transform: translateY(-2px);
            box-shadow: none;
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 11px 19px;
            border: 2px solid #ffffff;    border-radius: 5px;
            /* border-radius: 12px; */
            font-size: 1.125rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #0440a4;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .content-right {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: slideInRight 1s ease 0.6s forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

         .dashboard-mockup {
            /* width: 100%; */
            max-width: 510px;
            max-height: 500px;
            /* background: white; */
            border-radius: 20px;
            /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
            overflow: hidden;
            position: relative;
            /* transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); */
            transition: transform 0.3s ease;
        }
        
         .dashboard-mockup img{
            width: 100%;
         }

       .about-section{
        position: relative;
        background: radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
        z-index: -2;
        overflow: hidden;
       }


    .about-section::before {
    content: '';
    position: absolute;
    top: -70%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    border-radius: 50%;
    z-index: -1;
     }


    .about-section::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.03));
    border-radius: 50%;
    z-index: 0;
}
       
   .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 27px;
            padding-bottom: 80px;
            text-align: center;
            position: relative;
            padding-top: 6%;

        }

        .about-container h2 {
            font-size: 3rem;
            text-align: left;
            font-weight: 800;
            color: #021440;
            /* background: linear-gradient(135deg, #0047bb 0%, #0047bb 50%, #60a5fa 100%); */
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -0.02em;
            font-family: "PublicSans-Bold", sans-serif;
        }

        
        .about-content {
            text-align: left;
            font-size: 1.3rem;
            color: #434e5c;
            max-width: 700px;
            margin: 0 auto;
            padding-top: 9%;
            line-height: 1.7;
            letter-spacing: normal;
        }

        .security-content p {
            /* text-align: center; */
        }


        



      /* feature section */

        .feature-container{
            padding-top:80px;
            padding-bottom: 80px;
            background: radial-gradient(at center top, rgb(240, 248, 255) 0%, rgb(255, 255, 255) 70%);
            border-top: 1px solid rgb(236, 229, 229);
        }
         
        .features-section {
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }
        
        .content-left {
            flex: 1;
            position: sticky;
            top: 50px;
        }
        
        .content-left h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0f172a;
            line-height: 1.2;
            text-align: left;
        }
        
       .features-section .content-left p {
            font-size: 1.15rem;
            color: #434e5c;
            margin-bottom: 30px;
        }
        
        .highlight-box {
            background: #002d77;
            color: white;
            padding: 25px;
            /* border-radius: 12px; */
            margin-top: 30px;
        }
        
        .highlight-box h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .highlight-box ul {
            list-style-type: none;
        }
        
        .highlight-box li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: #fff;
        }
        
        .highlight-box li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0adb57;
            font-weight: bold;
        }
        
        .features-right {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            padding-top: 62px;
        }
        
        .feature-box {
            background: #f9faff;
            padding: 30px 25px;
            /* border-radius: 12px; */
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
            transition: all 0.3s ease;
            /* border-left: 4px solid #3b82f6; */
            border: 1px solid rgb(197, 197, 197);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15); */
            background: #0047bb;
            color: #fff;
        }

        .feature-box:hover h3{
            color: #fff;
        }

        .feature-box:hover p{
            color: #fff;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .feature-box h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #0f172a;
        }
        
        .feature-box p {
            color: #475569;
            font-size: 1rem;
        }
        
   .bbp-btn {
   margin-top: 50px;
   text-align: center;
    }
        .bbp-btn a {
            display: inline-block;
            padding: 18px 40px;
            background: #0047bb;
            color: #fff;
            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;
        }
  

/* why choose */


        .benefit-section{
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.1) 100%);
        }
        .benefit-container {
            /* display: grid; */
            /* grid-template-columns: 1fr 1fr; */
            gap: 50px;
            padding-bottom: 80px;
            text-align: center;
            position: relative;
            padding-top: 6%;
        }

        .benefit-container h2 {
            text-align: left;
            padding-bottom: 15px;
        }

        .benefit-container p {
            text-align: left;
            /* text-align: justify; */
            max-width: 800px;
        }


        .benefit-list-container{
              display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 15px;
            gap: 20px;
        }
        .benefits-list {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
            /* gap: 30px; */
            /* margin-top: 50px; */
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 9px;
            /* background:  #f8f9fb; */
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: linear-gradient(135deg, rgba(24, 40, 72, 0.05) 0%, rgba(75, 108, 183, 0.05) 100%);
        }

        .benefit-check {
            width: 24px;
            height: 24px;
            background: #0047bb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .benefit-item p {
            color: var(--text-gray);
            font-size: 1.2rem;
        }

        /* Integration Section */

        .integration-section {
            background: #0047bb;
        }

        .integration-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .integration-section h2 {
            color: #fff;
        }

        .integration-content p {
            text-align: center;
            color: #fff;
        }

        .benefit-rgt .img{
            background: url("../images/inner-pages/branches-of-accounting.webp")no-repeat;
            width: 100%;
            height: 100%;
            /* max-height: 400px; */
            /* max-width: 600px; */
            background-position: center;
            background-size: cover;
        }



        /* work section */


        .work-section {
            padding: 80px 0;
        }

        .section-header {
            display: flex;
            gap: 30px;
            /* text-align: center; */
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

       .work-section .section-subtitle {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 600px;
            /* margin: 0 auto; */
            line-height: 1.6;
            /* text-align: center; */
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .step-card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }


        
        
        /* why choose */
        .why-choose-section{
            background:radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
        }
        .why-container{
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            padding-bottom: 80px;
            text-align: center;
            position: relative;
            padding-top: 6%;
         
        }

        .why-choose-benefits-list{
            margin-top: 50px;

        }

       .why-container h2 {
           text-align: left;
           padding-bottom: 20px;
           line-height: 1.2;
        }

        .why-container span{
            font-family: "ErasDemiITC";
        }
       
        .why-choose-lft p{
            text-align: justify;
            font-size: 1.3rem;
        }



    



        /* Responsive */

        @media (max-width: 900px) {
           


        .hero-section {
        height: auto;
      
         }
         
        .hero-content {
         display: grid;
         grid-template-columns: 1fr;
         }

         .hero-title{
            font-size: 3rem;
         }

        .about-container h2 {
         font-size: 2.3rem;
            }


        .hero-content .content-left, .hero-title, .hero-subtitle, .hero-description {
          max-width: 100%;
          text-align: center;
         }

         .cta-buttons{
            justify-content: center;
         }

        .content-right{
            display: none;
         }


            .features-section {
                flex-direction: column;
                gap: 40px;
            }
            .content-left{
                position: static;
            }
            
            .features-right {
                width: 100%;
            }

            .hero-subtitle{
                font-size: 1.25rem;
            }
            .hero-description{
                font-size: 1.15rem;
            }
        }

      

         @media (min-width: 768px) {

            

            .step-card::after {
                content: '';
                position: absolute;
                top: 48px;
                left: 100%;
                width: 32px;
                height: 2px;
                background: linear-gradient(to right, #3b82f6, transparent);
                display: none;
            }

            .steps-grid > .step-card:not(:last-child)::after {
                display: block;
            }
        }


        @media (max-width: 768px) {
           
          h2{
            font-size: 2.3rem;
          }

          H2 span{
            font-size: 2.3rem;
          }

          .hero-title{
            font-size: 2.3rem;
            }
            .about-container {
                grid-template-columns: 1fr;
                gap: 7px;
                margin-bottom: 7%;
            }

            .about-content {
                padding-top: 0;
            }


           .features-right {
                grid-template-columns: 1fr;
            }
            
            .content-left h2 {
                font-size: 2rem;
            }


            .benefit-list-container{
              display: grid;
              grid-template-columns: 1fr;
              margin-top: 50px;

             }


               .section-title {
                font-size: 2.3rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .steps-grid {
                gap: 24px;
            }

            .step-card {
                padding: 24px;
            }


            .why-container{
                grid-template-columns: 1fr;
            }
           
            .section-header{
                display: block;
            }

        }

        @media (max-width: 480px) {
           h2{
            font-size: 2rem;
            }

          H2 span{
            font-size: 2rem;
            }
            
              .about-container h2{
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-subtitle{
                font-size: 1.15em;
            }
            .hero-description{
                font-size: 1rem;
            }
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

      

          .benefit-item p{
            font-size: 1rem;
          }
          .why-choose-lft p{
            font-size: 1rem;
          }

           .bbp-btn a {
               font-size: 1.2rem;
               padding: 15px 30px;
            }

  
        }



