/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
  }
  
  .nav-item {
    position: relative;
    margin-right: 1.5rem; 
  }
  
  .nav-link {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-weight: 800;
  }
  
  .navbar-nav {
    margin-left: auto;
  }
  
  .dropdown-menu {
    background-color: #343a40;
    border: none;
    display: none; 
    position: absolute;
    top: 100%; 
  }
  
  @media (min-width: 992px) {
    .nav-item:hover .dropdown-menu {
      display: block;
    }
  }
  
  .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
  }
  
  .dropdown-item:hover {
    background-color: #fd7e14;
    color: #ffffff;
  }
  
  
  @media (max-width: 991px) {
  
    .dropdown-menu {
      position: static;
      display: none;
      /* margin-top: 0.5rem; */
    }
    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
      display: block;
    }
    .nav-item {
      margin-right: 0;
    }
  
    .dropdown-item {
      text-align: start;
    }
  }
  
  /* Header Image */
  #head_img {
    width: 100vw;
    height: auto;
    object-fit: cover;
  }
  
  .title {
    font-family: sans-serif;
    font-weight: bolder;
    margin: 5rem 6rem 1rem 6rem;
    font-size: small;
  }
  
  span {
    color: #ff6600;
  }
  
  /* Clients Section */

.clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .clients img {
    width: 100%;
    height: 150px;
    object-fit: contain; 
    border-radius: 10px; 
  }
  

  @media (max-width: 767px) {
    .clients img {
      height: 120px; 
    }
  }
  
  
  /* Card Styles */
  .card {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
  }
  
  .blockquote-footer {
    font-size: 0.9rem;
    color: #6c757d;
  }
  
  .demo {
    font-weight: bold;
  }
  
  .blockquote p {
    font-size: 1rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Case Studies */
  .case-study img {
    width: 100%;
    height: auto;
  }
  
  /* Footer */
  footer {
    background-color: rgb(19, 19, 19); 
    padding: 2em 4em;
    width: 100%; 
  }
  
  .footer-content {
    margin-bottom: 1em;
  }
  
  .footer-content p {
    margin: 0.5em 0;
    color: rgb(232, 225, 225);
  }
  
  .social-media {
    margin-top: 1em;
  }
  
  .social-media a {
    margin-right: 1em;
    text-decoration: none;
  }
  
  .social-media .icons2 {
    font-size: 2rem;
    color: white;
  }
  
  .right {
    text-align: justify;
  }
  
  .subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }
  
  input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 0.5em;
    border-radius: 4px;
    border: none;
    outline: none;
    background-color: rgb(49, 49, 49);
    color: #ddd;
  }
  
  button {
    background-color: rgb(251, 115, 45);
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: rgb(251, 115, 45);
  }
  
 
  @media (max-width: 767px) {
    footer {
      padding: 2em 1em;
    }
  
    .footer-content {
      text-align: center;
    }
  
    .subscription-form {
      flex-direction: column;
      gap: 0.5em;
    }
  
    input[type="email"], button {
      width: 100%;
    }
  
    button {
      width: auto;
    }
  
    .cp_card {
      display: none;
    }
  }
  
  /* Color and Branding */
  .colo {
    color: #ff6600;
    font-family: sans-serif;
    font-weight: bold;
  }
  
  .demo {
    background-color: white;
  }
  
  .down {
    margin-bottom: 5rem;
  }
  
  .head_style {
    color: #fd7e14;
  }
  
  .navbar-brand {
    font-weight: 800;
  }
  
  .footer-policies {
    margin: 0;
    margin-left: 15px;
    color: white;
}

.footer-policies a {
  color: #fd7e14;
  text-decoration: none;
  transition: color 0.3s ease;
}