body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at bottom, #111a22 0%, #06080b 100%);
  color: #f1f1f1;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  min-height: 120vh; /* Ensure scrolling */
}

/* Saffron Theme Colors */
.text-saffron {
  color: #FF9933 !important;
}

.bg-saffron {
  background-color: #FF9933 !important;
}

.btn-saffron {
  background-color: #FF9933;
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-saffron:hover {
  background-color: #e68a2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.border-saffron {
  border-color: #FF9933 !important;
}

/* Navbar overrides */
.navbar {
  
  background: rgba(255, 153, 51, 0.95) !important; /* Saffron glass */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.navbar-brand {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
  color: white !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:not(.btn):hover::after,
.navbar-nav .nav-link.active:not(.btn)::after {
  width: 70%;
}

/* Donate button in navbar */
.navbar .btn {
  background: white !important;
  color: #FF9933 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.8rem !important;
}

.navbar .btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  background: #f8f9fa !important;
  color: #e67e22 !important;
}

.glass-card {
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card .text-saffron,
.glass-card .form-label {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 51, 0.5);
}

.glass-card .card-title {
  color: #FF9933;
  font-weight: bold;
}

/* Stars Animation */
#universe-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.star {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  animation: twinkle infinite alternate ease-in-out;
  box-shadow: 0 0 5px #fff;
}

@keyframes twinkle {
  0% { opacity: 0.1; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1.5); }
}

/* Realistic Orbiting Planets */
.orbit {
  position: absolute;
  top: 60%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.05); /* Faint orbit line */
  z-index: -1;
  pointer-events: none;
}

.orbit-1 {
  width: 60vmin;
  height: 60vmin;
  margin-top: -30vmin;
  margin-left: -30vmin;
  animation: spin 90s linear infinite;
}

.orbit-2 {
  width: 40vmin;
  height: 40vmin;
  margin-top: -20vmin;
  margin-left: -20vmin;
  border-color: rgba(74, 144, 226, 0.15);
  animation: spin-reverse 50s linear infinite;
}

.orbit-3 {
  width: 80vmin;
  height: 80vmin;
  margin-top: -40vmin;
  margin-left: -40vmin;
  border-color: rgba(220, 200, 160, 0.15);
  animation: spin 130s linear infinite;
}

.planet {
  position: absolute;
  border-radius: 50%;
}

.planet-1 {
  width: 14vmin; 
  height: 14vmin;
  top: -7vmin;
  left: 50%;
  margin-left: -7vmin;
  /* Earth Texture (Transparent Background) */
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/22/Earth_Western_Hemisphere_transparent_background.png');
  background-size: 108%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b1f38; /* dark ocean fallback */
  /* Soft shading to give it volume */
  box-shadow: inset -1vmin -1vmin 2vmin rgba(0, 0, 0, 0.5), inset 0.5vmin 0.5vmin 1vmin rgba(255, 255, 255, 0.3), 0 0 3vmin rgba(74, 144, 226, 0.4);
  animation: spin-reverse 90s linear infinite;
}

.planet-2 {
  width: 8vmin; 
  height: 8vmin;
  bottom: -4vmin; 
  left: 50%;
  margin-left: -4vmin;
  /* Jupiter Texture (Pure CSS for 100% reliability) */
  background-color: #c8a581; /* Fallback base tone */
  background-image: repeating-linear-gradient(
    0deg,
    #c8a581 0%, #c8a581 8%,
    #a07856 8%, #a07856 14%,
    #d2b48c 14%, #d2b48c 22%,
    #b5936c 22%, #b5936c 28%,
    #8b5a2b 28%, #8b5a2b 35%,
    #c8a581 35%, #c8a581 42%,
    #d2b48c 42%, #d2b48c 50%,
    #a07856 50%, #a07856 58%,
    #b5936c 58%, #b5936c 68%,
    #8b5a2b 68%, #8b5a2b 78%,
    #c8a581 78%, #c8a581 88%,
    #d2b48c 88%, #d2b48c 100%
  );
  overflow: hidden; /* To contain the Great Red Spot */
  /* Good visibility and spherical shading */
  box-shadow: inset -1vmin -1vmin 2.5vmin rgba(0, 0, 0, 0.8), inset 0.5vmin 0.5vmin 1vmin rgba(255, 255, 255, 0.4), 0 0 4vmin rgba(255, 153, 51, 0.5);
  animation: spin 50s linear infinite;
}

