
    body {
      font-family: 'Roboto', sans-serif;
      padding: 20px;
    }

    /* Option 1: Sticky (stops at parent container boundary) */
    header.container {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: white;
    }

    /* Option 2: Fixed (always on top, full width) */
    /*
    header.container {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: white;
    }
    body {
      padding-top: 80px; /* Adjust to header height so content is visible */
    
    */

    /* Just for demo scrolling */
    main {
      min-height: 200vh;
      padding: 2rem;
      background: linear-gradient(#f8f9fa, #dee2e6);
    }

    .container {
        max-width: 1140px !important;
    }

    nav a, .breadcrumb, ul li, p {
  
        font-family: 'Roboto', sans-serif;
    }

    p .research p {
      line-height: 32px;
    }

    h3, h2, .Rale {
      font-family: 'Raleway', sans-serif;
    }

    h4 i {
      font-weight: 400;
      font-size: 21px;
      line-height: 14px !important;
    }

    li b, .research .col-12.col-sm-6 h5 {
      font-weight: 500;
      font-family: 'Roboto', sans-serif;
    }

    .border10 {
      border: solid 1px #f0f0f0;
    }

    header h1 {
        font-family: 'Roboto', sans-serif;
    }

    header h1 a {
      text-decoration: none;
      color: #000;
    }

     .breadcrumb .research div h3 {
  
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
    }

    nav a {
      color: #5d2eff;
      text-decoration: none;
    }

    .highlight {
      color: #5d2eff;
      font-weight: bold;
    }

    section {
        padding: 0 10px !important;
    }

    .section-title {
      font-family: 'Raleway', sans-serif;
      font-size: 1.25rem;
      margin-top: 40px;
    }

     .summary-title {
      font-size: 1.75rem;
      margin-top: 40px;
    }

    .o9 p,  .o9 li {
       font-family: 'Roboto', sans-serif;
    }

    .company-logo {
      width: 100%;
      height: auto;
      object-fit: contain;
      background-color: #fff;
      padding: 10px;
    }

    .project-btn {
      background-color: #5d2eff;
      color: white;
      border: none;
    }

    .project-btn:hover {
      background-color: #4520b0;
    }


    button a, button a:hover {
      color: #ffffff;
      text-decoration: none;
    }

section div span {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  text-align: left !important ;
}

.image-container {
    position: relative;
    width: 100%;
    display: inline-block;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    box-sizing: border-box;
  }

  .image-container:hover .overlay {
    opacity: 1;
  }

  .image-container:hover img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
  }

  .cs_details h4 {
    font-size: 24px !important;
    line-height: 34px;
  }
    .cs_details ul li {
    line-height:32px;
  }



     @media (min-width: 768px) {
    header .col-md-6[style] {
      margin-top: 30px !important;
    }
  }