      /* Custom gradient class for the Navbar and Banner */
        .custom-gradient-bg {
            background-color: #003153;
            background-image: linear-gradient(315deg, #003153 0%, #1B1B1B 74%);
        }
        
        /* Define colors for the dark nav bar elements */
        :root {
            --primary-accent-blue: #26a0da; /* Accent color for buttons/active links in the dark nav */
            --text-dark: #333333; /* Dark text for the light body background */
            --text-light: #F0F0F0; /* Light text for the dark nav background */
        }

        /* Set Inter font globally */
        body {
            font-family: 'Inter', sans-serif;
            padding-top: 60px;
        }

        /* Utility links styling (Default for white background) */
        .utility-link {
            color: var(--text-dark);
            transition: color 0.2s;
        }
        .utility-link:hover {
            color: var(--primary-accent-blue);
        }

        /* Nav Link styling inside the DARK header */
        .nav-link-dark {
             color: var(--text-light); /* Light text for the dark background */
             transition: color 0.2s;
        }
        .nav-link-dark:hover {
            color: var(--primary-accent-blue);
        }

        /* Main Nav link styling for the active state */
        .nav-link.active {
            color: var(--text-light); /* Active text remains light/white */
            border-bottom: 2px solid var(--primary-accent-blue); /* Underline uses the bright blue accent */
            padding-bottom: 4px;
            font-weight: 500;
        }
        
        /* Ensure the main nav links are centered relative to the bottom of the container on desktop */
        .nav-links-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
        }

        /* Styling for the active tab button */
        .tab-button.active {
            background-color: white;
            color: #333333;
            border-bottom: 2px solid var(--primary-accent-blue);
            font-weight: 600; /* Added font-semibold for active tab */
        }

        .logo-title {
            font-family: serif;
            font-weight: 600; /* Extra Bold */
            font-size: 1.875rem; /* 30px */
            letter-spacing: 0.1em;
            color: #aa8e68; /* Using your primary-accent-blue */
            line-height: 1.5;
        }

        .logo-subtitle {
            font-family: serif;
            font-weight: 400;
            font-size: 0.875rem;
            letter-spacing: 0.3em;
            color: #F0F0F0;
            margin-top: -2px;

        }

    /* Basic Reset and Global Styles */
