
     @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 {
            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;
            color: #021440;
        }

        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";
        }



        .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 {
            background:radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
            padding: 70px 0;
        }
         .why-section .section-subtitle{
            font-size: 19PX;
            padding-bottom: 30px;
         }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .why-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: #0047bb;
             font-family: "PublicSans-Bold", sans-serif;
        }

        .why-text strong {
            font-size: 17px;
            font-weight: 600;
             color: #021440;
        }

        .why-text p {
            /* color: var(--text-gray); */
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .benefit {
            padding: 1.5rem;
            background: white;
            /* border-radius: var(--radius); */
            /* border-left: 4px solid var(--accent); */
            border: 1px solid blue;
        }

        .benefit:hover{
            background: #0047bb;
            color: #ffffff;
        }

        .benefit-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color:#021440;
            font-size: 16px;
        }
         .benefit:hover  .benefit-title{
            color: #ffffff;
         }

        .benefit-desc {
            font-size: 1rem;
        }

        .benefit:hover .benefit-desc{
            color: #ffffff;
        }

         .bbp-btn {
            margin-top: 30px;
            text-align: center;
    }
        .bbp-btn a {
            display: inline-block;
            padding: 15px 44px;
            background: #0047bb;
            color: #fff;
            font-size: 1.3rem;
            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;
        }





  /* Action Section */
        .action-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .action-container {
            max-width: 1170px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

         .action-container h2{
            /* text-align: center; */
         }
          .action-container p{
            text-align: center;
          }
        .action-tabs {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            border-bottom: 1px solid #e9ecef;
            background:#edf4ff;
        }

        .tab-button {
            font-family: "PublicSans-Bold";
            background: none;
            border: none;
            padding: 19px 5px;
            font-size: 19px;
            font-weight: 500;
            /* color: rgb(33, 59, 85); */
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .tab-button.active {
            color: #005aeb;
            border-bottom-color: #005aeb;
        }

       .tab-content {
        display: flex;
        opacity: 0;
        transform: translateY(20px);
        height: 0;
        overflow: hidden;
       transition: 0.6s ease;
       gap: 60px;
       }

     .tab-content.active {
      opacity: 1;
       transform: translateY(0);
       height: auto;
     }



        .tab-text {
         width: 50%;
         opacity: 0;
         transform: translateX(-30px);
          transition: 0.6s ease;
        }

        .tab-content.active .tab-text {
         opacity: 1;
         transform: translateX(0);
           }


        .tab-text h3 {
            font-size: 25px;
            font-weight: 700;
            /* color: #2c3e50; */
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .tab-text p {
            /* color: #666; */
            margin-bottom: 25px;
            line-height: 1.6;
            text-align: left;
        }

         .action-section .action-container .feature-list {
            list-style: none;
            gap: 10px;
        }

       .action-container .feature-list li {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 20px;
            color: #434e5c;
            font-size: 1.2rem;
        }

       .action-container .feature-list li::before {
            content: "✓";
            color: #2e6cfc;
            font-weight: bold;
        }

        .tab-image {
            width: 50%;
            text-align: right;
            opacity: 0;
            transform: translateX(30px);
            transition: 0.6s ease;
            margin: auto;
        }
        .tab-content.active .tab-image {
  opacity: 1;
  transform: translateX(0);
}

        .tab-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            /* box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
        }

    .section-title {
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.025em;
}



  .features-glance{

    padding: 64px 20px;
    color: #0f1724;
  }

  .features-glance .container{
    margin: 0 auto;
  }

  .fg-section{
    text-align: center;
    margin-bottom: 28px;
  }

  .fg-section h2{
    /* font-size: 2.5rem; */
    margin: 0 0 8px;
    font-weight: 700;
    color: #071337;
    text-align: center;
  }

  .fg-sub{
    margin: 0;
    font-size: 19px;
    text-align: center;
  }

  .features-grid{
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .feature-card{
    padding: 18px;
    background: #002d77;
    border-radius: 10px;
  }

  .feature{
    display: flex;
    gap: 14px;
    align-items: center; 
    padding-bottom: 5px;
  }

   .feature-card:hover{
    box-shadow:0 7px 18px rgb(180 212 255 / 27%);
  }

  .feature .icon{
    min-width: 46px;
    min-height: 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background: linear-gradient(180deg, rgba(37,99,235,0.08), rgba(37,99,235,0.02));
    color: #ffffff;
  }

  .feature h3{
    font-family: "PublicSans-Regular";
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }

  .feature-card p{
    margin: 6px 0 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    padding-left: 60px;
  }




  .suited-section{
  background:radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
  padding:60px 20px;
  position: relative;
  overflow: hidden;
}



.suited-container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}
.suited-container h2{
  /* font-size:2.5rem; */
  font-weight:700;
  color:#0f1f35;
  margin-bottom:35px;
  text-align: center;
}
.suited-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.suited-tags span{
  display:inline-block;
  padding:14px 18px;
  font-size:16px;
  background:#eef3ff;
  border:1px solid #d8e1ff;
  border-radius:30px;
  color:#102a43;
  font-weight:500;
  transition:0.25s;
}
.suited-tags span:hover{
  background:#dfe9ff;
  border-color:#b9caff;
}



    
    /* Responsive */
  @media (max-width: 1024px){
    .features-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }

   @media (max-width: 960px){
   h2{
        font-size: 2.3rem;
        }

        H2 span {
        font-size: 2.3rem;
        }

        .tab-content{
            flex-direction: column;
        }

        .tab-text{
            margin: auto;
            width: 100%;
        }
   
  }

    @media (max-width: 768px){
        .why-content{
        grid-template-columns: 1fr;
        }
        .benefits{
        grid-template-columns: 1fr;
        }
        .action-tabs{
        
        }
        .tab-button{
        font-size: 16px;
        }
        .tab-content{
        grid-template-columns: 1fr;
        }
    }
  @media (max-width: 640px){
    .features-glance{
      padding: 40px 16px;
    }
    .fg-header h2{
      font-size: 22px;
    }
    .features-grid{
      grid-template-columns: 1fr;
    }
  }

@media (max-width: 480px) {

    h2{
        font-size: 2rem;
    }

        H2 span {
        font-size: 2rem;
    }   

    .why-section .section-subtitle{
        font-size: 16px;
    }
    .fg-sub{
        font-size: 16px;
    }

    .feature h3{
        font-size: 16px;
    }
    .tab-text h3{
        font-size: 24px;
    }
    .action-tabs{
        gap: 15px;
    }

    .suited-tags span{
        font-size: 14px;
    }
    .tab-button {
        font-size: 13px;
    }

  
}

