.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
}
.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    text-align : left !important;
}
.user-image {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
.reviewer-info {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 13px;
}
.reviewer-details {
    flex-grow: 1;
}
.reviewer-details strong {
    font-size: 15px;
    color: #333;
    display: block;
}
.reviewer-details .text-muted {
    font-size: 14px;
    color: #666;
}
.status-dots {
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: -5px;
}
.carousel-indicators {
    position: relative !important;
   /* Change this to 'relative' for better positioning */
   /* Adjust this value to control the vertical space below the testimonials */
    display: flex !important;
   /* Align indicators in a row */
    justify-content: center !important;
   /* Center the indicators horizontally */
    margin-top: 10px !important;
   /* Add some spacing above the indicators */
}
.carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #aaa !important;
    border: none !important;
    margin: 0 5px !important;
   /* Add some space between the dots */
    opacity: 1 !important;
}
.carousel-indicators .active {
    background-color: #007bff !important;
   /* Background color of active dot */
}
@media (max-width: 768px) {
    .testimonial-card {
        height: 350px;
        padding: 15px;
        margin: 10px 10px;
   }
    .review-text {
        font-size: 18px;
        text-align : left;
   }
    .user-image {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
   }
}
.google-maps-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007BFF;
   /* Parking blue */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.google-maps-button:hover {
    background-color: #0056b3;
   /* Darker blue on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.google-maps-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
   /* Light blue focus ring */
}
.cta-button {
    background-color: #0066cc;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #004da0;
}
.text-bold {
    font-weight: 600;
    color: #004da0;
}
.brand-stats {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}
#sticky-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #32BD7A;
    z-index: 2000;
    padding: 0px 0;
}
/* Button style */
#sticky-button {
    padding: 12px 20px;
    font-size: 18px;
    background-color: #32BD7A;
    text-decoration: none;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 10px !important;
    width: auto;
}
/* Hover effect for the button */
#sticky-button:hover {
    background-color: #895129;
    transform: scale(1.05);
}
/* Close icon style */
#close-button {
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 15px;
    margin-top: 2px;
    display: inline-block;
    line-height: 1;
}
/* Positioning the close button */
#sticky-container #close-button {
    position: absolute;
    top: 10px;
    right: 10px;
}
.carousel {
    border-radius: 8px;
}
.carousel-item {
    background-color: white;
    height: 400px;
   /* Increase height for desktop */
}
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
       /* Smaller height for mobile */
   }
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    position: absolute !important;
}
.carousel-indicators .active {
    background-color: #000;
}
img.carousel-img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.donation-btn.active {
    background-color: #0066CC;
    color: white;
}
.gap-2 {
    gap: 0.5rem;
}
/* Add to your existing CSS */
.filter-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.type-filter-dropdown {
    position: relative;
    min-width: 200px;
}

.type-filter-button {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
}

.type-filter-button:hover,
.type-filter-button.active {
    border-color: #87532F;
}

.type-filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #87532F;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.type-filter-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.type-filter-item:hover {
    background-color: #f8f8f8;
}

.type-filter-item:last-child {
    border-bottom: none;
}

.type-count {
    color: #666;
    font-size: 14px;
    margin-left: auto;
}

.clear-filters {
    background: #87532F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.clear-filters:hover {
    background: #87532F;
}
/* Alternative: Hide only the Leaflet link while keeping other attributions */
.leaflet-control-attribution a[title="A JS library for interactive maps"] {
    display: none !important;
}

.leaflet-left {
    z-index: 999 !important;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    gap: 5px !important;
}

/* Loading state - prevent scrolling only */
body.loading {
    overflow: hidden !important;
}

