body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: transparent;
    background-image: url('ImageAI/heroai2.jpg');
    background-size: 100%;
    padding: 10px 0 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* position: sticky;
    top: 0;
    z-index: 1000; */
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
  .logo img {
    max-height: 60px;
    vertical-align: middle;
    border-radius: 50%;

  }
  
  .nav-links {
    list-style-type: none;
    margin: 20px;
    padding: 0;
  }
  
  .nav-links li {
    display: inline;
    margin-left: 20px;
  }
  
  .nav-links li:first-child {
    margin-left: 0;
  }
  
  .nav-links li a {
    /* color: #0c0c0c; */
    color:#f0f0f0;
    text-decoration: none;
    font-weight: bold;
    font-size: medium;
  }
  
  .nav-links li a:hover {
    color: #18ec3b;
  }



/*Hero*/

/* Hero image styles */
.hero-image {
    /* background-image: url('image/nursing.jpeg'); Replace 'hero-image.jpg' with your image file */
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: 100vh;
    opacity: 20;
}

.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #000000;
  }


  /*footer*/

  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 100px;
    background-color: #43464B;
    color: #0a0909;
  }

  .footer-column img {
    max-width: 80%; /* Adjust the size of the company logo */
    height: auto;
    border-radius: 50%;
}
  
  .footer-column {
    flex: 1;
    margin-right: 20px;
  }
  
  .footer-column:last-child {
    margin-right: 0;
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 5px;
  }

  .footer-column a {
    color:rgba(17, 16, 16, 0.9);
    text-decoration: none;/*removes the underline caused due to href*/
  }

  .footer-column a:hover {
    text-decoration: underline;
}
  
  .app-links {
    display: flex;
    align-items: center;
  }
  
  .app-links .app-store-link,
  .app-links .play-store-link {
    display: inline-block;
    width: 50%; /* Adjust width as needed */
    padding: 10px;
    background-color: #070707;
    color: #f3ecec;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 5px;
    max-width:auto;
    max-height: auto;
  }

  
  .app-links .app-store-link:last-child,
  .app-links .play-store-link:last-child {
    margin-right: 0;
  }


    /*Top Ai Technologies*/
    .featured-tech {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .featured-tech h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .box {
        flex: 0 0 calc(33.33% - 10px);
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .box img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
    
    .box p {
        margin-top: 10px;
        font-size: 14px;
        color: #666;
    }


    /*Subscription Box*/

.subscription-box {
    flex: 1;
    text-align: center;
    margin-top: 3px;
    margin-right: 35%;
    margin-left: 35%;
    /* width: 300px;*/
    height: auto; 
    background-color: #f0f0f0; /* Add a background color */
    border-radius: 10px;
  }
  
  .subscription-box h2 {
    margin-bottom: 10px;
  }
  
  .subscription-box p {
    margin-bottom: 20px;
  }
  
  .subscription-box form {
    display: inline-block;
  }
  
  .subscription-box input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .subscription-box button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #0a7bd8;
    color: #fff;
    cursor: pointer;
  }



