.menu-button {
background-color:#9E2654;
border:1px;
border-radius:3px;
-webkit-box-shadow:1px 1px 0px 0px #2f2f2f;
-moz-box-shadow:1px 1px 0px 0px #2f2f2f;
box-shadow:1px 1px 0px 0px #2f2f2f;
}
.menu-button a,  .menu-button a:hover, .menu-button a:active {
color:#fff !important;
}

/* WhatsApp Floating Button Container */
.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 9999;
    animation: floatBounce 2s infinite;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp green */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp Icon */
.whatsapp-btn .whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Hover effect */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Bounce animation */
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}







/* ==========================================================
   GURUKUL SHOOTING ACADEMY – MODERN CHATBOT CSS
   Mobile Friendly • Floating • Animations • Dark/Light Mode
   ========================================================== */

/* Floating Icon */
.gchat-icon {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0078ff;
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: pulseChat 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseChat {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Chat Box Container */
.gchat-box {
  position: fixed;
  bottom: 95px;
  right: 22px;
  width: 330px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(150%);
  transition: all 0.35s ease-in-out;
  z-index: 999999;
}

.gchat-box.open {
  transform: translateY(0%);
}

/* Header */
.gchat-header {
  background: #0078ff;
  color: white;
  padding: 12px 15px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gchat-header .gchat-btn.small {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 2px 5px;
}

.gchat-title {
  font-size: 17px;
}

/* Chat Body */
.gchat-body {
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
  background: #f5f7fb;
}

.msg {
  display: flex;
  margin-bottom: 10px;
}

.msg.user {
  justify-content: flex-end;
}

.msg .msg-content {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.35;
  animation: fadeIn 0.25s ease-in-out;
}

.msg.user .msg-content {
  background: #0078ff;
  color: #fff;
  border-bottom-right-radius: 2px;
}

.msg.bot .msg-content {
  background: #ffffff;
  border-bottom-left-radius: 2px;
  color: #333;
  border: 1px solid #e6e6e6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typing Indicator */
.typing .msg-content {
  display: flex;
  align-items: center;
}

.typing-dots em {
  width: 6px;
  height: 6px;
  background: #0078ff;
  border-radius: 50%;
  margin-right: 4px;
  display: inline-block;
  animation: typing 1s infinite;
}

.typing-dots em:nth-child(2) { animation-delay: 0.15s; }
.typing-dots em:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0% { opacity: 0.2; transform: translateY(0px); }
  50% { opacity: 1; transform: translateY(-3px); }
  100% { opacity: 0.2; transform: translateY(0px); }
}

/* Suggestion Buttons */
.gchat-suggestions {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  background: #fff;
  border-top: 1px solid #eee;
}

.sugg-btn {
  font-size: 12px;
  padding: 7px 10px;
  background: #0078ff;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.sugg-btn:hover {
  background: #005fcc;
}

/* Footer Input Area */
.gchat-footer {
  display: flex;
  background: #fff;
  padding: 10px;
  border-top: 1px solid #ddd;
}

#gchat-input {
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #ccc;
  flex: 1;
  font-size: 14px;
}

.gchat-send {
  background: #0078ff;
  color: white;
  border: none;
  padding: 0 15px;
  margin-left: 8px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Gallery */
.gallery-box {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.gallery-box img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e7e7e7;
}

/* WhatsApp button */
.wa-btn {
  display: inline-block;
  background: #25d366;
  color: white !important;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.wa-btn:hover {
  background: #1ebe5d;
}

/* Dark Mode */
body.dark-mode .gchat-box {
  background: #252525;
  color: #fff;
}

body.dark-mode .msg.bot .msg-content {
  background: #333;
  color: white;
  border-color: #555;
}

body.dark-mode .gchat-body {
  background: #1e1e1e;
}

body.dark-mode .gchat-header {
  background: #444;
}

body.dark-mode #gchat-input {
  background: #333;
  border-color: #666;
  color: white;
}

body.dark-mode .gchat-send {
  background: #555;
}

/* Mobile Friendly */
@media (max-width: 500px) {
  .gchat-box {
    width: 92%;
    right: 4%;
    bottom: 90px;
  }

  .gchat-icon {
    right: 18px;
    bottom: 18px;
  }
}



/* Admission Enquiry Popup Background */

/* Arrow Button */
.gsa-arrow-circle {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s;
}

.gsa-arrow-circle:hover {
  transform: rotate(90deg) scale(1.1);
}

/* Admission Enquiry Button (beside arrow) */
.gsa-enquiry-box {
  position: fixed;
  bottom: 90px;
  right: 50px;
  background: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
  transition: 0.3s;
  white-space: nowrap;
}

.gsa-enquiry-box.hide {
  transform: translateX(120%);
}

.gsa-enquiry-box:hover {
  transform: scale(1.05);
}

/* Popup Center */
.gsa-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: none;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Header */
.gsa-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsa-close {
  cursor: pointer;
  font-size: 22px;
  color: #ff4d4d;
}

/* Success Message */
.gsa-success {
  display: none;
  text-align: center;
  padding: 20px 10px;
  font-size: 17px;
  color: green;
  font-weight: bold;
}

/* Form Elements */
.gsa-popup form input,
.gsa-popup form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
}

.gsa-popup button {
  background: #ff4d4d;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-top: 12px;
  cursor: pointer;
  font-weight: bold;
}










