/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0f172a, #1e3a8a); /* dark to royal blue */
    color: white;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    scroll-behavior: smooth;
}

#logo img {
    height: 60px;
}

#nav-links {
    list-style: none;
    display: flex;
}

#nav-links li {
    margin: 0 10px;
}

#nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hamburger,
.cross {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Home Section */
#home {
    padding:200px 20px;
    text-align: center;
    /* background-image:  */
        /* url("img/Canonlogo.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a1a;
    position: relative;
    
}


#btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    border: none;
    color: #2575fc;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Services Section */
.body1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.box {
    width: 250px;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin: 08px;
    padding: 08px;
    text-align: center;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: scale(1.05);
}

.box img {
    max-width: 50%;
    border-radius: 05px;
    margin-bottom: 05px;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px; /* Thoda lamba footer ke liye */
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-img {
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Circle image ke liye */
}

.footer-right {
    text-align: right;
}

html, body {
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* Additional Sections */
#about,
#contact,
#email {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

/* Container Section */
#contact {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    padding: 80px 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* Form Container Styling */
.contact-form-container {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.8s ease;
}

/* Heading */
.form-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
  background: linear-gradient(90deg, #00e6ff, #76ffcd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Form Fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffe7;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #00fff0, #00ff87);
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    transition: 0.3s ease-in-out;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.6);
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 24px;
    }
}

/* ---------------------------------------------- */

    .fade {
        animation: fadeEffect 1s ease-in-out;
    }

    @keyframes fadeEffect {
        0% { opacity: 0.3; }
        100% { opacity: 1; }
    }






    /* ----------------RewardClaimProcessor------------------------ */
    /* Basic Reset & Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Google Font apply kiya */
    line-height: 1.6;
    background-color: #f8f7ff; /* Light purple-ish background */
    color: #333;
    overflow-x: hidden; /* Horizontal scroll prevent karein */
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero Section Styling */
.hero-section {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f7ff 0%, #e0e0ff 100%); /* Soft gradient background */
    padding: 2rem;
    position: relative; /* For background pattern */
    overflow: hidden; /* Ensures content stays within bounds */
}

/* Abstract background patterns - Optional, for visual depth */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px); /* Soft blur effect */
    opacity: 0.6;
    z-index: 0;
}

.hero-section::before {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 165, 0, 0.3); /* Orange tint */
    top: 10%;
    left: 5%;
}

.hero-section::after {
    width: 300px;
    height: 300px;
    background-color: rgba(128, 0, 128, 0.3); /* Purple tint */
    bottom: 10%;
    right: 5%;
}


.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem; /* Spacing between gift box and text content */
    max-width: 1200px; /* Max width for content */
    width: 100%;
    z-index: 1; /* Content ko patterns ke upar rakhe */
    flex-wrap: wrap; /* Mobile view mein wrap hone ke liye */
}

/* Gift Box Styles */
.gift-box-container {
    flex: 1; /* Space lega */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Minimum width for gift box */
}

.gift-box-img {
    max-width: 100%;
    height: auto;
    width: 400px; /* Adjust as needed */
    animation: float 3s ease-in-out infinite; /* Floating animation */
}

/* Text Content Styles */
.text-content-container {
    flex: 1; /* Space lega */
    max-width: 600px; /* Max width for text block */
    text-align: left;
    padding: 1rem;
}

.subtitle {
    color: #6a0dad; /* Darker purple */
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    animation: fadeIn 1s ease-out; /* Animation */
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideUp 1s ease-out; /* Animation */
}

.main-title .highlight {
    color: #8a2be2; /* Blue-violet like color */
    font-size: 3rem; /* Thoda bada highlight */
}

.description {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-out; /* Animation */
}

/* Input Form Styles */
.input-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideUp 1.3s ease-out; /* Animation */
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden; /* Input aur button ke corners smooth karne ke liye */
    margin-bottom: 1rem;
}

.country-code {
    background-color: #f0f0f0;
    padding: 0.8rem 1rem;
    border-right: 1px solid #ddd;
    color: #666;
    font-weight: 600;
}

#phoneNumber {
    flex-grow: 1; /* Input field ko zyada space dega */
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    outline: none; /* Focus outline hatayein */
}

#phoneNumber::placeholder {
    color: #aaa;
}

.claim-btn {
    background-color: #28a745; /* Green button */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 0 10px 10px 0; /* Only right corners rounded */
}

.claim-btn:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.validation-info {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    animation: fadeIn 1.4s ease-out; /* Animation */
}

.info-icon {
    font-size: 1.1rem;
    color: #8a2be2; /* Highlight color for info icon */
    transform: translateY(-1px); /* Icon ko thoda upar adjust karein */
}

