/* Container Styling */
.content-section {
    width: 80vw;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    height: auto
}

.background-color {
    background-color: #f2f9ff;
}

.gradient-header {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 2%;
}

.text-section {
    flex: 1
}

.main-heading {
    font-weight: 700;
    font-size: 50px;
    margin: 0px 0px 32px 0px
}


.main-text {
    font-size: 25px;
    margin: 4% 0
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center
}

.image-section img {
    width: 80%;
    height: auto
}

.conversations-image {
    width: 72%;
    margin: auto;
    height: auto;
    display: flex;
    justify-content: center;
}

.secure-button {
    border: none;
    background-color: #2969c9;
    padding: 1.2% 4%;
    border-radius: 35px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.para-text {
    font-size: 24px;
    margin: 1% 0 2%;
    line-height: 1.5
}

.traits-item {
    text-align: center;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s;
}

.traits-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2)
}

.traits-item-img {
    width: 30%;
    height: auto;
}

.traits-item h3 {
    margin: 2% 0;
}

.traits-main-heading {
    text-align: center;
    font-size: 35px;
    margin: 2% 0
}

.left-align {
    text-align: left;
}

.traits-main-description {
    text-align: center;
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin: 3% 0 6% 0;
}

.traits-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

.traits-heading {
    font-size: 20px;
    margin: 1%
}

.traits-description {
    font-size: 20px;
    color: #555;
    line-height: 1.5
}


.genz-pricing-section {
    display: flex;
    justify-content: space-between;
}

.genz-trial-container {
    width: 55%;
    height: auto;
}

.genz-trial-info ul {
    list-style-type: none;
    padding: 0;
}

.genz-trial-info ul li {
    padding-left: 4%;
    margin: 8px 0;
    font-size: 20px;
}

.tick-icon {
    height: 14px;
    padding-right: 3px;
}

.genz-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 45%;
    height: auto;
    padding: 13px 0px;
    min-width: 620px;
}

