/* General text styling */
h1, h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    padding: 15px 0;
    color: #2c3e50;
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
    color: #34495e;
  }
  
  /* Header styling */
  .header {
    height: 80px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand {
    font-size: 24px;
    color: white !important;
    animation: slideIn 1.5s ease-in-out forwards;
  }
  
  @keyframes slideIn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
  }
  
  .nav-link {
    color: white !important;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #f1c40f !important;
  }
  
  /* Section styling */
  .container {
    padding: 40px 15px;
  }
  
  .btn-cta {
    background-color: #2ecc71;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .btn-cta:hover {
    background-color: #27ae60;
  }
  
  /* Services Section */
  .row {
    margin-top: 20px;
  }
  
  .col-md-3 {
    padding: 15px;
  }
  
  /* Footer styling */
  .footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
  }
  
  .footer a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #e67e22;
  }

  /* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 120px; /* Increased further for more space */
  right: 20px;
  z-index: 1000;
}.chatbot-toggle {
  background-color: orange; /* Changed to orange */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001; /* Ensure it's above the radial menu */
}  .chatbot-toggle:hover {
    transform: scale(1.1);
  }

  .chatbot-window {
    display: none;
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    overflow: hidden;
    position: absolute;
    bottom: 80px; /* Position above the toggle button */
    right: 0;
  }

  .chatbot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .chatbot-body {
    height: 340px; /* Adjusted for header */
    overflow-y: auto;
    padding: 10px;
    background-color: #f8f9fa;
  }

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

  .chat-message.bot {
    background-color: #007bff;
    color: white;
    margin-left: auto;
  }

  .chat-message.user {
    background-color: #e9ecef;
    margin-right: auto;
  }

  /* Radial Menu Styles */
  .radial-menu {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 0;
    height: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }

  .radial-menu.open {
    pointer-events: auto;
  }

.chatbot-tab {
    position: absolute;
    background-color: orange; /* Changed to orange */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: translate(-50%, -50%);
    opacity: 0;
}  .radial-menu.open .chatbot-tab {
    opacity: 1;
  }