/* Hide page content initially until loader is done */
.map-container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container.loaded {
    opacity: 1;
}
            .marker-cluster-custom {
                background-color: rgba(41, 167, 70, 0.8);
                color: white;
                border-radius: 50%;
                text-align: center;
                font-weight: bold;
                font-size: 12px;
            }
            
            /* Full Page Loader Styles */
            .codoctor-loader {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: linear-gradient(135deg, #CBA46A 0%, #87532F 0%, #CBA46A 100%);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 9999;
                transition: opacity 0.8s ease, visibility 0.8s ease;
            }
            
            .codoctor-loader.hidden {
                opacity: 0;
                visibility: hidden;
            }
            
            .loader-logo {
                width: 100px;
                height: auto;
                margin-bottom: 30px;
                animation: logoFloat 3s ease-in-out infinite;
            }
            
            @keyframes logoFloat {
                0%, 100% { 
                    transform: translateY(0px) scale(1);
                    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
                }
                50% { 
                    transform: translateY(-15px) scale(1.05);
                    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
                }
            }
            
            .loader-progress {
                width: 300px;
                height: 6px;
                background: rgba(255,255,255,0.2);
                border-radius: 10px;
                overflow: hidden;
                margin-bottom: 20px;
                position: relative;
            }
            
            .loader-progress-bar {
                height: 100%;
                background: linear-gradient(90deg, 
                    rgba(255,255,255,0.8) 0%, 
                    rgba(255,255,255,1) 50%, 
                    rgba(255,255,255,0.8) 100%);
                border-radius: 10px;
                width: 0%;
                transition: width 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            .loader-progress-bar::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, 
                    transparent 0%, 
                    rgba(255,255,255,0.6) 50%, 
                    transparent 100%);
                animation: shimmer 2s infinite;
            }
            
            @keyframes shimmer {
                0% { left: -100%; }
                100% { left: 100%; }
            }
            
            .loader-text {
                color: white;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                font-size: 16px;
                font-weight: 500;
                margin-bottom: 10px;
                opacity: 0.9;
                animation: textPulse 2s ease-in-out infinite;
            }
            
            @keyframes textPulse {
                0%, 100% { opacity: 0.9; }
                50% { opacity: 0.7; }
            }
            
            .loader-subtitle {
                color: rgba(255,255,255,0.8);
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                font-size: 14px;
                font-weight: 300;
                text-align: center;
                max-width: 300px;
                line-height: 1.4;
            }
            
            /* Animated background particles */
            .loader-particles {
                position: absolute;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }
            
            .particle {
                position: absolute;
                background: rgba(255,255,255,0.1);
                border-radius: 50%;
                animation: particleFloat 20s linear infinite;
            }
            
            .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
            .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
            .particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
            .particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 6s; }
            .particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 8s; }
            .particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 10s; }
            .particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 12s; }
            .particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 14s; }
            .particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 16s; }
            
            @keyframes particleFloat {
                0% {
                    transform: translateY(100vh) rotate(0deg);
                    opacity: 0;
                }
                10% {
                    opacity: 1;
                }
                90% {
                    opacity: 1;
                }
                100% {
                    transform: translateY(-100px) rotate(360deg);
                    opacity: 0;
                }
            }
            
            /* Responsive adjustments */
            @media (max-width: 768px) {
                .loader-logo {
                    width: 100px;
                    margin-bottom: 25px;
                }
                
                .loader-progress {
                    width: 250px;
                }
                
                .loader-text {
                    font-size: 14px;
                }
                
                .loader-subtitle {
                    font-size: 12px;
                    max-width: 250px;
                }
            }
            
            #map { position: relative; }
            
            /* Hide default Leaflet popup styling */
            .leaflet-popup-content-wrapper {
                background: transparent !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            .leaflet-popup-content {
                margin: 0 !important;
                padding: 0 !important;
                line-height: 1 !important;
                min-height: auto !important;
                width: auto !important;
            }
            .leaflet-popup-close-button {
                display: none !important;
            }
            .leaflet-popup-tip {
                background: #87532F !important;
                border: none !important;
                box-shadow: none !important;
            }