 @import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body{
        font-family: 'Urbanist', sans-serif;
}
 
 
 /* 1 section css */

#first{
    padding: 90px 8px;
}
 .fa-stop{
    font-size :9px;
    color: orangered;
}

.about h1{
font-size: 55px;
font-weight: bold;
 line-height: 1.3;
}


/* CTA section css */
.CTA{
     background-image: linear-gradient(to right, #FF9C00, #ED5E5D);
     padding: 160px 10px;
     margin-bottom: 20px;
     color: white;
}
.CTA h1{
    font-weight: 800;
    font-size: 31px;
}
.CTA p{
      font-style: italic;
      font-size: 20px;
      padding: 10px 0;
}


.btn-div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-div .b2{

 padding: 16px 60px;
    border-radius: 0;
    text-decoration: none;

}


.b2 {
 
 border: unset;
 border-radius: 15px;
 color: #f1f1f1;
 z-index: 1;
 background: transparent;
 position: relative;
 font-weight: 1000;
 font-size: 20px;
 font-weight: 900;
 /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 /* box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 transition: all 250ms;

 overflow: hidden;
 border: 1px solid white;
}

.b2::before {

     border: 1px solid white;
 content: "";
 position: absolute;
 top: 0;
 left: -100%;
 height: 100%;
 width: 0;
 /* border-radius: 335px; */
 background-color: white;
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 /* transition: all 1600ms */
 transition: all 0.5s;
}

.b2:hover {
 color: #212121;
}

.b2:hover::before {
 width: 100%;

 left: 0;
}






/* books section css card */

.booksection{
    /* background: #e7e6e6; */
    padding: 10px;
    text-align: center;
     cursor: pointer;
    
}
.bookimg{
    text-align: center;
    /* background: #000; */
    /* height: 280px;
    width: 230px; */
    padding: 10px;
    margin: 10px 0;
}
.bookimg img{
    height: 280px;
    width: 200px;
    object-fit: cover;
    box-shadow:  rgba(0, 0, 0, 0.35) -15px 25px 40px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}
/* bookbtn1 */
.booksection .bookbtn1{
    
    margin-top: -30px !important;
    margin-bottom: 40px !important;
    z-index: 999;
    position: relative;
    top: 0;
    margin: 0 auto;
    width: 130px !important;
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;


    background: #ffffff;
}
.booksection h1{
    font-size: 19px;
    font-weight: 800;
    line-height: 28px;
}
.booksection:hover h1{
   
    color: #F3623F;
}
.booksection p{
   margin-top: 25px;
   margin-left: 8px;
   margin-right: 8px;
    margin-bottom: 45px;
    font-size: 15px;
}



.b3{
  position: relative;
  background-image: linear-gradient(to right, #FF9C00, #eb9203, #ED5E5D);
  /* background: linear-gradient(to right, #6366f1, #a855f7); */
  background-size: 200% 100%;
  background-position: 100% 0;
  color: white;
  padding: 6px 30px;
    border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  transition: background-position 0.5s ease;
   font-size: 18px;
   
    font-weight: bold;
}

.b3:hover {

  background-position: 0 0;
   background: #F0604D;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;

}




/* responsive 1000px */
 @media only screen and (max-width: 1000px){
 

}



/* mobile responsive */
 @media only screen and (max-width: 600px){
 .btn-div{
    flex-direction: column;
}
.CTA{
    width: 100%;
    overflow: hidden;
}
.CTA h1{
  font-size: 24px !important;
}
}





/* fill style buttons css */


    .chip {
      background: #fff;
      border: 1px solid #ccc;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .chip:hover {
      background: #f4f4f4;
    }

    /* Filter buttons */
    .filter-buttons button {
      border: none;
      font-weight: 900 !important;
      background: transparent;
      /* background: #f4f4f4; */
      padding: 10px 20px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      transition: 0.3s;
      color: #333;
    }
.filter-buttons button:hover{
    color: #7C7A7F;
}
    .filter-buttons button.active {
      background: #3d3b46;
      color: #fff;
    }

    /* Mobile filter list */
    .mobile-filter {
      display: none;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 15px;
    }

    .mobile-filter button {
      border: none;
      background: transparent;
      font-weight: 600;
      font-size: 16px;
      text-align: left;
      cursor: pointer;
      color: #222;
      padding: 5px 0;
    }

    .mobile-filter button.active {
      text-decoration: underline;
    }

    /* Responsive: hide desktop filters on mobile */
    @media (max-width: 768px) {
      .filter-buttons {
        display: none;
      }
      .mobile-filter.show {
        display: flex;
      }
    }

    /* Content styling */
    .item {
      display: none;
    }
    .item.show {
      display: block;
    }


     #selectedTags {
      /* background: #e3e3e3; */
      padding: 15px;
      display: none;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }




/* footer form css */
    .formdiv h1{
        font-size: 26px;
        font-weight: bold;
}

.formdiv span{
  
 color: #01928B;
/* 
 color:#01928B; */
}


.ctabtn{
        display: inline-block;
        margin-top: 10px;
        
      background: linear-gradient(45deg, #37B4AA,  #01928B);
        /* background: #9EB62A; */
        /* background: #A9BE42; */
        text-decoration: none;
        color: white;
        padding: 10px 30px;
        font-weight: 700;
        
}
   
.ctabtn:hover{ transition: none;
    opacity: 0.8;
        background: #01928B;
        color: white;
}
