/* ---------- This is for styling the Hero Section  ---------- */
.hero-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 70px 130px 0 130px;
}

.hero-image img{
    width: 500px;
}

.hero-button {
    margin: 20px 7px 0 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ----------- This is for Styling the Features Section  ----------- */
.features{
    background-color: var(--pryColorLight);
    padding: 50px 130px;
}

.features-container {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: auto auto;
}

.features-container > div {
    text-align: left;
    
}

.features-container > div > div {
    background-color: #fff;
    padding: 50px;
    text-align: left; 
    margin-bottom: 20px;
    border-radius: 30px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.10);
    /* min-width: 450px;
    min-height: 500px; */
}

.features-container > div:nth-child(1) > div:nth-child(2){
    margin-bottom: 0px;
}

.features-container > div:nth-child(2) > div:nth-child(1){
    margin-top: 0px;
}

.features-item span svg{
    background-color: var(--pryColor);
    width: 35px;
    height: 35px;
    padding: 7px;
    border-radius: 100px;
    fill: #fff;
    margin-bottom: 20px;
}

.features-image {
    position: relative;
}

.features-image img {
    place-items: center;
    width: 100%;
}

.features-container > div:nth-child(1) > div:nth-child(1) button{
    position: absolute;
    bottom: 8px;
}

.features-container > div:nth-child(2) > div:nth-child(2) button{
    position: absolute;
    bottom: 8px;
}

.features-container > div > div button {
    margin-top: 20px;
}

.features-container > div > div p {
    margin: 20px 0;
}

.features-container > div > div h4 {
    font-size: 30px;
}

.features-container > div:nth-child(2) > div:nth-child(2) {
    background-color: #434343;
    color: #fff;
}

/* ------------ This is for stylng the API Features section --------------- */

.api-features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    place-items: center ;
    margin: 60px 130px;
}

.tab {
padding: 15px 20px;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 10px;
}

.tab.active {
background-color: var(--pryColor);
color: white;
}

.content {
margin-top: 20px;
}

.image-container img {
width: 400px;
height: auto;
display: none;
}

.image-container img.active {
display: block;
}

.button-container button {
padding: 15px 20px;
background-color: var(--pryColor);
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 50px;
}

.button-container button:hover {
background-color: var(--pryColor_BTN_Hover);
}

.f-header{
    background-color: var(--pryColorLight);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    width: 80%;
}

.f-header div {
    font-size: small;
    text-align: center;
}

.f-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.f-body p{
    font-size: 20px;
    margin: 30px 0;
}

.f-body-text{
    margin-right: 100px;
}

/* ------------ Styling the testimonials section ------------- */

.testimonials{
    background-color: var(--pryColor);
    padding: 40px 130px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tst-header{    
    display: flex;
    align-items:start ;
    justify-content: space-between;
    margin: 20px 0 60px 0;
    color: #fff;
}

.tst-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    transition: 0.5s all ease;
}

.tst-item{
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 50px;
    /* cursor: pointer; */
    width: 330px;
    height: 290px;
    position: absolute;
    transition: left 0.5s cubic-bezier(0.645, 0.045, 0.354, 1);
    overflow: hidden;
}

.tst-item span svg {
    margin-bottom: 30px;
    fill: var(--pryColor);
}

.tst-item-div-1 {
    height: 30px;  
    margin-bottom: 5px;
}

.tst-item-div-2 {
    height: 140px; 
    margin-bottom: 5px;
}

.tst-item-div-3 {
    display: flex; 
    align-items: center; 
    height: 50px;
}   

.slider-item:nth-child(1){
    left: calc(-330px + -20px);
}

.slider-item:nth-child(2){
    left: 0;
}

.slider-item:nth-child(3){
    left: calc(330px + 20px);
}
.slider-item:nth-child(4){
    left: calc((330px + 20px) * 2);
}
.slider-item:nth-child(5){
    left: calc((330px + 20px) * 3);
}
.slider-item:nth-child(6){
    left: calc((330px + 20px) * 4);
}
.slider-item:nth-child(7){
    left: calc((330px + 20px) * 5);
}
.slider-item:nth-child(8){
    left: calc((330px + 20px) * 6);
}

.arrow-btn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.arrow-btn svg:hover{
    fill: #151515;
}


