.text-primary {
  color: #05a5e4 !important;
}
.hovereffect {
  transition: transform 0.3s ease; /* Add transition for smooth effect */
}

.hovereffect:hover {
  transform: scale(0.9); /* Scale down on hover */
}

.feature-item {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fafbfc;
  border-radius: 10px;
    box-shadow: rgba(68, 167, 205, 0.89) 0px 6px 12px -2px, rgba(83, 147, 168, 0.72) 0px 3px 7px -3px;
      height: 17rem;
    text-align: center;
}
.feature-item i {
            color: #0C4EA2;
        }

.feature-item h3 {
  color: #05a5e4;
  font-size: 1.3rem;
  text-align: center;
}
.feature-item p {
  color: #555;
}
th {
  background-color: #05a5e4 !important;
  text-align: center;
}
td {
  text-align: center;
  align-content: center;
}
.product-img {
  width: 30rem;
}
a.btn-custom,
a.btn-custom:active,
a.btn-custom:focus,
a.btn-custom:visited,
.btn-custom {
  background: #05a5e4;
}

@media only screen and (max-width: 600px) {
  .product-img {
    width: 18rem;
  }
}


    .sidebar {
        position: sticky;
        top: 20px;
        /* Distance from the top of the viewport */
        height: calc(100vh - 20px);
        /* Adjust based on your layout */
        overflow-y: auto;
        /* Allows scrolling within the sidebar if content exceeds viewport */

    }

    .sticky {
        position: sticky;
        top: 8rem;
        /* Adjust this value to control when it becomes sticky */
        z-index: 100;
        /* Ensures it stays above other content */
        background-color: white;
        /* Optional: Change the background color */
    }

    .download-section {
        background-color: #f9f9f9;
        /* Light background */
        padding: 38px 0;
        text-align: center;
    }

    .download-section h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #0C4EA2;
        /* Main brand color */
    }

    .download-section p {
        font-size: 18px;
        margin-bottom: -6px;
        color: #333;
    }

    .btn-download {
        display: inline-block;
        padding: 12px 25px;
        background-color: #05a5e4;
        /* Main brand color */
        color: white;
        font-size: 18px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .btn-download i {
        margin-right: 8px;
    }

    .btn-download:hover {
        background-color: #fff;
        border: 1px solid #05a5e4;
        /* Darker shade on hover */
    }

    @media (max-width: 768px) {

        .download-section .col-md-8,
        .download-section .col-md-4 {
            text-align: center;
            margin-bottom: 20px;
        }
    }

      .details-content h2 {
        text-align: center;
        color: #333;
        font-weight: bold;
        margin-bottom: 30px;
    }

    /* Styling for details and summary tags */
    details {
        background-color: #515A63;
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    summary {
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        background-color: #515A63;
        cursor: pointer;
        list-style: none;
        outline: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    summary:hover {
        background-color: #05A5E4;
    }

    /* Icon at the end */
    summary::after {
        content: "▸";
        font-size: 1.2rem;
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    details[open] summary::after {
        content: "▾";
        transform: rotate(180deg);
    }

    /* Content inside details */
    .content {
        padding: 15px;
        background-color: white;
        color: #333;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Styling for list items */
    .content ul {
        padding-left: 1rem;
        margin: 0;
        list-style-type: disc;
    }

    .content ul li {
        padding: 6px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .content ul li:last-child {
        border-bottom: none;
    }

   
