body {
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
    background-color: #f9f9f9; 
}
a {
    text-decoration: none;
    color: inherit;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px; 
    font-size: 1rem;
    margin: 10px 20px; 
    border-radius: 14px;
    background-color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px; 
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 20px; 
}
.nav-item {
    padding: 5px 0;
    transition: color 0.3s;
}
.nav-item:hover {
    color: #007bff; 
}
.navbar button{
    padding: 8px 15px; 
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.navbar button:hover {
    background-color: #007bff; 
    color: #ffffff;
}
.png{
    padding: 2px;
    height: 40px; 
    width: auto; 
}

:root {
    --primary-purple: #4F46EF;
    --primary-blue: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #4F46EF 0%, #9333ea 100%);
    --star-active: #facc15;
    --star-default: #cbd5e1;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    margin: 0; padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
}

/* NAVBAR Fix */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 20px; margin: 10px 20px 40px;
    border-radius: 14px; background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-left { display: flex; align-items: center; gap: 15px; }
.nav-item { text-decoration: none; color: inherit; font-size: 1rem; }
.png { height: 40px; width: auto; }


.review-page {
    display: flex; justify-content: center; align-items: center;
    padding: 40px 20px;
}

.review-wrapper {
    width: 100%;
    max-width: 560px; 
}

.review-card {
    background: var(--card-bg);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
}

.review-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 10px;
}


.stars { display: flex; justify-content: center; gap: 15px; margin: 20px 0; }
.stars i {
    font-size: 2.8rem;
    color: var(--star-default);
    cursor: pointer;
    transition: 0.3s;
}
.stars i.active, .stars i:hover {
    color: var(--star-active);
    transform: scale(1.15);
}

.input-section { text-align: left; margin: 25px 0; }
.input-section label { font-weight: 600; display: block; margin-bottom: 10px; }

textarea {
    width: 100%; height: 140px; padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 18px; font-family: inherit;
    resize: none; outline: none; box-sizing: border-box;
}
textarea:focus { border-color: var(--primary-purple); }

.action-buttons { display: flex; flex-direction: column; gap: 15px; }

.btn-primary {
    background: var(--primary-gradient);
    color: white; border: none; padding: 18px;
    border-radius: 15px; font-weight: 700; font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 10px; transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(79, 70, 239, 0.3); }

.btn-secondary {
    text-decoration: none; color: var(--text-muted);
    font-weight: 600; display: flex; align-items: center;
    justify-content: center; gap: 8px;
}


.wall-of-love { 
    max-width: 1400px; 
    margin: 90px auto; 
    padding: 0 40px; 
    text-align: center; 
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
    gap: 35px; 
    margin-top: 50px;
}

.review-card-display {
    background: white; 
    padding: 35px;
    border-radius: 25px;
    border-bottom: 5px solid var(--primary-purple);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-align: left;
    transition: transform 0.3s ease;
}

.review-card-display:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


@media (max-width: 500px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card-display {
        padding: 25px;
    }
}

.modal-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none; 
    justify-content: center; align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white; padding: 40px; border-radius: 25px;
    width: 90%; max-width: 420px; text-align: center;
}

.modal-field {
    width: 100%; padding: 12px; margin: 10px 0;
    border-radius: 10px; border: 1px solid var(--border-color);
    box-sizing: border-box;
}



.footer { padding: 30px; text-align: center; background: #eee; margin-top: 50px; }

