
        /* Attractive Testimonials Styles */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 3rem;
    color: #f39c12;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    color: #2c3e50;
}

.author-info span {
    color: #777;
    font-size: 0.95rem;
}

/* Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.testimonial-stat {
    text-align: center;
}

.stars {
    font-size: 1.8rem;
    color: #f1c40f;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
}

.number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

        .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.guruji-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
}


/* ----Marquee text--- */

/* Scrolling Text */
.astro-marquee {
    width: 100%;
    background:linear-gradient(135deg, rgb(26, 10, 10) 0%, rgb(139, 0, 0) 30%, rgb(90, 0, 0) 60%, rgb(26, 10, 10) 100%);
    color: #333;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: relative;
    white-space: nowrap;
    box-sizing: border-box;
}

.astro-marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: astroScroll 30s linear infinite;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.astro-marquee:hover .astro-marquee-content {
    animation-play-state: paused;
}

@keyframes astroScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .astro-marquee {
        padding: 10px 0;
    }

    .astro-marquee-content {
        font-size: 15px;
        animation-duration: 24s;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .astro-marquee {
        padding: 8px 0;
    }

    .astro-marquee-content {
        font-size: 14px;
        animation-duration: 20s;
    }
}

.btn-view1{

display:flex;
align-items:center;
justify-content:center;
gap:8px;

background:#ffd700;
color:#111;

padding:12px 18px;

border-radius:30px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-view1:hover{

background:#fff;

color:#000;

transform:translateY(-2px);

box-shadow:0 10px 20px rgba(0,0,0,.2);

}