body {
    font-family: 'Poppins', sans-serif;
}

/* --- Top Section Styles --- */
.top-header-section {
    padding: 15px 0;
    background-color: #fff;
}

/* Brand Name Text */
.brand-name-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2540;
    /* Dark blue text */
    text-decoration: none;
}

/* Green Consult Button Styles */
.btn-consult-green {
    background-color: #1aab58;
    /* WhatsApp Green style */
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-consult-green:hover {
    background-color: #15964d;
    color: white;
}

/* --- Animation Keyframes (Zoom In/Out Pulse) --- */
@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        /* Thoda bada hoga */
    }

    100% {
        transform: scale(1);
    }
}

/* Class to apply animation */
.pulsing-button {
    animation: pulseAnimation 1.5s infinite ease-in-out;
}

/* --- Yellow Notification Bar Styles --- */
.notification-bar {
    background-color: #fffbe7;
    /* Pale yellow */
    border-top: 1px solid #f0e6c0;
    border-bottom: 1px solid #f0e6c0;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.4;
}

.notification-bar u {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* --- Bottom CTA Styles --- */
.cta-container {
    padding: 30px 0;
}

.cta-highlight-text {
    background-color: #ffec3d;
    /* Bright yellow */
    color: #000;
    font-weight: 800;
    font-size: 1.8rem;
    padding: 5px 15px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .brand-name-text {
        font-size: 1.5rem;
    }

    .notification-bar {
        font-size: 0.9rem;
    }

    .cta-highlight-text {
        font-size: 1.3rem;
    }
}


.hindi-text,
.hindi-headline {
    font-family: 'Tiro Devanagari Hindi', serif;
}

/* --- Top Header Section --- */
.top-header-section {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.brand-name-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2540;
}

/* --- Green Call Button & Animation --- */
.btn-consult-green {
    background-color: #1aab58;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    /* Text tutna nahi chahiye */
}

.btn-consult-green:hover {
    background-color: #15964d;
    color: white;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 171, 88, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(26, 171, 88, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 171, 88, 0);
    }
}

.pulsing-button {
    animation: pulseAnimation 2s infinite;
}

/* --- Content Styling --- */
.hindi-headline {
    color: #000;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
}

