/* Custom CSS for Web Bloom Technologies LLC */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Segoe+UI&display=swap');

/* Define Logo Colors as CSS Variables */
:root {
    --logo-blue: #1f75b7;   /* A vibrant blue from your logo */
    --logo-green: #5ab84a;  /* A vibrant green from your logo */
    --dark-text: #212529;
    --light-text: #fff;
    --muted-text: #6c757d;
    --background-light: #f8f9fa;
    --background-grey: #e9ecef;
    --card-shadow: rgba(0, 0, 0, 0.15);
    --card-shadow-hover: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FF6F61 ;
    line-height: 1.2;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Or your preferred background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Smooth transition */
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Make it unclickable once hidden */
}

/* Spinner Styles (Bootstrap's spinner is used here) */
#preloader .spinner-border {
    width: 3rem; /* Adjust size as needed */
    height: 3rem; /* Adjust size as needed */
    color: var(--logo-blue); /* Use your brand color from :root, or Bootstrap text-primary */
}

/* NEW: Container for the circle and text */
.loader-container {
    display: flex;
    flex-direction: column; /* Stack circle and text vertically */
    align-items: center; /* Center them horizontally */
    gap: 15px; /* Space between circle and text */
}

/* NEW: Rotating Circle Animation */
.rotating-circle {
    width: 60px; /* Size of the circle */
    height: 60px;
    border: 6px solid var(--logo-blue); /* Base border color */
    border-top-color: transparent; /* Makes it look like a loading spinner */
    border-radius: 50%; /* Makes it a circle */
    animation: spin 1.2s linear infinite; /* Apply the spin animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Montserrat', sans-serif; /* Using your defined font */
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text); /* Use a dark text variable or a specific color */
}

.navbar {
    background-color: var(--logo-blue); /* Uses your custom brand blue */
    font-weight: bold;                 /* Correct way to apply italics */
    position: relative;
    z-index: 1;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;           
    align-items: center;
}

.brand-text {
    color: #1f75b7;
    font-weight: bold;
    font-size: 1.25rem; 
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    display: flex;
    list-style: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FF6F61;
}

.navbar-nav .nav-link.active {
    font-weight: 800;
}

.navbar.before .active-element{
    transform: rotateY(180deg);
}

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/b.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title {
  animation: zoomFadeIn 1s ease-out forwards;
  font-family: Algerian;
}

.hero-subtitle {
  animation: zoomFadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-buttons {
  animation: zoomFadeIn 1s ease-out forwards;
  animation-delay: 0.6s;
}

#hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

#hero p.lead {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

section {
    padding: 80px 0;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 8px 20px; /* Reduced padding for smaller size */
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem; /* Slightly smaller font size */
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#about-snippet {
    background-color: #e9ecef;
}

#about-snippet .lead {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.bg-custom-yellow {
    background-color: #FFFF00 !important; /* A standard bright yellow */
    /* You can use any valid CSS color value: */
    /* background-color: yellow; */
    /* background-color: rgb(255, 255, 0); */
    /* background-color: hsl(60, 100%, 50%); */
    /* For a pastel yellow, you might try: */
    /* background-color: #FFFACD; /* Lemon Chiffon */
    /* background-color: #FDFD96; /* Light yellow */
}

.card, #our-values .p-4 {
    background-color: #5ab84a !important;
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.card:hover, #our-values .p-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#featured-services .card {
    background-color: #eed6b2;
}

/* Styles for the "Our Story" section */
#our-story {
  position: relative;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#our-story .container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-height: 400px;
}

/* Background image styles */
.bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.3) brightness(0.4) contrast(1.1);
  transition: opacity 1.5s ease-in-out;
  opacity: 1;
  z-index: 0;
  max-height: 400px;
}

#our-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.bg-image-1 {
  background-image: url('../img/about1.jpg');
}

.bg-image.is-visible {
   opacity: 1;
}

#our-values {
    background-color: white;
}

#our-values h2 {
    color: #000;
    font-size: 2.5rem;
}

#our-values h4 {
    color: #FFD700 !important; 
    font-weight: 700;
    margin-bottom: 10px;
}

