
.cursor-wrapper {
    pointer-events: none;
}

.image {
  width:180px; 
  height:180px;
  margin-bottom: 40px;
}

.icon-container {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
}

.floating-icon {
  position: absolute;
  width: 200px; /* adjust size */
  animation: float 4s ease-in-out infinite;
}

/* Position each icon separately */
.icon-stethoscope {
  top: 100px;
  left: 100px;
}

.icon-document {
  top: 550px;
  left: 60%;
  transform: translateX(-50%);
}

.icon-blockchain {
  top: 90px;
  right: 80px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    body {
        cursor: default;
    }

    .cursor-wrapper {
        display: none;
    }

    a {
        cursor: pointer;
    }
}

@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    body {
        cursor: default;
    }

    .cursor-wrapper {
        display: none;
    }

    a {
        cursor: pointer;
    }
}

.photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-left: -2vw; /* Relative margin */
}

.photo-wrapper img.photo {
    width: 100%; /* Ensures image fills container */
    height: 100%; /* Ensures image fills container */
    object-fit: contain; /* Maintains aspect ratio */
}

:root {
      --light-bg: rgba(255, 255, 255, 0.97);
      --glass-border: rgba(255, 255, 255, 0.45);
      --blue: #0066ff;
      --blue-light: rgba(0, 102, 255, 0.15);
      --blue-glow: 0 0 20px rgba(0, 102, 255, 0.4);
      --bubble-in: rgba(255, 255, 255, 0.98);
      --bubble-out: rgba(240, 245, 255, 0.98);
      --text-dark: #222;
      --text-light: #555;
      --border-color: rgba(0, 0, 0, 0.08);
      --header-gradient: linear-gradient(135deg, #0066ff, #00aaff);
    }

/* Main Container */
.chatbot-container {
  position: fixed;
  bottom: 15px;
  right: 25px;
  z-index: 999;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Floating Icon */
.chatbot-toggle {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-bot-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Chat Window */
.chatbot-window {
  display: none;
  flex-direction: column;
  width: 350px;
  height: 500px;
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--light-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: slideIn 0.3s ease;
}

/* Header */
.chatbot-header {
  background: var(--header-gradient);
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 11px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-sub::before {
  content: "•";
  opacity: 0.7;
}

.header-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Message Body */
.chatbot-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: transparent;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.message.user {
  justify-content: flex-end;
}

.icon {
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.bubble {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 80%;
  line-height: 1.5;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
}

.bubble-in {
  background: var(--bubble-in);
  border-bottom-left-radius: 4px;
}

.bubble-out {
  background: var(--bubble-out);
  border-bottom-right-radius: 4px;
}

/* Quick Questions */
.quick-questions {
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.quick-questions p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.quick-question {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin: 5px 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  color: var(--text-dark);
}

.quick-question:hover {
  background: #e9f5ff;
  border-color: var(--blue);
  color: var(--blue);
}

/* Footer */
.chatbot-footer {
  padding: 16px;
  background: rgba(255,255,255,0.8);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.input-row {
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  outline: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.chat-input:focus {
  outline: 2px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 178, 255, 0.25);
}

.send-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-button:hover {
  background: #0055cc;
  transform: scale(1.05);
}

/* Vibe Picker */
.vibe-picker span {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}

.vibes {
  display: flex;
  gap: 8px;
}

.vibe {
  padding: 6px 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vibe:hover, .vibe.active {
  background: white;
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 178, 255, 0.15);
  transform: translateY(-2px);
}

/* Scrollbar */
.chatbot-body::-webkit-scrollbar {
  width: 6px;
}

.chatbot-body::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 3px;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

.chatbot-body::-webkit-scrollbar-thumb:hover {
  background: #0055cc;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-message {
  animation: fadeIn 0.5s ease;
}