div#ai-box {
    z-index: 1000;
}

#ai-assistant {
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-direction: column;
}
.sora-sugesstons{
    font-size: 14px;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 70%;
    display: flex;
    align-content: center;
    justify-content: center;
    bottom: 30px;

}
#ai-toggle {
    width:140;
    height:140px;
    background:#fff;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
#ai-box {
    display: none;
    background: #000000db;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    position: fixed;
    border-radius: 0px;
    z-index: 100;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
#ai-header {
    color: #fff;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 44px;
    box-sizing: border-box;
    height: 44px;
    display: block;
    z-index: 500;
}
#ai-header h5{margin:0}
#ai-header svg {
    height: 44px;
    width: 44px;
        fill: #ffffff;
}
#ai-messages {
    height: calc(100vh - 170px);
    overflow: auto;
    padding: 70px 30px 20px 30px;
    font-size: 20px;
    max-width: 1070px;
    margin: auto;
    display: flex;
    align-content : flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
#ai-input-area {
display: flex;
    border : 4px solid #fff;
    position: absolute;
    /* left: 30px; */
    /* right: 30px; */
    bottom: 100px;
    border-radius: 25px;
    color: #000;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 920px;
    max-width: 80%;
    background-color:#fff;
}
#ai-input { flex:1;
border:none;
padding:10px 30px;
    outline: 0 none transparent;
    background: transparent;
}
input#ai-input:focus {
    outline: 0 none transparent;
    outline: 0 none transparent;
    background: transparent;
    font-size: 20px;
}
#ai-send {
    background: #5761b1;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 43px;
    width: 44px;
    height: 44px;
}
#ai-send svg{
fill:#fff;
height:24px;
width: 24px;
}
input#ai-input:focus + #ai-send {
    height: 50px;
    width: 50px;
}
button#ai-send {}
input#ai-input:focus + #ai-send svg {
    height: 30px;
    width: 30px;
}
.user{
text-align: right;
    margin: 5px;
    color: #666;
    background: #fff;
    padding: 10px 20px;
    border-radius: 25px 25px 0px 25px;
    display: inline-block;
    /* float: right; */
    clear: both;
    margin-left: auto;
    max-width: 70%;
}
.bot{
    text-align: left;
    margin: 5px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px 25px 25px 0px;
    display: inline-block;
    /* float: right; */
    clear: both;
    margin-right: auto;
    background: #5761b1;
    max-width: 70%;
}
/* Orb container */
.sora-orb {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(
    circle at 30% 40%,
    #5761B1 0%,        /* bright core */
    #2C326B 60%,       /* mid tone */
    #12162F 100%       /* deep edge */
  );
  box-shadow:
    inset 0 0 40px rgba(87, 97, 177, 0.5),
    0 0 25px rgba(87, 97, 177, 0.7);
}
/* Inner core of orb */
.sora-core {
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(87, 97, 177, 0.8),
    rgba(87, 97, 177, 0.3)
  );
  box-shadow:
    inset 0 0 20px rgba(122, 132, 232, 0.25),
    0 0 15px rgba(87, 97, 177, 0.5);
}
/* SVG inside core */
.sora-core svg {
  width: 20px;
  height: 20px;
  opacity: 0.95;
  fill: #fff; /* now stands out on the vibrant orb */
}
/* Hover pulse */
.sora-orb:hover {
  transform: scale(1.15);
  box-shadow:
    inset 0 0 50px rgba(87, 97, 177, 0.7),
    0 0 40px rgba(87, 97, 177, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}
.suggestion {
  display:inline-block;
  background:#000;
  padding:7px 15px;
  margin:5px;
  border-radius:20px;
  cursor:pointer;
  transition:0.3s;
  color: #aaa;
}
.suggestion:hover {
  background:#5761b1;
  color:#fff;
}
#ai-messages {
  scrollbar-width: none; /* Firefox */
}
#ai-messages::-webkit-scrollbar {
  display: none; /* Chrome */
}
/* ================================
   AIRA EYE — FINAL ELEMENTOR VERSION
   ================================ */
