/* ===== Global ===== */
:root {
    --primary: #556B2F;
    --secondary: #A8D5A2;
    --bg: #F8FAF5;
    --text: #222222;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x:hidden;
    scroll-behavior:smooth;
}
a { text-decoration:none; color:inherit; }
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover { background-color: #3e4f22; border-color: #3e4f22; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); color: #fff; }

/* ===== Glass Navbar ===== */
.glass-nav {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.navbar-brand .brand-primary { color: var(--primary); font-weight:800; }
.navbar-brand .brand-secondary { color: #3e4f22; font-weight:600; }
.nav-link { font-weight:500; color: var(--text); }
.nav-link.active { color: var(--primary) !important; }

/* ===== Preloader ===== */
#preloader {
    position: fixed; inset:0; background: var(--bg); z-index:9999;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.loader-ring {
    display:inline-block; width:60px; height:60px; position:relative;
}
.loader-ring div {
    box-sizing:border-box; display:block; position:absolute; width:48px; height:48px;
    margin:6px; border:6px solid var(--primary); border-radius:50%;
    animation: loader-ring 1.2s cubic-bezier(0.5,0,0.5,1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}
.loader-ring div:nth-child(2) { animation-delay:-0.45s; }
.loader-ring div:nth-child(3) { animation-delay:-0.3s; }
.loader-ring div:nth-child(4) { animation-delay:-0.15s; }
@keyframes loader-ring { 0% { transform:rotate(0); } 100% { transform:rotate(360deg); } }
.loader-text { font-weight:600; color:var(--primary); letter-spacing:2px; }

/* ===== Hero ===== */
.hero-section {
    background: url('../images/background.png') center center/cover no-repeat;
    min-height:100vh;
    position:relative;
    width: 100%;
}
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
}



.hero-bg-animated {
    position:absolute; inset:0;
    background: radial-gradient(circle at 20% 30%, rgba(168,213,162,0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(85,107,47,0.08) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}
 @keyframes heroPulse { 0% { transform:scale(1); opacity:0.6; } 100% { transform:scale(1.2); opacity:1; } }
.hero-title .text-reveal {
    display:inline-block;
    opacity:0; transform:translateY(30px);
    animation: revealUp 0.8s forwards;
}





.hero-title .text-reveal:nth-child(1) { animation-delay:0.2s; }
.hero-title .text-reveal:nth-child(2) { animation-delay:0.4s; }
@keyframes revealUp { to { opacity:1; transform:translateY(0); } }
.hero-desc { opacity:0; animation: fadeIn 1s 0.6s forwards; }
@keyframes fadeIn { to { opacity:1; } }
.hero-wave { position:absolute; bottom:0; left:0; width:100%; }
.floating-icon {
    position:absolute; font-size:2.5rem; color:var(--primary);
    animation: float 6s ease-in-out infinite;
}
.floating-icon.icon-1 { top:10%; left:5%; animation-delay:0s; }
.floating-icon.icon-2 { top:20%; right:10%; animation-delay:1.5s; }
.floating-icon.icon-3 { bottom:25%; left:15%; animation-delay:3s; }
.floating-icon.icon-4 { bottom:30%; right:5%; animation-delay:4.5s; }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-20px); } } 

/* ===== Cards ===== */
.service-card, .portfolio-card, .team-card, .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--card-bg);
}
.service-card:hover, .portfolio-card:hover, .team-card:hover, .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.step-number {
    display:inline-block; width:50px; height:50px;
    background: var(--primary); color:#fff; border-radius:50%;
    line-height:50px; font-size:1.5rem; font-weight:700;
}