.genz-pricing-card {
    background: white;
    padding: 23px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popular-icon {
    display: flex;
    border: none;
    align-items: center;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 600;
    gap: 10px;
    border-radius: 6px;
    color: white;
    padding: 7px 13px;
}

.popular-icon p {
    margin: 0px;
}

.blue-color {
    background-color: #3986BE;
}

.gray-color {
    background-color: #808080;
}

.price-description {
    font-size: 18px;
    margin: 7% 0 10% 0;
    line-height: 1.7;
}

.price-description2 {
    font-size: 18px;
    line-height: 1.7;
}

.price {
    font-size: 2.6em;
    font-weight: bold;
    color: #333;
    margin: 21px 0;
}

.price span {
    font-size: 0.6em;
    color: #777;
}

.best-value {
    border: 2px solid #3986BE;
    transition: box-shadow 0.3s ease-in-out;
}

.best-value:hover {
    box-shadow: 0 4px 10px rgba(57, 134, 190, 0.9);
}

.best-value h3,
.view-demo h3 {
    font-size: 25px;
    margin: 12px 0px;
}

.view-demo h3 {
    color: #333;
}

.start-now,
.check-demo {
    background-color: #3986BE;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}


.view-demo {
    background-color: #f1f1f1;
    border: 2px solid #333;
}

.view-demo:hover {
    box-shadow: 0 4px 10px rgba(90, 93, 95, 0.9);
}

.check-demo {
    background-color: #333;
}

button:hover {
    opacity: 0.8;
}

/*Finding the trend*/
.alphabet-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2%;

}

.alphabet-button {
    background-color: transparent;
    border: none;
    color: #3986BE;
    padding: 6px 8px;
    margin: 5px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.alphabet-button:hover,
.selected {
    background-color: #3986BE;
    color: white;
}

.alphabet-button:active {
    background-color: #1f4d69;
}


.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 20px;
}

.link-item {
    text-decoration: none;
    color: #000;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s;
}

.link-item:hover {
    color: #3986BE;
}

.link-item:active {
    color: #276a92;
}

.link-item h4 {
    margin: 0px;
    font-weight: 600;
    font-size: 18px;

}

.find-container {
    width: 60vw;
    background-color: white;
    border-radius: 25px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin-top: 32px;
}

.no-data {
    color: #d3d3d3;
    cursor: not-allowed;
}

.pagination-container button {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-container button.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination-container button:hover {
    background-color: #f1f1f1;
    border-color: #007bff;
}

.pagination-container button[disabled] {
    background-color: #e0e0e0;
    color: #888;
    cursor: not-allowed;
    border-color: #ccc;
}

.pagination-container button:not(:last-child) {
    margin-right: 10px;
}

.pagination-container button:first-child {
    border-radius: 5px 0 0 5px;
}

.pagination-container button:last-child {
    border-radius: 0 5px 5px 0;
}

/*p*/
.features-container h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 220px;
    height: auto;
    padding: 20px;
    margin: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card-img {
    width: 80px;
    height: auto;
}

.feature-card-image {
    width: 131px;
    height: auto;
}


.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.learn-more {
    display: inline-block;
    padding: 8px 15px;
    color: #3986BE;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/*faq*/
.faq-heading,
.faq-icon {
    text-align: center
}

.faq-item,
.white {
    background: #fff
}

.faq-container,
.faq-item {
    border-radius: 8px;
    overflow: hidden
}


.faq-section {
    margin: 2rem auto;
    padding: 0 20px
}

.faq-item {
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.faq-question {
    padding: 0 10px;
    cursor: pointer;
    transition: background-color .2s;
    background: var(--section-background);
    border: 1px solid var(--section-background);
    border-radius: 10px
}

.faq-question:hover {
    background-color: #e9ecef
}

.faq-question h3 {
    font-weight: 600;
}

.faq-question-content {
    display: flex;
    align-items: center
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    min-width: 20px
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
    background: var(--section-background)
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: #718093;
    line-height: 1.6
}

.faq-item.active .faq-answer {
    max-height: 500px
}

/*cta*/
.new-section button {
    background-color: #ffffff;
    transition: .3s
}

.new-section {
    padding: 4%;
    text-align: center;
    background: url('../images/cta-background.webp') center center/cover no-repeat;
}

.new-section button:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

.new-section h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700
}

.new-section p {
    font-size: 20px;
    margin-bottom: 30px
}

.new-section button {
    color: #3b82f6;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

@media(max-width:1532px) and (min-width:1280px) {
    .main-heading {
        font-size: 40px
    }

    .main-text {
        font-size: 22px
    }

    .para-text {
        font-size: 22px
    }

    .genz-pricing-cards {
        padding: 36px 0px;
    }

    .price {
        font-size: 2.4em;
    }

}

@media(max-width:1280px) {

    .genz-pricing-cards,
    .genz-trial-container {
        width: 100%;
    }

    .genz-pricing-section {
        flex-direction: column;
    }
}

@media(max-width:1280px) and (min-width:1024px) {

    .main-text {
        font-size: 20px;
    }

    .main-heading {
        font-size: 37px;
    }

    .para-text {
        font-size: 18px
    }

    .traits-main-heading {
        font-size: 29px;
    }

    .traits-description,
    .traits-main-description {
        font-size: 18px;
    }

    .genz-pricing-cards {
        padding: 36px 0px;
    }

}

@media(max-width:1024px) {
    .header-container {
        flex-direction: column;
    }

    .text-section {
        order: 1;
        padding-bottom: 30px
    }

    .image-section {
        order: 2;
        width: 70%;
    }

    .image-section img {
        width: 73%;
    }

    .main-heading {
        margin-bottom: 0px;
    }

    .para-text {
        margin: 4% 0px;
    }

    .traits-description,
    .traits-main-description {
        font-size: 18px;
    }

    .price {
        font-size: 2.4em;
        margin: 16px 0;
    }

    .price-description {
        margin: 7% 0;
    }

}

@media(max-width:1204px) and (min-width:860px) {
    .new-section button {
        padding: 10px 26px;
        font-size: 15px;
    }

    .new-section p {
        font-size: 17px;
        margin-bottom: 27px;
    }

    .new-section h2 {
        font-size: 26px;
    }

    .traits-main-heading {
        font-size: 29px;
    }

    .para-text {
        font-size: 20px;
    }

    .main-heading {
        font-size: 38px;
    }

    .main-text {
        font-size: 22px;
    }
}

@media (max-width:1024px) and (min-width:641px) {
    .transform {
        transform: translateX(50%)
    }

    .traits-container {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:860px) and (min-width:640px) {
    .main-heading {
        font-size: 32px
    }

    .main-text,
    .para-text {
        font-size: 18px
    }

    .traits-main-heading {
        font-size: 27px
    }

    .traits-description {
        font-size: 16px
    }

    .new-section h2 {
        font-size: 24px;
        margin-bottom: 12px
    }

    .new-section p,
    h3 {
        font-size: 18px;
        margin-bottom: 18px
    }

    .new-section button {
        padding: 10px 18px;
        font-size: 14px
    }

    .link-item h4,
    .alphabet-button {
        font-size: 16px;
    }

    .alphabet-button {
        padding: 5px 7px;
        margin: 4px;
    }

    .links-container {
        grid-template-columns: repeat(auto-fill, minmax(79px, 1fr));
    }


}

@media(max-width:640px) {
    .main-heading {
        font-size: 24px
    }

    .main-text {
        font-size: 18px;
    }

    .para-text {
        font-size: 16px
    }

    .traits-container {
        grid-template-columns: 1fr
    }

    .traits-main-heading {
        font-size: 22px
    }

    .traits-main-description {
        font-size: 18px;
        line-height: 1.4
    }

    .new-section button {
        padding: 9px 15px;
        border-radius: 30px;
        font-size: 12px
    }

    .new-section p {
        font-size: 16px;
        margin: 12px 0
    }

    .genz-pricing-cards {
        grid-template-columns: 1fr;
        min-width: 204px;
    }

    .new-section p {
        font-size: 14px;
        margin: 3px 0;
    }

    .new-section h2 {
        font-size: 20px;
    }

    .price {
        font-size: 1.8em;
        margin: 14px 0;
    }

    .price-description {
        margin: 5% 0;
        font-size: 16px;
    }

    .best-value h3,
    .view-demo h3 {
        font-size: 22px;
        margin: 0px;
    }

    .tick-icon {
        height: 11px;
    }

    .genz-trial-info ul li {
        margin: 8px 0;
        font-size: 16px;
    }

    .traits-main-heading {
        font-size: 21px;
    }

    .link-item h4,
    .alphabet-button {
        font-size: 14px;
    }

    .links-container {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        padding: 10px;
    }

    .conversations-image {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .feature-card-image {
        width: 109px;
    }

    .feature-card-img {
        width: 63px;
    }
}

@media(max-width:425px) {
    .traits-container {
        grid-template-columns: 1fr
    }

    .traits-description {
        font-size: 16px
    }

    .traits-main-description {
        font-size: 16px
    }

    .traits-main-heading {
        font-size: 21px;
    }

    .alphabet-button {
        margin: 0px;
        font-size: 14px;
    }

    .image-section img {
        width: 143%;
    }

    .secure-button {
        font-size: 14px;
    }

    .main-heading {
        font-size: 20px;
    }

    .genz-pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .traits-heading {
        font-size: 17px;
    }

    .traits-item-img {
        width: 21%;
    }

    .find-container {
        width: 75vw;
    }

    .faq-question h3 {
        font-size: 14px;
    }
}