/* ------------- Styling the Trusted partner section ------------- */

.trusted-partners{
    display: flex;
    align-items: center;
    padding: 0px 130px;
    overflow: hidden;
}
.trusted-partners-text {
    padding: 15px 20px 15px 0;
}
.trusted-partners p{
    font-size: 16px;
    font-weight: 500;
    width: 100px;
}

.logo-slider {
    overflow-x: hidden;
}
.overflow {
    display: flex;
    padding: 8px 16px;
    overflow: hidden;
}
.logo-wrapper {
    display: flex;
    justify-content: space-around;
    animation: Logoloop 25s linear infinite;
}
.logo-item {
    margin-left: 1px;
    padding: 16px;
    aspect-ratio: 30/9;
    display: grid;
    place-items: center;
}
.logo-item img {
    height: 32px;
    margin-inline: 28px;
}

@keyframes Logoloop {
    from {  
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.hr1{
    border-top: 0.5px solid #868686;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}


/* -------------- Styling the Article section (default style) ----------- */

.article-blogs{
    padding: 20px 130px;
    margin-top: 40px;
/*          border: 1px solid pink;*/
}
.article-blogs h2{
    margin-bottom: 40px;
}
.article-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
/*          border:1px solid black;*/
}
.article{
    max-width: 30%;
    height: 194px;
/*            border:1px solid green;*/
}
.article a{
    font-size: inherit;
}
.article-snippet h3{
    margin-bottom: 20px;
    border-left: 3px solid var(--pryColor);
    padding-left: 20px;
    transition: all .7s ease;
}
.article-snippet h3:hover{
    border-left: 20px solid var(--pryColor);
    color: var(--pryColor);
}
.article-snippet{
    border-left: 1px solid #7E7E7E;
}
.article-snippet p{
    margin-bottom: 20px;
    padding-left: 30px;
}

/* -- This is for styling the Call To Action CTA footer region of the page (default style) -- */

.footer-ctayy{
    margin: 100px 130px 50px 130px;
    background-color: var(--pryColor);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 500px;
/*            border: 1px solid yellow;*/
}
.cta-image-div {
    margin-top: -150px;
    text-align: center;
    width: 50%;
/*            border: 1px solid blue;*/
    height: auto;
    text-align: center;
}
#cta-image {
    width: 450px;
    height: auto;
}
.cta-text-div {
    width: 50%;
/*            border: 1px solid green;*/
}
.cta-text-div h3 {
    color: #fff;
    font-size: 50px;
    margin: 0 20px 20px 20px;
}
.cta-text-div p{
    color: #fff;
    font-size: 20px;
    margin: 0 30px 20px 20px;
    
}

.cta-text-div button{
    background-color: #fff;
    margin: 0 20px 20px 20px;
}

/* ------------------------------------------------- */
/* -------- Styling for smaller screens ------------ */
/* ------------------------------------------------- */

@media screen and (max-width: 1220px){
    .hero-section{
        margin: 70px 100px 0 100px;
    }
    .features{
        padding: 50px 100px;
    }
    .api-features{
        margin: 60px 100px;
    }
    .testimonials{
        padding: 40px 100px;
    }
    .trusted-partners{
        font-size: 14px;
        padding: 0px 100px;
    }
    .article-blogs{
        padding: 20px 100px;
    }
    .footer-ctayy{
        margin: 100px 100px 50px 100px;
    }
    .cta-text-div h3 {
        font-size: 40px;
        margin: 0 30px 20px 20px;
    }
}

@media screen and (max-width: 1020px){
    .hero-section{
        margin: 70px 60px 0 60px;
    }
    .hero-image img{
        width: 400px;
    }
    .features{
        padding: 50px 60px;
    }
    .api-features{
        margin: 60px 60px;
    }
    .testimonials{
        padding: 40px 60px;
    }
    .trusted-partners{
        padding: 0px 60px;
    }
    .article-blogs{
        padding: 20px 60px;
    }
    .footer-ctayy{
        margin: 100px 60px 50px 60px;
    }
    .cta-text-div h3 {
        font-size: 40px;
        margin: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 900px){
    .hero-section{
        margin: 70px 60px 0 60px;
    }
    .hero-image img{
        width: 350px;
    }
    .features{
        padding: 50px 60px;
    }
    .features-container > div > div {
        padding: 30px;
        
    }
    .api-features{
        margin: 60px 60px;
    }
    .f-header{
        width: 90%;
    }
    .image-container img{
        width: 300px;
    }
    .testimonials{
        padding: 40px 60px;
    }
    .tst-header{    
        margin: 20px 0 30px 0;
    }
    .trusted-partners{
        font-size: 12px;
        padding: 0px 60px;
    }
    .trusted-partners-text {
        padding: 10px 15px 10px 0;
    }
    .trusted-partners p{
        font-size: 12px;
        font-weight: 400;
        width: 80px;
    }
    .logo-item img {
        height: 28px;
        margin-inline: 18px;
    }
    .article-blogs{
        padding: 20px 60px;
        margin-top: 20px;
    }
    .article-blogs h2{
        margin-bottom: 30px;
    }
    .article{
        height: 230px;
    }
    .footer-ctayy{
        margin: 130px 60px 50px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;

    }
    .cta-image-div, .cta-text-div {
        width: 100%;
    }
    #cta-image {
        width: 400px;
        height: auto;
    }
    /*.cta-text-div {
        border: 1px solid red;
    }*/
    .cta-text-div h3 {
        font-size: 30px;
        margin: 0 20px 20px 20px;
    }
    .cta-text-div p {
        font-size: 14px;
        margin: 0 30px 20px 20px;
    }
}

@media screen and (max-width: 750px){
    .hero-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 40px 30px 0 30px;
    }
    .hero-image img{
        width: 430px;
        margin-top: 20px;
        
    }
    .features{
        padding: 50px 30px;
    }
    .features-container {
        display: flex;
        flex-direction: column;
    }
    .features-container > div > div h4 {
        font-size: 24px;
    }
    .features-image img {
        display: none;
    }
    .features-container > div:nth-child(1) > div:nth-child(1) button{
        position: relative;
        bottom: 8px;
    }
    .features-container > div:nth-child(2) > div:nth-child(2) button{
        position: relative;
        bottom: 8px;
    }
    .features-container > div:nth-child(1) > div:nth-child(2){
        margin-bottom: 5px;
    }
    .features-container > div:nth-child(2) > div:nth-child(1){
        margin-top: -5px;
    }
    .api-features{
        margin: 40px 30px;
    }
    .f-body{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }
    .f-header{
        padding: 10px;
        width: 100%;
    }
    .image-container img{
        width: 100%;
        margin: 20px 0;
    }
    .testimonials{
        padding: 30px 30px;
    }
    .trusted-partners{
        padding: 0px 30px;
    }
    .article-blogs{
        padding: 20px 30px;
    }
    .article-items{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .article{
        max-width: inherit;
        width: 100%;
        height: 150px;
    }
}

@media screen and (max-width: 500px){
    .hero-section{
        margin: 40px 20px 0 20px;
    }
    .hero-image img{
        width: 290px;
        margin-top: 20px;
    }
    .features{
        padding: 30px 20px;
    }
    .api-features{
        margin: 30px 20px;
    }
    .f-body{
        margin-top: 20px;
    }
    .f-header{
        padding: 5px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .f-body{
        margin-top: 30px;
    }
    .f-body p{
        font-size: 14px;
        margin: 15px 0;
    }
    .f-body-text button{
        margin-top: 20px;
    }
    .testimonials{
        padding: 20px;
    }
    .tst-item{
        padding: 20px;
        width: 330px;
    }
    .tst-header{    
        margin: 20px 0;
    }
    .trusted-partners{
        padding: 0px 20px;
    }
    .logo-item img {
        height: 22px;
        margin-inline: 10px;
    }
    .footer-ctayy {
        margin-left: 30px;
        margin-right: 30px;
    }
    .footer-ctayy h3{
        font-size: 24px;
    }
    #cta-image {
        width: 350px;
        height: auto;
    }
}

@media screen and (max-width: 450px){
    #cta-image {
        width: 300px;
    }
}

@media screen and (max-width: 400px){
    .article{
        height: 180px;
    }
    #cta-image {
        width: 250px;
    }
}

@media screen and (max-width: 300px){
    .article{
        height: 200px;
    }
    #cta-image {
        width: 200px;
    }
}