* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #000000;
  --terminalbg: white;
  --secondary: #666666;
  --accent-pink: #ff6b6b;
  --accent-cyan: #64d8f7;
  --accent-blue: #4a90ff;
  --accent-black: #1a1a1a;
  --light-bg: #f5f8ff;
  --white: #ffffff;
}

html,
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: linear-gradient(135deg, #e8f4f8 0%, #f5f8ff 100%);
  color: var(--primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.no-scroll {
  overflow: hidden;
}

/* Outer Container */

/*  */
.terminal-navbar {
  border-radius: 10px 10px 0 0;
  padding: 12px 20px;
  background: #d0d0d0;
  margin: 0 auto;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.tdot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
}

.tdot-pink {
  background: #ff5f56;
}

.tdot-cyan {
  background: #ffbd2e;
}

.tdot-blue {
  background: #27c93f;
}

/* Container */
.outer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.container {
  margin: 0 auto;
}

.firstSection {
  background: white;
  padding: 40px;
  border-radius: 0 0 12px 12px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.theme-toggle {
  background: var(--white);
  border: 2px solid var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
}

.theme-toggle:hover {
  background: var(--accent-cyan);
  color: #000000;
  border-color: var(--accent-cyan);
}

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.left-section {
  padding-right: 40px;
}

.intro {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.highlight {
  border: 2px solid var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  background: transparent;
}

.underline {
  position: relative;
  text-decoration: underline wavy var(--accent-pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.description {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--accent-cyan);
}

/* Color Dots */
.color-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.15);
}

.dot-pink {
  background: var(--accent-pink);
}

.dot-cyan {
  background: var(--accent-cyan);
}

.dot-blue {
  background: var(--accent-blue);
}

.dot-black {
  background: var(--accent-black);
}

/* Illustration */
.right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 400px;
}

#three-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#three-container canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 400px;
  max-height: 400px;
}

.illustration-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Work Section */
.work-section {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.work-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-cyan);
}

.project-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-item p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  font-size: 12px;
  background: var(--light-bg);
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  .header {
    margin-bottom: 60px;
  }

  .name {
    font-size: 24px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .left-section {
    padding-right: 0;
  }

  .intro {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
/* Section Container */
.section-container {
  background: var(--terminalbg);
  padding: 40px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 20px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 1200px;
  box-sizing: border-box;
}

.section-content {
  max-width: 100%;
  width: 100%;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  border-bottom: 3px solid var(--accent-cyan);
  padding-bottom: 12px;
  display: inline-block;
}

.section-content > p {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.subsection-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 40px;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
}

.subsection-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, transparent 100%);
}

/* Skill Grid */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.skill-item {
  padding: 20px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, 100%);
  border: 2px solid var(--accent-cyan);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(100, 216, 247, 0.3);
}

/* New Skills Section with Categories */
.skills-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.skill-category {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--accent-cyan);
  padding-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.skill-tag {
  background: linear-gradient(
    135deg,
    rgba(100, 216, 247, 0.1) 0%,
    rgba(74, 144, 255, 0.1) 100%
  );
  border: 1.5px solid var(--accent-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.skill-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(100, 216, 247, 0.2) 0%,
    rgba(74, 144, 255, 0.2) 100%
  );
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 216, 247, 0.2);
}

.skill-item:hover {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #4a90ff 100%);
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(100, 216, 247, 0.3);
}

/* Projects Grid */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-item {
  background: var(--light-bg);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-cyan);
}

.project-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.project-item p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  font-size: 12px;
  background: rgba(100, 216, 247, 0.1);
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid var(--accent-cyan);
  font-weight: 500;
}

/* Contact Links */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.contact-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-blue) 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(100, 216, 247, 0.2);
}

