
/* Global */
:root {
  --primary-gradient: linear-gradient(135deg, #003366, #0099cc);
  --card-bg: #ffffff;
  --muted: #6c757d;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #0b2b3a;
}

/* NAV */
.navbar-brand strong { letter-spacing: 1px; }
.navbar .btn-light { background: #fff; color: #003366; font-weight:600; }

/* Header */
header#home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.header-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-overlay {
  background: rgba(0,0,0,0.45);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  max-width: 750px;
  width: 90%;
}
.counter {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  margin: 1rem 0;
  transition: transform 0.3s ease;
}
.spray-text { font-weight:700; margin-bottom:10px; }
.spray-text {
  animation: sprayEffect 0.1s infinite ease-in-out;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
@keyframes sprayEffect {
  0% {
    text-shadow: 
      0 0 5px black,
      0 0 10px #004466,
      0 0 20px #004466,
      0 0 30px #004466;
  }
  50% {
    text-shadow: 
      0 0 10px black,
      0 0 20px #004466,
      0 0 30px #004466,
      0 0 40px #004466;
  }
  100% {
    text-shadow: 
      0 0 5px black,
      0 0 10px #004466,
      0 0 20px #004466,
      0 0 30px #004466;
  }
}
.tagline { margin-bottom:20px; font-size:1.05rem; }
.demo-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: none;
}

/* Benefits + features */
.feature-box {
  background: #f8fafd;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  text-align:center;
}

.card-body{background: #e6f0fa;}
.card-title{font-weight: 600;}

#features {
  background: linear-gradient(135deg, #003366, #0099cc);
  color: #fff;
  text-align: center;
}

#features h2 {
  font-weight: 700;
  color: #fff;
}

#features p {
  font-size: 1.1rem;
  color: #d9f2ff;
  margin-bottom: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .feature-box {
    font-size: 0.9rem;
    padding: 10px;
  }
}
/* ===== Client Section ===== */
#client {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

#client .section-title-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

#client .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #004466;
}

#client .section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

#client .client-slider {
    display: flex;
    justify-content: center; /* Center the slides */
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 10px;
}

/* Optional: smooth snap effect for scrolling */
#client .client-slider {
    scroll-snap-type: x mandatory;
}

#client .client-slider .slide {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center; /* Center each slide when scrolling */
}

#client .client-slider::-webkit-scrollbar {
    height: 6px;
}

#client .client-slider::-webkit-scrollbar-thumb {
    background-color: #004466;
    border-radius: 10px;
}


#client .client-slider .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

#client .client-slider .slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    #client .section-title {
        font-size: 28px;
    }
    #client .client-slider .slide {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    #client .section-title {
        font-size: 24px;
    }
    #client .section-subtitle {
        font-size: 14px;
    }
    #client .client-slider .slide {
        width: 100px;
        height: 100px;
    }
}

/* Pricing */
.price-toggle h3 { margin:0; }
.table-secondary th { background:#f1f7fb; }

/* Footer */
footer { background:#002b44; color:#fff; }
footer a { color:#fff; text-decoration:none; }
footer a:hover { text-decoration:underline; }

/* Responsive header image handling */
@media (max-width: 992px) {
  .header-slide { background-position: center top; background-size: cover; }
  .header-overlay { padding:20px; }
}
@media (max-width: 576px) {
  .header-overlay h1 { font-size:22px; }
  .header-overlay p, .header-overlay h2 { font-size:15px; }
  .demo-btn { padding:10px 16px; font-size:14px; }
}
/* Chat Button */
.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg,#003366,#0099cc);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 9999;
}

/* Chat Container */
.chatbot-box {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Header */
.chatbot-header {
  background: linear-gradient(135deg,#003366,#0099cc);
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: bold;
}

/* Messages */
.chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
  background: #f7f9fc;
}

.message {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  max-width: 80%;
}

.bot {
  background: #e9eef5;
}

.user {
  background: #0099cc;
  color: #fff;
  margin-left: auto;
}

/* Input Area */
.chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-input input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

.chatbot-input button {
  background: #003366;
  color: #fff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
}

/* Lead Form */
.lead-form {
  padding: 10px;
}

.lead-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.lead-form button {
  width: 100%;
  background: #0099cc;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
}

