     body {
    font-family: 'Book Antiqua', 'Times New Roman', Times, serif;
}

        .bg-custom-green {
           background-color: rgb(33, 155, 51);
        }
        .top-ticker {
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            font-size: 12px;
            background: green;
        }
        .top-ticker p {
            display: inline-block;
            padding-left: 100%;
            animation: ticker 20s linear infinite;
            margin: 0;
        }
        @keyframes ticker {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .main-header {
            background-color: #f8f9fa;
            position:sticky;
            padding: 8px 0;
            border-bottom: 0px solid #ddd;
            height: 30px;
            

        }

        .main-header .logo {
            height: 30px;
        }

        .navbar-custom {
            background-color: #007bff;
        }

        .navbar-custom .nav-link {
            color: #fff !important;
        }

        .navbar-custom .nav-link:hover,
        .navbar-custom .dropdown-menu a:hover {
            background-color: #0056b3;
            color: #fff;
        }

        .sticky-footer {
            position: sticky;
            bottom: 0;
            background: #0056b3;
            color: #ffffff;
            padding: 1px 0;
            text-align: center;
        }

     /*   @keyframes slideUp {
    0% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}  */

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}
.delay-1 {
    animation-delay: 0.3s;
}
.delay-2 {
    animation-delay: 0.6s;
}

/* Carousel Container Frame */
#mainCarousel {
    height: 400px;
    max-height: 400px;
    overflow: hidden;
}


.carousel-caption {
    bottom: 20%; /* move caption higher */
    background-color: rgba(0, 0, 0, 0.5); /* optional: adds contrast */
    padding: 1rem;
    border-radius: 10px;
}

.carousel-caption h5,
.carousel-caption p {
    color: #fff; /* makes text readable */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* optional: more readability */
}

/* Ensure images scale properly and do not stretch */
#mainCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Or use 'contain' if you want full image visible */
    object-position: center;
    display: block;
}


/* Optional: Reduce height on smaller devices */
@media (max-width: 768px) {
    #mainCarousel {
        max-height: 250px;
    }
}

.dropdown .btn-outline-primary {
    font-size: 12px;
    border-radius: 15px;
    padding: 6px 12px;
}

.dropdown-menu a.dropdown-item {
    font-size: 14px;
    transition: background 0.2s ease;
}

.dropdown-menu a.dropdown-item:hover {
    background-color:rgb(7, 253, 3);
}


.cta-banner {
    background: linear-gradient(135deg, #004d00, #007700);
    background-size: 400% 400%;
    animation: bannerBG 15s ease infinite;
}

@keyframes bannerBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-banner h2,
.cta-banner p {
    font-family: 'Times New Roman', serif;
}



/* 🟢 Animation Entry Slide-Up */
@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}  

/*
.slide-up {
  animation: slideUp 0.8s ease-out both;
}  */

/* ⏱️ Optional delay helpers */
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }


/* ✨ Subtle glow on hover */
.slide-up:hover {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  transform: translateY(-5px);
}

/* 🔄 Optional floating/bounce */
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: floatBounce 2s ease-in-out infinite;
}


/* 🔘 Floating Robot Icon */
.chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    font-size: 24px;
    animation: float 2s ease-in-out infinite;
}

/* 🌟 Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* 💬 Chat Widget UI */
.ai-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    font-family: 'Book Antiqua', 'Times New Roman', Times, serif;
    z-index: 9998;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    background: #f9f9f9;
}

.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

.chat-input button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
/*
.chat-message {
    margin-bottom: 10px;
}

.chat-message.bot {
    color: #007bff;
}

.chat-message.user {
    text-align: right;
    color: #333;
} */

/* 👤 Simple form styling within chat */
.chat-form {
  margin-top: 10px;
}
.chat-form input {
  width: 100%;
  margin-bottom: 8px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.chat-form button {
  width: 100%;
  padding: 8px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.chat-form button:hover {
  background: #0056b3;
}


.chat-message {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.4;
  font-size: 14px;
}

.chat-message.bot {
  background-color: #e7f1ff;
  border-left: 4px solid #007bff;
  color: #004080;
}

.chat-message.user {
  background-color: #d4f8d4;
  border-right: 4px solid #28a745;
  color: #145c14;
  text-align: right;
}

.chat-message.typing {
  font-style: italic;
  opacity: 0.8;
}

.chat-message i {
  font-size: 12px;
  color: #555;
}

.chat-message strong {
  font-size: 13px;
}

.main-header {
    position: relative;
    z-index: 1050;
}

.dropdown-menu {
    z-index: 1100 !important;
    position: absolute !important;
}

