.update-card p { min-height: 50px; }

/* for card toggle */
.toggle-details {
  border-radius: 50%;
}
.card-title {
  font-size: 1.1rem;
}
/* for search bar */
.search-box-rounded {
  border-radius: 50px !important; /* fully curved */
  overflow: hidden; /* keeps children inside curve */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* soft shadow like Google */
}

.search-box-rounded .form-control {
  border: none;
  border-radius: 50px 0 0 50px !important;
  padding-left: 20px;
  font-size: 1rem;
}

.search-box-rounded .btn {
  border-radius: 0 50px 50px 0 !important;
  padding: 0 25px;
}


/* filter */
#filterBar {
  border: 1px solid #e5e7eb;
}

#filterBar .filter-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

#filterBar .filter-btn:hover {
  background: #f3f4f6; /* light gray on hover */
}

#filterBar .filter-btn.active {
  background: linear-gradient(135deg, #41b1ff 0%, #a055f3 100%);   /* primary blue */
  color: #fff;           /* white text */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: 600;
}


.update-card {
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.update-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.update-card h5 {
  font-size: 1rem;
}

.update-card .badge {
  font-size: 0.65rem;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  background: #f3f4f6;
  color: #555;
}

.update-card small {
  font-size: 1rem;
}

.update-card .learn-more {
  text-decoration: none;
}

.update-card .learn-more:hover {
  text-decoration: underline;
}




/* privacy policy */
.policy-content {
  text-align: justify;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}
.policy-content h3 {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links .nav-link {
  color: #212529; /* dark grey text */
  transition: color 0.2s ease-in-out;
}

.footer-links .nav-link:hover {
  color: #3699FF !important; /* Metronic blue */
}


  /* Reset and Base Styles */
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
  }

  /* Layout */
  .d-flex {
    display: flex;
  }

  .flex-column {
    flex-direction: column;
  }

  .flex-root {
    min-height: 100vh;
  }

  .bg-white {
    background-color: #fff;
  }

  /* Subheader */
  .subheader {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .subheader-solid {
    background-color: #fff;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .d-flex {
    display: flex;
  }

  .align-items-center {
    align-items: center;
  }

  .justify-content-between {
    justify-content: space-between;
  }

  .gap-5 {
    gap: 1.25rem;
  }

  .logo {
    width: 70px;
    height: 70px;
    border-radius: 0.375rem;
    overflow: hidden;
  }

  .rounded-md {
    border-radius: 0.375rem;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .w-100 {
    width: 100%;
  }

  .h-100 {
    height: 100%;
  }

  .text-dark {
    color: #1f2937;
  }

  .font-weight-bolder {
    font-weight: 700;
  }

  .tracking-tight {
    letter-spacing: -0.025em;
  }

  .text-white {
    color: #fff;
  }

  .btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
  }

  .px-11 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .rounded-pill {
    border-radius: 50rem;
  }

  /* Gradient Header */
  .py-15 {
    padding-top: 2.75rem;
    padding-bottom: 2.25rem;
  }

  .text-center {
    text-align: center;
  }

  .mb-3 {
    margin-bottom: 0.75rem;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  /* Content Section */
  .my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .justify-content-center {
    justify-content: center;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding-right: 15px;
    padding-left: 15px;
  }


  .border-0 {
    border: 0;
  }

  .rounded-lg {
    border-radius: 0.5rem;
  }

  .p-5 {
    padding: 1.25rem;
  }

  .text-base {
    font-size: 1rem;
  }

  .mb-4 {
    margin-bottom: 1rem;
  }

  .text-muted {
    color: #B5B5C3 !important;
    font-size: 0.9rem !important;
  }

  /* Content Styling */
  .content h4 {
    color: #1f2937;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
    margin-block-end: 0px;
    margin-block-start: 0px;
  }

  .content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .content p {
    margin-bottom: 1rem;
  }

  .content a {
    color: #3b82f6;
    text-decoration: none;
  }

  .content a:hover {
    text-decoration: underline;
  }

  /* Footer */
  .border-top {
    border-top: 1px solid #e5e7eb;
  }

  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mt-5 {
    margin-top: 1.25rem;
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .mb-2 {
    margin-bottom: 0.5rem;
  }

  .mt-1 {
    margin-top: 0.25rem;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  .flex-column {
    flex-direction: column;
  }

  .list-unstyled {
    padding-left: 0;
    list-style: none;
  }

  .m-0 {
    margin: 0;
  }

  .p-0 {
    padding: 0;
  }

  .nav-item {
    margin-bottom: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.25rem 0;
    color: #1f2937;
    text-decoration: none;
    background-color: transparent;
  }

  .nav-link:hover {
    color: #3b82f6;
  }

  .px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .d-flex.justify-content-center.align-items-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .img-fluid {
    max-width: 100%;
    height: auto;
  }

  hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .large {
    font-size: 1.125rem;
  }

  .mt-3 {
    margin-top: 0.75rem;
  }

  .mb-2 {
    margin-bottom: 0.5rem;
  }

  .mt-5 {
    margin-top: 1.25rem;
  }

  .mb-4 {
    margin-bottom: 1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .col-md-2 {
      flex: 0 0 50%;
      max-width: 50%;
    }
    
    .col-lg-10 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .p-5 {
      padding: 1rem;
    }
    
    .py-15 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
    
    .btn {
      padding: 0.375rem 0.75rem;
      font-size: 0.875rem;
    }
    
    .px-11 {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .logo {
      width: 50px;
      height: 50px;
    }
    
    .container {
      padding: 0 10px;
    }
  }

  @media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px; 
    }
}
@media (min-width: 992px) {
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding: 0 25px;
    }
}

/* custom.css - Responsive Release Notes Styles */

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Subheader Styles */
#kt_subheader {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.logo img {
    object-fit: contain;
}

/* Hero Section */
.py-23 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Search Section */
.bg-gray-100 {
    background-color: #f8f9fa !important;
}

.search-box-rounded .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid #e5e7eb;
    border-right: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.search-box-rounded .btn {
    border-radius: 0 50px 50px 0;
    border: 1px solid #41b1ff;
    border-left: none;
    padding: 0.95rem 1.5rem;
}

.search-box-rounded .form-control:focus {
    box-shadow: none;
    border-color: #a055f3;
}

/* Filter Bar */
#filterBar {
    border: 1px solid #e5e7eb;
    margin: 0 auto;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #41b1ff 0%, #a055f3 100%);
    color: white;
}

/* Update Cards */
.update-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb !important;
}