/* Optional: Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
}

.scroll-to-top-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

/* Optional: Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745; /* Green color for WhatsApp/Phone */
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
}

.floating-contact a {
    color: white;
    text-decoration: none;
    line-height: 1; /* Icon alignment */
}

.floating-contact:hover {
    background-color: #218838;
    transform: scale(1.05); /* Slight zoom effect */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column; /* Stacking on smaller screens */
        gap: 2rem;
        text-align: center; /* Text center align for mobile */
    }

    .text-content-container {
        max-width: 100%; /* Full width for text on smaller screens */
        padding: 0 1rem;
    }

    .gift-box-container {
        order: -1; /* Gift box ko text ke upar layein mobile par */
        min-width: unset; /* Remove min-width for flexibility */
    }

    .gift-box-img {
        width: 300px; /* Smaller gift box on mobile */
    }

    .main-title {
        font-size: 2.2rem;
    }
    .main-title .highlight {
        font-size: 2.4rem;
    }

    .input-group {
        flex-direction: column; /* Input field aur button ko stack karein */
        border: none; /* Remove border from group */
        border-radius: 0;
        align-items: stretch; /* Stretch items to full width */
    }

    .country-code {
        border-right: none;
        border-bottom: 1px solid #ddd;
        border-radius: 10px 10px 0 0; /* Top corners rounded */
    }

    #phoneNumber {
        border: 1px solid #ddd;
        border-top: none; /* Already covered by country code border */
        border-radius: 0 0 10px 10px; /* Bottom corners rounded */
    }

    .claim-btn {
        width: 100%; /* Full width button */
        border-radius: 10px; /* Fully rounded button */
        margin-top: 1rem; /* Space above button */
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1rem;
    }

    .main-title {
        font-size: 1.8rem;
    }
    .main-title .highlight {
        font-size: 2rem;
    }

    .subtitle, .description {
        font-size: 0.9rem;
    }

    .input-form {
        padding: 1rem;
    }
    .validation-info {
        font-size: 0.8rem;
    }

    .gift-box-img {
        width: 250px; /* Even smaller gift box on very small screens */
    }

    .scroll-to-top-btn, .floating-contact {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .floating-contact {
        font-size: 1.4rem;
    }
}

/* Add these styles to your existing style.css */

.coupon-display {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e6ffed; /* Light green background */
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745; /* Dark green text */
    word-break: break-all; /* Long codes ke liye */
    animation: fadeIn 0.8s ease-out; /* Animation */
    display: none; /* Initially hidden */
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease;
}

.form-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}


/* see more button css */
/* services.css */

/* Styling for the See More button container */
.see-more-container {
    text-align: center; /* Center the button */
    margin-top: 40px; /* Space above the button */
    padding-bottom: 50px; /* Space below the button */
    width: 100%;
}

/* Styling for the See More button */
.see-more-btn {
    background-color:#5bc997; /* A purple shade, similar to your previous highlight */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Hover effect */
.see-more-btn:hover {
    background-color: #5bc997; /* Lighter purple on hover */
    transform: translateY(-3px); /* Lifts the button slightly */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* More pronounced shadow on hover */
}

/* Active (click) effect */
.see-more-btn:active {
    background-color: #550a8b; /* Darker purple when clicked */
    transform: translateY(0); /* Button goes back to original position */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}


/* ----------------sending message next animation */

/* --- New Styles for Animation & Status Messages --- */

.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none; /* Prevents interaction when hidden */
    transition: opacity 0.3s ease;
}

