/* General Reset & Variables */
:root {
    --navy: #001f4d;
    --navy-light: #003380;
    --saffron: #FF9933;
    --saffron-hover: #e68a2e;
    --green: #138808;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Source Sans 3', 'Noto Sans Malayalam', sans-serif; }
body { 
    line-height: 1.6; 
    color: var(--text-main); 
    background-color: #ffffff; 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    /* Global Page Load Animation */
    animation: globalPageLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Page Load Keyframes */
@keyframes globalPageLoad {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 10px; }

/* Helpers */
.text-navy { color: var(--navy) !important; }
.text-saffron { color: var(--saffron) !important; }
.text-green { color: var(--green) !important; }
.text-white { color: #fff !important; }
.text-light { color: #cbd5e1 !important; }
.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--navy); }

.container { width: 90%; max-width: 1200px; margin: auto; padding: 0 15px; }
.section-title { color: var(--navy); margin-bottom: 50px; font-size: 2.8rem; text-align: center; font-weight: 800; letter-spacing: -0.5px; }

/* Flag Bar */
.flag-bar { height: 6px; width: 100%; background: linear-gradient(to right, #FF9933 0%, #FF9933 33.3%, #ffffff 33.3%, #ffffff 66.6%, #138808 66.6%, #138808 100%); position: sticky; top: 0; z-index: 1100; }

/* Header Navigation */
header { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 6px; z-index: 1000; transition: all 0.3s ease; }
.header-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
header nav { display: flex; align-items: center; transition: all 0.3s ease; }
header ul { display: flex; list-style: none; gap: 25px; }
header a { color: var(--text-main); text-decoration: none; font-size: 1rem; font-weight: 600; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
header a:hover { color: var(--saffron); }

/* 🚨 POPUP FIXED CENTER ENGINE 🚨 */
.modal-overlay {
    position: fixed; /* Locks it to the screen, NOT the page */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 15, 38, 0.75); /* Dark semi-transparent background */
    backdrop-filter: blur(8px); /* Blurs the background content for focus */
    display: none; /* Hidden by default */
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically */
    z-index: 99999999; /* Higher than preloader and header */
    padding: 20px;
    transition: all 0.4s ease;
}

/* Shows the modal when 'active' class is added by JS */
.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 90vh; /* Prevents popup from being taller than the screen */
    overflow-y: auto;  /* Allows scrolling INSIDE the form if it's long */
}

/* Smooth entry animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Close Button Fix */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--saffron);
}

/* 🚨 THE FLOATING LANGUAGE BUTTON 🚨 */
.btn-lang {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(19, 136, 8, 0.4);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-lang:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(19, 136, 8, 0.6);
    background: #0f6e06;
}

/* Mobile Menu Toggle Hidden on Desktop */
.menu-toggle { display: none; font-size: 2rem; color: var(--navy); cursor: pointer; transition: color 0.3s; }
.menu-toggle:hover { color: var(--saffron); }

/* 🚨 ANIMATIONS (Including New Reveal) 🚨 */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* 🚨 NEW PREMIUM HERO & PILLARS 🚨 */
.hero-new { position: relative; height: 85vh; min-height: 600px; display: flex; align-items: center; color: white; overflow: hidden; background: var(--navy); }
.hero-slider-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slider-bg .slide { width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.5); }
.hero-content-new { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; animation: fadeInDown 1.2s ease-out forwards; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; font-weight: 900; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.pillar-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; padding: 50px 0; }
.pillar-item { background: #fff; padding: 40px 30px; border-radius: 20px; border: 1px solid #eee; transition: 0.3s; text-decoration: none; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pillar-item:hover { background: var(--bg-light); border-color: var(--saffron); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.pillar-item i { font-size: 2.5rem; color: var(--navy); margin-bottom: 20px; transition: color 0.3s; }
.pillar-item:hover i { color: var(--saffron); }

/* Old Hero & Sections (Kept for inner pages) */
.top-slider { width: 100%; height: calc(100vh - 110px); position: relative; border-bottom: 4px solid var(--saffron); overflow: hidden; }
.slider-container { width: 100%; height: 100%; overflow: hidden; }
.slider-container .slide { width: 100%; height: 100%; background-size: cover; background-position: center top; background-repeat: no-repeat; animation: slowZoom 15s infinite alternate ease-in-out; }
.hero { min-height: 550px; background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.7)), url('https://i.postimg.cc/GpNsXDsS/rannie-1920x1080-20230509124901547517.webp') center center / cover no-repeat; text-align: center; color: #ffffff; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px 20px; border-bottom: 4px solid #FF9933; }
.hero-content { animation: fadeInDown 1.2s ease-out forwards; }
.hero p { font-size: 1.4rem; margin-bottom: 35px; color: #e2e8f0; font-weight: 600; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 14px 30px; 
    text-decoration: none; 
    font-size: 1.05rem; 
    font-weight: 700; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
    cursor: pointer; 
    /* 🚨 FIX: Forces borders to not overflow column width 🚨 */
    box-sizing: border-box; 
    border: 2px solid transparent; 
}

