        footer a {
    color: #ccc;
    margin: 0 8px;
    text-decoration: none;
    font-size: 14px;
}

footer a:hover {
    color: #4dfcff;
}
       /* Hero overlay positioning */
.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 700px;
    color: #fff;
    z-index: 5;
}

/* Main text + button in same line */
.hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-title-row h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Sub text */
.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.85;
}

/* Description */
.hero-desc {
    font-size: 15px;
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Inline button */
.hero-inline-btn {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    white-space: nowrap;
}

/* Make sure hero section allows absolute positioning */
.hero {
    position: relative;
}
/* Stats Section */
.home-stats {
    padding: 80px 40px;
    background: transparent;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Single box */
.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow on hover */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
}

/* Number */
.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4dfcff, #7a7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Label */
.stat-box p {
    font-size: 15px;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
/* About Section */
.about-section {
    padding: 100px 40px;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.about-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #4dfcff, #7a7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Row */
.about-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    padding: 50px;
    border-radius: 22px;
}

/* Text */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.about-text p {
    margin-bottom: 15px;
}

/* Image */
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    border: 1px solid rgba(0,255,255,0.25);
    box-shadow: 0 0 35px rgba(0,255,255,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .about-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin-top: 30px;
    }
}
.custom-modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index:10000;
    justify-content:center;
    align-items:center;
}

.modal-box {
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    width:650px;
    max-height:85vh;
    overflow-y:auto;
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
    animation: popupFade 0.3s ease;
}

.modal-box h3 {
    font-size:22px;
    margin-bottom:20px;
    font-weight:700;
}

.modal-box input,
.modal-box textarea {
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
}

.modal-box button {
    background: linear-gradient(135deg,#007bff,#00c6ff);
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    margin-top:15px;
    transition: all 0.3s ease;
}

.modal-box button:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,123,255,0.4);
}


@keyframes popupFade {
    from { transform:scale(0.9); opacity:0; }
    to { transform:scale(1); opacity:1; }
}

/* Section Headings */
.modal-box h3,
#doctorList h4,
#slotList h4 {
    font-weight:800;
    font-size:20px;
    color:#6c3df4;
    margin-bottom:15px;
}

/* Doctor & Slot Cards */
.doctor-option {
    position: relative;
    color: black;
    padding:18px 20px;
    border-radius:14px;
    margin-bottom:15px;
    cursor:pointer;
    border:2px solid #e9e9e9;
    background:#f9f9ff;
    transition: all 0.25s ease;
    font-weight:600;
    font-size:15px;
}

/* Hover Effect */
.doctor-option:hover {
    border-color:#6c3df4;
    background:#f1ecff;
    transform: translateY(-2px);
    box-shadow:0 8px 20px rgba(108,61,244,0.15);
}

/* Hide radio button */
.doctor-option input[type="radio"] {
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    accent-color:#ff5722;
}

/* Selected State */
.doctor-option input[type="radio"]:checked + span {
    color:#fff;
}

.doctor-option input[type="radio"]:checked {
    accent-color:#ff5722;
}

/* When selected → change card style */
.doctor-option input[type="radio"]:checked ~ span,
.doctor-option input[type="radio"]:checked {
}

.doctor-option input[type="radio"]:checked {
}

/* Selected Doctor / Slot */
.doctor-option.active {
    background: #007bff !important;
    color: #000 !important;
    border-color: #007bff;
}

.doctor-option.active span,
.doctor-option.active label {
    color: #000 !important;
}
.btn-center {
    display: flex;
    justify-content: center;
}

.btn-right {
    display: flex;
    justify-content: right;
}

.doctor-grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

.doctor-card{
    background:#f8f9fa;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.doctor-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
}
/* Small Back Button */
.small-back {
    background: #f1f1f1 !important;
    color: #333 !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    font-weight: 600;
    box-shadow: none !important;
}

.small-back:hover {
    background: #e2e2e2 !important;
}

/* Large Session Dropdown */
.session-dropdown {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #f8f9ff;
    font-weight: 600;
    transition: 0.3s;
}

.session-dropdown:focus {
    outline: none;
    border-color: #6c3df4;
    box-shadow: 0 0 8px rgba(108,61,244,0.3);
}

/* Continue Button Right Bottom */
.continue-btn {
    padding: 10px 22px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
}
.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
    margin-top:15px;
}

.cal-head{
    font-weight:700;
    text-align:center;
    padding:8px;
}

.cal-date{
    padding:10px;
    text-align:center;
    border-radius:8px;
    border:1px solid #f4b400;
    cursor:pointer;
    background:#fff;
    transition:0.2s;
}

.cal-date:hover{
    background:#fff4d6;
}

.cal-date.active{
    background:#f4b400;
    color:#fff;
    font-weight:700;
}

.slotBox{
    border:1px solid #f4b400;
    padding:12px;
    border-radius:8px;
    cursor:pointer;
    text-align:center;
    margin-bottom:10px;
}

.slotBox.active{
    background:#f4b400;
    color:#fff;
    font-weight:600;
}
.cal-date.disabled{
    background:#f2f2f2;
    color:#bbb;
    pointer-events:none;
    border:1px solid #eee;
}

.cal-date.available{
    border:1px solid #f4b400;
    cursor:pointer;
}

.cal-date.available.active{
    background:#f4b400;
    color:#fff;
    font-weight:700;
}
/* ===== Payment Summary Buttons ===== */

/* Blue Back Button (same style as Continue) */
.summary-back {
    background: linear-gradient(135deg,#007bff,#00c6ff);
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summary-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 123, 255, 0.35);
}


/* Green Pay Now Button (Right aligned) */
.pay-btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(135deg,#28a745,#43d17c);
    color: #fff;
    transition: all 0.3s ease;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.35);
}


/*.logo-icon {
    height: 55px;     
    width: auto;    
    max-width: 200px; 
    object-fit: contain;
}*/
.logo-icon {
    width: 160px;
    height: 80px;
  filter: drop-shadow(0 0 10px #e0a3ff);
}