#our-values .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#our-values .col {
    display: flex;
}

#our-values .p-4 {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
}

#our-values .p-4:hover {
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

#our-values i {
    color: #fff;
    margin-bottom: 20px;
}

#our-values h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

#our-values p {
    font-size: 0.95rem;
}

#our-founders .founder-profile {
    background-color: #FFDAB9;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#our-founders .founder-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#our-founders .founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #007bff;
}

#our-founders .founder-profile h3 {
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 5px;
}

#our-founders .founder-profile .lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

#our-founders .founder-profile .small-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

#services-section {
    background: url('../img/design.jpg') no-repeat center center; /* Replace with your image path */
    background-size: cover; /* Make sure the background covers the entire section */
    background-attachment: fixed; /* Keep the background fixed while scrolling */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Optional: adds some shadow for better text readability */
}

#services-section h1{
    color:  red;
}

#service-categories .card {
  background-color: #e3d7ff !important;  /* Light gray */
  border: 1px solid #e0e0e0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#service-categories .card:hover {
  background-color: #ADD8E6 !important;  /* Slightly darker, cool tone for contrast */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Optional soft shadow on hover */
}

#service-categories .card-body {
    padding: 30px;
}
#service-categories .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}
#service-categories .card i {
    color: #007bff;
    margin-bottom: 20px;
}

#design-details .card {
  background-color: #ADD8E6 !important; /* a soft peach shade */
  color: #333; /* dark text for contrast */
  border: none;
  border-radius: 8px;
}

#design-details .card:hover {
  background-color: #ffd1a3 !important; /* slightly darker peach on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

#development-details .card {
  background-color: #ADD8E6 !important; /* a soft peach shade */
  color: #333; /* dark text for contrast */
  border: none;
  border-radius: 8px;
}

#development-details .card:hover {
  background-color: #ffd1a3 !important; /* slightly darker peach on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

#animations-details .card {
  background-color: #ADD8E6 !important; /* a soft peach shade */
  color: #333; /* dark text for contrast */
  border: none;
  border-radius: 8px;
}

#animations-details .card:hover {
  background-color: #ffd1a3 !important; /* slightly darker peach on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

#analysis-details .card {
  background-color: #ADD8E6 !important; /* a soft peach shade */
  color: #333; /* dark text for contrast */
  border: none;
  border-radius: 8px;
}

#analysis-details .card:hover {
  background-color: #ffd1a3 !important; /* slightly darker peach on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

/* Custom Color: Orange */
.bg-pink {
    background-color: #D7A88E;
}

/* Styles for the interactive contact link boxes in the first section of Contact page */
#top-contact-info .row.justify-content-center {
    align-items: stretch;
    display: flex;
}

#top-contact-info .col-md-5.col-lg-4 {
    display: flex;
}

#top-contact-info .contact-link-box {
    background-color: #FFA500;
    color: #000;
    transition: none;
    transform: none;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#top-contact-info .contact-link-box:hover {
    background-color: #D7A88E;
    transform: none;
    box-shadow: none;
}

#top-contact-info .contact-link-box i {
    color: #007bff;
}

#top-contact-info .contact-link-box h5 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

#top-contact-info .contact-link-box p {
    font-size: 0.9rem;
    line-height: 1.3;
}


/* Contact Page Introductory Section */
#contact-page-intro h1 {
    color: #007bff;
}

#contact-page-intro h1 .text-success {
    color: #28a745;
}

/* Contact Section (Form and Info Cards from includes/contact_section.php) */
#get-in-touch-section .card {
    transform: translateY(0) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: none !important;
}

#get-in-touch-section .d-flex i {
    font-size: 2.5rem;
    line-height: 1;
}

#get-in-touch-section .d-flex h5 {
    font-weight: 600;
    color: #212529;
}

/* Responsive Google Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 75%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

/* Footer Styling */
footer {
    color: rgba(255, 255, 255, 0.7);
    background-color: #212529;
    font-size: 0.9rem;
}

footer .list-unstyled li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

