@font-face {
    font-family: Nevia-Light;
    src: url('../Nevia-Light-AF65d86a047dbed.otf');
    font-style: normal;
}

.esdy-font {
    font-family: Nevia-Light;
}



.m-t-10{margin-top: 10px !important;}
.m-t-20{margin-top: 20px !important;}
.m-t-30{margin-top: 30px !important;}
.m-t-40{margin-top: 40px !important;}
.m-t-50{margin-top: 50px !important;}


.container{
	color: white !important;
}

.pill-nav {
    width: 100%;
    padding: 14px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.pill-nav a{
    text-decoration: none;
}

.pill {
    padding: 6px 14px;
    border-radius: 999px;
    color: #ffffffc9;
    transition: 0.25s;
}

.pill:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}


.nav-btn {
    background: linear-gradient(90deg, #537EF5, #987ADF, #E779C5);
    border: none;
    padding: 8px 20px;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.nav-btn:hover {
    opacity: 0.9;
}

.chatbar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
}

.chatbar {
    width: 100%;
    max-width: 900px; /* similar to ChatGPT */
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 10px 14px;
    gap: 10px;
}

.chat-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #fff;
}

.send-btn {
    background: linear-gradient(90deg, #537EF5, #987ADF, #E779C5);
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.hero-full {
    background: #121212;
    color: white;
}

/* Left text */
.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
}

.hero-title-large {
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1.1;
}

/* Right side canvas */
.hero-canvas {
    height: 70vh;
    position: relative;
}

/* Subtle AI glow so it doesn’t feel empty */
.hero-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(83,126,245,0.15), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(231,121,197,0.12), transparent 55%);
    filter: blur(40px);
}


.highlight-gradient {
   font-weight: 700;
    background: linear-gradient(90deg, #537EF5, #987ADF, #E779C5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title1 {
    font-size:3rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
    color: black;
}

.gradient-text {
    background: linear-gradient(90deg, #537EF5, #987ADF, #E779C5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero-strong {
    font-weight: 700;
}

.word-rotate {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
    font-weight: 700;
}

.word-rotate span {
    display: block;
    height: 1.2em;
    animation: rotateWords 6s infinite;
}

@keyframes rotateWords {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(0); }

    35%  { transform: translateY(-1.2em); }
    65%  { transform: translateY(-1.2em); }

    70%  { transform: translateY(-2.4em); }
    100% { transform: translateY(-2.4em); }
}

.ai-bubble {
    max-width: 90%; 
    font-size: 1.4rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ai-bubble-primary {
	width: 250px;
    border: 1px solid;
  border-image: linear-gradient(90deg, #537EF5, #987ADF, #E779C5) 1;
    color:  #fff;
}

.ai-bubble-secondary {
	width: 350px;
     border: 1px solid;
  border-image: linear-gradient(90deg, #537EF5, #987ADF, #E779C5) 1;
    color:  #fff;
    margin-left: 24px;
}


.ai-description {
    margin-top: 16px;
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.6;
    max-width: 480px;
}