/* ===== Counters ===== */
.counter-number { display:inline-block; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-title { font-size:2.5rem; }
    .floating-icon { display:none; }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About Header */
.about-header {
    background: linear-gradient(135deg, #f8faf5 0%, #e8f0e5 100%);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Story Section */
.story-image-wrapper .floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mission & Vision Cards */
.mission-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.mission-icon i {
    font-size: 2.5rem;
}

/* Value Cards */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}
.value-icon i {
    font-size: 1.8rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #556B2F 0%, #3e4f22 100%);
    padding: 80px 0;
}
.stats-section .counter-number {
    font-weight: 700;
}
.stats-section .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Timeline Section */
.timeline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}
.timeline-year {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Founder Section */
.founder-message {
    border-left: 4px solid #556B2F;
}
.founder-message blockquote {
    padding-right: 40px;
}

/* Team Cards */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.team-social {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-card:hover .team-social {
    opacity: 1;
}
.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.team-social a:hover {
    background: #556B2F;
}

/* Partners Section */
.partner-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}
.partner-item i {
    font-size: 2.5rem;
    opacity: 0.6;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #556B2F 0%, #3e4f22 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-image-wrapper .floating-card {
        position: relative !important;
        transform: none !important;
        margin-top: 15px;
        margin-left: 0 !important;
    }
    .founder-image {
        margin-bottom: 30px;
    }
    .partner-item i {
        font-size: 1.8rem;
    }
}



/* ==================== MISSION & VISION CARDS ==================== */

.mission-vision-section {
    background: var(--bg, #F8FAF5);
    padding: 80px 0;
}

/* ---- Mission Card ---- */
.mission-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8faf5 100%);
    border: 1px solid rgba(85, 107, 47, 0.1);
    box-shadow: 0 10px 40px rgba(85, 107, 47, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 420px;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(85, 107, 47, 0.15);
    border-color: rgba(85, 107, 47, 0.3);
}

.mission-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(85, 107, 47, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.mission-icon-wrapper {
    position: relative;
    z-index: 2;
}

.mission-icon-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #556B2F, #6b8a3a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(85, 107, 47, 0.25);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-circle {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(85, 107, 47, 0.35);
}

/* ---- Vision Card ---- */
.vision-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ed 100%);
    border: 1px solid rgba(168, 213, 162, 0.3);
    box-shadow: 0 10px 40px rgba(168, 213, 162, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 420px;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 213, 162, 0.25);
    border-color: rgba(168, 213, 162, 0.5);
}

.vision-bg-shape {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 213, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vision-icon-wrapper {
    position: relative;
    z-index: 2;
}

.vision-icon-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #6b8a3a, #A8D5A2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(168, 213, 162, 0.3);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon-circle {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 35px rgba(168, 213, 162, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .mission-card, .vision-card {
        min-height: auto;
        padding: 30px !important;
    }
    
    .mission-bg-shape, .vision-bg-shape {
        width: 200px;
        height: 200px;
    }
    
    .mission-icon-circle, .vision-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon-circle i, .vision-icon-circle i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .mission-card, .vision-card {
        padding: 25px !important;
    }
    
    .mission-card .col-6, .vision-card .col-6 {
        width: 100%;
    }
}




.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-item span {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-lms {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.card-lms:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.top-bar a:hover { color: var(--accent) !important; }

.top-announcement-bar {
  background: linear-gradient(90deg, var(--dark-color), var(--primary-color));
  color: var(--white-color);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
#progress{
position:fixed;
top:0;
left:0;
height:4px;
width:0%;
background:#556B2F;
z-index:9999;
}


body::before{
content:"";
position:fixed;
width:100px;
height:100px;
border-radius:50%;
background:radial-gradient(circle,#a3b18a55,transparent);
pointer-events:none;
transform:translate(-50%,-50%);
left:var(--x);
top:var(--y);
z-index:999;
}
body::after{
content:"";
position:fixed;
inset:0;
background-image:
linear-gradient(rgba(0,0,0,.05) 1px,transparent 1px),
linear-gradient(90deg,rgba(0,0,0,.05) 1px,transparent 1px);

background-size:40px 40px;
z-index:-2;
}

.icon{
animation:float 4s ease-in-out infinite;
}

@keyframes float{
50%{
transform:translateY(-15px);
}
}
h1{
text-shadow:
0 0 15px rgba(85,107,47,.4),
0 0 35px rgba(85,107,47,.2);
}

#scrollBtn{
    position:fixed;
    right:30px;
    bottom:30px;
    width:70px;
    height:70px;
    border:none;
    background:transparent;
    cursor:pointer;
    display:none;
    z-index:9999;
}

.progress-circle{
    position:relative;
    width:70px;
    height:70px;
    transition:.4s;
}

.progress-circle:hover{
    transform:translateY(-8px) scale(1.08);
}

svg{
    transform:rotate(-90deg);
}

circle{
    fill:none;
    stroke-width:5;
}

.bg{
    stroke:rgba(255,255,255,.15);
}

.progress{
    stroke:#6B8E23;
    stroke-linecap:round;
    stroke-dasharray:188.5;
    stroke-dashoffset:188.5;
    transition:.2s;
    filter:drop-shadow(0 0 10px #6B8E23);
}

.content{
    position:absolute;
    inset:0;
    margin:auto;
    width:56px;
    height:56px;
    border-radius:50%;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.92);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:
    0 8px 20px rgba(0,0,0,.15),
    0 0 15px rgba(107,142,35,.25);
}

#percent{
    font-size:12px;
    font-weight:700;
    color:#556B2F;
}

.content i{
    font-size:14px;
    color:#556B2F;
    margin-top:2px;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 rgba(107,142,35,.4);
}

50%{
box-shadow:0 0 25px rgba(107,142,35,.6);
}

100%{
box-shadow:0 0 0 rgba(107,142,35,.4);
}

}

