.hero-section {
    /*background: linear-gradient(135deg, #2656A3 0%, #2656A3 100%);*/
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0d6efd 0%, #2656A3 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 25px;
}
.doctor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}
.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.doctor-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.badge-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2656A3;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
}
.feature-box {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}
.timing-badge {
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid;
}
.timing-available {
    background: #d1f4e0;
    border-color: #28a745;
}
.timing-unavailable {
    background: #f8f9fa;
    border-color: #dee2e6;
}
.time-slot {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}
.time-slot:hover {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.time-slot.selected {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.date-box {
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.date-box:hover {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.date-box.selected {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.consultation-type {
    padding: 25px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.consultation-type:hover {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.consultation-type.selected {
    border-color: var(--primary-color);
    background: #e7f3ff;
}
.modal-content {
    border-radius: 20px;
    border: none;
}
.modal-header {
    border-bottom: 1px solid #dee2e6;
    border-radius: 20px 20px 0 0;
}
.btn-custom {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.loading-spinner {
    display: none;
}
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 1;
    color: #ffffff;
}
.carousel-control-prev {
    left: -30px;
}
.carousel-control-next {
    right: -30px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    color: #ffffff;
}
.carousel-inner {
    overflow: visible!important;
}
.pmdc-stamp-only {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(-10deg) scale(1.2);
    opacity: 0.9;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
    pointer-events: none;
    animation: stampIn 0.3s ease-out;
}

.pmdc-stamp-only svg {
    width: 60px;
    height: 60px;
}

@keyframes stampIn {
    0% {
        transform: scale(2) rotate(-10deg);
        opacity: 0;
    }
    80% {
        transform: scale(0.95) rotate(-10deg);
        opacity: 1;
    }
    100% {
        transform: scale(1.2) rotate(-10deg);
    }
}
.booked {
    border-color: #c3c3c3!important;
    background: #c3c3c3!important;
    color: white!important;
    cursor: not-allowed!important;
}
.booked strong{
    border-color: #c3c3c3!important;
    background: #c3c3c3!important;
    color: white!important;
    cursor: not-allowed!important;
}
.holiday {
    border-color: #c3c3c3!important;
    background: #c3c3c3!important;
    color: white!important;
    cursor: not-allowed!important;
}
.holiday strong{
    border-color: #c3c3c3!important;
    background: #c3c3c3!important;
    color: white!important;
    cursor: not-allowed!important;
}
.pre-wrap {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.services {
     padding: 80px 0;
 }
.services .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #2656A3;
}
.services .service-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    padding: 30px;
}
.services .service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0d6efd 0%, #2656A3 100%);
    color: #ffffff;
}
.services .service-card:hover i {
    color: #ffffff;
}
.services .service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2656A3;
}