body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: transparent;
    background-image: url('ImageAI/ai2.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;
    text-decoration: none;
    font-weight: bold;
    font-size: medium;
  }
  
  .nav-links li a:hover {
    color: #18ec3b;
  }


  /*blog main design*/

  /* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
  }
  
  /* Styles for rows */
  .row{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .row :first-child {
    margin-top: 5%;
  }/*adding top margin for first box to avoid sticking with nav bar*/
  
  .box {
    display: flex;
    background-color: #f0f0f0;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Styles for images */
  .box img {
    width: 40%;
    height: auto;
    object-fit: cover;
  }
  
  /* Styles for content */
  .content {
    padding: 20px;
  }
  
  /* Styles for headings */
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Styles for information text */
  p {
    font-size: 16px;
    line-height: 1.5;
  }
  

   /*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;
  }