footer .list-unstyled li a:hover {
    color: red;
    text-decoration: underline;
}

.social-links a {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
}

.social-links a:hover {
    color: red !important;
    transform: translateY(-3px);
}

/* For all links inside .quick-links (optional wrapper) */
.quick-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: red !important; /* Change this to any color you want (e.g., teal, red, gold, etc.) */
}

#feedback-section {
  background: white; /* light blue to off-white */
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#feedback-section h2 {
  color: #2b4c7e; /* darker blue */
  font-weight: 600;
}

#feedbackForm .form-control {
  border-radius: 0.5rem;
}

#feedbackForm .btn-primary {
  background-color: #2b4c7e;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  max-width: 250px;
  margin: 0 auto;
}

#feedbackForm .btn-primary:hover {
  background-color: #1f355a;
}

/* Media Queries for Responsiveness */

/* Adjustments for smaller screens (mobile) */
@media (max-width: 767.98px) {
    #hero {
        background-attachment: scroll;
        min-height: 70vh;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p.lead {
        font-size: 1.2rem;
    }

    section {
        padding: 40px 0;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 8px;
    }

    /* General section headings for mobile */
    #contact-cta h2, #our-values h2, #get-in-touch-section h2 {
        font-size: 2rem;
    }
    /* Specific for the new contact intro h1 on small screens */
    #contact-page-intro h1 {
        font-size: 2.5rem;
    }


    footer .col-md-4 {
        text-align: center;
    }

    /* Adjust floating button for smaller screens */
    .floating-feedback-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1rem;
    }

    /* Adjust pop-up for smaller screens to be centered */
    .feedback-popup-content {
        max-width: 90%;
        width: 100%; /* Ensure it takes full width within max-width */
        left: 50%; /* Center horizontally */
        top: 50%; /* Center vertically */
        right: auto; /* Remove right positioning */
        bottom: auto; /* Remove bottom positioning */
        transform: translate(-50%, -50%); /* Centering transform */
        /* Opacity handled by JS, transition kept for smoothness */
        opacity: 0; /* Still hidden initially for JS animation */
    }

    /* When overlay has opacity:1, this will reveal the popup content */
    .feedback-popup-overlay[style*="opacity: 1"] .feedback-popup-content {
        opacity: 1;
        transform: translate(-50%, -50%); /* Ensure it stays centered on show */
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  width: 35px;
  height: 35px;
}

.carousel-indicators [data-bs-target] {
  background-color: #0d6efd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators {
  justify-content: center;
  margin-top: 20px;
}

.bg-custom-peach {
    background-color: #FFDAB9; /* A common peach color hex code */
}

/* Specific adjustments for very small screens if needed */
@media (max-width: 575.98px) {
    #hero h1 {
        font-size: 2rem;
    }
    #hero p.lead {
        font-size: 1rem;
        color: white !important;
    }
    .btn-lg {
        width: 100%;
        margin-bottom: 10px !important;
        margin-right: 0 !important;
    }
    .social-links a {
        font-size: 1.3rem;
    }
}

/* Specific adjustment for top-contact-info h1 on very small screens */
@media (max-width: 575.98px) {
    #top-contact-info h1.display-4 {
        font-size: 1.8rem;
    }
    #top-contact-info .contact-link-box h5 {
        font-size: 1.1rem;
    }
    #top-contact-info .contact-link-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .btn {
        font-size: 14px !important;  /* Reduced font size */
        padding: 8px 16px !important; /* Reduced padding */
    }
}

/* Advanced entrance animation with vertical shake */
@keyframes advanced-contact-image-entrance {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(0); /* Start slightly smaller and faded */
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px); /* Scale up slightly and move up a bit */
    }
    80% {
        transform: scale(1) translateY(3px); /* Settle with a slight bounce down */
    }
    100% {
        transform: scale(1) translateY(0); /* Final settled position */
    }
}

/* Vertical shake animation (modified for slower speed) */
@keyframes vertical-shake {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px); /* Slightly reduced intensity for a slower, gentler shake */
    }
    50% {
        transform: translateY(4px);
    }
    75% {
        transform: translateY(-4px);
    }
}