.cont_tiles {
    font-family: Arial, sans-serif; /* Replace with the actual font used */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.website-section-container {
    max-width: 1400px; /* Adjust max-width as needed */
    margin: 0 auto;
}

/* --- 1. Hero/Carousel Styling (No Change) --- */
.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 60vh; /* Aspect ratio height, adjust as needed */
    overflow: hidden;
    color: white;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
   
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-text {
    font-size: 2vw; /* Responsive font size */
    color: #bea27d;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
    z-index: 10;
    transition: opacity 0.5s ease-in-out; 
    opacity: 1;
    margin-bottom: 40px;
}
.carousel-text.fade-in {
    opacity: 0.2; /* Briefly dim the text before the transition completes */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgb(187, 181, 181);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 20;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.slider-arrow:hover {
    opacity: 1;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* --- NEW FEATURE SECTION STYLING (Image Cards) --- */
.feature-cards-container {
    max-width: 1400px;
    margin: -90px auto 50px auto; /* Pulls the features up over the hero */
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative; 
    z-index: 10; 
}

.feature-card {
    height: 250px; /* Fixed height for image consistency */
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: 2px solid rgb(221, 224, 228); /* Added a blue border */
}

/* Individual Image Backgrounds (Use your images/paths here) */
.card-image-1 {
    background-image: url('Images/Temu.jpeg'); /* Placeholder/Example image 1 */
}
.card-image-2 {
    background-image: url('Images/card2.jpeg'); /* Placeholder/Example image 2 */
}
.card-image-3 {
    background-image: url('Images/Tiles.jpeg'); /* Placeholder/Example image 3 */
}

/* Base Content Styling (Always visible text at bottom) */
.card-content-base {
    position: absolute;
    
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    /* Dark gradient overlay for text readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: rgb(62, 112, 153);
    z-index: 5;
}

.card-content-base h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); */
    color: #ecdede;
}

/* Hover Overlay Styling */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 71, 87, 0.9); /* Blue accent overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease;
    z-index: 10;
}

.card-hover-overlay p {
    font-size: 14px;
    line-height: 1.3;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .card-hover-overlay {
    opacity: 1; /* Show overlay on hover */
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .carousel-text {
        font-size: 4vw; 
        max-width: 90%; 
        text-align: center;
        margin-top: 70px;
    }
    .feature-cards-container {
        margin-top: -50px; 
        padding: 0 20px; 
        gap: 15px;
    }
    .feature-card {
        height: 200px;
    }
}


.container_abt {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.5;
            width: 90%;
            max-width: 1200px;
            margin: 80px auto;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        /* --- Text Section Styling (Desktop) --- */
        .text-content {
            /* MODIFIED: Increased flex-basis to 70% to accommodate smaller image */
            flex: 1 1 70%; 
        }

        .text-content h1 {
            font-size: 2.0em;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* REMOVED: Animation Settings for text content (now handled by .scroll-reveal) */
        }

        .text-content p {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
            /* REMOVED: Animation Settings for paragraphs (now handled by .scroll-reveal) */
        }


        .btn-read-more {
            display: inline-block;
            padding: 10px 25px;
            background-color: #003153;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            /* REMOVED: Animation Settings for button (now handled by .scroll-reveal) */
        }

        .btn-read-more:hover {
            background-color:  #314755;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }

        /* --- Image Section Styling (Desktop) --- */
        .image-content {
            /* MODIFIED: Reduced flex-basis to 30% for a smaller image */
            flex: 1 1 35%; 
            position: relative;
            /* border-radius: 30px; */
            border-bottom-left-radius: 50px;
            border-top-right-radius: 50px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            /* REMOVED: Entry Animation (now handled by .scroll-reveal) */
        }

        .image-content img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        /* Continuous floating animation for the image container */
        .image-content.revealed {
            /* Keeps the floating animation for the revealed state */
            animation: floatImage 6s ease-in-out infinite 0.8s;
        }

        /* Hover Effect: Zoom image */
        .image-content:hover img {
            transform: scale(1.1);
        }

        /* --- Keyframe Animations --- */
        
        /* REMOVED: @keyframes fadeInUp, @keyframes slideInRight (replaced by .scroll-reveal) */

        @keyframes floatImage {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        /* === START: ADDED SCROLL REVEAL STYLES === */
        /* Initial state (hidden and moved down) */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            /* Slower transition for a more noticeable fade/slide effect */
            transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Revealed state (visible and back to position) */
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Ensure the main header and hero section are visible immediately */
        header, .cont_tiles {
            opacity: 1 !important;
            transform: none !important;
        }
        /* === END: ADDED SCROLL REVEAL STYLES === */

        /* ==================================== */
        /* --- MOBILE RESPONSIVE DESIGN for About Us --- */
        /* ==================================== */
        @media (max-width: 768px) {
            .container_abt { 
                flex-direction: column;
                margin-top: 40px;
                gap: 20px; 
            }
            
            /* Mobile Image Size (kept at 70% as per previous request) */
            .image-content {
                order: 1; 
                flex: 0 0 70%; 
                width: 70%; 
                margin: 0 auto 30px auto; 
                box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            }
            
            .text-content {
                order: 2; 
                flex: 1 1 auto;
                padding: 0 10px; 
            }
            
            .text-content h1 {
                font-size: 1.8em; 
            }
        }

        /* Section Container */
    .products-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    /* Headings */
    .section-title {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 15px;
        color: #2c3e50;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .section-subtitle {
        font-size: 0.6em; /* Adjusted relative to title */
        font-weight: 400;
        color: #003153;
    }

    .separator {
        display: inline-block;
        width: 4px;
        height: 30px;
        background-color: #f0371f;
        margin-left: 20px;
    }

    /* Introduction Text */
    .intro-text {
        font-size: 0.8em;
        line-height: 1.5;
        color: #666;
        margin-bottom: 50px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Product Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    /* Product Card */
    .product-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        aspect-ratio: 4/3;
        cursor: pointer;
        transition: box-shadow 0.3s ease; /* Added transition for subtle shadow */
    }

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

    /* Card Overlay - Content Display */
    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0; /* Hidden by default */
        transition: opacity 0.3s ease; /* Smooth transition */
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); /* Gradient for better text readability at bottom */
        pointer-events: none; /* Allows click-through to underlying image if needed */
    }

    .overlay-title {
        color: #fff;
        font-size: 1.4em;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
        transform: translateY(20px); /* Initial position below visible area */
        transition: transform 0.3s ease, opacity 0.3s ease;
        text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Add text shadow for better contrast */
        opacity: 0; /* Hidden by default */
    }

    /* Hover Effects */
    .product-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Slightly more pronounced shadow on hover */
    }

    .product-card:hover .product-overlay {
        opacity: 1; /* Overlay becomes visible (gradient) */
    }

    .product-card:hover img {
        transform: scale(1.05); /* Subtle zoom effect */
    }

    .product-card:hover .overlay-title {
        transform: translateY(0); /* Title slides up into view */
        opacity: 1; /* Title becomes visible */
    }

    /* View All Button */
    .view-all-container {
        margin-top: 40px;
    }

    .view-all-btn {
        padding: 12px 35px;
        background-color: #003153;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .view-all-btn:hover {
        background-color:  #314755;
        transform: translateY(-3px);
    }

     

        .pro_cont{
            font-family: 'Roboto', sans-serif;
            margin: 0 auto; /* Added 'auto' to center the block */
            padding: 50px 20px; /* Adjusted padding to be symmetrical */
            background-color: #ffffff;
            color: #333;
            max-width: 1200px; /* ADDED: To contain content and allow centering */
        }
        .header-section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .projects-title {
            font-size: 3em;
            font-weight: 500;
            color: #333;
            margin-right: 80px;
            letter-spacing: -1px;
        }

        .red-line {
            width: 4px;
            height: 40px; /* Adjust height to match title if needed */
            background-color: #f0371f;
            margin-right: 15px;
        }

        .header-subtitle {
            font-size: 1.2em;
            font-weight: 400;
            color: #003153;
        }

        .content-paragraph {
            font-size: 0.9em;
            line-height: 1.6;
            color: #555;
            max-width: 100%; 
            text-align: center; 
            margin: 0 auto; 
            text-align: justify;
        }

        .atula_con {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers items horizontally */
        justify-content: center;
        padding: 50px 20px;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto; /* Centers the whole container on the page */
    }

    .header-section {
        margin-bottom: 30px; /* Space between title and sustainability section */
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
        font-weight: 700;
        margin: 0;
        color: #222;
    }

    .content-grid {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .grid-item {
        max-width: 800px; /* Limits text width for better readability */
    }

    .grid-item i {
        font-size: 3rem;
        color: #003153;
        margin-bottom: 20px;
        display: block;
    }

    .grid-item h3 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .grid-item p {
        font-size: 0.9rem;
        line-height: 1.8;
        color: #555;
        margin: 0;
    }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            font-size: 0.95em;
            color: #555;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .feature-list li i {
            color: #003153;
            font-size: 1em;
            margin-right: 10px;
            margin-top: 3px; /* Align checkmark vertically */
        }
        


@media (max-width: 768px) {
    /* Target the header sections within pro_cont and atula_con */
    .pro_cont .header-section,
    .atula_con .header-section {
        flex-direction: column; 
        align-items: flex-start; 
        margin-bottom: 20px; 
    }

    
    .pro_cont .projects-title,
    .atula_con .main-title {
        margin-right: 0; 
        margin-bottom: 5px;
        font-size: 2em; 
    }

    .pro_cont .header-subtitle,
    .atula_con .header-description {
        margin-left: 0; 
       
        max-width: 100%; 
        
        margin-top: 5px; 
    }

    
    .pro_cont .red-line,
    .atula_con .red-line {
        display: none;
    }
    
    /* === ADDED RULE FOR STACKING GRID ITEMS ON MOBILE === */
    .atula_con .content-grid {
        grid-template-columns: 1fr; 
        gap: 30px; 
        padding: 0 10px; 
    }
}



        .footer_cont{
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
            color: #f0f0f0;
        }
        .container {
            /* MODIFIED: 4-column grid layout */
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr; /* Logo/Info | Quick Links | Locations | Contact */
            justify-content: space-between;
            align-items: flex-start;
            padding: 50px 20px; /* INCREASED vertical padding for more height */
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            
        }

        /* NEW: Styles for the link columns */
        .footer-column h3 {
            font-size: 1.2em;
            font-weight: 700;
            color: var(--primary-accent-blue);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: #314755;
        }

        .footer-column ul li a i {
            font-size: 0.8em;
            margin-right: 10px;
            color: var(--primary-accent-blue);
        }

        /* Styling for the first column (Logo/About) */
        .footer-logo-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Re-styled contact items */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: #f0f0f0;
            font-size: 1em;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .contact-item i {
            color: #26a0da; /* Red icon color */
            font-size: 1.2em;
            margin-top: 3px; /* Adjust icon alignment */
            flex-shrink: 0;
        }

        .contact-item a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #314755;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text .phone {
            font-size: 1.1em;
            font-weight: 500;
        }


        .footer {
            /* MODIFIED: Ensure copyright text is visually centered when space allows */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #111;
            border-top: 1px solid #333;
            margin-top: 50px;
        }

        .social-icons a {
            color: #f0f0f0;
            font-size: 1.2em;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color:  #314755;
        }

        .copyright {
            /* MODIFIED: Flex-grow for center alignment */
            font-size: 0.9em;
            color: #aaa;
            flex-grow: 1; 
            text-align: center;
        }

        .scroll-to-top {
            background-color: #26a0da;
            color: #fff;
            padding: 10px 12px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
            margin-right: 30px;
        }

        .scroll-to-top:hover {
            background-color:  #314755;
        }

       

        @media (max-width: 768px) {
           .nav-links-container{
            padding-right: 290px;
           }
          
          
            .footer_cont .container {
                /* Single column for mobile */
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 30px 20px;
            }

            /* NEW: Mobile Column Ordering for 4 columns */
            .footer-logo-column { order: 1; }
            .footer-column:nth-child(2) { order: 2; } 
            .footer-column:nth-child(3) { order: 4; } 
            .footer-column:nth-child(4) { order: 3; } 

            .footer {
                flex-direction: column;
                padding: 20px;
                text-align: center;
                gap: 15px;
                margin-top: 30px;
                position: relative; 
            }

            .social-icons {
                order: 2;
            }

            .copyright {
                order: 1; /* Changed order */
                flex-grow: 0;
                width: 100%;
            }

            .scroll-to-top {
               
                order: 3; /* Changed order */
                /* position: fixed;  */
                bottom: 20px;
                right: 20px;
                z-index: 100;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
            }
        }
        

        /* Chatbot Styles */
        .chatbot-widget {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 380px;
            max-width: 90vw;
            height: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            flex-direction: column;
            z-index: 1000;
            animation: slideUp 0.3s ease-out;
        }

        .chatbot-widget.active {
            display: flex;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chatbot-header {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            padding: 15px 20px;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .chatbot-close-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0;
            transition: transform 0.2s;
        }

        .chatbot-close-btn:hover {
            transform: scale(1.2);
        }

        .chatbot-body {
            flex: 1;
            overflow-y: auto;
            padding: 15px 20px;
            background: #f9fafb;
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .message {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bot-message {
            justify-content: flex-start;
        }

        .bot-message p {
            background: #e9ecef;
            color: #333;
            padding: 10px 15px;
            border-radius: 12px;
            border-radius: 12px 12px 12px 0;
            max-width: 80%;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .user-message {
            justify-content: flex-end;
        }

        .user-message p {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            padding: 10px 15px;
            border-radius: 12px;
            border-radius: 12px 12px 0 12px;
            max-width: 80%;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .chatbot-footer {
            display: flex;
            gap: 10px;
            padding: 15px;
            border-top: 1px solid #e0e0e0;
            background: white;
            border-radius: 0 0 15px 15px;
        }

        #chat-input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 15px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.2s;
        }

        #chat-input:focus {
            border-color: #26a0da;
            box-shadow: 0 0 0 3px rgba(38, 160, 218, 0.1);
        }

        .chat-send-btn {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .chat-send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
        }

        .chatbot-toggle-btn {
            position: fixed;
            bottom: 20px;
            right: 5px;
            width: 55px;
            height: 55px;
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .chatbot-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(38, 160, 218, 0.6);
            animation: none;
        }

        .chatbot-toggle-btn.hidden {
            display: none;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(38, 160, 218, 0.7);
            }
        }

        .whatsapp-toggle-btn {
            position: fixed;
            bottom: 85px;
            right: 5px;
            width: 55px;
            height: 55px;
            background: linear-gradient(to right, #25d366, #128c7e);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 999;
            animation: pulse-green 2s infinite;
            text-decoration: none;
        }

        .whatsapp-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @keyframes pulse-green {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .chatbot-widget {
                width: calc(100vw - 20px);
                height: 400px;
                bottom: 70px;
            }
        }