:root {
  --aaira-size: 140px;
  --aaira-sticky-size: 70px;
  --aaira-brand: #5761B1;
  --aaira-violet: #9E66FD;
}
/* Main toggle sizing */
#ai-toggle {
  width: var(--aaira-size);
  height: var(--aaira-size);
  background: transparent;
  transition: width 0.45s ease, height 0.45s ease, transform 0.45s ease;
}
#aaira-eye-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
}
#aaira-eye {
  width: var(--aaira-size);
  height: var(--aaira-size);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255,255,255,0.95),
      rgba(238,241,255,0.88) 34%,
      rgba(196,181,253,0.80) 62%,
      rgba(87,97,177,0.85) 100%
    );
  box-shadow:
    inset 0 0 35px rgba(255,255,255,0.45),
    inset 0 -34px 45px rgba(87,97,177,0.28),
    0 16px 42px rgba(22,26,64,0.24),
    0 0 35px rgba(87,97,177,0.35);
  transform: translateZ(0) scale(1);
  transition:
    width 0.45s ease,
    height 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  animation: aairaBreath 4.8s ease-in-out infinite;
}
/* Glass reflection */
#aaira-eye::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(255,255,255,0.95) 0 9%,
      rgba(255,255,255,0.35) 10% 18%,
      transparent 28%
    ),
    radial-gradient(
      circle at 70% 78%,
      rgba(158,102,253,0.25),
      transparent 42%
    );
  z-index: 8;
  pointer-events: none;
  mix-blend-mode: screen;
}
/* Closed eyelid line */
#aaira-eye::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30,35,90,0.52),
    rgba(30,35,90,0.8),
    rgba(30,35,90,0.52),
    transparent
  );
  box-shadow: 0 6px 12px rgba(87,97,177,0.18);
  transform: translateY(-50%) scaleX(1);
  opacity: 0.95;
  z-index: 7;
  transition: opacity 0.22s ease, transform 0.35s ease;
}
/* Hover / active open state */
#aaira-eye:hover,
#aaira-eye.active {
  transform: scale(1.045);
  box-shadow:
    inset 0 0 38px rgba(255,255,255,0.5),
    inset 0 -28px 50px rgba(87,97,177,0.34),
    0 18px 50px rgba(22,26,64,0.28),
    0 0 48px rgba(87,97,177,0.48);
}
#aaira-eye:hover::after,
#aaira-eye.active::after {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.45);
}
/* White eyeball */
.eye-inner {
  position: absolute;
  inset: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% / 43%;
  overflow: hidden;
  transform: scaleY(0.035);
  transform-origin: center;
  opacity: 0.15;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease;
  background:
    radial-gradient(
      circle at 50% 50%,
      #ffffff 0 38%,
      #f4f6ff 58%,
      #dce2ff 100%
    );
  box-shadow:
    inset 0 0 28px rgba(87,97,177,0.18),
    inset 0 -16px 28px rgba(87,97,177,0.16),
    0 0 18px rgba(255,255,255,0.45);
  z-index: 4;
}
#aaira-eye:hover .eye-inner,
#aaira-eye.active .eye-inner {
  transform: scaleY(1);
  opacity: 1;
}
/* Human eyelid shadows */
.eye-inner::before,
.eye-inner::after {
  content: "";
  position: absolute;
  left: -5%;
  width: 110%;
  height: 24%;
  z-index: 6;
  pointer-events: none;
}
.eye-inner::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(87,97,177,0.28), transparent);
}
.eye-inner::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(87,97,177,0.18), transparent);
}
/* Iris layers */
.iris-base,
.iris-fiber,
.iris-main {
  position: absolute;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  transition: width 0.45s ease, height 0.45s ease;
}
.iris-base {
  background: radial-gradient(
    circle at 45% 40%,
    #d9ddff 0 9%,
    #9E66FD 22%,
    #5761B1 62%,
    #252a72 100%
  );
  filter: blur(2px);
  opacity: 0.9;
}
.iris-fiber {
  background:
    repeating-conic-gradient(
      from 12deg,
      rgba(255,255,255,0.38) 0deg 3deg,
      rgba(87,97,177,0.35) 4deg 8deg,
      rgba(158,102,253,0.35) 9deg 12deg
    ),
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,0.18) 0 2px,
      transparent 3px 6px
    );
  opacity: 0.55;
  mix-blend-mode: overlay;
  animation: aairaIrisRotate 16s linear infinite;
}
.iris-main {
  background:
    radial-gradient(
      circle at 38% 32%,
      rgba(255,255,255,0.95) 0 6%,
      transparent 12%
    ),
    radial-gradient(
      circle at 50% 50%,
      #080912 0 13%,
      #323987 15%,
      #5761B1 43%,
      #9E66FD 72%,
      #e0e7ff 100%
    );
  box-shadow:
    inset 0 0 22px rgba(0,0,0,0.42),
    0 0 18px rgba(87,97,177,0.45);
  animation: aairaIrisPulse 3.4s ease-in-out infinite;
}
/* Pupil */
.pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22%;
  height: 22%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 45%,
    #050505 0 48%,
    #000 70%,
    #202020 100%
  );
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.12),
    0 0 12px rgba(0,0,0,0.65);
  transition: width 0.25s ease, height 0.25s ease, transform 0.18s ease;
}
/* Pupil highlight */
.pupil::after {
  content: "";
  position: absolute;
  width: 32%;
  height: 32%;
  top: 16%;
  left: 18%;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  filter: blur(0.3px);
}
#aaira-eye:hover .pupil,
#aaira-eye.active .pupil {
  width: 27%;
  height: 27%;
}
/* Obvious blink */
#aaira-eye.blinking .eye-inner {
  transform: scaleY(0.04) !important;
  opacity: 0.22 !important;
}
#aaira-eye.blinking::after {
  opacity: 1 !important;
  transform: translateY(-50%) scaleX(1) !important;
}
/* Breathing */
@keyframes aairaBreath {
  0%, 100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.035);
    filter: saturate(1.12);
  }
}
@keyframes aairaIrisPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.055);
  }
}
@keyframes aairaIrisRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ================================
   ELEMENTOR STICKY STATE — 70PX
   ================================ */
