
  * {
     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;
            letter-spacing: -0.025em;
        }

        p {
            margin: 0;
            font-size: 1.2rem;
            font-family: "inter_18pt-Regular";
            color: #434e5c;
        }



 H2 span{
    font-size: 3rem;
    color: #0047bb;
    font-weight: 900;
    }
   
        /* Hero Section */


        /* 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;
        }

        .section-title h2 {
            /* font-size: 36px; */
            font-weight: 700;
            /* color: #2c3e50; */
            margin-bottom: 15px;
            text-align: center;
        }

        .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: 21px;
            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-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: #021440;
            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);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .testimonial-text {
            /* color: #666; */
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e9ecef;
        }

        .author-info h4 {
            font-weight: 600;
            /* color: #2c3e50; */
            margin-bottom: 5px;
        }

        .author-info p {
            /* color: #666; */
            font-size: 14px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            color: white;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background: white;
            color: #ff6b35;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        


       /*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: -0.025em;
    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: 3rem; */
      font-weight: bold;
      margin-bottom: 15px;
      /* 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: 21px;
      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;
      }
      .faq-container {
        max-width: 100%;
      }

    }





       

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

        
            .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;
            }
        }
    