/* industries */

section.industires .catg-card .new-img{
    height: 320px;
    object-fit: cover;
    object-position: 70%;
    border-radius: 10px 10px 0 0;
    transition: .3s ease-in-out;
}
section.industires .catg-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}
section.industires .catg-card{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
section.industires .catg-card .cont{
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5),rgba(0,0,0,.8));
    position: absolute;
    bottom: -30px;
    left: 0;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    transition: .5s ease-in-out;
}
section.industires .catg-card .cont span{
    color: var(--white-color);
}
section.industires .catg-card .line{
    height: 1px;
    width: 20%;
    background: #fff;
    transition: .5s ease-in-out;
    margin: 10px 0;
    border-radius: 50%;
}
section.industires .catg-card:hover .cont{
    bottom: 0;
}
section.industires .catg-card:hover .line{
    width: 100%;
}
section.industires .catg-card:hover .new-img{
    transform: scale(1.1);
}

.head{
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.head h2{
    color: var(--heading-color);
    font-size: 28px;
}
.head p{
    color: var(--black-color);
    font-size: var(--f15);
    width: 70%;
    text-align: center;
}

@media (max-width: 980px){
    section.industires .col-3{
        width: 50%;
    }
}

@media (max-width: 540px){
    section.industires .col-3{
        width: 100%;
    }
}


section.service-card-sec{
    background: #f8f8f8;
}
section.service-card-sec .service-card-img img{
    width: 100%;
    border-radius: 20px;
    height: 420px;
    object-fit: cover;
    object-position: left;
    position: sticky;
    top: 110px;
}
section.service-card-sec .main-btn{
    max-width: max-content;
}
section.service-card-sec .service-card {
    border: 1px solid #c8c2c266;
    transition: all 0.3s;
    border-radius: 20px;
    display: flex;
    padding: 20px;
    background: #fff;
}

section.service-card-sec .service-card-cont{
    
    padding: 20px;
}

section.service-card-sec .service-card-cont h2{
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
section.service-card-sec .service-card-cont h2::before{
    content: '';
    position: absolute;
    width: 40%;
    height: 3px;
    bottom: -10px;
    border-radius: 20px;
    background: var(--btn-color);
}
section.service-card-sec .row{
    gap: 25px;
    justify-content: center;
}
section.service-card-sec .col-12{
    width: 100%;
}
section.service-card-sec .service-card-cont ul{
    padding-left: 30px;
}
section.service-card-sec .service-card-cont li{
    list-style: disc;
}
section.service-card-sec .service-card-cont p{
    margin-bottom: 10px;
    font-size: 15px;
    opacity: .8;
}

#more, #more1, #more2 {
    display: none;
}

button#myBtn1,button#myBtn2,button#myBtn {
    border: none;
    width: 30%;
    border-radius: 20px;
    height: 50px;
}

.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
   display: none;
}

.add-read-more.show-more-content .read-more {
   display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
   font-weight: bold;
   margin-left: 2px;
   color: #8776ff;
   cursor: pointer;
}

.add-read-more{
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}


.review-btn{
    position: fixed;
    top: 50%;
    right: -50px; 
    z-index: 99;
    transform: rotate(90deg);
}
form#servicesForm{
    padding: 1rem;
}
form#servicesForm .form{
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px;
}
form#servicesForm button{
    border: none;
    background: var(--main-bg);
    color: var(--white-color);
    padding: 8px;
}

@media (max-width: 980px){
    section.service-card-sec .col-4{
        width: 100%;
    }
    section.service-card-sec .service-card {
        flex-direction: column;
    }
    section.service-card-sec .service-card-cont{
        width: 100%;
    }
    section.service-card-sec .service-card-img img{
        height: auto;
    }
}
@media (max-width: 540px){
    section.service-card-sec .col-4{
        width: 100%;    
    }
}