.elementor-sticky--active #ai-toggle,
.elementor-sticky--effects #ai-toggle,
.e-con.elementor-sticky--active #ai-toggle,
.e-con.elementor-sticky--effects #ai-toggle,
.elementor-section.elementor-sticky--active #ai-toggle,
.elementor-section.elementor-sticky--effects #ai-toggle {
  width: var(--aaira-sticky-size) !important;
  height: var(--aaira-sticky-size) !important;
}
.elementor-sticky--active #aaira-eye,
.elementor-sticky--effects #aaira-eye,
.e-con.elementor-sticky--active #aaira-eye,
.e-con.elementor-sticky--effects #aaira-eye,
.elementor-section.elementor-sticky--active #aaira-eye,
.elementor-section.elementor-sticky--effects #aaira-eye {
  width: var(--aaira-sticky-size) !important;
  height: var(--aaira-sticky-size) !important;
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.45),
    inset 0 -12px 20px rgba(87,97,177,0.28),
    0 8px 22px rgba(22,26,64,0.20),
    0 0 18px rgba(87,97,177,0.35);
}
.elementor-sticky--active #aaira-eye-wrap,
.elementor-sticky--effects #aaira-eye-wrap {
  padding: 0 !important;
}
.elementor-sticky--active .eye-inner,
.elementor-sticky--effects .eye-inner {
  inset: 13%;
}
/* Optional mobile size */
@media (max-width: 767px) {
  :root {
    --aaira-size: 100px;
  }
}
@media(max-width:992px){
#ai-input-area {
    bottom: 120px;
}
div#ai-suggestions {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        bottom: 0;
        gap: 0;
        height: 90px;
        align-content: center;
}
span.suggestion {
    padding: 5px 10px;
    font-size: 12px;
}
#ai-header{
  right:20px;
  top:20px;
}
#ai-messages {
    height: calc(100vh - 170px);
}
}
/* Subtle breathing animation */
@keyframes soraPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 30px rgba(124, 58, 237, 0.5),
      inset 0 0 20px rgba(255,255,255,0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 50px rgba(124, 58, 237, 0.8),
      inset 0 0 25px rgba(255,255,255,0.3);
  }
}
.sora-orb:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
  cursor: pointer;
}
.sora-orb.active {
  animation: soraActive 1.5s infinite;
}
/* bg for ai box */
div#ai-box {
  background: radial-gradient(
    circle at 30% 40%,
    rgba(87, 97, 177, 0.10),   /* core */
    rgba(44, 50, 107, 0.08) 60%,
    rgba(18, 22, 47, 0.06)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 0 60px rgba(122, 132, 232, 0.12),
    0 0 20px rgba(87, 97, 177, 0.08);
}
div#ai-box::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(40% 60% at 70% 30%, rgba(122, 132, 232, 0.25), transparent 70%),
    radial-gradient(50% 40% at 20% 80%, rgba(87, 97, 177, 0.25), transparent 70%),
    radial-gradient(60% 60% at 80% 80%, rgba(79, 195, 247, 0.12), transparent 70%);
  filter: blur(60px);
  animation: aiFlow 28s linear infinite;
}
div#ai-box::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(30% 30% at 40% 60%, rgba(122, 132, 232, 0.18), transparent 70%),
    radial-gradient(20% 40% at 60% 40%, rgba(87, 97, 177, 0.15), transparent 70%);

  filter: blur(40px);
  mix-blend-mode: screen;
  animation: aiPulse 18s ease-in-out infinite;
}
div#ai-box:before {
    z-index: 20;
  pointer-events:none:
}
div#ai-box:after {
    z-index: 30;
  pointer-events:none:
}
div#ai-input-area {
    z-index: 100;
}
#ai-suggestions{
    z-index: 100;
}
#ai-messages{
    z-index: 100;
}
/* Orb container */
@keyframes aiFlow {
  0%   { transform: rotate(0deg) scale(1.05) translate(0%, 0%); }
  25%  { transform: rotate(90deg) scale(1.08) translate(2%, -2%); }
  50%  { transform: rotate(180deg) scale(1.06) translate(-2%, 2%); }
  75%  { transform: rotate(270deg) scale(1.09) translate(1%, 1%); }
  100% { transform: rotate(360deg) scale(1.05) translate(0%, 0%); }
}
@keyframes aiPulse {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
  100% { opacity: 0.7; transform: scale(1.03); }
}
@keyframes soraActive {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
/* Orb animation */
@keyframes orbFlow {
  0%   { transform: rotate(0deg) scale(1.05) translate(0%, 0%); }
  25%  { transform: rotate(90deg) scale(1.08) translate(2%, -2%); }
  50%  { transform: rotate(180deg) scale(1.06) translate(-2%, 2%); }
  75%  { transform: rotate(270deg) scale(1.09) translate(1%, 1%); }
  100% { transform: rotate(360deg) scale(1.05) translate(0%, 0%); }
}
