:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://source.unsplash.com/random/1600x900/?therapy,counseling') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 4px 0;
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.slot-available {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.slot-unavailable {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-decoration: line-through;
}

.slot-booked {
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.appointment-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.qr-code {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
}
  .profile-image1 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 5px solid #bdc4c9; */
}

.testimonial-card {
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    margin-bottom: 30px;
}

.user-menu {
    display: none;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-panel {
    display: none;
}

.member-dashboard {
    display: none;
}

.public-content {
    display: block;
}

.stats-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
}

.stats-card.primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.stats-card.success {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.stats-card.warning {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.stats-card.danger {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.day-schedule {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.question-card {
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
}

/* Testimonials Carousel Styles */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.testimonials-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background-color: var(--secondary-color);
    width: 14px;
    height: 14px;
}

.dot:hover {
    background-color: var(--secondary-color);
}

