/* style.css */

/* Base Styles & Theme Colors */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #000;
  }
  
  /* Custom Cyan Button (Darker Cyan) */
  .btn-custom-cyan {
    background-color: #00bcd4;
    color: #000;
    border: none;
  }
  .btn-custom-cyan:hover {
    background-color: #0097a7;
  }
  
  /* Force the login dropdown toggle to always stay the same color */
  .navbar .btn-custom-cyan,
  .navbar .btn-custom-cyan:focus,
  .navbar .btn-custom-cyan:hover,
  .navbar .btn-custom-cyan:active,
  .navbar .btn-custom-cyan.active {
    background-color: #00bcd4 !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  
  /* Dark Cyan Line with Animated Bar */
  .dark-cyan-line {
    height: 6px;
    background-color: #0097a7;
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  .line-animation {
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, #0097a7 0%, #00e5ff 50%, #0097a7 100%);
    position: absolute;
    left: 0;
    animation: bounce 4s ease-in-out infinite;
  }
  @keyframes bounce {
    0% { left: 0; }
    50% { left: calc(100% - 30px); }
    100% { left: 0; }
  }
  
  /* Footer Styling */
  footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  /* Pricing Card Styles */
  .pricing-card {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
  }
  
  /* Ensure the pricing cards stretch to equal height */
  .pricing-col {
    display: flex;
    align-items: stretch;
  }
  .pricing-col .pricing-card {
    flex: 1;
  }
  
  /* Nested Dropdown (Submenu) Styles */
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > a {
    position: relative;
    padding-right: 25px;
  }
  .dropdown-submenu > a::after {
    content: "\25B6";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  
  /* Description Section with Background Image */
  .description-section {
    background-image: url("https://pix4free.org/assets/library/2021-02-04/originals/patent.jpg");
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    padding: 120px 0;
  }
  
  /* Increased text box height */
  .description-section .description-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px;
    border-radius: 8px;
  }
  .description-section .description-text p {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
  }
  