/* banner */
.top-banner{
    background-image: url('../assets/images/bg-services-banner.png');
}
/* top and bottom div */
.containar {
    width: 1200px;
    margin: 3em auto 6pc;
}
.service-top {
    padding-left: 29px;
    text-align: left;
}
.service-bottom {
    width: 1200px;
    margin: 0 auto;
    padding-left: 29px;
}
.signup-btn {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    /* border: solid #0fde0f; */
}
.signup-btn img {
    width: 380px;
}

/* services cards */
.cards {
    display: flex;
    flex-direction: column; /* Arrange cards vertically */
    gap: 40px; /* Space between cards */
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 5px;
}
.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
}
.image-section {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    z-index: 1; 
}
.protfolio-image {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.content-section {
    padding: 1px 80px;
    background-color: #ffffff;
    position: relative;
    margin-top: -135px;
    z-index: 2;
    text-align: left;
}
.content-section h1 {
    margin: 20px 0;
}
.content-section p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
    margin-bottom: 20px;
}
.service-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}
.service-item i {
    margin-right: 10px;
}
.footer-cta {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin: 20px 18px;
    /* background-color: #0056b3; */
}
.logos {
    display: flex;
    align-items: center;
}
.logos img {
    width: 80px;
    height: 80px;
    margin-left: -22px;
}
.card-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 31px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 33px;
    cursor: pointer;
    color: aliceblue;
    background-image: linear-gradient(#1105f3, #474483);
    transition: background-color 0.3s ease;
}
hr {
    width: 99%;
    height: 3px;
    align-self: center;
    margin: 40px 0;
    background-image: radial-gradient( blue, black);
}

/* responsive layout */
@media (max-width: 768px) {
    .containar {
        width: 100%;
        margin: 0;
        /* background-color: rebeccapurple; */
    }
    .service-top {
        /* background-color: #abeef2; */
        /* margin: 0; */
        width: 100%;
        display:flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: start;
        gap: 20px;
        padding: 20px;
    }
    .service-bottom {
        padding: 20px;
    }
    .service-bottom p {
        padding: 20px 0;
    }
    .signup-btn {
        margin-top: 0;
        /* border: solid #0fde0f; */
    }
    .signup-btn img {
        width: 290px;
    }

    /* card design */
    .cards {
        margin: 30px auto 5px;
    }
    .content-section {
        padding: 1px 10px;
        margin-top: -50px;
    }
    .content-section h1 {
        font-size: 24px;
    }
    .content-section p {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .services-grid {
        gap: 15px 5px;
    }
    .service-item {
        font-size: 10px;
    }
    .service-item i {
        margin-right: 5px;
    }
    .footer-cta {
        width: 100%;
        margin: 5px;
        gap: 15px;
        /* background-color: #0056b3; */
    }
    .logos img {
        width: 40px;
        height: 40px;
        margin-left: -12px;
    }
    .card-btn {
        padding: 6px 9px;
        border-radius: 13px;
        font-size: 12px;
    }
    hr {
        width: 90%;
        height: 2px;
        align-self: center;
        margin: 1px 0;
        background-image: radial-gradient( blue, black);
    }


}