* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.pricing-list {
    text-align: justify;
}
.button-section {
    gap: 1em;
    display: flex;
}
.button {
    display: flex;
    gap: 0.5em;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 13rem;
    height: 3.2rem;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-1 {
    color: white;
    background-color: #053763;
}
.btn-1:hover {
    color: white;
    background-color: #053763bb;
    text-decoration: none;
}
.btn-2 {
    color: #053763;
    font-weight: 600;
    border: 1px solid #053763;
    background-color: #eef4ff;
}
.btn-2:hover {
    color: #053763;
    background-color: #fff;
    text-decoration: none;
}
.content-head {
    color: #053763;
}
.content {
    font-size: 20px;
    width: 33rem;
}
.new-pricing-banner-intel {
    height: 26em;
    border-radius: 20px;
    background-color: grey;
}
.api-blue-container {
    height: max-content;
    padding-top: 4% !important;
    padding-bottom: 4% !important;
    background-color: #eef4ff;
    background-image: url('./../../images/globeBackground.png');
}
.image-grid {
    display: flex;
    justify-content: space-between; 
}
.image-column {
    display: flex;
    flex-direction: column; 
    flex: 1; 
}
.img-fluid-container {
    max-width: 85%; 
    height: auto; 
    border-radius: 5px; 
    margin-left: 2.5em;
    background-color: #fff;
    box-shadow: -4px 8px 8px rgba(0, 0, 0, 0.1); 
}
.main-container {
    width: 100%;
    margin-left: 3em;
}
.image-margin {
    margin-top: 20%;
}
.mb-3 {
    margin-bottom: 16px; 
}
.api-white-container {
    opacity:1; 
    padding: 4rem !important;
}
.animated-item {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}
.animated-item:nth-child(1) {
    animation-delay: 0.3s;
}
.animated-item:nth-child(2) {
    animation-delay: 0.6s;
}
.animated-item:nth-child(3) {
    animation-delay: 1.5s;
}
.animated-image {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-image.visible {
    opacity: 1;
    transform: translateY(0);
}
.searchPanelAPIContent {
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}
.searchPanelAPIContent.visible {
    opacity: 1;
    transform: translateY(0); 
}
.sticky-buttons {
    display: none;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
    .tabcontent {
        padding: 10px;
    }
    .button-section {
        display: none;
        flex-direction: column;
        gap: 0.5em;
    }
    .button {
        width: 100%;
        font-size: 16px;
        height: 2.8rem;
    }
    .main-container {
        margin-left: 0;
        max-width: 100%;
    }
    .image-grid {
        flex-direction: column;
        justify-content: center;
    }
    .image-column {
        flex: none;
        width: 100%;
        margin-left: 0 !important;
    }
    .image-margin {
        margin-top: 10%;
    }
    .img-fluid-container {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 1em;
    }
    .api-blue-container {
        padding: 30px 20px;
        height: auto;
    }
    .content-head {
        font-size: 1.65rem;
        text-align: center;
    }
    .content {
        font-size: 1.1rem;
        width: auto;
        text-align: center;
    }
    .sub-content {
      width: auto !important;
      font-size: 1rem;
      text-align: center;
    }
    .row {
      justify-content: center;
    }
    .button-section a {
        margin-bottom: 1rem;
    }
    .text-center .image-logo {
        flex-wrap: wrap;
    }
    .text-center .img-logo {
        margin: 10px;
        width: auto;
    }
    .trusted_customers p {
        font-size: 16px;
        text-align: center;
    }
    .api-white-container {
        opacity:1; 
        padding: 0.5rem !important;
        margin: 1rem !important;
    }
    .img-logo img {
        max-width: 29vw; 
        max-height: 3.2rem; 
    }
    .trusted_customers .img-logo {
        padding: 0.5rem !important;
    }
    .trusted_customers .img-logo img {
        object-fit: contain !important;
        margin: 1rem 0.5rem !important;
    }
    .masthead-subheading{
        font-size: 2rem !important;
        margin: 15px;
    }
    .trusted_customers_home_page {
        padding: 15px;
    }
    .sticky-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 25px;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        z-index: 9999;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
}