body {
    font-family: 'Poppins', sans-serif;
    background: #f5f9ff;
    margin: 0;
    padding: 0;
    color: #333;
}

/* LIMIT MAX WIDTH FOR LARGE SCREENS */
.container {
    max-width: 620px;     /* Perfect card width */
}

/* ---------------- VIDEO SECTION ---------------- */
.video-section {
    position: relative;
}

.video-section video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.clinic-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}

/* TABLETS */
@media (min-width: 768px) {
    .video-section video {
        height: 380px;
    }
    .clinic-title {
        font-size: 40px;
    }
}

/* LARGE SCREENS */
@media (min-width: 1024px) {
    .video-section video {
        height: 450px;
    }
    .clinic-title {
        font-size: 48px;
    }
}

/* ---------------- CONTACT CARDS ---------------- */
.contact-cards {
    margin-top: 25px;
}

.card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
    background: #e8f1ff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #0a66ff;
    transition: 0.2s ease;
}

/* Hover on big screens only */
@media (hover:hover) {
    .card-btn:hover {
        background: #d7e8ff;
    }
}

.icon-img {
    width: 32px;
    height: 32px;
}

/* TABLETS */
@media (min-width: 768px) {
    .icon-img {
        width: 38px;
        height: 38px;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .icon-img {
        width: 45px;
        height: 45px;
    }
}

/* ---------------- HIGHLIGHTS ---------------- */
.highlight-section {
    background: #ffffff;
    padding: 30px;
    margin: 30px 12px;
    text-align: center;
    border-radius: 12px;
}

.highlight-section h3 {
    font-size: 22px;
    font-weight: 700;
}

.highlight-section p {
    font-size: 15px;
}

/* TABLETS */
@media (min-width: 768px) {
    .highlight-section {
        padding: 35px;
    }
}

/* ---------------- CONTACT DETAILS ---------------- */
.details-section {
    margin-top: 25px;
}

.details-section h4 {
    font-size: 18px;
    font-weight: 600;
}

.details-section p {
    font-size: 15px;
    margin-bottom: 12px;
}

/* ---------------- ADDRESS ---------------- */
.address-section {
    background: #e8f1ff;
    padding: 30px 0;
    margin-top: 25px;
    text-align: center;
}

.vector-img {
    width: 140px;
    margin-bottom: 12px;
}

/* TABLETS */
@media (min-width: 768px) {
    .vector-img {
        width: 160px;
    }
}

/* ---------------- SAVE CONTACT ---------------- */
.save-contact {
    text-align: center;
    margin: 45px 0 30px 0;
}

.save-btn {
    background: #0a66ff;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

@media (hover:hover) {
    .save-btn:hover {
        background: #004cd1;
    }
}

/* ---------------- SOCIAL CARDS ---------------- */
.social-section {
    margin-top: 30px;
}

.social-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    border-radius: 10px;
}

.social-icon {
    width: 32px;
}

@media (min-width: 768px) {
    .social-card {
        height: 60px;
    }
    .social-icon {
        width: 38px;
    }
}

@media (min-width: 1024px) {
    .social-card {
        height: 65px;
    }
    .social-icon {
        width: 42px;
    }
}

.insta { background: #d62976; }
.whatsapp { background: #25d366; }
.facebook { background: #1877f2; }

/* ---------------- SLIDER ---------------- */
.slider-section {
    margin: 35px 0;
}

.slide-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-box img {
    width: 100%;
    height: 260px;           /* Default height for mobile */
    object-fit: cover;
    border-radius: 12px;
}

/* TABLETS */
@media (min-width: 768px) {
    .slide-box img {
        height: 350px;       /* better look on tablets */
    }
}

/* LAPTOPS & LARGE SCREENS */
@media (min-width: 1024px) {
    .slide-box img {
        height: 420px;       /* beautiful big screen height */
    }
}

/* Very large monitors */
@media (min-width: 1400px) {
    .slide-box img {
        height: 480px;       /* premium look */
    }
}

/* SLIDER BUTTON */
.slider-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a66ff;
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0, 80, 200, 0.4);
    z-index: 10;
}

@media (min-width: 768px) {
    .slider-btn {
        padding: 12px 35px;
        font-size: 16px;
        bottom: 28px;
    }
}

@media (min-width: 1024px) {
    .slider-btn {
        padding: 14px 40px;
        font-size: 17px;
        bottom: 32px;
    }
}

/* ================= SERVICES SECTION ================= */
.services-section {
    margin-top: 35px;
}

.services-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0a66ff;
}

.service-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.service-box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Tablet */
@media (min-width: 768px) {
    .service-box img {
        height: 160px;
    }
}

/* Laptop */
@media (min-width: 1024px) {
    .service-box img {
        height: 190px;
    }
}

/* ================= MAP SECTION ================= */
.map-section {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.map-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsive Map Wrapper */
.map-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.20);
}

.map-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}


/* UPI transaction section */
.upi-section {
    margin-top: 40px;
    text-align: center;
}

.upi-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a66ff;
    margin-bottom: 12px;
}

.upi-id {
    font-size: 16px;
    font-weight: 600;
}

.upi-id span {
    color: #0a66ff;
}

.upi-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
}

.pay-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pay-icon img {
    width: 34px;
}