/* Class to apply the combined animation */
.contact-image-entrance-shake {
    animation: advanced-contact-image-entrance 1.2s ease-out forwards,
               vertical-shake 1.5s ease-in-out 1.2s infinite alternate; /* DURATION CHANGED TO 1.5s for slower shake */
}

    /* Styles for the chat pop-up */
    .chat-popup {
        /* CHANGE: Hidden by default */
        display: none;
        position: fixed;
        bottom: 100px; /* Adjust this value to position it above the button */
        right: 20px;
        width: 350px; /* Width of the chat window */
        height: 500px; /* Height of the chat window */
        background-color: #f8f9fa; /* Light grey background */
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 1000; /* Ensure it's above other content */
        overflow: hidden; /* For rounded corners */
        /* display: flex; REMOVED from here, controlled by JS */
        flex-direction: column;
    }

    .chat-header {
        background-color: #6F42C1; /* Purple header */
        color: white;
        padding: 15px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        font-size: 1.1em;
    }

    .chat-close-button {
        background: none;
        border: none;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
        padding: 0 5px;
        line-height: 1; /* Adjust line-height for better centering */
    }

    .chat-body {
        padding: 15px;
        overflow-y: auto; /* Enable scrolling for chat messages */
        flex-grow: 1; /* Allow body to take available space */
        display: flex;
        flex-direction: column;
        /* CHANGE: Align content to the start (top) for chat history */
        justify-content: flex-start;
    }

    /* Styles for individual message bubbles */
    .message-bubble {
        max-width: 85%;
        margin-bottom: 10px;
        padding: 10px 15px;
        border-radius: 10px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .message-bubble.assistant {
        background-color: #e2e6ea; /* Light grey for assistant's message */
        color: #333;
        align-self: flex-start; /* Align assistant's message to the left */
        margin-right: auto;
    }

    .message-bubble.user {
        background-color: #007bff; /* Blue for user's message */
        color: white;
        align-self: flex-end; /* Align user's message to the right */
        margin-left: auto;
    }

    .chat-options {
        display: flex;
        flex-wrap: wrap; /* Allow options to wrap to the next line */
        gap: 8px; /* Space between buttons */
        margin-top: 10px;
        /* CHANGE: Hidden by default, shown by JS */
        display: none;
    }

    .chat-option-button {
        background-color: #ced4da; /* Grey for option buttons */
        border: 1px solid #adb5bd;
        color: #495057;
        padding: 8px 15px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 0.9em;
    }

    .chat-option-button:hover {
        background-color: #adb5bd;
    }

    .chat-input-area {
        display: flex;
        padding: 15px;
        border-top: 1px solid #dee2e6;
        gap: 10px;
    }

    .chat-input {
        flex-grow: 1;
        border: 1px solid #ced4da;
        border-radius: 20px;
        padding: 10px 15px;
        outline: none;
    }

    .chat-send-button {
        background-color: #007bff; /* Blue send button */
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 1.2em;
    }

    .chat-send-button:hover {
        background-color: #0056b3;
    }

    /* Styles for the open chat button */
    .open-chat-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff; /* Blue color */
        color: white;
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 2.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999; /* Below the chat pop-up */
        /* CHANGE: Initially visible */
        display: flex;
    }

        .open-chat-button.aos-animate {
            opacity: 1;
            pointer-events: auto;
        }
        .open-chat-button:hover {
            background-color: #5a36a0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 768px) {
            .open-chat-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
            }
        }


    /* New custom peach background color */
    .bg-custom-peach {
        background-color: #FFDAB9; /* A common peach color hex code */
    }

    /* Typing indicator styles */
    .typing-indicator {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        padding: 10px 15px;
        border-radius: 10px;
        background-color: #e2e6ea;
        color: #333;
        width: fit-content;
    }
    .typing-indicator span {
        animation: blink 1s infinite;
        font-size: 20px;
        line-height: 0;
        margin-right: 2px;
    }
    .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
    .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes blink {
        0%, 100% { opacity: 0.2; }
        50% { opacity: 1; }
    }
