
        * {
            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);
     }



       h1, h2, h3 {
            font-family: "PublicSans-Bold";
            margin: 0;
            line-height: 1.2;
            color: #021440;
            font-size: 3rem;
        }

        p {
            margin: 0;
            font-size: 1.2rem;
            font-family: "inter_18pt-Regular";
            color: #434e5c;
        }

          H2 span {
          font-family: "ErasDemiITC";
          /* font-size: 3rem; */
          color: #0047bb;
          font-weight: 900;
        }
   
        /* Hero Section */
     

     
    .inner-page-hero-section {
    background: linear-gradient(135deg, #002d77, #002d77);
    /* background: linear-gradient(135deg, #2757a0, #1e3c72); */
    padding: 100px 20px 80px;
    position: relative;
    height: 65vh;
}


.inner-page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.inner-page-hero-content {
    text-align: center;
    color: white;
    /* margin-bottom: 60px; */
}

.inner-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.inner-page-hero-content span {
    font-size: 3rem;
    /* color: #87b2f9; */
    color: #f2b500;
    font-weight: bolder;
}

.inner-page-hero-title {
    text-shadow: 3px 3px 3px #363535;
    font-size: 3rem;
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    background-clip: text;
    line-height: 1.1;
}

.inner-page-hero-subtitle {
    padding-bottom: 2%;
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    color: #fff;
}

.bttn {
    margin: 0 auto;
    box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.5;
    width: fit-content;
    transition: 0.5s 
ease;
    text-align: left;
    /* margin: 0 auto; */
    border-radius: 3px;
    background: #f2b500;
    color: #0e0d0d;
    display: flex
;
    align-items: center;
    padding: 0.575rem 1.9rem;
}







     /* why section */

       .why-choose-section {
            max-width: 1170px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px auto;
        }
        
        .section-header {
            background: linear-gradient(135deg, #0065f2 0%, #1a51a9 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .section-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 3.1rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            font-weight: 800;
                letter-spacing: -0.025em;
        }
        
        .section-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 0;
        }
        
        .feature-card {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            /* align-items: center; */
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .feature-card:nth-child(odd) {
            background: #f9fafe;
        }
        
        .feature-card:nth-child(even) {
            background: #ffffff;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 101, 242, 0.1);
            z-index: 10;
            border-radius: 10px;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 32px;
            color: white;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        /* .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #28a745, #20c997);
        }
        
        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
        }
        
        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #6f42c1, #8e44ad);
        }
        
        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, #17a2b8, #2d9cdb);
        }
        
        .feature-card:nth-child(5) .feature-icon {
            background: linear-gradient(135deg, #e74c3c, #e67e22);
        }
        
        .feature-card:nth-child(6) .feature-icon {
            background: linear-gradient(135deg, #34495e, #2c3e50);
        }
         */
        .feature-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            /* color: #2c3e50; */
        }
        
        .feature-content p {
            /* color: #5a6c7d; */
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .badge {
            position: absolute;
            top: 40px;
            right: 20px;
            background: #0047bb;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .cta-container {
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #0065f2, #1a51a9);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 101, 242, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 101, 242, 0.4);
        }
        
        @media (max-width: 768px) {
            .features-container {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .section-header {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .feature-card {
                padding: 30px 20px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }
    




    /* how it work */

    .how-it-works-section {
         background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0px;
            text-align: center;
        }

        .how-it-works-section h2 {
            /* font-size: 2.8em; */
            font-weight: 800;
            margin-bottom: 60px;
            text-align: center;
        }

        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 250px;
        }

        .step-number-circle {
            width: 70px;
            height: 70px;
            background: #0047bb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 2.5em;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .step-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .step-description {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            text-align: center;
        }




        /* Features Section */
        .features {
            padding: 80px 0;
            background: white;
        }

        .features .features-container {
            max-width: 1170px;
            margin: 0 auto;
            /* padding: 0 20px; */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.025em;
        }

        .features .section-title h2 {
            /* font-size: 36px; */
            font-weight: 800;
            /* color: #2c3e50; */
            margin-bottom: 15px;
            /* text-align: center; */
                letter-spacing: -0.025em;
        }

        .features .section-title h2 span{
            font-family: "PublicSans-Bold";
        }

        .section-title p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            /* text-align: center; */
            margin-bottom: 25px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        
        .feature-left{
            position: sticky;
            top: 117px;
        }
        

        .features .feature-card {
            background: white;
            padding:8px 30px;
            border-radius: 12px;
            align-items: flex-start;
            /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
            transition: transform 0.3s, box-shadow 0.3s;
        }

       .features .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(68, 67, 67, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #f2f8ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: #ff6b35;
        }

    .feature-icon img{
        width: 50px;
        /* height: 34px; */
    }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            /* color: #2c3e50; */
            margin-bottom: 15px;
        }

        .feature-card p {
            /* color: #666; */
            line-height: 1.6;
        }



        /* Action Section */

        .action-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .action-container {
            max-width: 1170px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

       .action-section .section-title h2{
            text-align: center;
            margin-bottom: 15px;
            letter-spacing: -0.025em;
        }
  

       .action-section .section-title p{
            text-align: center;
        }

        .action-tabs {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            border-bottom: 1px solid #e9ecef;
        }

        .tab-button {
            font-family: "PublicSans-Bold";
            background: none;
            border: none;
            padding: 15px 0;
            font-size: 18px;
            font-weight: 500;
            color: rgb(33, 59, 85);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .tab-button.active {
            color: #0047bb;
            border-bottom-color: #0047bb;
        }

        .tab-content {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .tab-content.active {
            display: grid;
        }

        .tab-text h3 {
            font-size: 28px;
            font-weight: 700;
            /* color: #2c3e50; */
            margin-bottom: 20px;
        }

        .tab-text p {
            /* color: #666; */
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            /* color: #666; */
            font-size: 1.2rem;
        }

        .feature-list li::before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
        }

        .tab-image {
            text-align: center;
        }

        .tab-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

    
        
   /* use case */

   .use-section{
    padding: 6rem 0;
   }

    .use-case-grid {
            max-width: 62rem;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .use-case-item {
            background-color: #f1f4f6;
            text-align: center;
            padding: 1rem;
            border-radius: 0.5rem;
            color: #0047bb;
            font-weight: 600;
            font-size: 1.2rem;
        }



       /*F&Q section  */

.faq-main{
    /* background: #f9fafe; */
    padding: 7% 0%;
}

.faq-section {
  display: flex;
  justify-content:space-between;
  /* padding: 10% 0%; */
  gap: 40px;
  background: #fff;
}



.faq-right{
    margin: auto;
    margin-top: 15%;
}

.faq-right p{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 10.3x;
    text-align: center;
    /* font-family: "Rubik-Regular"; */
    /* font-family: "Montserrat-Regular"; */
    font-family: "Public Sans", sans-serif;
    color: rgb(33, 59, 85);
}


.faq-right p span {
  font-size: 27px;
    color: #0047bb;
    background-color: #f9fafe;
    padding: .2em;
    font-weight: 900;
}


    .faq-container {
      flex: 1;
      max-width: 600px;
    }

    .faq-header h2 {
      /* font-size: 2.8rem; */
      font-weight: bold;
      margin-bottom: 0px;
      color: #021440;
      padding-top: 0;
      text-align: center;
      margin-bottom: 15px;
    }

    .faq-header p {
      color: #021440;
      margin-bottom:46px;
      font-size: 19px;
      letter-spacing: 0;
      text-align: center;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
    }

    .faq-item input {
      display: none;
    }

    .faq-item label {
      display: block;
      padding:25px 15px;
      /* font-weight: bold; */
      cursor: pointer;
      position: relative;
      color: #021440;
      font-size: 19px;
      background-color: #eff3ff;
      margin-bottom: 4px;
    }

    .faq-item label::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 25px;
      font-weight: 500;
      transition: transform 0.3s;
    }

    .faq-item input:checked + label::after {
      content: "-";
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 15px;
      color: #555;
      background: #f9f9f9;
    }


    .faq-content p {
      /* margin: 15px 0; */
      font-size: 16px;
      line-height: 1.6;
    }

    .faq-item input:checked ~ .faq-content {
      max-height: 200px;
      padding: 15px;
       background-color: #f9fafeec;
       margin-bottom: 4px;
       margin-top: -7px;
       border-top: none;
       box-shadow: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      
        h2{
            font-size: 2.5rem;
        }

      .faq-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
      }
      .faq-container {
        max-width: 100%;
      }
      .faq-right{
        margin-top: 0;
      }
    }





       

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .action-tabs {
                flex-wrap: wrap;
                gap: 20px;
            }

            .tab-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    