/*Header use css*/
/* Background Gradient */
.hero-section {
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#4f46e5 0%,#7c3aed 35%,#06b6d4 100%);
    overflow: hidden;
    position: relative;
}

    /* Decorative Circles */
    .hero-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        top: -120px;
        left: -120px;
        filter: blur(10px);
    }

    .hero-section::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        bottom: -100px;
        right: -100px;
        filter: blur(10px);
    }

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* Glass Image */
.glass-image {
    display: inline-block;
    padding: 20px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

    .glass-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 20px;
        transition: .4s;
    }

        .glass-image img:hover {
            transform: scale(1.05);
        }

/* Button */
.btn-warning {
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255,193,7,.4);
    transition: .3s;
}

    .btn-warning:hover {
        transform: translateY(-4px);
    }

/* Mobile */
@media(max-width:991px) {
    .hero-section {
        text-align: center;
        padding: 70px 0;
        min-height: auto;
    }

    .glass-card {
        margin-bottom: 30px;
    }

    .display-2 {
        font-size: 3rem;
    }
}

/*about use css*/

.about-section {
    background: #f8f9fa;
}

.about-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-img img {
    transition: .4s;
}

    .about-img img:hover {
        transform: scale(1.03);
    }

.feature-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    font-weight: 600;
    transition: .3s;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(13,110,253,.15);
    }

.about-section h2 {
    color: #212529;
}

.about-section p {
    line-height: 1.9;
}

/*feature*/
.why-choose {
    background: #f8fafc;
}

.section-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
   
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(13,110,253,.15);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

.why-choose img {
    border-radius: 20px;
    transition: .4s;
}

    .why-choose img:hover {
        transform: scale(1.03);
    }

.services-section {
    background: #f8fafc;
}

.section-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(13,110,253,.18);
    }

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.service-content {
    padding: 25px;
    text-align: center;
}

    .service-content h5 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-content p {
        color: #6c757d;
        line-height: 1.7;
        min-height: 80px;
    }

    .service-content .btn {
        padding: 8px 25px;
    }


.testimonial-section {
    background: #f8fafc;
}

.section-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    margin: 15px;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(13,110,253,.18);
    }

.stars {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card p {
    color: #6c757d;
    line-height: 1.8;
    min-height: 130px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .client-info img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid #0d6efd;
    }

    .client-info h5 {
        margin-bottom: 4px;
        font-weight: 700;
    }

    .client-info span {
        color: #6c757d;
    }

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
}