/* head line-sec */
.headlines {
    height: 36px;
    background: linear-gradient(90deg, var(--safron), var(--safron), #ff6f00);
    color: var(--white);
}
.headlines .headerClr {
    background: linear-gradient(90deg, var(--green), var(--green), var(--green), var(--safron), var(--safron), #ff6f00);
}
.headlines .headlines-partOne {
    height: 38px;
    background-color: var(--green);
    position: relative;
}
.headlines-partOne::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0px;
    left: 99%;
    border-top: 20px solid var(--green);
    border-bottom: 20px solid transparent;
    border-left: 9px solid var(--green);
    border-right: 9px solid transparent;
    z-index: 2;
}
.headlines .headlines-partTwo .headlines-info {
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}
.headlines .headlines-partTwo {
    overflow: hidden;
    height: 34px;
    background: linear-gradient(90deg, var(--safron), #ff6f00);
}
.headlines .headlines-partTwo .headlines-info a{
    color: #07441cfa;
    text-decoration: underline !important;
    font-weight: 700;
}
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/*  hero-section */
.hero-sec{
    padding: 60px 0;
    background: var(--green);
    color: var(--white);
}
.hero-sec h1{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}
.hero-sec p{
    font-size: 18px;
    line-height: 28px;
}
.hero-sec .button-part {
    margin-top: 50px;
}

.hero-sec .button-part .bring-services-btn:hover{
    color: var(--safron);
    background: var(--white);
}
.hero-sec .poster-slides .carousel-item{
    border:3px solid var(--safron);
    border-radius: 24px;
    overflow: hidden;
}
/* about sec */
.about-sec{
    padding: 60px 0px;
}
.about-sec .ceo-img{
    border-radius: 50%;
    background: #9e9e9e0d;
    width: 444px;
}
.about-sec .ceo-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.about-sec .ceo-details h3{
    color: var(--safron);
    position: relative;
}
.about-sec .section-heading{
    color: var(--safron);
    margin-bottom: 54px;
}
.about-sec .section-heading span{
    color: var(--green);
}
.about-sec .ceo-details h3::before{
    position: absolute;
    content: " ";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: var(--green);
    bottom: 30%;
    left: 0;
}
.about-sec .about h3{
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--dark-green);
}
/* .about-sec .about h3::before{
    content: "|";
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
    color: var(--safron);
} */
.about-sec .about p{
  font-size: 20px;
}
.about-sec .about .button-part{
    margin-top: 40px;
}
.about-sec .about .button-part a{
    background-color: var(--green);
    border:3px solid var(--green);
}
.about-sec .about .button-part a:hover{
    color: var(--green);
    background: var(--white);
}
/* stats section */
.stats-sec{
    padding: 60px 0px;
    background: rgb(228 245 235 / 77%);
}
.stats-sec .section-heading{
    text-align: center;
    color: var(--dark-safron);
    width: 100%;
}
.stats-sec .section-heading::after{
    background: none;
}
.stats-sec  .info{
    font-size: 24px;
    text-align: center;
}
.stats-sec .card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 40px 0px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
.stats-sec .card:hover{
    box-shadow: 1px 0px 4px 1px #b4908d;
    transform: translateY(-10px);
}
.stats-sec .count{
    font-size: 52px;
    font-weight: 600;

}
.stats-sec .name{
    font-size: 24px;
}
.stats-sec .centers{
    background:var(--safron);
    color: var(--white);
}
.stats-sec .schemes{
    background: var(--green);
    color: var(--white);
}
.stats-sec .centers:hover{
    color: var(--safron);
    background: var(--white);
}
.stats-sec .services:hover{
 
    background:#1E3A8A;
    background: radial-gradient(var(--safron), var(--green));
    background: #00000006;
    /* color: var(--white); */
}
.stats-sec .schemes:hover{
    background: var(--white);
    color: var(--green);
}
/*  services-section */
.services-sec{
    padding: 60px 0;
}
.services-sec .section-heading{
    color: var(--dark-green);
}
.services-sec .info{
    margin: 20px 0px;
    font-size: 18px;
}
.services-sec .card{
    border-radius: 12px;
    height: 100%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.services-sec .card:hover{
    box-shadow: 1px 0px 4px 1px #b4908d;
    transform: translateY(-10px);
}
.services-sec .card .card-top{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: linear-gradient(138deg, #dd7747, #01c144);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.services-sec .card-body .card-title{
    color: var(--safron);
    font-weight: 600;
}
.services-sec .card img{
    width: 110px;
}
.services-sec .button-part{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.services-sec .button-part a:hover{
    background-color: var(--white);
    color: var(--safron);
}
/* joinus-section */
.joinus-now{
    padding: 24px 0;
    background: #9e9e9e1f;
}
.join-us{
    border-radius: 8px;
    display: flex;
    padding: 20px 0px;
    color: var(--white);
    justify-content: space-around;
    align-items: center;
    background: linear-gradient( 201deg, var(--dark-green),var(--green));
}
.join-us h2{
    font-size: 36px;
}
.joinus-now .register-btn a{
  color: var(--white);
  background: var(--safron);
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid var(--safron);
  transition: all 0.5s ease-in-out;
}
.joinus-now .register-btn a:hover{
    background: #ffffff0d;
}
/*  schemes */
.bharatone-schemes{
    padding: 60px 0;
}
.bharatone-schemes .section-heading{
    color: var(--safron);
}
.bharatone-schemes .card{
    border: 0;
    box-shadow: 0px 0px 4px 0px #b2aba8;
}
.bharatone-schemes .card .card-title{
    font-size: 24px;
    color: var(--safron);
}
.bharatone-schemes .card .card-body a{
    background: var(--safron);
    padding: 10px 20px;
    color: var(--white);
    border-radius: 6px;
    border: 2px solid var(--safron);
    transition: all 0.5s ease-in-out;
}
.bharatone-schemes .info{
    font-size: 18px;
}
.bharatone-schemes .card .card-body a:hover{
    color: var(--safron);
    background: var(--white);
}

/*  Responsive ness */
@media screen and (max-width:1199px) {
/* about us section */
.about-sec .ceo-img{
    width: 375px;
}

        /* join us section */
        .join-us h2 {
            font-size: 26px;
        }
        .joinus-now .register-btn a{
            font-size: 18px;
        }
    
}

@media screen and  (max-width:991px) {
    .hero-sec .poster-slides{
        margin-top: 50px;
    }
    /*  about us section */
    .about-sec .ceo-img{
        width: auto;
    }
    /* join us section */
    .join-us h2 {
        font-size: 18px;
    }
    .joinus-now .register-btn a{
        font-size: 14px;
    }

}

@media screen and (max-width:767px) {
    /*  hero section */
    .hero-sec{
        padding: 30px 0px;
    }
    .hero-sec h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }
    .hero-sec p{
        font-size: 16px;
        line-height: 24px;
    }
      .hero-sec .button-part {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    /* about section */
    .about-sec .about h3 {
        margin-bottom: 15px;
        font-size: 24px;
    }
    .about-sec .about p {
        font-size: 16px;
    }
    /* services */
    .services-sec .info, .bharatone-schemes .info {
        font-size: 16px;
    }
    /* join us */
    .join-us{
        flex-direction: column;
        justify-content:center ;
        gap: 15px;
    }
    .join-us h2 {
      text-align: center;
    }
}

@media screen and (max-width:575px) {
    .hero-sec, .about-sec{
        padding: 30px 0px;
    }
    /*  hero section */
    .hero-sec h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    
}