.treatment-text-box {
    margin-top: 20px;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 600;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Yellow Bar Styling --- */
.notification-bar {
    background-color: #fffbe7;
    /* Pale yellow */
    border-top: 2px solid #f0e6c0;
    border-bottom: 2px solid #f0e6c0;
    font-size: 1.3rem;
    margin-top: 20px;
}

/* --- Responsive Media Queries (Mobile ke liye) --- */
@media (max-width: 768px) {

    /* Header Stack (Naam upar, button neeche) */
    .top-header-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .brand-name-text {
        font-size: 1.6rem;
    }

    /* Hindi Headline Choti karein mobile par */
    .hindi-headline {
        font-size: 1.3rem;
        padding: 0 10px;
    }

    /* Yellow bar text size */
    .notification-bar {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Images margin */
    .image-box {
        margin-bottom: 10px;
    }
}



.hindi-font {
    font-family: 'Tiro Devanagari Hindi', serif;
}

/* --- Section Styling --- */
.info-form-section {
    background-color: #fff;
}

/* Left Content Styles */
.main-heading {
    font-weight: 700;
    color: #000;
    font-size: 2.2rem;
    line-height: 1.3;
}

.description-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* --- Right Side: Form Card Styles --- */
.cost-calculator-card {
    background-color: #eaf6ff;
    /* Light Blue Background matches image */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-dark-blue {
    background-color: #0a2540;
    color: white;
    font-size: 0.9rem;
}

.btn-dark-blue:hover {
    background-color: #051b30;
    color: white;
}

/* Form Inputs Styling */
.form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0a2540;
}

/* Placeholder color fix */
::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .main-heading {
        font-size: 1.8rem;
        /* Smaller heading on mobile */
        text-align: center;
    }

    .description-text {
        text-align: center;
        font-size: 1rem;
    }

    /* Center align icons on mobile */
    .info-form-section .col-md-4 {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .cost-calculator-card {
        padding: 20px !important;
        /* Less padding on mobile */
    }
}

/* --- Counter Section Styles --- */
.counter-section {
    background-color: #fff;
    /* Optional: Add light border or shadow if needed */
}

.counter-box {
    padding: 20px 10px;
}

/* Number Styles */
.counter-number,
.counter-number-rating,
.plus-sign {
    font-size: 3.5rem;
    /* Big Bold Numbers */
    font-weight: 800;
    color: #2c3e50;
    /* Dark Blue/Grey like image */
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
}

.plus-sign {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
}

/* English Text Styles */
.eng-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #34495e;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Hindi Text Styles */
.hindi-text {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {

    /* Mobile par numbers thode chote */
    .counter-number,
    .counter-number-rating,
    .plus-sign {
        font-size: 2.8rem;
    }

    .eng-text {
        font-size: 0.8rem;
    }

    .hindi-text {
        font-size: 0.95rem;
    }

    /* Mobile par margin kam */
    .counter-box {
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        /* Divider between items on mobile */
        padding-bottom: 30px;
    }

    /* Last item ka border hata do */
    .col-12:last-child .counter-box {
        border-bottom: none;
    }

}


/* --- About Section Styles --- */
.about-section {
    background-color: #fff;
    /* Optional: Subtle pattern background like reference */
    background-image: radial-gradient(#f1f1f1 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Headings */
.about-heading {
    font-weight: 800;
    color: #000;
    font-size: 2.5rem;
    line-height: 1.2;
}

.credentials-text {
    font-size: 1.1rem;
    color: #444;
    border-left: 4px solid #ffd700;
    /* Gold line on left */
    padding-left: 15px;
}

/* Yellow Highlights (The marker effect) */
.highlight-mark {
    background-color: #ffd700;
    /* Bright Yellow */
    padding: 2px 8px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.8;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: #000;
}

/* Signature Font */
.signature-text {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #000;
    transform: rotate(-5deg);
    /* Slight tilt */
    display: inline-block;
}

/* --- Right Side Images --- */
.main-photo {
    border: 5px solid #fff;
    max-width: 100%;
    height: auto;
}

/* Video Card Styling */
.video-card {
    max-width: 350px;
    border: 1px solid #eee;
    /* Desktop par thoda upar overlap karne ke liye (Optional) */
    position: relative;
    margin-top: -50px;
    z-index: 2;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-overlay i {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }

    .credentials-text,
    .description-text,
    .highlight-list {
        text-align: center;
        /* Center text on mobile */
    }

    .highlight-list li {
        margin-bottom: 15px;
    }

    /* Signature center on mobile */
    .mt-4 {
        text-align: center;
    }

    /* Reset margins for mobile stacking */
    .video-card {
        margin-top: 20px;
        /* Gap between image and card */
        width: 100%;
        max-width: 100%;
    }
}


/* --- Profile Video Section Styles --- */
.profile-video-section {
    background-color: #fff;
}

/* Left Side Image Wrapper */
.doctor-image-wrapper {
    background: #fff;
    /* Optional: Add a subtle rotation or style to match the exact look if needed */
}

/* Right Side Headings */
.doctor-name-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

/* Description Text */
.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #212529;
}

/* Award Icon Color */
.text-warning {
    color: #d4af37 !important;
    /* A richer gold color */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {

    /* Mobile par text center karein */
    .profile-video-section .row {
        text-align: center;
    }

    /* Award Header Center */
    .d-flex.align-items-start {
        justify-content: center;
        text-align: left;
        display: inline-flex !important;
        /* Center align flex item */
    }

    .doctor-name-heading {
        font-size: 2rem;
    }

    /* Mobile par padding hatayein */
    .ps-lg-5 {
        padding-left: 0 !important;
    }

    /* Image margin on mobile */
    .doctor-image-wrapper {
        margin-bottom: 25px;
        max-width: 400px;
        /* Limit width on tablets */
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Involvements Section Styles --- */
.involvements-section {
    background-color: #fff;
    /* Clean white background */
}

.section-heading {
    font-weight: 800;
    color: #0a2540;
    /* Dark professional color */
    font-size: 2.2rem;
}

/* Styling the Gold Medal Icon */
.gold-medal-icon {
    color: #d4af37;
    /* Rich gold color matching the image */
    font-size: 2.5rem;
    /* Size of the icon */
    filter: drop-shadow(2px 2px 2px rgba(212, 175, 55, 0.3));
    /* Subtle gold shadow for depth */
}

.icon-wrapper {
    min-width: 50px;
    /* Ensures icon area doesn't shrink */
    text-align: center;
    padding-top: 5px;
    /* Slight adjustment to align with text */
}

/* Item Text Styling */
.involvement-item h5 {
    color: #000;
    font-size: 1.1rem;
}

.involvement-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 30px !important;
    }

    /* Mobile par item ke beech thoda gap kam karein */
    .involvement-item {
        margin-bottom: 25px !important;
    }

    /* Mobile par text thoda chhota */
    .gold-medal-icon {
        font-size: 2rem;
    }

    .involvement-item h5 {
        font-size: 1rem;
    }
}

/* --- Gallery Section Styles --- */
.gallery-section {
    background-color: #f9f9f9;
    /* Light grey background to make images pop */
}

.section-heading {
    font-weight: 700;
    color: #0a2540;
    font-size: 2.2rem;
}

/* Optional: Decorative line under heading */
.heading-line {
    width: 60px;
    height: 4px;
    background-color: #d4af37;
    /* Gold color */
    margin-top: 10px;
    border-radius: 2px;
}

/* --- Gallery Item Wrapper --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    /* Zaroori hai zoom effect ke liye */
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    cursor: pointer;
}

/* Image Styles */
.gallery-img {
    width: 100%;
    height: 250px;
    /* Fixed height taaki sab barabar dikhein */
    object-fit: cover;
    /* Image stretch nahi hogi, crop hogi */
    transition: transform 0.4s ease;
    /* Smooth Zoom */
    display: block;
}

/* Hover Effect: Zoom Image */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Caption (Optional: Image ke upar text) */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    /* Pehle chhupa rahega */
    transition: opacity 0.3s ease;
}

/* Show Caption on Hover */
.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .gallery-img {
        height: 220px;
        /* Mobile par thoda chhota height */
    }

    /* Mobile par caption hamesha dikhana hai toh ye use karein: */
    /*
    .gallery-caption {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    */
}




/* --- Section Styling --- */
.patient-stories-section {
    background-color: #f8f9fa;
    /* Light grey BG for contrast */
    position: relative;
}

/* Typography */
.ls-2 {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.stories-heading {
    color: #0a2540;
    font-size: 2.2rem;
}

.stories-underline {
    width: 60px;
    height: 4px;
    background-color: #d4af37;
    /* Gold Line */
    border-radius: 50px;
}

/* --- Card Styling --- */
.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* Corners round rakhne ke liye */
    border: none;
    transition: all 0.4s ease;
    /* Initial Shadow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

/* Hover Effect: Lift Up + Stronger Shadow */
.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Video Box Styling */
.story-video-box iframe {
    /* Rounded top corners only if needed, but wrapper handles overflow */
    border-bottom: 1px solid #eee;
}

/* Content Text Styling */
.story-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {

    /* Tablet & Small Laptop */
    .stories-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {

    /* Mobile Phone */
    .stories-heading {
        font-size: 1.5rem;
    }

    .story-content p {
        font-size: 0.9rem;
    }

    /* Mobile par grid gap thoda kam kar sakte hain */
    .row.g-4 {
        --bs-gutter-y: 1.5rem;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Tiro+Devanagari+Hindi&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* General Colors & Text */
.text-primary {
    color: #007bff !important;
}

.hindi-font,
.hindi-text,
.hindi-headline {
    font-family: 'Tiro Devanagari Hindi', serif;
}

/* Header & Navbar */
.top-header-section {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.brand-name-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2540;
}

.btn-consult-green {
    background: #1aab58;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.notification-bar {
    background: #fffbe7;
    border-top: 2px solid #f0e6c0;
    border-bottom: 2px solid #f0e6c0;
}

.cta-highlight-text {
    background: #ffec3d;
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 5px 15px;
}

/* Review Section (Swiper Fixes) */
/* --- Google Reviews Section --- */
.google-reviews-section {
    background-color: #f8f9fa;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

/* Review Card */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* --- Avatar Circle (Updated for Images) --- */
.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden; /* Ensures image stays in circle */
    margin-right: 15px;
    border: 2px solid #f0f0f0; /* Optional: Light border around image */
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the circle perfectly without stretching */
}

/* Stars & Text */
.stars {
    color: #F4B400;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #0d6efd !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* --- FAQ Section Styles --- */
.faq-section {
    background-color: #fff;
}

.heading-line {
    width: 60px;
    height: 4px;
    background-color: #0a2540;
    /* Dark Blue */
    margin-top: 10px;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a2540;
    /* Dark Professional Blue */
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.faq-question i {
    margin-top: 4px;
    /* Icon alignment */
    color: #0056b3;
    /* Primary Blue Icon */
}

.faq-answer {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-left: 28px;
    /* Indent text to align with question text */
    text-align: justify;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}


/* --- Footer Section Styles --- */
.final-footer-section {
    background-color: #fff;
    /* Clean White Background */
    border-top: 1px solid #f0f0f0;
    /* Subtle top border */
}

/* Heading */
.footer-heading {
    font-weight: 800;
    color: #0a2540;
    /* Dark Blue */
    font-size: 2.5rem;
}

.footer-subtext {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Stars */
.footer-stars {
    color: #f4c150;
    /* Golden Yellow Color matching image */
    font-size: 2.5rem;
    /* Big stars */
}

.footer-stars i {
    margin: 0 5px;
    /* Gap between stars */
}

/* Consult Button */
.btn-footer-cta {
    background-color: #003366;
    /* Dark Navy Blue matching image */
    color: white;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.btn-footer-cta:hover {
    background-color: transparent;
    color: #003366;
    transform: translateY(-3px);
    /* Slight lift effect */
}

/* Footer Links */
.footer-links a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0a2540;
}

/* Brand Name (If using text instead of logo) */
.brand-name-text {
    color: #0a2540;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 1.8rem;
    }

    .footer-stars {
        font-size: 2rem;
    }

    .btn-footer-cta {
        width: 100%;
        /* Full width button on mobile */
        padding: 12px 0;
    }
}


/* --- Floating Button Container --- */
.floating-btn-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999; /* Sabse upar dikhne ke liye */
    display: flex;
    flex-direction: column; /* Upar ki taraf stack honge */
    gap: 15px; /* Buttons ke beech ka gap */
}

/* --- Common Button Styles --- */
.float-btn {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1); /* Hover karne par thoda bada hoga */
    color: #fff;
}

/* --- Specific Colors --- */

/* WhatsApp - Green */
.btn-whatsapp {
    background-color: #25d366;
}

/* Call - Dark Blue (Brand Color) */
.btn-call {
    background-color: #0a2540;
    font-size: 1.5rem;
}

/* Map - Red/Orange */
.btn-map {
    background-color: #ea4335;
    font-size: 1.5rem;
}

/* --- Pulse Animation (Only for WhatsApp) --- */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulsing-btn {
    animation: btnPulse 2s infinite;
}

/* --- Tooltip Text (Side me jo text aata hai) --- */
.tooltip-text {
    position: absolute;
    right: 75px; /* Button ke left side me */
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show Tooltip on Hover */
.float-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Responsive Tweaks --- */
@media (max-width: 768px) {
    .floating-btn-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Mobile par tooltip chupayein taaki clean dikhe */
    .tooltip-text {
        display: none;
    }
}