@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
}

.gradient-bg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 144, 185, 0.1), transparent);
    transition: left 0.5s;
}

.card-hover:hover::before {
    left: 100%;
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 144, 185, 0.15);
    border-color: #1290B9;
}

.gradient-text {
    background: linear-gradient(45deg, #453750, #1290B9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(45deg, #453750 0%, #453750 70%, #1290B9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #453750, #1290B9);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 250px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 0;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}

/* Create invisible bridge to prevent hover gap */
.dropdown-content::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: #374151;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #453750 0%, #1290B9 100%);
    color: white;
    transform: translateX(4px);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.btn-primary {
    background: linear-gradient(135deg, #453750 0%, #1290B9 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 144, 185, 0.3);
}

.stats-card {
    transition: all 0.4s ease;
    position: relative;
}

.stats-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(18, 144, 185, 0.2);
}

.icon-container {
    transition: all 0.3s ease;
}

.card-hover:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 20px rgba(18, 144, 185, 0.3); }
    to { box-shadow: 0 0 30px rgba(18, 144, 185, 0.6); }
}

/* AI Animation Classes */
.animate-pulse-slow {
    animation: pulseSlow 3s ease-in-out infinite;
}

.animate-ping {
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceSlow 4s ease-in-out infinite;
}

.animate-bounce-slow-delayed {
    animation: bounceSlow 4s ease-in-out infinite 1s;
}

.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.animate-float-slow-delayed {
    animation: floatSlow 6s ease-in-out infinite 0.5s;
}

.animate-float-slow-delayed-2 {
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.animate-float-slow-delayed-3 {
    animation: floatSlow 6s ease-in-out infinite 1.5s;
}

/* AI Floating Elements */
.ai-float-1 {
    animation: aiFloat1 8s ease-in-out infinite;
}

.ai-float-2 {
    animation: aiFloat2 10s ease-in-out infinite;
}

.ai-float-3 {
    animation: aiFloat3 12s ease-in-out infinite;
}

.ai-float-4 {
    animation: aiFloat4 9s ease-in-out infinite;
}

.ai-float-5 {
    animation: aiFloat5 11s ease-in-out infinite;
}

/* Neural Network Lines */
.neural-line-1 {
    animation: neuralPulse 4s ease-in-out infinite;
}

.neural-line-2 {
    animation: neuralPulse 4s ease-in-out infinite 1s;
}

.neural-line-3 {
    animation: neuralPulse 4s ease-in-out infinite 2s;
}

/* Data Points */
.data-point-1 {
    animation: dataGlow 3s ease-in-out infinite;
}

.data-point-2 {
    animation: dataGlow 3s ease-in-out infinite 1s;
}

.data-point-3 {
    animation: dataGlow 3s ease-in-out infinite 2s;
}

/* Keyframe Animations */
@keyframes pulseSlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
}

@keyframes aiFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, -15px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-5deg); }
}

@keyframes aiFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-15px, -8px) rotate(-3deg); }
    66% { transform: translate(15px, -12px) rotate(3deg); }
}

@keyframes aiFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, -20px) rotate(2deg); }
}

@keyframes aiFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-12px, -6px) rotate(-2deg); }
    50% { transform: translate(0, -18px) rotate(0deg); }
    75% { transform: translate(12px, -6px) rotate(2deg); }
}

@keyframes aiFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(4deg); }
    66% { transform: translate(-10px, -15px) rotate(-4deg); }
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.2; transform: scaleX(1); }
    50% { opacity: 0.4; transform: scaleX(1.1); }
}

@keyframes dataGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}



/* Whatsapp Button */

.float {
    position: fixed;
    bottom: 30px;
    left: 10px;
    z-index: 100;
}

.sticky_footer {
    display: none;
}