.status-message {
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    opacity: 1; /* Default for visible state */
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.status-success {
    background-color: #e6ffe6;
    color: #28a745;
    border: 1px solid #28a745;
}

.status-error {
    background-color: #ffe6e6;
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Spinner Animation */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #5bc997; /* Spinner color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Image */
.success-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeInScale 0.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#back-to-form-btn {
    background-color: #aaa; /* Blue for "Send another message" */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#back-to-form-btn:hover {
    background-color: #aaa;
}

/* Form transition - Optional: Smoothly hide/show the form itself */
.contact-form.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-form.fade-in {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.3s ease;
}

/* Validation message for phone */
.validation-message {
    color: #dc3545; /* Red color for error messages */
    font-size: 0.85em;
    margin-top: -10px; /* Adjust spacing */
    margin-bottom: 10px;
    text-align: left;
    padding-left: 5px;
}



/* ------------Reviews Section Styling-------------------------- */
#reviews-section {
    background-color: #f8f8f8; /* Light background for the section */
    padding: 60px 20px;
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Review Carousel Styling */
.review-carousel {
    overflow: hidden; /* Hides content outside the carousel boundaries */
    width: 100%;
    position: relative;
}

.review-wrapper {
    display: flex; /* Arranges review cards in a row */
    /* This will be controlled by JavaScript for scrolling */
    animation: scrollReviews 30s linear infinite; /* Animation applied here */
    will-change: transform; /* Optimize for animation performance */
}

.review-card {
    flex: 0 0 300px; /* Each card takes a fixed width, no shrinking/growing */
    min-width: 300px; /* Ensure minimum width */
    max-width: 300px; /* Ensure maximum width */
    margin: 0 15px; /* Space between cards */
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex; /* For internal alignment */
    flex-direction: column;
    justify-content: space-between; /* Pushes name to bottom */
    align-items: center; /* Centers content horizontally */
    box-sizing: border-box; /* Include padding/border in width */
}

/* Star Rating Styling */
.stars {
    color: #ffc107; /* Gold color for stars */
    font-size: 1.5em;
    margin-bottom: 15px;
    white-space: nowrap; /* Keep stars on one line */
}

.stars .star {
    margin: 0 1px; /* Small space between stars */
}

/* Review Text and Reviewer Name */
.review-text {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows text to take up available space */
}

.reviewer-name {
    font-size: 0.95em;
    color: #777;
    font-weight: bold;
    margin-top: auto; /* Pushes name to the bottom of the card */
}

/* Keyframe Animation for Scrolling */
@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This value needs to be adjusted dynamically by JS if you want perfect infinite scroll,
           or manually if you know the exact total width of all cards + margins.
           For now, let's assume it scrolls past one set of reviews.
           JS will handle cloning for seamless loop. */
        transform: translateX(calc(-330px * 5)); /* Example: (card-width + margin) * number of cards to scroll */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 80%; /* On smaller screens, cards take more width */
        min-width: 80%;
        max-width: 80%;
        margin: 0 10px;
    }

    @keyframes scrollReviews {
        100% {
            transform: translateX(calc(-90% * 5)); /* Adjust for smaller screens */
        }
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 95%; /* Even smaller screens */
        min-width: 95%;
        max-width: 95%;
        margin: 0 5px;
    }

    @keyframes scrollReviews {
        100% {
            transform: translateX(calc(-100% * 5)); /* Adjust for smallest screens */
        }
    }
}


/* Footer container styling */
footer {
    display: flex;
    justify-content: space-between; /* Spreads content evenly */
    align-items: center; /* Centers items vertically */
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 20px;
    flex-wrap: wrap; /* Wraps items to the next line on small screens */
    text-align: center;
}

/* Left and right footer sections */
.footer-left,
.footer-right {
    flex: 1; /* Makes items flexible to fill their space */
    min-width: 200px; /* Minimum width for small screens */
}

/* Developer image styling */
.dev-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-right span {
    font-size: 14px;
    font-weight: bold;
}

.footer-left p {
    margin: 0;
}

/* Google Maps section styling */
.map-location-container {
    max-width: 450px; /* Reduced width for the map */
    margin: 20px auto; /* Centers the map */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    flex: 2; /* Gives more space to the map */
}

.map-frame {
    width: 100%;
    height: 250px; /* Reduced map height */
}

.map-frame iframe {
    border-radius: 12px 12px 0 0;
}

.location-details {
    padding: 15px;
    color: #000000; /* Keep text black for readability on white background */
}

.location-details h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-top: 0;
    margin-bottom: 8px;
}

.location-details p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.location-details p strong {
    color: #000000;
}

.get-direction-btn {
    display: inline-block;
    background-color: #777;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.get-direction-btn:hover {
    background-color:#777;
}

/* Media query for mobile and small screens */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
    .footer-left,
    .footer-right,
    .map-location-container {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-right,
    .footer-left {
        justify-content: center;
    }
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

/* चैट आइकन के लिए CSS */
#chat-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

/* चैट विंडो के लिए CSS */
#chat-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 90%;
    max-width: 400px;
    height: 80vh;
    max-height: 600px;
    transform: scale(0); /* शुरुआत में छिपाने के लिए */
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    display: none; /* शुरुआत में डिस्प्ले को 'none' रखें */
}

#chat-window.open {
    transform: scale(1);
    opacity: 1;
    display: flex; /* जब खुला हो तो डिस्प्ले 'flex' कर दें */
}

/* कस्टम स्क्रॉलबार */
.chat-container::-webkit-scrollbar {
    width: 8px;
}
.chat-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.chat-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.chat-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* मैसेज एनिमेशन */
@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.message-bubble {
    animation: slideInUp 0.3s ease-out forwards;
}
