
  * {
     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 */
      
   
.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;
}



    /* how it work */

    .how-it-works-section {
         background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 55px 0px;
            text-align: center;
        }

        .how-it-works-section h2 {
    
            font-weight: bold;
            margin-bottom: 80px;
            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: 800;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .step-title {
            font-size: 19px;
            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-container {
            max-width: 1170px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.025em;
        }

        .section-title h2 {
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
            letter-spacing: -0.025em;
        }

        .section-title p {
            font-size: 18px;
            /* color: #666; */
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .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;
    text-align: left;
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1e293b;
    font-family: "PublicSans-Bold", sans-serif;
        }


    

        .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-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: #021440;
}


.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: 3.1rem; */
      font-weight: bold;
      margin-bottom: 0px;
      /* color: rgb(33, 59, 85); */
      padding-top: 0;
      text-align: center;
    }

    .faq-header p {
      /* color: rgba(33, 59, 85, 0.953); */
      margin-bottom:46px;
      font-size: 19px;
      letter-spacing: 0;
      text-align: center;
      margin-top: 10px;
    }

    .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: #434e5c;
      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;
            }
        }
    