@media (min-width: 320px) and (max-width: 767px) {
    .whatsapp_btn {
        display: none;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .sticky_footer {
        background: #453750;
        padding: 5px 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 99;
        color: #fff;
        font-size: 22px;
        display: flex;
    }
    .right_divider {
        border-right: 1px solid #eee;
    }
    .col-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .sticky_footer .text-center {
        text-align: center;
        justify-content: center;
        display: flex;
    }
}




/* Blog CSS */

ol, ul, dl {
    padding: 0 10px!important;
}
ul {
    list-style-type: disc!important;
}
ol {
    display: block;
    list-style-type: decimal!important;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
li {
    display: list-item;
    unicode-bidi: isolate;
    list-style: none;
}

::marker
 {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
}
:root {
  --chat-primary: #0a66c2;
  --chat-primary-dark: #4285f4;
}
.neesac-chat-root { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.neesac-chat-launcher {
  position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%;
  border: none; cursor: pointer; z-index: 2147483000;
  background:linear-gradient(135deg, #453750 0%, #1290B9 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.neesac-chat-launcher:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }
.neesac-chat-panel {
  position: fixed; right: 24px; bottom: 96px; width: 360px; max-width: calc(100vw - 40px);
  max-height: min(520px, calc(100vh - 140px)); z-index: 2147483001;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  display: none; flex-direction: column;
}
.neesac-chat-panel[data-neesac-open="true"] { display: flex; }
.neesac-chat-close {
  position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border: none; background: transparent;
  color: var(--chat-primary); font-size: 22px; line-height: 1; cursor: pointer; border-radius: 50%;
}
.neesac-chat-close:hover { background: rgba(0,0,0,0.04); }
.neesac-chat-lead { padding: 22px 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.neesac-chat-lead h2 {
  margin: 0 0 4px 0; text-align: center; font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem; font-weight: 700; color:linear-gradient(135deg, #453750 0%, #1290B9 100%);
}
.neesac-chat-lead label { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 13px; color: #111; }
.neesac-chat-lead input {
  width: 100%; box-sizing: border-box; padding: 10px 12px; border-radius: 10px;
  border: 1px solid #ddd; font-size: 14px;
}
.neesac-chat-lead input:focus { outline: none; border-color: var(--chat-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--chat-primary) 18%, transparent); }
.neesac-chat-start {
  margin-top: 4px; width: 100%; border: none; border-radius: 999px; padding: 12px 16px;
  background: linear-gradient(135deg, #453750 0%, #1290B9 100%);
  color: #fff; font-weight: 700; font-size: 15px; cursor: pointer;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--chat-primary) 35%, transparent);
}
.neesac-chat-start:hover { filter: brightness(1.03); }
.neesac-chat-main { display: none; flex-direction: column; flex: 1; min-height: 0; }
.neesac-chat-main.visible { display: flex; }
.neesac-chat-messages {
  flex: 1; overflow-y: auto; padding: 14px 16px; background: #fafafa; display: flex; flex-direction: column; gap: 8px;
}
.neesac-msg { margin: 0; padding: 10px 14px; border-radius: 14px; max-width: 88%; line-height: 1.5; font-size: 14px; white-space: pre-wrap; word-break: break-word; overflow-wrap: anywhere; }
.neesac-msg.user { background: var(--chat-primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.neesac-msg.bot { background: #fff; border: 1px solid #e5e5e5; align-self: flex-start; border-bottom-left-radius: 4px; }
.neesac-msg.bot a { color: var(--chat-primary); text-decoration: underline; }
.neesac-chat-footer { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #eee; background: #fff; }
.neesac-chat-footer input {
  flex: 1; border: 1px solid #ddd; border-radius: 999px; padding: 10px 14px; font-size: 14px; outline: none;
}
.neesac-chat-footer input:focus { border-color: var(--chat-primary); }
.neesac-chat-send {
  border: none; border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 13px; cursor: pointer;
  background: var(--chat-primary); color: #fff;
}
.neesac-chat-send:hover { background: var(--chat-primary-dark); }
@media (max-width: 480px) {
  .neesac-chat-panel { right: 12px; left: 12px; width: auto; bottom: 88px; }
  .neesac-chat-launcher { right: 16px; bottom: 16px; }
}
