/* Page-specific: Hero animation, stat numbers, and full‑image hero */
.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    animation: heroPulse 3s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}
.hero-gradient-text {
    background: linear-gradient(135deg, #5b3cc4, #4da8f0, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== NEW HERO WITH FULL BACKGROUND IMAGE & WHITE OVERLAY ===== */
.hero-full-image {
    position: relative;
    background-image: url(/images/c1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin: 0 20px;          /* 20px left/right padding for the whole page */
    overflow: hidden;
}

/* White gradient overlay on the left side (text area) */
.hero-full-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;              /* covers the text column area */
    height: 100%;
    pointer-events: none;    /* allows clicking through to buttons */
    z-index: 1;
}

/* Ensure text content is above the overlay */
.hero-full-image .container {
    position: relative;
    z-index: 2;
}

/* Adjust text color on hero for better readability */
.hero-full-image .text-muted {
    color: #2d3e50 !important;
    font-weight: 500;
}

.hero-full-image .hero-gradient-text {
    background: linear-gradient(135deg, #4da8f0,#5b3cc4 ,#5b3cc4);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Add 20px body padding as requested */


/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-full-image::before {
        width: 100%;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    body {
        padding: 12px !important;
    }
    .hero-full-image {
        margin: 0 12px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.7rem;
    }
    body {
        padding: 8px !important;
    }
    .hero-full-image {
        margin: 0 8px;
    }
}


/* =========================
   REVIEW SECTION
========================= */

.glossy-reviews-section{
    padding:60px 20px;
}

.reviews-hero-container{
    max-width:1400px;
    margin:auto;
    background:linear-gradient(
        135deg,
        #5b3cc4
        #5b3cc4
        #5b3cc4
    );
    border-radius:30px;
    padding:30px;
    border:1px solid rgba(139,92,246,.3);
}

.review-top-layout{
    display:grid;
    grid-template-columns:250px 1fr 220px;
    gap:20px;
    margin-bottom:25px;
}

.rating-summary-box,
.review-form-box,
.rating-selector-box{
    background:rgba(20,25,48,.75);
    border:1px solid rgba(139,92,246,.3);
    border-radius:20px;
    padding:20px;
}

.rating-summary-box{
    text-align:center;
}

.big-rating{
    font-size:60px;
    font-weight:800;
    background:linear-gradient(135deg,#38bdf8,#8b5cf6);
    -webkit-background-clip:text;
    color:transparent;
}

.rating-summary-box h2,
.rating-summary-box p,
.rating-selector-box h5{
    color:white;
}

.review-form-box{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.review-form-box input,
.review-form-box textarea{
    width:100%;
    background:#242b42;
    border:none;
    border-radius:15px;
    color:white;
    padding:15px;
}

.review-form-box textarea{
    height:120px;
    resize:none;
}

.star-rating{
    display:flex;
    gap:8px;
}

.star{
    font-size:35px;
    color:#555;
    cursor:pointer;
    transition:.3s;
}

.star.active{
    color:#ffd700;
}

.rating-selector-box{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:20px;
}

#submitReviewBtn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:15px;
    background:linear-gradient(
        135deg,
        #3b82f6,
        #6366f1,
        #8b5cf6
    );
    color:white;
    font-weight:700;
    cursor:pointer;
}

.reviews-scroll-area{
    height:450px;
    overflow-y:auto;
    padding-right:10px;
}

.reviews-scroll-area::-webkit-scrollbar{
    width:8px;
}

.reviews-scroll-area::-webkit-scrollbar-thumb{
    background:#8b5cf6;
    border-radius:20px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.review-card{
    background:rgba(18,22,45,.9);
    border-radius:20px;
    padding:20px;
    border:1px solid rgba(139,92,246,.3);
}

.review-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.category{
    background:rgba(56,189,248,.2);
    color:#90e0ff;
    padding:4px 12px;
    border-radius:20px;
    font-size:12px;
}

.stars{
    color:#ffd700;
}

.review-text{
    color:#e2e8f0;
    margin-bottom:20px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:linear-gradient(135deg,#38bdf8,#8b5cf6);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-weight:700;
}

.review-user h4{
    color:white;
    margin:0;
}

.review-user span{
    color:#94a3b8;
}

@media(max-width:992px){

    .review-top-layout{
        grid-template-columns:1fr;
    }

    .reviews-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .reviews-grid{
        grid-template-columns:1fr;
    }
}   

.profile-photo{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.avatar{
    width:45px;
    height:45px;
    overflow:hidden;
}