body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: #192e3b;
    overflow-x: hidden;
}


/* Hero background (optional — not used now but kept in case you want it later) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #192e3b 0%, #213740 100%);
    overflow: hidden;
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    align-items: center;
    background: transparent;
    position: relative;
    z-index: 10;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.nav-links li a:hover {
    opacity: 0.8;
}

.cta-button {
    background-color: #ffffff;
    color: #0b1c2c;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

/* Optional content area (no longer used unless re-added) */
.content {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 50%;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fffbe8;
}

/* Get Started button styles */
.get-started-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    background-color: #ffffff;
    color: #0b1c2c;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* NEW HERO BANNER STYLING */
.hero-banner {
    margin-top: 0;
    padding-top: 0;
    background-color: #192e3b;
}

.hero-banner img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Centered button below the image */
.button-section {
    text-align: center;
    margin-top: 2rem;
}

/* Sidebar Styling */
.custom-sidebar-bg {
    background-color: #e7e0d2;
    color: #192f3a;
}

.shadow-right-subtle {
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.05);
  }
  
  
.custom-sidebar-bg a:hover {
    color: #192f3a; /* A slightly lighter yellow */
}

.custom-sidebar-bg a {
    transition: color 0.2s ease;
}
.custom-sidebar-bg a:hover {
    color: #192f3a;
}


  
  .bg-white {
    color: #000000;
  }

  /* 🔵 Bouncing Dots Animation for Typing Indicator */
.dot {
    animation: bounce 1.2s infinite;
    font-weight: bold;
    font-size: 1.25rem;
    display: inline-block;
  }
  
  .delay-0 { animation-delay: 0s; }
  .delay-100 { animation-delay: 0.1s; }
  .delay-200 { animation-delay: 0.2s; }
  
  @keyframes bounce {
    0%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-6px);
    }
  }
  
  #typing-indicator {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  #typing-indicator.show {
    opacity: 1;
  }
  