* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}


ol,
ul {
    padding-left: 20px;
    list-style: none;
}

.site-container {
    background-color: #fff;
    display: inline-block;
    width: 100%;
    /* min-height: 100vh; */
}


/* code block */

pre {
    color: #f1f1f1;
    overflow-y: auto;
    max-height: 380px;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* logo */

/* Base styling */
.logo {
    font-size: 42px;
    font-weight: bold;
    color: #697386;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Apply gradient to the X */
.logo .gradient-text {
    background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
    -webkit-background-clip: text;
    color: transparent;
}

/* Curly brackets (start hidden at the center) */
.logo .bracket {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateX(0); /* Start from center */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-size: 42px;
}

/* Hover effect to move brackets outward */
.logo:hover .bracket-left {
    color: #697386;
    opacity: 1;
    transform: translateX(-10px); /* Move left bracket to the left */
}

.logo:hover .bracket-right {
    background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 1;
    transform: translateX(10px); /* Move right bracket to the right */
}


/* button css */

             
    .btn-grad {
        background-image: linear-gradient(to right, #314755 0%, #26a0da  51%, #314755  100%);
        margin: 10px;
        padding: 15px 45px;
        text-align: center;
        text-transform: uppercase;
        transition: 0.5s;
        background-size: 200% auto;
        color: white;            
        box-shadow: 0 0 20px #eee;
        border-radius: 10px;
      }

      .btn-grad:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
      }
     
      .accordion-button:not(.collapsed),
      button:focus:not(:focus-visible),
      button,
      .btn{
        box-shadow: none;
      }

.nav-link {
    font-size: 16px;
    font-weight: 500;
}

.input-group-text {
    background-color: #0056b3;
    color: #fff;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.list-group-item {
    font-size: 18px;
}

table thead th {
    background-color: #0056b3;
    color: white;
}

.modal-content {
    border-radius: 8px;
}

.base-heading  h2{
    color: #4b4f56;
    font-weight: 600;
    /* font-family: "Lobster", sans-serif; */
    font-weight: 400;
    font-size: 42px;
}

.theme-heading h2 {
    color: #4b4f56;
    font-weight: 600;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: 60px;
}


.common-view-box {
    background: #e4eff4;
    padding-left: 0.75rem;
    padding-right: 0.75rem; 
   
    box-shadow: 0px 0px 5px #f1f1f1;
}

.list-heading-row {
    box-shadow: 0px 0px 5px #dcdada;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; 
}

.table-view-box table {
    min-width: 600px;
}

.common-view-box.table-view-box {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 8px;
}


/* main content css */

.main-content {
    /* header height and marginBottom also footer margin too 
    header = 70px,
    marginBottom = 24px
    footerMarginTop = 42px
    */
    min-height: calc(100vh - 200px);
}

.list-view-box .list-group{
    overflow-y: auto;
    max-height: 300px;
}


.compare-page-card-row .list-group .list-group-item {
    font-size: 16px;
}

.compare-page-card-row .card .card-body {
    overflow-y: auto;
    max-height: 400px;
}

.alert-info {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.alert-info  ol li p {
    margin-bottom: 0.75rem;
}


/* background color */
/* $blue:    #0d6efd;
$indigo:  #6610f2; */
.bg-theme-primary {
    background-color: #6610f2;
}
.bg-theme-info {
    background-color: #0d6efd;
}


  /* Gradient animation for the "Comparison complete!" message */
  .comparison-complete {
    background: linear-gradient(270deg, #a8e063, #56ab2f);
    background-size: 400% 400%;
    animation: gradientAnimation 3s ease 1;
    color: #fff;
    font-weight: bold;
    display: none; /* Initially hidden */
}

/* Define the gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* responsive css started here  */

 /* Hide the off canvas navbar on larger screens */

 @media (min-width: 992px) {
    .offcanvas {
        display: none !important;
    }
    .navbar-toggler {
        display: none;
    }
}


@media only screen and (max-width: 992px) {
/* Hide the regular collapse menu on mobile */

    .navbar-collapse {
        display: none !important;
    }
    .theme-heading h2 {

        font-size: 52px;
    }

}

@media only screen and (max-width: 767px) {
    .nav-link {
        font-size: 14px;
    }

    .input-group-text {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
    }

    .list-group-item {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    .theme-heading h2 {

        font-size: 30px;
    }
   


}