.btn-primary { background: var(--saffron); color: #fff; box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3); }
.btn-primary:hover { background: var(--saffron-hover); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 153, 51, 0.5); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn-saffron { background: var(--saffron); color: white; box-shadow: 0 4px 15px rgba(255,153,51,0.4); border-radius: 50px; }
.btn-saffron:hover { background: var(--saffron-hover); transform: scale(1.05); color: white; }

/* 🚨 FIX: Ensure Action Buttons in Tables Don't Overflow 🚨 */
.action-column .btn { width: 100%; box-sizing: border-box; }

/* 🚨 NEW: 9:16 PORTRAIT VIDEO REELS 🚨 */
.reels-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; }
.reel-card { background: #000; border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 16; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: transform 0.4s ease; border: 1px solid rgba(255,255,255,0.1); }
.reel-card:hover { transform: translateY(-10px) scale(1.02); }
.reel-card video { width: 100%; height: 100%; object-fit: cover; }

/* Old Home Cards (Kept for backwards compatibility) */
.home-intro { padding: 80px 0; background: #fff; text-align: center; }
.home-intro-text { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: #475569; line-height: 1.8; }
.home-pillars { padding: 0 0 100px; background: #fff; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-top: 40px; }
.pillar-card { padding: 40px 30px; border-radius: 12px; background: var(--bg-light); text-align: center; border-bottom: 4px solid var(--saffron); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block;}
.pillar-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--navy); }
.pillar-card i { font-size: 3rem; color: var(--navy); margin-bottom: 20px; transition: color 0.3s; }
.pillar-card:hover i { color: var(--saffron); }
.pillar-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.4rem; }
.pillar-card p { color: var(--text-muted); font-size: 1rem; }

/* Short Manifesto */
.manifesto-new-hero { background: linear-gradient(rgba(0, 31, 77, 0.9), rgba(0, 31, 77, 0.9)), url('https://i.postimg.cc/GpNsXDsS/rannie-1920x1080-20230509124901547517.webp') center/cover; padding: 100px 20px; text-align: center; color: white; border-bottom: 5px solid var(--saffron); }
.manifesto-new-hero h1 { font-size: 3.5rem; margin-bottom: 15px; color: var(--saffron); font-weight: 800; }
.manifesto-timeline { padding: 80px 0; background: var(--bg-light); }
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.timeline-item { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; overflow: hidden; border: 1px solid #e2e8f0; transition: transform 0.3s;}
.timeline-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--saffron); }
.timeline-item::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: var(--saffron); opacity: 0.05; border-radius: 0 0 0 100%; transition: transform 0.5s; }
.timeline-item:hover::before { transform: scale(2); opacity: 0.1; }
.timeline-icon { width: 70px; height: 70px; background: var(--navy); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0, 31, 77, 0.2); }
.timeline-item h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 15px; font-weight: 800; }
.timeline-item p { color: #475569; font-size: 1.05rem; margin-bottom: 20px; line-height: 1.7; }
.timeline-list { list-style: none; }
.timeline-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; color: #334155; font-weight: 600; font-size: 1.05rem; }
.timeline-list li i { color: var(--green); margin-top: 5px; }

/* Vision & About Specifics */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); object-fit: cover; object-position: top center; aspect-ratio: 3/4; }
.about-text h3 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 5px; }
.about-text p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }
.vision-statement-fullscreen { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, #00112b 100%); color: white; text-align: center; padding: 40px 20px; position: relative; }
.vision-fullscreen-content { max-width: 1000px; z-index: 2; }
.quote-icon { font-size: 4rem; opacity: 0.5; margin-bottom: 20px; }
.vision-fullscreen-content h2 { font-size: 1.8rem; color: var(--saffron); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.vision-lead { font-size: 2.5rem; font-weight: 300; line-height: 1.5; color: #ffffff; font-style: italic; }
.vision { padding: 100px 0; }
.vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.vision-card { background: #fff; padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.4s ease; border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.vision-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--saffron); }
.vision-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.vision-card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 3.5rem; margin-bottom: 25px; }
.vision-card h3 { font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; }
.vision-list { list-style: none; }
.vision-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 1.05rem; color: var(--text-muted); font-weight: 500; }

/* Modals & Forms */
.join-form-container { background: #fff; padding: 50px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-top: 6px solid var(--saffron); }
.join-section { padding: 100px 0; background: var(--bg-light); min-height: calc(100vh - 200px); }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 20px; margin-top: 30px; }
.contact-detail i { font-size: 2rem; background: #fff; padding: 15px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.download-section { padding: 70px 0; background: var(--navy); margin-top: 50px; }
.download-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.download-text h3 { font-size: 2.2rem; margin-bottom: 10px; font-weight: 800; color: white; }
.download-text p { font-size: 1.15rem; color: #cbd5e1; }

/* Footer Design */
footer { background: #000a1f; padding: 60px 0 30px; color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; margin-bottom: 30px; }
.footer-logo-img { height: 120px; width: auto; margin-bottom: 25px; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 12px; }
.footer-col h3 { color: #fff; font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 12px; font-family: 'Playfair Display', serif;}
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--saffron); }
.footer-address { display: flex; align-items: flex-start; gap: 15px; margin-top: 25px; line-height: 1.6; }
.footer-address i { color: var(--saffron); font-size: 1.2rem; margin-top: 5px; }
.footer-links-list { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: 15px; }
.footer-links-list a { color: #cbd5e1; text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.footer-links-list a::before { content: '›'; color: var(--saffron); font-weight: bold; }
.footer-links-list a:hover { color: var(--saffron); transform: translateX(8px); }
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.social-links a:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3); }
.footer-copyright { text-align: center; color: #64748b; font-size: 0.95rem; }

/* 🚨 THE CHATBOT STYLES 🚨 */
.chatbot-toggler { position: fixed; bottom: 30px; left: 30px; background: var(--navy); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; box-shadow: 0 10px 25px rgba(0, 31, 77, 0.5); z-index: 10000; transition: all 0.3s ease; border: none; }
.chatbot-toggler:hover { transform: scale(1.1); background: var(--saffron); }
.chatbot-toggler i.fa-xmark { display: none; }
.show-chatbot .chatbot-toggler i.fa-message { display: none; }
.show-chatbot .chatbot-toggler i.fa-xmark { display: block; font-size: 2rem; }

.chatbot-window { position: fixed; bottom: 100px; left: 30px; width: 350px; background: #fff; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.9); transform-origin: bottom left; transition: all 0.3s ease; z-index: 9999; border: 1px solid #e2e8f0; }
.show-chatbot .chatbot-window { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

.chatbot-header { background: var(--navy); padding: 18px 20px; display: flex; align-items: center; gap: 15px; color: white; border-bottom: 3px solid var(--saffron); }
.chatbot-header i { font-size: 2rem; background: rgba(255,255,255,0.1); padding: 10px; border-radius: 50%; }
.chatbot-header h3 { font-size: 1.1rem; margin: 0; font-family: 'Playfair Display', serif; }
.chatbot-header p { font-size: 0.85rem; color: #cbd5e1; margin: 0; }

.chatbot-body { padding: 25px 20px; background: var(--bg-light); max-height: 400px; overflow-y: auto; }
.chat-bubble { background: #fff; padding: 15px; border-radius: 12px; border-bottom-left-radius: 2px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin-bottom: 20px; position: relative; font-size: 0.95rem; color: var(--text-main); line-height: 1.5; border: 1px solid #e2e8f0; }
.chat-bubble::before { content: ''; position: absolute; bottom: 0; left: -8px; width: 15px; height: 15px; background: #fff; border-bottom: 1px solid #e2e8f0; border-left: 1px solid #e2e8f0; border-bottom-left-radius: 10px; z-index: -1; }

.chatbot-options { display: flex; flex-direction: column; gap: 10px; }
.chat-btn { display: flex; align-items: center; gap: 12px; padding: 12px 15px; background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: all 0.2s ease; }
.chat-btn:hover { background: var(--saffron); border-color: var(--saffron); color: white; transform: translateX(5px); }
.chat-btn i { font-size: 1.2rem; }
.chat-btn.whatsapp { border-color: #25D366; color: #25D366; }
.chat-btn.whatsapp:hover { background: #25D366; color: white; }

/* 🚨 MOBILE RESPONSIVENESS 🚨 */
@media(max-width: 992px) {
    .menu-toggle { display: block; }
    
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        border-top: 2px solid var(--saffron);
    }
    
    header nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 20px 0 30px;
    }

    header ul { flex-direction: column; width: 100%; gap: 0; }
    header ul li { width: 100%; text-align: center; }
    header ul li a { display: block; padding: 18px 0; font-size: 1.2rem; border-bottom: 1px solid #f1f5f9; }

    /* Other Mobile Adjustments */
    .hero-title { font-size: 3.2rem; }
    .about-grid, .join-grid { grid-template-columns: 1fr; gap: 40px; }
    .download-flex { flex-direction: column; text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    .reels-container { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media(max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .join-form-container { padding: 30px; }
    .top-slider { height: 60vh; }
    .manifesto-new-hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } 
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-address { justify-content: center; text-align: left; }
    .social-links { justify-content: center; }
    .footer-links-list a:hover { transform: translateY(-3px); } 
    
    /* Adjust floating buttons for smaller mobile screens */
    .btn-lang {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Adjust Chatbot size for mobile screens */
    .chatbot-toggler {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .chatbot-window {
        bottom: 85px;
        left: 20px;
        width: calc(100% - 40px); /* Makes it fit perfectly on small screens */
    }
}