.planet-2::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 20%;
  width: 2.2vmin;
  height: 1.2vmin;
  background-color: #a04020;
  border-radius: 50%;
  box-shadow: inset 0.2vmin 0.2vmin 0.5vmin rgba(0,0,0,0.4);
  opacity: 0.85;
}

.planet-3 {
  width: 12vmin; 
  height: 12vmin;
  top: 50%;
  right: -6vmin;
  margin-top: -6vmin;
  border-radius: 50%;
  /* Saturn Texture */
  background-color: #e3d5a4;
  background-image: repeating-linear-gradient(
    0deg,
    #e3d5a4 0%, #e3d5a4 10%,
    #d1bf8e 10%, #d1bf8e 20%,
    #c4ae79 20%, #c4ae79 30%,
    #d1bf8e 30%, #d1bf8e 40%,
    #e3d5a4 40%, #e3d5a4 60%,
    #c4ae79 60%, #c4ae79 70%,
    #e3d5a4 70%, #e3d5a4 80%,
    #d1bf8e 80%, #d1bf8e 100%
  );
  box-shadow: inset -1.5vmin -1.5vmin 3vmin rgba(0, 0, 0, 0.7), inset 0.5vmin 0.5vmin 1vmin rgba(255, 255, 255, 0.4), 0 0 4vmin rgba(200, 180, 100, 0.4);
  animation: spin-reverse 130s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.planet-3::before {
  content: "";
  position: absolute;
  width: 26vmin; 
  height: 26vmin; 
  border-radius: 50%;
  border: 1.5vmin dashed rgba(210, 190, 140, 0.8);
  outline: 0.5vmin dotted rgba(230, 210, 180, 0.6);
  outline-offset: 0.5vmin;
  box-shadow: 0 0 1.5vmin rgba(210, 190, 140, 0.5), inset 0 0 1.5vmin rgba(210, 190, 140, 0.5);
  animation: spin-ring 15s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  100% { transform: rotate(-360deg); }
}

@keyframes spin-ring {
  0% { transform: rotate(20deg) scaleY(0.23) rotate(0deg); }
  100% { transform: rotate(20deg) scaleY(0.23) rotate(360deg); }
}

/* Light Theme Sections */
.light-section {
  background-color: #ffffff;
  color: #212529;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}
.light-section.bg-light {
  background-color: #f8f9fa !important;
}
.light-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-radius: 1rem;
  padding: 2.5rem 1rem;
}
.light-card:hover {
  transform: translateY(-8px);
  border-color: #FF9933;
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.15);
}

/* Professional Saffron Animated Footer */
.modern-footer {
  background: linear-gradient(-45deg, #FF9933, #e67e22, #d35400, #F39C12);
  background-size: 300% 300%;
  animation: footerGradient 15s ease infinite;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 11;
  color: white;
}

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

/* Animated Floating Overlays */
.modern-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-image: url('chakra.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  animation: smoothSpin 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.modern-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background-image: url('chakra.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  animation: smoothSpin 80s linear infinite reverse;
  z-index: 0;
  pointer-events: none;
}

.modern-footer .container {
  position: relative;
  z-index: 2; /* keep content above animated shapes */
}

.footer-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmerBorder 3s infinite linear;
  z-index: 3;
}

@keyframes shimmerBorder {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.footer-heading {
  padding-bottom: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.modern-footer:hover .footer-heading::after {
  width: 70px;
}

.footer-links-modern li {
  margin-bottom: 15px;
}

.footer-links-modern a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links-modern a::before {
  content: '›';
  color: white;
  font-size: 1.4rem;
  margin-right: 0px;
  opacity: 0;
  width: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-links-modern a:hover::before {
  opacity: 1;
  width: 15px;
  margin-right: 5px;
}

.footer-links-modern a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
  transform: translateX(8px);
}

.social-links-modern {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.4s ease;
  z-index: -1;
}

.social-icon:hover::before {
  top: 0;
}

.social-icon:hover {
  color: #D87010;
  border-color: white;
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modern-footer .text-white-50 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.donate-anim {
  transition: all 0.3s ease;
}

.donate-anim:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
  color: white !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-logo {
  animation: smoothSpin 10s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255,153,51,0.5));
}

/* Chakra Animation */
@keyframes smoothSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.chakra-glow {
  filter: drop-shadow(0 0 20px rgba(255, 153, 51, 0.8));
}

/* Base Utility padding */
.content-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}

/* Form Styles */
.form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.form-control:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: #FF9933;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Gallery Styles */
.gallery-card img {
  transition: transform 0.5s ease;
}

