/* Ambulance Page Specific Styles */
.ambulance-hero {
    background-color: #d1e7dd; /* Light teal/cyan background as seen in image */
    padding: 20px 0 60px 0;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #fff;
    font-family: 'Hind Siliguri', sans-serif;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #dc3545; /* Red color */
    margin-bottom: 5px;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.search-container {
    background: #eef5f3;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 2px solid #ccc;
    position: relative;
}

.search-item:last-child {
    border-right: none;
}

.search-label {
    font-size: 22px;
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
}

.search-icon {
    font-size: 24px;
    color: #198754; /* Green location icon */
}

/* Custom Select styling to look like text */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.search-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search-btn i {
    font-size: 28px;
    margin-left: 10px;
    color: #555;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #1a5c53; /* Dark green */
    color: white;
    padding: 10px 0;
    font-family: 'Hind Siliguri', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.announcement-text {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.register-btn {
    background-color: #2fb344;
    color: #000;
    font-weight: bold;
    padding: 5px 20px;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: 20px;
    display: inline-block;
}
.register-btn:hover {
    color: #000;
    background-color: #269237;
}

/* Product Cards */
.ambulance-card {
    border: 1px solid #198754; /* Green border */
    border-radius: 5px;
    padding: 10px;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    gap: 15px;
}

.ambulance-img-box {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    padding: 2px;
}
.ambulance-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #dc3545; /* Red title */
    margin-bottom: 5px;
}

.location-info {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.location-icon-blue {
    color: #143e8c; 
}
.location-icon-green {
    color: #198754;
}

.rating-area {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-top: 5px;
}
.stars {
    color: #1a5c53;
}
.view-count {
    color: #555;
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
}

.call-btn {
    display: block;
    width: 100%;
    background-color: #198754; /* Green button */
    color: white;
    text-align: center;
    padding: 5px 0;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
}
.call-btn:hover {
    background-color: #146c43;
    color: white;
}

.see-more-btn {
    background: #000;
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
}
.see-more-btn:hover {
    color: #fff;
    background: #333;
}