.update-card:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; */
}

.update-card h4 {
    font-size: 1.05rem;
    color: #1f2937;
}

.badge-light-secondary {
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
}

.learn-more {
    text-decoration: none;
    font-size: 0.875rem;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Card Details */
.card-details {
    /* border-top: 1px solid #e5e7eb; */
    padding-top: 1rem;
    font-size: 14px;
}

.card-details ul {
    margin-bottom: 1rem;
}

.card-details li {
    margin-bottom: 0.25rem;
    color: #4b5563;
}

.card-details code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: #dc2626;
}

/* Section Headers */
.text-uppercase {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Footer */
footer {
    background-color: #fff !important;
}

.footer-links .nav-link {
    font-size: 0.875rem;
    color: #6b7280 !important;
    transition: color 0.3s ease;
}

.footer-links .nav-link:hover {
    color: #374151 !important;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: #6b7280;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
}

.pagination .page-link:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #41b1ff 0%, #a055f3 100%);
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Subheader */
    #kt_subheader .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Hero Section */
    .py-23 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-23 h1 {
        font-size: 1.75rem !important;
    }

    .py-23 p {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    /* Search Box */
    .search-box-rounded .form-control {
        padding: 0.625rem 1.25rem;
    }

    .search-box-rounded .btn {
        padding: 0.625rem 1.25rem;
    }

    /* Filter Bar */
    #filterBar {
        border-radius: 0.5rem !important;
        padding: 0.75rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        margin: 0.125rem;
    }

    /* Update Cards */
    .update-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .update-card h4 {
        font-size: 1.125rem;
    }

    .d-flex.align-items-center.mb-2 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .badge-light-secondary {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    /* Section Headers */
    .text-uppercase {
        margin-left: 0 !important;
        text-align: center;
    }

    /* Footer */
    footer .row > div {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    footer .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    /* Hero Section */
    .py-23 h1 {
        font-size: 1.5rem !important;
    }

    .py-23 p {
        font-size: 0.9rem !important;
    }

    /* Search Box */
    .col-md-8 {
        padding: 0 0.5rem;
    }

    /* Filter Buttons */
    #filterBar .d-flex {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    /* Cards */
    .update-card {
        padding: 1rem !important;
    }

    /* Footer columns */
    .col-6 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    /* Logo */
    .logo {
        width: 50px !important;
        height: 50px !important;
    }

    /* Hero Section */
    .py-23 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Footer */
    .col-6 {
        width: 100%;
        text-align: center;
    }

    footer .d-flex.justify-content-center {
        justify-content: center !important;
    }
}

/* Animation for card details */
.card-details {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper spacing */
.container.my-10 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Text colors for better readability */
.text-muted {
    color: #B5B5C3 !important
}

.text-dark {
    color: #1f2937 !important;
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    /* transform: translateY(-1px); */
}
@media (min-width: 768px) {
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -12.5px;
    margin-left: -12.5px;
}
.col-xxl, .col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl, .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
    position: relative;
    width: 100%;
    padding-right: 12.5px;
    padding-left: 12.5px;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select {
    /* height: calc(1.5em + 1.65rem + 2px); */
    height: 45px;
}
.input-group-lg > .form-control, .input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn {
    padding: 0.825rem 1.42rem;
    font-size: 1.08rem;
    line-height: 1.5;
    border-radius: 0.42rem;
}
.input-group-prepend .btn, .input-group-append .btn {
    position: relative;
    z-index: 2;
}
.input-group.input-group-lg i {
    line-height: 0;
    font-size: 1.4rem;
}
.btn i {
    font-size: 1.3rem;
    padding-right: 0.35rem;
    vertical-align: middle;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.fa, .fas {
    font-weight: 900;
}
.fa, .fab, .fad, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.input-group i:after, .input-group i:before {
    line-height: 0;
}
.fa-search:before {
    content: "";
}
.ml-3 { margin-left: 0.75rem !important;}
/* Fix for justify-content-center */
.justify-content-center {
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

/* Alternative: Apply display: flex to the row class */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    font-size: 14px !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.page-item.disabled .page-link {
    color: #7E8299;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    border-color: #EBEDF3;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.42rem;
    border-bottom-left-radius: 0.42rem;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #3699FF;
    background-color: #ffffff;
    border: 1px solid #E4E6EF;
}
nav > ul.pagination, a.page-link { 
  margin:0px !important;
}

.page-item.active .page-link, .pagination .page-item.active .page-link {
    z-index: 3;
    color: #ffffff;
    border-color: #3699FF !important;
    background:#3699FF !important
}