.gallery-card .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.object-fit-cover {
  object-fit: cover;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation-name: zoom-in;
  animation-duration: 0.3s;
}

@keyframes zoom-in {
  from {transform:scale(0.9); opacity: 0}
  to {transform:scale(1); opacity: 1}
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 1001;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #FF9933;
  text-decoration: none;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1001;
}

.lightbox-next {
  right: 5%;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev {
  left: 5%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 153, 51, 0.8);
  color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .display-2 { font-size: 2.8rem !important; }
  .display-4 { font-size: 2.2rem !important; }
  .display-5 { font-size: 2rem !important; }
  
  .content-section { 
    padding-top: 3rem; 
    padding-bottom: 3rem; 
  }
  
  /* Optimize space in hero */
  .hero-btn-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .light-card .display-4 {
    font-size: 3rem;
  }
}



@media (min-width: 992px) {
  .navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}




/* Elegant Mobile Sidebar */
@media (max-width: 991.98px) {
  .custom-mobile-sidebar {
    background: #ffffff !important;
    border-left: none !important;
    box-shadow: -15px 0 40px rgba(0,0,0,0.1) !important;
    width: 320px !important;
    max-width: 85vw !important;
  }
  .custom-mobile-sidebar .offcanvas-header {
    background: #ffffff !important;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  }
  .custom-mobile-sidebar .offcanvas-header .offcanvas-title {
    color: #1a252f !important;
    font-size: 1.25rem;
    font-weight: 700 !important;
  }
  .custom-mobile-sidebar .btn-close {
    filter: none !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s ease;
  }
  .custom-mobile-sidebar .btn-close:hover {
    opacity: 1 !important;
  }
  .custom-mobile-sidebar .offcanvas-body {
    padding: 1.5rem !important;
    background: #ffffff !important;
  }
  .custom-mobile-sidebar .nav-link {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
    padding: 0.8rem 1rem !important;
    border-radius: 8px !important;
    margin-bottom: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .custom-mobile-sidebar .nav-link:hover,
  .custom-mobile-sidebar .nav-link:active {
    background: rgba(255,153,51,0.08) !important;
    color: #FF9933 !important;
    transform: translateX(5px);
  }
  .custom-mobile-sidebar .nav-link.active {
    color: #FF9933 !important;
    background: rgba(255,153,51,0.1) !important;
    font-weight: 700;
  }
  .custom-mobile-sidebar .nav-link::after {
    display: none !important;
  }
  .custom-mobile-sidebar .nav-item:last-child .nav-link {
    background: linear-gradient(135deg, #FF9933, #e65c00) !important;
    color: white !important;
    text-align: center;
    border-radius: 50px !important;
    padding: 0.8rem !important;
    margin-top: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(255,153,51,0.3) !important;
    font-weight: 600;
  }
  .custom-mobile-sidebar .nav-item:last-child .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,153,51,0.4) !important;
  }
}


/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover, .floating-whatsapp:focus {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  animation: none;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}


/* Floating Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  pointer-events: none;
}
.chatbot-btn {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  font-size: 28px;
  pointer-events: auto;
}
.chatbot-btn svg {
  fill: white;
  transition: transform 0.3s ease;
}
.chatbot-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.chatbot-window {
  width: 360px;
  height: 540px;
  max-height: 80vh;
  max-width: 90vw;
  background-color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 20px;
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0) translateY(20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.05);
}
.chatbot-window.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chatbot-header {
  background: linear-gradient(135deg, #094b70, #063450);
  color: white;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 2;
}
.chatbot-header-text {
  display: flex;
  flex-direction: column;
}
.chatbot-header-text h5 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.chatbot-header-text p {
  margin: 4px 0 0 0;
  font-size: 0.75rem;
  opacity: 0.85;
}
.chatbot-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.chatbot-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.chat-msg.bot {
  background-color: #ffffff;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, #094b70, #0b5e8c);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-topics-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}
.chat-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.chat-topic-btn {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #094b70;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.chat-topic-btn:hover {
  background: #094b70;
  border-color: #094b70;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(9, 75, 112, 0.2);
}
.chatbot-footer {
  padding: 15px 20px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.chat-input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  font-size: 0.95rem;
  outline: none;
  background: #f8f9fa;
  transition: border-color 0.2s, background 0.2s;
}
.chat-input:focus {
  border-color: #094b70;
  background: #ffffff;
}
.chat-send-btn {
  background: linear-gradient(135deg, #FF9933, #e67300);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(255, 153, 51, 0.3);
}
.chat-send-btn svg {
  margin-left: 2px;
}

