/* Custom Styles for Sagar Group Theme */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.gradient-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.gradient-button:hover {
    opacity: 0.8;
}

.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 15px;
}

.header-logos img {
    height: 60px;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ENG {
    padding: 20px;
}

.text1 {
    color: #333;
    font-weight: bold;
}

.image1 {
    display: flex;
    justify-content: center;
}

.bg-primary-subtle {
    background-color: #f8f9fa !important; /* Light background for sections */
}

.card {
    margin-bottom: 20px;
}

footer {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-logos {
        flex-direction: column;
        text-align: center;
    }
    .ENG {
        padding: 10px;
    }
}


/* ---------------- HEADER BUTTON ---------------- */
.gradient-button {
  display: inline-block;
  background: linear-gradient(270deg, brown, white, gray);
  background-size: 500%;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 18px;
  padding: 10px 20px;
  animation: gradientAnimation 8s ease infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gradient-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px black;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------------- NAV ITEMS ---------------- */
.nav-item, .nav-item1 {
  padding: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: linear-gradient(to bottom, blue, aqua);
  border-radius: 18px;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px black;
}

.nav-item1:hover {
  background: linear-gradient(to bottom, gray, black);
  border-radius: 18px;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px black;
}

/* ---------------- STICKY NAV ---------------- */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
}.text1 {
  background: linear-gradient(90deg, #ff0000, #0000ff, #00cc00, #ff9900);
    -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}
#chatbot-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007bff;
  color: white;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}

#chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  height: 420px;
  background: white;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
  z-index: 9999;
}

#chatbot-header {
  background: #007bff;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

#chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.bot-msg, .user-msg {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  max-width: 80%;
}

.bot-msg {
  background: #e3f2fd;
}

.user-msg {
  background: #d1ffd1;
  margin-left: auto;
}

#chatbot-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

#chatbot-input {
  flex: 1;
  border: none;
  padding: 10px;
}

#send-btn {
  width: 60px;
  border: none;
  background: #007bff;
  color: white;
}