.content{
animation:pulse 2s infinite;
}

.whatsapp{
position:fixed;
bottom:25px;
left:25px;
width:60px;
height:60px;
background:#78c16c;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
z-index:9999;
animation:float 2s infinite;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

@keyframes float{
50%{transform:translateY(-8px);}
}

.shape{
position:fixed;
border-radius:50%;
filter:blur(70px);

width:250px;
height:250px;
animation:move 15s infinite alternate;
}

.s1{
width:250px;
height:250px;
background:#94ca8f;
}

.s2{
width:180px;
height:180px;
background:#a6d8cb;
right:0;
}

.s3{
width:220px;
height:220px;
background:#9ce19c;
bottom:0;
}

@keyframes move{
to{
transform:translate(200px,-150px);
}
}

.scroll-down{
position:fixed;
bottom:20px;
left:50%;
width:25px;
height:45px;
border:2px solid #6B8E23;
border-radius:30px;
}

.scroll-down::before{
content:"";
position:absolute;
left:50%;
top:8px;
width:6px;
height:6px;
background:#6B8E23;
border-radius:50%;
transform:translateX(-50%);
animation:down 2s infinite;
}

@keyframes down{

100%{
top:28px;
opacity:0;
}

}

.footer{
    position:relative;
    background:linear-gradient(180deg,#1b2d14,#0b1208);
    min-height:450px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-content{
    position:relative;
    z-index:10;
    color:#fff;
    text-align:center;
}

.waves{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:180px;
    overflow:hidden;
}

.wave{
    position:absolute;
    left:-50%;
    width:200%;
    height:180px;
    border-radius:45%;
    animation:waveMove linear infinite;
}

.wave1{
    background:rgba(107,142,35,.45);
    bottom:-90px;
    animation-duration:10s;
}

.wave2{
    background:rgba(163,177,138,.35);
    bottom:-110px;
    animation-duration:16s;
    animation-direction:reverse;
}

.wave3{
    background:rgba(255,255,255,.08);
    bottom:-130px;
    animation-duration:22s;
}

@keyframes waveMove{

0%{
transform:translateX(0) rotate(0deg);
}

100%{
transform:translateX(25%) rotate(360deg);
}

}

#bubble-container{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:999;
}

.bubble{
    position:absolute;
    width:10px;
    height:10px;
    background:rgb(170, 185, 148);
    border-radius:50%;
    bottom:-50px;
    animation:move 10s linear infinite;
    backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}



@keyframes move{
from{
bottom:-50px;
}
to{
bottom:110%;
}
}

#heart-intro{
position:fixed;
inset:0;
display:flex;
justify-content:center;
align-items:center;

z-index:999999;
animation:hide 4s forwards;
}

#heart-svg{
    width:180px;
    height:180px;
    overflow:visible;
    transform:rotate(0deg);
}

#heart-path{

fill:transparent;

stroke:#a4d585;

stroke-width:10;

stroke-linejoin:round;

stroke-linecap:round;

stroke-dasharray:1500;

stroke-dashoffset:1500;

animation:

draw 1.6s ease forwards,

fillHeart .6s ease 1.5s forwards,

beat .5s ease 2.2s 2,

fade 1s ease 3s forwards;

filter:drop-shadow(0 0 25px rgba(182, 224, 136, 0.35));
 transform-origin:center;
    transform-box:fill-box;
    transform:scale(1);

}

@keyframes draw{

to{
stroke-dashoffset:0;
}

}

@keyframes fillHeart{

to{
fill:#82c945;
}

}

@keyframes beat{

0%{transform:scale(1);}
25%{transform:scale(1.18);}
50%{transform:scale(.95);}
100%{transform:scale(1);}
}

@keyframes fade{

to{

opacity:0;

transform:scale(3);

filter:blur(15px);

}

}

@keyframes hide{

0%,90%{

opacity:1;

}

100%{

opacity:0;

visibility:hidden;

pointer-events:none;

}

}

#constellation{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    
    pointer-events:none;
}

#boot-screen{
    position:fixed;
    inset:0;
    background:#050505;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    font-family:Consolas,monospace;
    color:#d1debb;
}

.boot-content{
    width:450px;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#c9e78e;
    margin-bottom:35px;
    text-align:center;
    letter-spacing:3px;
}

.line{
    margin:18px 0 8px;
}

.progress{
    width:100%;
    height:8px;
    background:#1b1b1b;
    border-radius:20px;
    overflow:hidden;
}

.progress span{
    display:block;
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#bcd28f,#A3B18A);
    animation:load 1.2s forwards;
}

.progress:nth-of-type(2) span{
    animation-delay:.3s;
}
.progress:nth-of-type(4) span{
    animation-delay:.8s;
}
.progress:nth-of-type(6) span{
    animation-delay:1.3s;
}
.progress:nth-of-type(8) span{
    animation-delay:1.8s;
}

.status{
    opacity:0;
    margin-top:25px;
    color:#a8d37c;
    text-align:center;
    animation:showStatus .5s forwards;
    animation-delay:2.8s;
}

@keyframes load{
    from{width:0;}
    to{width:100%;}
}

@keyframes showStatus{
    to{
        opacity:1;
    }
}

#ai-quote{
    margin-top:25px;
    min-height:28px;
    text-align:center;
    color:#A3B18A;
    font-size:17px;
    font-style:italic;
    letter-spacing:.5px;
    opacity:0;
    animation:fadeQuote .8s forwards;
}

@keyframes fadeQuote{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#ai-assistant{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;
}

#ai-button{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#6B8E23,#A3B18A);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    cursor:pointer;
    box-shadow:0 0 25px rgba(107,142,35,.4);
    animation:floatAI 3s ease-in-out infinite;
}

@keyframes floatAI{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

}

#ai-chat{

position:absolute;

bottom:85px;

right:0;

width:300px;

background:#111;

border:1px solid rgba(107,142,35,.4);

border-radius:20px;

overflow:hidden;

display:none;

backdrop-filter:blur(12px);

box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.ai-header{

background:#6B8E23;

padding:15px;

display:flex;

justify-content:space-between;

font-weight:bold;

color:#fff;

}

#close-ai{

cursor:pointer;

}

.ai-body{

padding:20px;

}

.ai-body p{

color:#ddd;

margin-bottom:15px;

}

.ai-body button{

width:100%;

margin:8px 0;

padding:12px;

border:none;

border-radius:12px;

background:#1d1d1d;

color:#fff;

cursor:pointer;

transition:.3s;

}

.ai-body button:hover{

background:#6B8E23;

}
#ai-assistant{
    position: fixed;
    right: 25px;
    bottom: 110px;
    z-index: 99999;
}

@media (max-width:768px){

#ai-assistant{
    right:25px;
    bottom:100px;
}

}

.visitor-box{

position:fixed;



bottom:70px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

padding:18px 28px;

border-radius:18px;

color:white;

text-align:center;

border:1px solid rgba(255,255,255,.15);

box-shadow:0 10px 30px rgba(0,0,0,.2);

z-index:9999;



}

.visitor-box h2{

font-size:28px;

margin:8px 0;

color:#A3B18A;

}

.icon{

font-size:28px;

}