
        .about-chat-container {
            font-family: 'Roboto', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
          
          
        }

        /* Chat Section */
       .chat-section {
            min-height: 20vh; /* Increased to ensure enough scroll space */
            background: #000000;
            padding: 40px 20px 10vh 20px; /* Added bottom padding for scroll room */
            position: relative;
        }
      .chat-section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 0.5px;
         
        }

        .chat-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 30vh;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .chat-container {
                margin-top: 35vh;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .chat-container {
                margin-top: 25vh;
                padding: 15px;
            }
        }

        /* Chat Message */
       .chat-message {
            display: flex;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(80px) scale(0.9);
            transition: none;
        }

        .chat-message.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-message.company {
            justify-content: flex-start;
        }

        .chat-message.customer {
            justify-content: flex-end;
        }

        .message-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ffffff;
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .customer .message-avatar {
            background: #333333;
            color: #ffffff;
            order: 2;
        }

        .message-content {
            max-width: 70%;
            margin: 0 15px;
        }

        .customer .message-content {
            margin: 0 15px 0 0;
            text-align: right;
        }

        .message-bubble {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 18px;
            padding: 16px 20px;
            display: inline-block;
            text-align: left;
        }

        .customer .message-bubble {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .message-name {
            font-size: 13px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .message-text {
            font-size: 15px;
            line-height: 1.5;
            color: #cccccc;
        }

        .message-time {
            font-size: 11px;
            color: #666;
            margin-top: 6px;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 6px;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 18px;
            width: fit-content;
        }

        .typing-dot {
            width: 7px;
            height: 7px;
            background: #ffffff;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.4;
            }
            30% {
                transform: translateY(-8px);
                opacity: 1;
            }
        }
  