.contact-link svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-link:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 24px rgba(100, 216, 247, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
/* Desktop - Large screens */
@media (min-width: 1200px) {
  .outer-container {
    max-width: 1400px;
    padding: 50px 20px;
  }

  .container {
    padding: 0;
  }

  .header {
    margin-bottom: 50px;
  }

  .name {
    font-size: 40px;
    font-weight: 700;
  }

  .theme-toggle {
    padding: 10px 24px;
    font-size: 14px;
  }

  .intro {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .main-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }

  .left-section {
    padding-right: 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .section-content > p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .subsection-title {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 24px;
  }

  .skill-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .skills-section {
    gap: 28px;
  }

  .category-title {
    font-size: 16px;
  }

  .skill-tag {
    font-size: 13px;
    padding: 9px 18px;
  }
}

.skill-item {
  padding: 20px;
  font-size: 15px;
}

.projects {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-item {
  padding: 28px;
}

.project-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.project-item p {
  font-size: 15px;
  margin-bottom: 16px;
}

.contact-links {
  gap: 16px;
}

.contact-link {
  width: 55px;
  height: 55px;
}

.contact-link svg {
  width: 26px;
  height: 26px;
}

.section-container {
  padding: 50px 60px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.firstSection {
  padding: 50px 60px;
  width: 100%;
  box-sizing: border-box;
}

.terminal-navbar {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 20px;
}

.tdot {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.illustration-svg {
  max-width: 350px;
}

.color-dots {
  gap: 16px;
}

.dot {
  width: 28px;
  height: 28px;
}

/* Tablet - Medium screens */
@media (max-width: 1024px) {
  .outer-container {
    max-width: 100%;
    padding: 30px 15px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
  }

  .left-section {
    padding-right: 0;
  }

  .intro {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .section-container {
    padding: 35px 25px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: 26px;
  }

  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .skills-section {
    gap: 24px;
  }

  .category-title {
    font-size: 15px;
  }

  .skill-tag {
    font-size: 12px;
    padding: 7px 14px;
  }

  .projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .header {
    margin-bottom: 35px;
  }

  .firstSection {
    padding: 35px 25px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Mobile - Small screens */
@media (max-width: 768px) {
  .outer-container {
    padding: 30px 15px;
  }

  .container {
    padding: 0;
  }

  .firstSection {
    padding: 30px 20px;
  }

  .header {
    margin-bottom: 30px;
  }

  .name {
    font-size: 24px;
  }

  .theme-toggle {
    padding: 6px 16px;
    font-size: 12px;
  }

  .intro {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .section-container {
    padding: 30px 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .section-content > p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .subsection-title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .skill-item {
    padding: 16px;
    font-size: 13px;
  }

  .skills-section {
    gap: 20px;
  }

  .category-title {
    font-size: 14px;
  }

  .skill-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-item {
    padding: 20px;
  }

  .project-item h4 {
    font-size: 16px;
  }

  .project-item p {
    font-size: 13px;
  }

  .contact-links {
    gap: 10px;
  }

  .contact-link {
    width: 45px;
    height: 45px;
  }

  .contact-link svg {
    width: 20px;
    height: 20px;
  }

  .terminal-navbar {
    padding: 10px 16px;
  }

  .tdot {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }
}

/* AI Chatbot Styles V2 */
.ai-chatbot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  font-family: inherit;
}

.chatbot-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-blue) 100%
  );
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(100, 216, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 420px;
  height: min(800px, calc(100vh - 150px));
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
  z-index: 2001;
}

.chatbot-window.hidden {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  pointer-events: none;
}

/* Header V2 */
.chat-header-v2 {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
}

.header-btn:hover {
  background: #f0f1f2;
}

.header-title-pill {
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-blue) 100%
  );
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: greenyellow;
  border-radius: 50%;
  animation: pulse-small 1.5s infinite;
}

@keyframes pulse-small {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

/* Messages V2 */
.chat-messages-v2 {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fafbfc;
}

.message-wrapper {
  display: flex;
  width: 100%;
}

.message-wrapper.user {
  justify-content: flex-end;
}

.message-wrapper.ai {
  justify-content: flex-start;
}

.message-bubble {
  max-width: 85%;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}

.message-bubble.user {
  background: linear-gradient(135deg, #e8f4f8 0%, #f5f8ff 100%);
  color: var(--primary);
  border-radius: 20px 20px 4px 20px;
}

.message-bubble.ai {
  background: white;
  color: var(--primary);
  border-radius: 20px 20px 20px 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* HTML elements styling for message bubbles */
.message-bubble b,
.message-bubble strong {
  font-weight: 600;
  color: var(--primary);
}

.message-bubble h1,
.message-bubble h2,
.message-bubble h3,
.message-bubble h4,
.message-bubble h5,
.message-bubble h6 {
  margin: 8px 0 4px 0;
  font-weight: 600;
  color: var(--primary);
}

.message-bubble h1 { font-size: 18px; }
.message-bubble h2 { font-size: 16px; }
.message-bubble h3 { font-size: 15px; }
.message-bubble h4 { font-size: 14px; }
.message-bubble h5 { font-size: 13px; }
.message-bubble h6 { font-size: 12px; }

.message-bubble p {
  margin: 4px 0;
}

.message-bubble ul,
.message-bubble ol {
  margin: 4px 0;
  padding-left: 20px;
}

.message-bubble li {
  margin: 2px 0;
}

.message-bubble code {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.message-bubble pre {
  background: rgba(0, 0, 0, 0.05);
  padding: 8px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 4px 0;
}

.message-bubble a {
  color: var(--accent-blue);
  text-decoration: none;
}

.message-bubble a:hover {
  text-decoration: underline;
}

/* Status V2 */
.chat-status {
  padding: 10px 24px;
  background: #fafbfc;
}

.chat-status.hidden {
  display: none;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-style: italic;
}

.status-indicator svg {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Input V2 */
.chat-input-area-v2 {
  padding: 20px;
  background: white;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.input-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
}

.input-action-btn:hover {
  color: var(--primary);
  border-color: rgba(0, 0, 0, 0.1);
}

.input-pill-wrapper {
  flex: 1;
  background: #f1f3f5;
  border-radius: 28px;
  padding: 4px 4px 4px 16px;
  display: flex;
  align-items: center;
}

#chat-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 8px 0;
  color: var(--primary);
}

.send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  color: #666;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.send-btn:hover {
  background: var(--accent-cyan);
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .chatbot-window {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 3000;
  }

  .ai-chatbot {
    bottom: 20px;
    right: 20px;
  }
}
