/* Extracted from dynamic-website-design.blade.php */

a {
        text-decoration: none;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    .seo-section {
        width: 100%;
        background-image: url('img/banner/dynamic banner.webp');
        background-size: cover;
        background-position: center top;
        color: black;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .seo-content {
        max-width: 50%;
        text-align: left;
        border-radius: 10px;
    }

    .seo-content h1 {
        font-size: 36px;
        font-weight: bold;
        color: #fff;
    }

    .seo-content p {
        font-size: 18px;
        margin-top: 10px;
        font-weight: 500;
    }

    .seo-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .seo-item {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.9) !important;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        position: relative;
        font-size: 15px;
        color: #555 !important;
    }

    .seo-item i {
        font-size: 20px;
        margin-right: 15px;
        color: #333 !important;
    }

    .seo-item:first-child {
        background: white;
        font-weight: bold;
        font-size: 15px;
        color: #555 !important;
    }

    .seo-item:hover {
        background: red !important;
        color: white !important;
    }

    .seo-item:hover {
        background: white !important;
        color: black !important;
    }

    .seo-item:hover i {
        color: black !important;
    }

    .quote-button {
        display: inline-block;
        background: red !important;
        color: white !important;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        margin-top: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .quote-button:hover {
        background: darkred !important;
    }

    .navollist {
        border-radius: 0;
        padding: 19px 0 0;
        font-weight: 600;
        font-size: 15px;
        line-height: 13px;
    }

    .navollist>li+li:before {
        padding: 0 5px;
        color: #ccc;
        content: "/\00a0";
    }

    .navollist li {
        display: inline-block;
    }

    .shownav {
        /* background-color: #e5e5e5!important; */
        padding: 10px;
    }

    .containerlist {
        width: 100%;
        max-width: 1400px;
        padding: 0 4rem;
    }

    .breadcrumb-item a {
        font-size: 16px;
    }

    .showcontant {
        padding: 40px 0;
    }

    .seoheading h2 {
        font: 1.75em / 1.2em "Google Sans", sans-serif;
        text-align: center;
        margin-bottom: 25px;
        /* color: #242729!important; */
        font-weight: 700;
    }

    .pragraphheadingseo {
        color: #222;
        text-align: center;
        margin-top: 24px;
        font-size: 16px;
        line-height: 28px;
    }

    .pragraphheadingseo b {
        color: #00796b !important;
    }



    .card {
        background: #302F2F !important;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        flex: 1;
        display: flex;
        align-items: center;
        margin-top: 18px;
        gap: 20px;
        transition: 0.3s ease-in-out;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* .icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e3f2fd;
            border-radius: 50%;
        } */

    .icon img {
        width: 40px;
        height: 40px;
    }

    .content h3 {
        color: orange !important;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .content p {
        font-size: 15px;
        color: #333;
    }

    .accordion {
        .accordion-item {
            border-bottom: 1px solid #e5e5e5;

            button[aria-expanded='true'] {
                border-bottom: 1px solid #03b5d2;
                ;
            }
        }

        button {
            position: relative;
            display: block;
            text-align: left;
            width: 100%;
            padding: 1em 0;
            color: #7288a2;
            font-size: 1.15rem;
            font-weight: 400;
            border: none;
            background: none;
            outline: none;

            &:hover,
            &:focus {
                cursor: pointer;
                color: #03b5d2;
                ;

                &::after {
                    cursor: pointer;
                    color: #03b5d2;
                    ;
                    border: 1px solid #03b5d2;
                    ;
                }
            }

            .accordion-title {
                padding: 1em 1.5em 1em 1rem;
            }

            .icon {
                display: inline-block;
                position: absolute;
                top: 18px;
                right: 10px;
                width: 22px;
                height: 22px;
                border: 1px solid;
                border-radius: 22px;

                &::before {
                    display: block;
                    position: absolute;
                    content: '';
                    top: 9px;
                    left: 5px;
                    width: 10px;
                    height: 2px;
                    background: currentColor;
                }

                &::after {
                    display: block;
                    position: absolute;
                    content: '';
                    top: 5px;
                    left: 9px;
                    width: 2px;
                    height: 10px;
                    background: currentColor;
                }
            }
        }

        button[aria-expanded='true'] {
            color: #03b5d2;
            ;

            .icon {
                &::after {
                    width: 0;
                }
            }

            +.accordion-content {
                opacity: 1;
                max-height: 9em;
                transition: all 200ms linear;
                will-change: opacity, max-height;
            }
        }

        .accordion-content {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 200ms linear, max-height 200ms linear;
            will-change: opacity, max-height;

            p {
                font-size: 1rem;
                font-weight: 300;
                margin: 2em 0;
                padding: 1rem;
            }
        }
    }

    @media (max-width: 768px) {
        .card {
            flex-direction: column;
            text-align: center;
        }

        .icon {
            margin-bottom: 10px;
        }

        .accordion-content p {
            margin: 0 !important;
        }
    }



    @media (max-width: 1024px) {
        .seo-content {
            max-width: 70%;
        }

        .seo-content h1 {
            font-size: 25px;
            font-weight: bold;
            color: #fff;
        }

        .seo-content p {
            font-size: 16px;
            margin-top: 19px;
            font-weight: 500;
        }

        .shownav {
            display: none;
        }

        .seoheading h2 {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .pragraphheadingseo {
            font-size: .9em;
            line-height: 1.5em;
        }

        .seoimgtool {
            width: 98%;
            height: auto;
        }

        .card {
            margin-top: 9px;
        }

        .accordion-content p {
            margin: 0 !important;
        }
    }

    @media (max-width: 768px) {
        .seo-section {
            justify-content: center;
            text-align: center;
        }

        .seo-content {
            max-width: 100%;
            text-align: center;
        }

        .seo-content h1 {
            font-size: 25px;
            font-weight: bold;
            color: #fff;
        }

        .seo-content p {
            font-size: 16px;
            margin-top: 19px;
            font-weight: 500;
        }

        .seo-item {
            flex-direction: column;
            align-items: center;
        }

        .shownav {
            display: none;
        }

        .seoheading h2 {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .pragraphheadingseo {
            font-size: .9em;
            line-height: 1.5em;
        }

        .seoimgtool {
            width: 98%;
            height: auto;
        }

        .card {
            margin-top: 9px;
        }

        .accordion-content p {
            margin: 0 !important;
        }
    }

    .seodetailsimag {
        background-color: #5F798C;
        padding: 15px;
    }

    .service-box {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        background: #f8f9fa;
        transition: transform 0.3s ease-in-out;
    }

    .service-box:hover {
        transform: scale(1.05);
    }

    .service-box img {
        max-width: 60px;
        margin-bottom: 10px;
    }

    .chosimgcontent p b {
        color: antiquewhite !important;
    }

    b,
    strong,
    .chosimgcontent p b {
        color: orange !important;
    }

    .accordion-button {
        padding: 10px !important;
    }

    @media (max-width:700px) {

        h3,
        h2 {
            font-size: 24px !important;

        }
    }

    .card {
        min-height: 294px !important;
    }

/* --- style block --- */

.chosimg img {
            max-width: 100%;
            border-radius: 12px;
        }

.wc-dynamic-website-design-42bfb508 {
    color: black;
}

.wc-dynamic-website-design-cd3e9ac2 {
    background: #232323;
}

.wc-dynamic-website-design-1b7f2f12 {
    color: #FF9D23 !important;
}

.wc-dynamic-website-design-4061d838 {
    color:black; text-align:center;
}

.wc-dynamic-website-design-14668e80 {
    text-align: start;
}
