/* services.css */
.hero-sec {
    padding: 60px 0;
    background: url('../assets/images/services/services-hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(131deg, var(--safron), var(--green));
}
.hero-sec .content {
    padding: 0 10px;
}
.hero-sec h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-green);
    color: #e4ffed;
}
.hero-sec p{
    color: #22312a;
    color: #ffffffc4;
}
.hero-sec .hero-text {
    font-size: 16px;
    color: var(--black);
    line-height: 1.8;
    margin: 30px 0;
    text-align: justify;
    max-width: 95%;
}
.hero-sec .img-fluid {
    border: 3px solid var(--safron);
    border-radius: 8px;
}
.hero-sec .button-part{
    margin-top: 40px;
}
.button-part a {
    background: var(--safron);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 22px;
    border: 2px solid var(--safron);
    transition: all 0.5s ease-in-out;
}
.button-part a:hover{
    background-color: var(--white);
    color: var(--safron);
}
/* service cards */
.services{
    padding: 50px 0px;
}
.service{
    box-shadow: 0 0 5px -1px #ad8471;
    padding: 5px;
    border: 2px solid #e3aa8f;
    border-radius: 12px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.service:hover{
    color: var(--white);
    background-color: var(--safron);
    transform: translateY(-10px);
    box-shadow: 0px 4px 12px -1px rgb(0 0 0 / 52%);
}
.service img{
    transition: all 0.3s ease-in-out; 
}
.service:hover img{
    background-color: var(--white);
    border-radius: 50%;
    padding: 3px;
}
.service img{
    width: 80px;
}
.service h3{
    font-size: 22px;
}
.government-sec, .rto-sec, .insurance-sec, .income-tax-sec {
    padding: 50px 0;
}
.government-sec {
    background: var(--bg-light-white);
}
.rto-sec {
    background: var(--light-white);
}
.insurance-sec {
    background: var(--bg-light-white);
}
.income-tax-sec {
    background: var(--light-white);
}
.category-card {
    border: 2px solid var(--green);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
}
.card-top .logo-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: contain;
}
.card-title {
    font-size: 24px;
    color: var(--dark-safron);
}
.card-text {
    font-size: 14px;
    color: var(--black);
}
.round-card {
    border: 2px solid var(--green);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.round-card .card-top {
    margin-bottom: 5px;
}
.card-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-text-wrapper .card-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
}
.round-card .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}
/* .joinus-now {
    background: var(--green);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.joinus-now h2 {
    font-size: 32px;
    margin-bottom: 20px;
} */

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .hero-sec h1 {
        font-size: 36px;
    }
    .hero-sec .hero-text {
        font-size: 14px;
        margin: 20px 0;
    }
    .round-card {
        width: 100px;
        height: 100px;
    }
    .round-card .logo-icon {
        width: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 767px) {
    .hero-sec {
        padding: 40px 0;
    }
    .hero-sec h1{
        font-size: 28px;
    }
    .hero-sec .hero-text {
        text-align: center;
        margin: 15px 0;
    }
    .hero-sec .img-fluid {
        margin-top: 20px;
    }
    .card-text-wrapper .card-text {
        font-size: 12px;
    }
}
@media screen and (max-width:575px) {
    .hero-sec h1{
        font-size: 22px;
    }
    .button-part a {

        font-size: 18px;

    }
    
}