 
                    /* -------- POSTER HERO SECTION -------- */
                    .poster-hero {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-hero::before {
                        content: '';
                        position: absolute;
                        top: -30%;
                        right: -10%;
                        width: 500px;
                        height: 500px;
                        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
                        border-radius: 50%;
                        pointer-events: none;
                    }

                    .poster-hero::after {
                        content: '';
                        position: absolute;
                        bottom: -20%;
                        left: -5%;
                        width: 300px;
                        height: 300px;
                        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
                        border-radius: 50%;
                        pointer-events: none;
                    }

                    .poster-hero-wrapper {
                        display: flex;
                        flex-direction: row-reverse;
                        align-items: center;
                        gap: 60px;
                        max-width: 1100px;
                        margin: 0 auto;
                        position: relative;
                        z-index: 1;
                    }

                    .poster-hero-image {
                        flex: 1;
                        position: relative;
                        border-radius: 24px;
                        overflow: hidden;
                        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
                    }

                    .poster-hero-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                        transition: 0.5s;
                        border-radius: 24px;
                        border: 3px solid #d4a017;
                    }

                    .poster-hero-image:hover img {
                        transform: scale(1.03);
                    }

                    .poster-hero-badge {
                        position: absolute;
                        bottom: 25px;
                        left: 25px;
                        background: rgba(0, 0, 0, 0.75);
                        backdrop-filter: blur(10px);
                        padding: 12px 24px;
                        border-radius: 50px;
                        border: 1px solid rgba(212, 175, 55, 0.3);
                    }

                    .poster-hero-badge span {
                        color: #fff;
                        font-size: 14px;
                        font-weight: 600;
                    }

                    .poster-hero-badge span::before {
                        content: '✦ ';
                        color: #d4a017;
                    }

                    .poster-hero-content {
                        flex: 1.2;
                        padding: 10px 0;
                    }

                    .poster-hero-content .section-head {
                        margin-bottom: 18px;
                    }

                    .poster-hero-content .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 13px;
                        font-weight: 700;
                        letter-spacing: 0.5px;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-hero-content .section-head h1 {
                        font-size: clamp(1rem, 4vw, 2rem);
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                        text-align: left;
                    }

                    .poster-hero-content .section-head h1 span {
                        color: #d4a017;
                    }

                    .poster-hero-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        margin-bottom: 12px;
                    }

                    .poster-hero-desc.last-desc {
                        margin-bottom: 0;
                    }

                    .poster-hero-buttons {
                        display: flex;
                        gap: 15px;
                        flex-wrap: wrap;
                        margin-top: 22px;
                    }

                    .poster-hero-btn-primary {
                        display: inline-block;
                        background: #d4a017;
                        color: #000;
                        padding: 14px 32px;
                        border-radius: 50px;
                        text-decoration: none;
                        font-weight: 700;
                        font-size: 15px;
                        transition: 0.3s;
                        border: 2px solid #d4a017;
                    }

                    .poster-hero-btn-primary:hover {
                        background: #000;
                        color: #d4a017;
                        transform: translateY(-3px);
                        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
                    }

                    .poster-hero-btn-secondary {
                        display: inline-block;
                        background: transparent;
                        color: #000;
                        padding: 14px 32px;
                        border-radius: 50px;
                        text-decoration: none;
                        font-weight: 700;
                        font-size: 15px;
                        transition: 0.3s;
                        border: 2px solid #d4a017;
                    }

                    .poster-hero-btn-secondary:hover {
                        background: #d4a017;
                        color: #000;
                        transform: translateY(-3px);
                        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
                    }

                    /* -------- POSTER HERO RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-hero-wrapper {
                            gap: 45px;
                        }
                    }

                    @media (max-width: 1024px) {
                        .poster-hero-wrapper {
                            gap: 35px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-hero {
                            padding: 60px 0;
                        }

                        .poster-hero-wrapper {
                            flex-direction: column;
                            gap: 35px;
                        }

                        .poster-hero-image {
                            width: 100%;
                        }

                        .poster-hero-content {
                            padding: 0;
                            width: 100%;
                        }

                        .poster-hero-content .section-head h1 {
                            font-size: 26px;
                        }

                        .poster-hero-desc {
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-hero-content .section-head h1 {
                            font-size: 22px;
                        }

                        .poster-hero-desc {
                            font-size: 14px;
                        }

                        .poster-hero-badge {
                            bottom: 18px;
                            left: 18px;
                            padding: 10px 18px;
                        }

                        .poster-hero-badge span {
                            font-size: 12px;
                        }

                        .poster-hero-buttons {
                            flex-direction: column;
                            width: 100%;
                        }

                        .poster-hero-btn-primary,
                        .poster-hero-btn-secondary {
                            width: 100%;
                            text-align: center;
                            padding: 12px 20px;
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-hero {
                            padding: 50px 0;
                        }

                        .poster-hero-content .section-head h1 {
                            font-size: 20px;
                        }

                        .poster-hero-desc {
                            font-size: 13px;
                            line-height: 1.7;
                        }

                        .poster-hero-badge {
                            bottom: 14px;
                            left: 14px;
                            padding: 8px 16px;
                        }

                        .poster-hero-badge span {
                            font-size: 11px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-hero {
                            padding: 40px 0;
                        }

                        .poster-hero-content .section-head .sm-title {
                            font-size: 11px;
                            padding: 4px 14px;
                        }

                        .poster-hero-content .section-head h1 {
                            font-size: 18px;
                        }

                        .poster-hero-desc {
                            font-size: 13px;
                        }

                        .poster-hero-btn-primary,
                        .poster-hero-btn-secondary {
                            font-size: 13px;
                            padding: 10px 16px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-hero-content .section-head h1 {
                            font-size: 16px;
                        }

                        .poster-hero-desc {
                            font-size: 12px;
                        }

                        .poster-hero-btn-primary,
                        .poster-hero-btn-secondary {
                            font-size: 12px;
                            padding: 9px 14px;
                        }
                    }
                


                
                    /* -------- WHY POSTER DESIGN MATTERS SECTION -------- */
                    .poster-why-matters {
                        background: #000000;
                        padding: 50px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-why-matters::before {
                        content: '';
                        position: absolute;
                        top: -40%;
                        left: -10%;
                        width: 600px;
                        height: 600px;
                        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
                        border-radius: 50%;
                        pointer-events: none;
                    }

                    .poster-why-matters::after {
                        content: '';
                        position: absolute;
                        bottom: -30%;
                        right: -5%;
                        width: 400px;
                        height: 400px;
                        background: radial-gradient(circle, rgba(212, 175, 55, 0.02), transparent);
                        border-radius: 50%;
                        pointer-events: none;
                    }

                    .poster-why-matters-wrapper {
                        position: relative;
                        z-index: 2;
                    }

                    .poster-why-matters .section-head {
                        text-align: left;
                        margin-bottom: 28px;
                    }

                    .poster-why-matters .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        margin-left: 45px;
                        font-size: 13px;
                        font-weight: 700;
                        letter-spacing: 0.5px;
                        text-transform: uppercase;
                        margin-bottom: 14px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-why-matters .section-head h2 {
                        font-size: 38px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-why-matters .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-why-matters-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.85;
                        text-align: justify;
                        margin: 0 0 18px;
                    }

                    .poster-matters-grid {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 20px;
                        margin-top: 25px;
                    }

                    .poster-matters-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 18px;
                        padding: 18px 22px;
                        background: #0a0a0a;
                        border: 1px solid goldenrod;
                        border-radius: 12px;
                        transition: 0.3s;
                    }

                    .poster-matters-item:hover {
                        border-color: #d4a017;
                        transform: translateY(-3px);
                    }

                    .poster-matters-num {
                        flex-shrink: 0;
                        font-size: 22px;
                        font-weight: 800;
                        color: #d4a017;
                        line-height: 1;
                        min-width: 40px;
                    }

                    .poster-matters-item h3 {
                        font-size: 16px;
                        font-weight: 700;
                        color: #ffffff;
                        margin-bottom: 4px;
                    }

                    .poster-matters-item p {
                        color: #bdbdbd;
                        font-size: 13.5px;
                        line-height: 1.7;
                        text-align: justify;
                        margin: 0;
                    }

                    /* -------- POSTER WHY MATTERS RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-why-matters .section-head h2 {
                            font-size: 34px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-why-matters {
                            padding: 65px 0;
                        }

                        .poster-why-matters .section-head h2 {
                            font-size: 30px;
                        }

                        .poster-why-matters-desc {
                            font-size: 14px;
                        }

                        .poster-matters-grid {
                            grid-template-columns: 1fr;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-why-matters {
                            padding: 55px 0;
                        }

                        .poster-why-matters .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-why-matters .section-head .sm-title {
                            font-size: 12px;
                            padding: 5px 16px;
                        }

                        .poster-why-matters-desc {
                            font-size: 14px;
                            line-height: 1.75;
                        }

                        .poster-matters-item {
                            padding: 16px 18px;
                        }

                        .poster-matters-item p {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-why-matters {
                            padding: 50px 0;
                        }

                        .poster-why-matters .section-head h2 {
                            font-size: 24px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-why-matters {
                            padding: 45px 0;
                        }

                        .poster-why-matters .section-head {
                            margin-bottom: 22px;
                        }

                        .poster-why-matters .section-head .sm-title {
                            font-size: 11px;
                            padding: 4px 14px;
                        }

                        .poster-why-matters .section-head h2 {
                            font-size: 22px;
                        }

                        .poster-why-matters-desc {
                            font-size: 13px;
                            line-height: 1.7;
                        }

                        .poster-matters-item {
                            padding: 14px 16px;
                            gap: 14px;
                        }

                        .poster-matters-num {
                            font-size: 18px;
                            min-width: 32px;
                        }

                        .poster-matters-item h3 {
                            font-size: 15px;
                        }

                        .poster-matters-item p {
                            font-size: 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-why-matters .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-why-matters-desc {
                            font-size: 12px;
                        }

                        .poster-matters-item {
                            padding: 12px 14px;
                        }
                    }
                




                


    /* -------- POSTER DESIGN FOR BUSINESSES IN TRICHY -------- */

    .poster-local {
        background: #ffffff;
        padding: 55px 0;
        position: relative;
        overflow: hidden;
    }

    .poster-local-wrapper {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        gap: 60px;
    }

    /* -------- LEFT CONTENT -------- */

    .poster-local-content {
        width: 100%;
    }

    .poster-local .section-head {
        text-align: left;
        margin-bottom: 22px;
    }

    .poster-local .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.10);
        color: #d4a017;
        padding: 6px 18px;
        border-radius: 30px;
        font-size:11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
        margin-left: 45px;
    }

    .poster-local .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.25;
        margin: 0;
    }

    .poster-local .section-head h2 span {
        color: #d4a017;
    }

    /* -------- PARAGRAPH CONTENT -------- */

    .poster-local-text {
        max-width: 680px;
    }

    .poster-local-text p {
        color: #555;
        font-size: 15px;
        line-height: 1.75;
        text-align: justify;
        margin: 0 0 13px;
    }

    .poster-local-text p:last-child {
        margin-bottom: 0;
    }

    /* -------- RIGHT IMAGE -------- */

    .poster-local-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .poster-image-box {
        width: 100%;
        max-width: 460px;
        overflow: hidden;
        border-radius: 18px;
    }

    .poster-image-box img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .poster-image-box:hover img {
        transform: scale(1.03);
    }

    /* -------- TABLET -------- */

    @media (max-width: 991px) {

        .poster-local {
            padding: 45px 0;
        }

        .poster-local-wrapper {
            grid-template-columns: 1fr 1fr;
            gap: 35px;
        }

        .poster-local .section-head h2 {
            font-size: 30px;
        }

        .poster-local-text p {
            font-size: 14px;
        }

    }

    /* -------- MOBILE -------- */

    @media (max-width: 768px) {

        .poster-local {
            padding: 40px 0;
        }

        .poster-local-wrapper {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .poster-local .section-head {
            text-align: left;
            margin-bottom: 18px;
        }

        .poster-local .section-head h2 {
            font-size: 26px;
        }

        .poster-local-text p {
            font-size: 14px;
            line-height: 1.7;
        }

        .poster-local-image {
            justify-content: flex-start;
        }

        .poster-image-box {
            max-width: 100%;
            border-radius: 14px;
        }

    }

    /* -------- SMALL MOBILE -------- */

    @media (max-width: 480px) {

        .poster-local {
            padding: 35px 0;
        }

        .poster-local .section-head .sm-title {
            font-size: 8px;
            padding: 6px 15px;
        }

        .poster-local .section-head h2 {
            font-size: 22px;
        }

        .poster-local-text p {
            font-size: 13px;
            line-height: 1.65;
        }

    }

    @media (max-width: 380px) {

        .poster-local .section-head h2 {
            font-size: 20px;
        }

        .poster-local-text p {
            font-size: 12px;
        }

    }





  
                    /* -------- BUSINESS POSTER DESIGN SECTION -------- */
                    .poster-business {
                        background: #000000;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-business .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-business .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-business .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-business .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-business-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-business-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-business-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #ffffff;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-business-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-business-list ul li {
                        color: #bdbdbd;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: black;
                        border: 1px solid goldenrod;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-business-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.12);
                    }

                    .poster-highlight-box {
                        background: #FFE28A;
                        border-left: 4px solid #d4a017;
                        padding: 22px 26px;
                        border-radius: 10px;
                        margin: 28px auto 0;
                        max-width: 850px;
                    }

                    .poster-highlight-box p {
                        color: #222;
                        font-size: 14px;
                        line-height: 1.8;
                        text-align: justify;
                        margin-bottom: 0;
                    }

                    #poster-business-highlight.poster-highlight-box p {
                        color: black;
                    }

                    /* -------- POSTER BUSINESS RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-business .section-head h2 {
                            font-size: 30px;
                        }

                        .poster-business-list ul {
                            grid-template-columns: 1fr 1fr;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-business .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-business .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-business-desc {
                            font-size: 14px;
                        }

                        .poster-business-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-business-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }

                        .poster-highlight-box p {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-business .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-business-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-business {
                            padding: 40px 0;
                        }

                        .poster-business .section-head h2 {
                            font-size: 22px;
                            text-align: left;   
                        }

                        .poster-business-desc {
                            font-size: 13px;
                        }

                        .poster-business-list h3 {
                            font-size: 15px;
                        }

                        .poster-business-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }

                        .poster-highlight-box {
                            padding: 16px 18px;
                        }

                        .poster-highlight-box p {
                            font-size: 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-business .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-business-desc {
                            font-size: 12px;
                        }
                    }
                






                
                
                    /* -------- PROMOTIONAL POSTER DESIGN SECTION -------- */
                    .poster-promotional {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-promotional .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-promotional .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-promotional .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-promotional .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-promotional-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-promotional-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-promotional-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-promotional-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-promotional-list ul li {
                        color: #444;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: #FFE28A;
                        border: 1px solid #FFE28A;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-promotional-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.1);
                    }

                    #poster-promotional-highlight.poster-highlight-box p {
                        color: #222;
                    }

                    /* -------- POSTER PROMOTIONAL RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-promotional .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-promotional .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-promotional .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-promotional-desc {
                            font-size: 14px;
                        }

                        .poster-promotional-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-promotional-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-promotional .section-head h2 {
                            font-size: 24px;
                            text-align: left;
                        }

                        .poster-promotional-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-promotional {
                            padding: 40px 0;
                        }

                        .poster-promotional .section-head h2 {
                            font-size: 22px;
                        }

                        .poster-promotional-desc {
                            font-size: 13px;
                        }

                        .poster-promotional-list h3 {
                            font-size: 15px;
                        }

                        .poster-promotional-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-promotional .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-promotional-desc {
                            font-size: 12px;
                        }
                    }
                


                 
                    /* -------- ADVERTISING POSTER DESIGN SECTION -------- */
                    .poster-advertising {
                        background: #000000;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-advertising .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-advertising .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-advertising .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-advertising .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-advertising-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-advertising-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-advertising-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #ffffff;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-advertising-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-advertising-list ul li {
                        color: #bdbdbd;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: black;
                        border: 1px solid goldenrod;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-advertising-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.12);
                    }

                    #poster-advertising-highlight.poster-highlight-box p {
                        color: black;
                    }

                    /* -------- POSTER ADVERTISING RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-advertising .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-advertising .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-advertising .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-advertising-desc {
                            font-size: 14px;
                        }

                        .poster-advertising-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-advertising-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-advertising .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-advertising-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-advertising {
                            padding: 40px 0;
                        }

                        .poster-advertising .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-advertising-desc {
                            font-size: 13px;
                        }

                        .poster-advertising-list h3 {
                            font-size: 15px;
                        }

                        .poster-advertising-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-advertising .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-advertising-desc {
                            font-size: 12px;
                        }
                    }
                


                  
                    /* -------- MARKETING POSTER DESIGN SECTION -------- */
                    .poster-marketing {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-marketing .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-marketing .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-marketing .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-marketing .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-marketing-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-marketing-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-marketing-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-marketing-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-marketing-list ul li {
                        color: #444;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: #FFE28A;
                        border: 1px solid #FFE28A;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-marketing-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.1);
                    }

                    #poster-marketing-highlight.poster-highlight-box p {
                        color: #222;
                    }

                    /* -------- POSTER MARKETING RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-marketing .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-marketing .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-marketing .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-marketing-desc {
                            font-size: 14px;
                        }

                        .poster-marketing-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-marketing-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-marketing .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-marketing-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-marketing {
                            padding: 40px 0;
                        }

                        .poster-marketing .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-marketing-desc {
                            font-size: 13px;
                        }

                        .poster-marketing-list h3 {
                            font-size: 15px;
                        }

                        .poster-marketing-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-marketing .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-marketing-desc {
                            font-size: 12px;
                        }
                    }
                



                   
                    /* -------- SOCIAL MEDIA POSTER DESIGN SECTION -------- */
                    .poster-social {
                        background: #000000;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-social .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-social .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-social .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-social .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-social-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-social-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-social-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #ffffff;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-social-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-social-list ul li {
                        color: #bdbdbd;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: black;
                        border: 1px solid goldenrod;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-social-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.12);
                    }

                    #poster-social-highlight.poster-highlight-box p {
                        color: black;
                    }

                    /* -------- POSTER SOCIAL RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-social .section-head h2 {
                            font-size: 30px;
                        }

                        .poster-social-list ul {
                            grid-template-columns: 1fr 1fr;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-social .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-social .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-social-desc {
                            font-size: 14px;
                        }

                        .poster-social-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-social-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-social .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-social-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-social {
                            padding: 40px 0;
                        }

                        .poster-social .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-social-desc {
                            font-size: 13px;
                        }

                        .poster-social-list h3 {
                            font-size: 15px;
                        }

                        .poster-social-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-social .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-social-desc {
                            font-size: 12px;
                        }
                    }
                



                   
                    /* -------- CORPORATE POSTER DESIGN SECTION -------- */
                    .poster-corporate {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-corporate .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-corporate .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-corporate .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-corporate .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-corporate-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-corporate-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-corporate-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-corporate-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-corporate-list ul li {
                        color: #444;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background: #FFE28A;
                        border: 1px solid #eee;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-corporate-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.1);
                    }

                    #poster-corporate-highlight.poster-highlight-box p {
                        color: #222;
                    }

                    /* -------- POSTER CORPORATE RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-corporate .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-corporate .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-corporate .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-corporate-desc {
                            font-size: 14px;
                        }

                        .poster-corporate-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-corporate-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-corporate .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-corporate-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-corporate {
                            padding: 40px 0;
                        }

                        .poster-corporate .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-corporate-desc {
                            font-size: 13px;
                        }

                        .poster-corporate-list h3 {
                            font-size: 15px;
                        }

                        .poster-corporate-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-corporate .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-corporate-desc {
                            font-size: 12px;
                        }
                    }
                


                

    /* -------- WHAT MAKES A GOOD POSTER DESIGN -------- */

    .poster-good-design {
        background: #000000;
        padding: 55px 0;
        position: relative;
        overflow: hidden;
    }

    .poster-good-design-wrapper {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        gap: 60px;
    }

    /* -------- LEFT CONTENT -------- */

    .poster-good-design-content {
        width: 100%;
    }

    .poster-good-design .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .poster-good-design .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 18px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .poster-good-design .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.25;
        margin: 0;
    }

    .poster-good-design .section-head h2 span {
        color: #d4a017;
    }

    /* -------- DESCRIPTION -------- */

    .poster-good-design-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.75;
        text-align: justify;
        max-width: 680px;
        margin: 0 0 22px;
    }

    /* -------- CONTENT LIST -------- */

    .poster-good-design-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .poster-good-design-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 14px 17px;
        background: #0a0a0a;
        border: 1px solid rgba(212, 175, 55, 0.55);
        border-radius: 10px;
        transition: 0.3s ease;
    }

    .poster-good-design-item:hover {
        border-color: #d4a017;
        transform: translateX(5px);
    }

    .poster-good-design-icon {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.10);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #d4a017;
        margin-top: 2px;
        transition: 0.3s ease;
    }

    .poster-good-design-item:hover .poster-good-design-icon {
        background: #d4a017;
        color: #000000;
        transform: scale(1.08);
    }

    .poster-good-design-item h3 {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 4px;
    }

    .poster-good-design-item p {
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.65;
        text-align: justify;
        margin: 0;
    }

    /* -------- RIGHT IMAGE -------- */

    .poster-good-design-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .poster-good-design-image-box {
        width: 100%;
        max-width: 470px;
        overflow: hidden;
        border-radius: 18px;
    }

    .poster-good-design-image-box img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .poster-good-design-image-box:hover img {
        transform: scale(1.03);
    }

    /* -------- TABLET -------- */

    @media (max-width: 991px) {

        .poster-good-design {
            padding: 45px 0;
        }

        .poster-good-design-wrapper {
            grid-template-columns: 1fr 1fr;
            gap: 35px;
        }

        .poster-good-design .section-head h2 {
            font-size: 30px;
        }

        .poster-good-design-desc {
            font-size: 14px;
        }

        .poster-good-design-item {
            padding: 13px 14px;
        }

    }

    /* -------- MOBILE -------- */

    @media (max-width: 768px) {

        .poster-good-design {
            padding: 40px 0;
        }

        .poster-good-design-wrapper {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .poster-good-design .section-head {
            text-align: left;
            margin-bottom: 18px;
        }

        .poster-good-design .section-head h2 {
            font-size: 26px;
        }

        .poster-good-design-desc {
            font-size: 14px;
            line-height: 1.7;
        }

        .poster-good-design-image {
            justify-content: flex-start;
        }

        .poster-good-design-image-box {
            max-width: 100%;
            border-radius: 14px;
        }

    }

    /* -------- SMALL MOBILE -------- */

    @media (max-width: 480px) {

        .poster-good-design {
            padding: 35px 0;
        }

        .poster-good-design .section-head .sm-title {
            font-size: 8px;
            padding: 6px 15px;
            margin-left: 40px;
        }

        .poster-good-design .section-head h2 {
            font-size: 22px;
        }

        .poster-good-design-desc {
            font-size: 13px;
        }

        .poster-good-design-item {
            padding: 12px 13px;
            gap: 11px;
        }

        .poster-good-design-item h3 {
            font-size: 14px;
        }

        .poster-good-design-item p {
            font-size: 12px;
            line-height: 1.6;
        }

        .poster-good-design-icon {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

    }

    @media (max-width: 380px) {

        .poster-good-design .section-head h2 {
            font-size: 20px;
        }

        .poster-good-design-desc {
            font-size: 12px;
        }

    }




    
                    /* -------- OUR POSTER DESIGN PROCESS SECTION -------- */
                    .poster-process {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-process .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-process .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-process .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-process .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-process-grid {
                        max-width: 850px;
                        margin: 30px auto 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        gap: 20px;
                    }

                    .poster-process-item {
                        text-align: center;
                        padding: 24px 20px;
                        background: #FFE28A;
                        border: 1px solid #eee;
                        border-radius: 12px;
                        transition: 0.3s;
                    }

                    .poster-process-item:hover {
                        border-color: #d4a017;
                        transform: translateY(-4px);
                        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
                    }

                    .poster-process-num {
                        display: inline-block;
                        font-size: 28px;
                        font-weight: 800;
                        color: #d4a017;
                        line-height: 1;
                        margin-bottom: 12px;
                    }

                    .poster-process-item h3 {
                        font-size: 16px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 6px;
                    }

                    .poster-process-item p {
                        color: #555;
                        font-size: 13px;
                        line-height: 1.7;
                        text-align: justify;
                        margin: 0;
                    }

                    /* -------- POSTER PROCESS RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-process .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-process .section-head h2 {
                            font-size: 28px;
                        }

                        .poster-process-grid {
                            grid-template-columns: 1fr;
                            max-width: 500px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-process .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-process-item {
                            padding: 20px 16px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-process .section-head h2 {
                            font-size: 24px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-process {
                            padding: 40px 0;
                        }

                        .poster-process .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-process-item {
                            padding: 16px 14px;
                        }

                        .poster-process-num {
                            font-size: 22px;
                        }

                        .poster-process-item h3 {
                            font-size: 15px;
                        }

                        .poster-process-item p {
                            font-size: 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-process .section-head h2 {
                            font-size: 20px;
                        }
                    }
                


                    
                    /* -------- TYPES OF POSTERS SECTION -------- */
                    .poster-types {
                        background: #000000;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-types .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-types .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-types .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-types .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-types-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-types-grid {
                        max-width: 850px;
                        margin: 30px auto 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 16px;
                    }

                    .poster-type-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 16px;
                        padding: 16px 20px;
                        background: #0a0a0a;
                        border: 1px solid goldenrod;
                        border-radius: 12px;
                        transition: 0.3s;
                    }

                    .poster-type-item:hover {
                        border-color: #d4a017;
                        transform: translateY(-3px);
                    }

                    .poster-type-icon {
                        flex-shrink: 0;
                        width: 40px;
                        height: 40px;
                        background: rgba(212, 175, 55, 0.1);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 16px;
                        color: #d4a017;
                        margin-top: 2px;
                        transition: 0.3s;
                    }

                    .poster-type-item:hover .poster-type-icon {
                        background: #d4a017;
                        color: #000;
                        transform: scale(1.1);
                    }

                    .poster-type-item h3 {
                        font-size: 15px;
                        font-weight: 700;
                        color: #ffffff;
                        margin-bottom: 4px;
                    }

                    .poster-type-item p {
                        color: #bdbdbd;
                        font-size: 13px;
                        line-height: 1.7;
                        text-align: justify;
                        margin: 0;
                    }

                    /* -------- POSTER TYPES RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-types .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-types .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-types .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-types-desc {
                            font-size: 14px;
                        }

                        .poster-types-grid {
                            grid-template-columns: 1fr;
                        }

                        .poster-type-item {
                            padding: 14px 16px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-types .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-types-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-types {
                            padding: 40px 0;
                        }

                        .poster-types .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-types-desc {
                            font-size: 13px;
                        }

                        .poster-type-item {
                            padding: 12px 14px;
                            gap: 12px;
                        }

                        .poster-type-item h3 {
                            font-size: 14px;
                        }

                        .poster-type-item p {
                            font-size: 12px;
                        }

                        .poster-type-icon {
                            width: 34px;
                            height: 34px;
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-types .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-types-desc {
                            font-size: 12px;
                        }
                    }
                


                  
                    /* -------- POSTER DESIGN FOR DIGITAL AND PRINT SECTION -------- */
                    .poster-digital-print {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-digital-print .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-digital-print .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-digital-print .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-digital-print .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-digital-print-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-digital-print-list {
                        max-width: 850px;
                        margin: 30px auto 0;
                    }

                    .poster-digital-print-list h3 {
                        font-size: 17px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 16px;
                        text-align: center;
                    }

                    .poster-digital-print-list ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 10px;
                    }

                    .poster-digital-print-list ul li {
                        color: #444;
                        font-size: 14px;
                        line-height: 1.6;
                        padding: 10px 16px;
                        background:#FFE28A ;
                        border: 1px solid #eee;
                        border-radius: 8px;
                        text-align: center;
                        transition: 0.3s;
                    }

                    .poster-digital-print-list ul li:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.1);
                    }

                    #poster-digital-print-highlight.poster-highlight-box p {
                        color: #222;
                    }

                    /* -------- POSTER DIGITAL PRINT RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-digital-print .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-digital-print .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-digital-print .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-digital-print-desc {
                            font-size: 14px;
                        }

                        .poster-digital-print-list ul {
                            grid-template-columns: 1fr;
                        }

                        .poster-digital-print-list ul li {
                            font-size: 13px;
                            padding: 8px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-digital-print .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-digital-print-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-digital-print {
                            padding: 40px 0;
                        }

                        .poster-digital-print .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-digital-print-desc {
                            font-size: 13px;
                        }

                        .poster-digital-print-list h3 {
                            font-size: 15px;
                        }

                        .poster-digital-print-list ul li {
                            font-size: 12px;
                            padding: 7px 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-digital-print .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-digital-print-desc {
                            font-size: 12px;
                        }
                    }
                



                 
                    /* -------- INDUSTRIES WE SUPPORT SECTION -------- */
                    .poster-industries {
                        background: #000000;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-industries .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-industries .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 13px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-industries .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #ffffff;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-industries .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-industries-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-industries-grid {
                        max-width: 850px;
                        margin: 30px auto 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        gap: 12px;
                    }

                    .poster-industry-item {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        padding: 12px 16px;
                        background: #0a0a0a;
                        border: 1px solid goldenrod;
                        border-radius: 10px;
                        transition: 0.3s;
                    }

                    .poster-industry-item:hover {
                        border-color: #d4a017;
                        background: rgba(212, 175, 55, 0.06);
                        transform: translateX(4px);
                    }

                    .poster-industry-icon {
                        flex-shrink: 0;
                        width: 32px;
                        height: 32px;
                        background: rgba(212, 175, 55, 0.1);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 14px;
                        color: #d4a017;
                        transition: 0.3s;
                    }

                    .poster-industry-item:hover .poster-industry-icon {
                        background: #d4a017;
                        color: #000;
                        transform: scale(1.1);
                    }

                    .poster-industry-item span {
                        color: #d9d9d9;
                        font-size: 14px;
                        line-height: 1.4;
                    }

                    #poster-industries-highlight.poster-highlight-box p {
                        color: black;
                    }

                    /* -------- POSTER INDUSTRIES RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-industries .section-head h2 {
                            font-size: 30px;
                        }

                        .poster-industries-grid {
                            grid-template-columns: 1fr 1fr;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-industries .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-industries .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-industries-desc {
                            font-size: 14px;
                        }

                        .poster-industries-grid {
                            grid-template-columns: 1fr;
                        }

                        .poster-industry-item {
                            padding: 10px 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-industries .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-industries-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-industries {
                            padding: 40px 0;
                        }

                        .poster-industries .section-head h2 {
                            text-align: left;
                            font-size: 22px;
                        }

                        .poster-industries-desc {
                            font-size: 13px;
                        }

                        .poster-industry-item {
                            padding: 8px 12px;
                            gap: 10px;
                        }

                        .poster-industry-item span {
                            font-size: 13px;
                        }

                        .poster-industry-icon {
                            width: 28px;
                            height: 28px;
                            font-size: 12px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-industries .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-industries-desc {
                            font-size: 12px;
                        }
                    }
                


                 
                    /* -------- WHY TRICHY DIGITAL MARKETING SECTION -------- */
                    .poster-why-us {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-why-us .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-why-us .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-why-us .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: #222;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-why-us .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-why-us-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-why-us-grid {
                        max-width: 850px;
                        margin: 30px auto 0;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 16px;
                    }

                    .poster-why-us-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 16px;
                        padding: 16px 20px;
                        background: #FFE28A;
                        border: 1px solid #eee;
                        border-radius: 12px;
                        transition: 0.3s;
                    }

                    .poster-why-us-item:hover {
                        border-color: #d4a017;
                        transform: translateY(-3px);
                    }

                    .poster-why-us-icon {
                        flex-shrink: 0;
                        width: 40px;
                        height: 40px;
                        background: rgba(212, 175, 55, 0.1);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 16px;
                        color: #d4a017;
                        margin-top: 2px;
                        transition: 0.3s;
                    }

                    .poster-why-us-item:hover .poster-why-us-icon {
                        background: #d4a017;
                        color: #000;
                        transform: scale(1.1);
                    }

                    .poster-why-us-item h3 {
                        font-size: 15px;
                        font-weight: 700;
                        color: #222;
                        margin-bottom: 4px;
                    }

                    .poster-why-us-item p {
                        color: #555;
                        font-size: 13px;
                        line-height: 1.7;
                        text-align: justify;
                        margin: 0;
                    }

                    /* -------- POSTER WHY US RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-why-us .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-why-us .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-why-us .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-why-us-desc {
                            font-size: 14px;
                        }

                        .poster-why-us-grid {
                            grid-template-columns: 1fr;
                        }

                        .poster-why-us-item {
                            padding: 14px 16px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-why-us .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-why-us-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-why-us {
                            padding: 40px 0;
                        }

                        .poster-why-us .section-head h2 {
                            font-size: 22px;
                            text-align: left;
                        }

                        .poster-why-us-desc {
                            font-size: 13px;
                        }

                        .poster-why-us-item {
                            padding: 12px 14px;
                            gap: 12px;
                        }

                        .poster-why-us-item h3 {
                            font-size: 14px;
                        }

                        .poster-why-us-item p {
                            font-size: 12px;
                        }

                        .poster-why-us-icon {
                            width: 34px;
                            height: 34px;
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-why-us .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-why-us-desc {
                            font-size: 12px;
                        }
                    }
                

                   
                    /* -------- POSTER FAQ SECTION -------- */
                    .poster-faq {
                        --fq-accent: #D4AF37;
                        --fq-accent2: #FFD700;
                        --fq-dark: #0d1117;
                        --fq-card: #141b22;
                        --fq-border: rgba(212, 175, 55, 0.25);
                        --fq-text: #c9d1d9;
                        --fq-muted: #8b949e;
                        --fq-white: #ffffff;
                        --fq-radius: 14px;
                        --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
                        background: #000;
                        padding: 72px 0 80px;
                        overflow: hidden;
                    }

                    .poster-faq-wrap {
                        max-width: 860px;
                        margin: 0 auto;
                        padding: 0 20px;
                        position: relative;
                        z-index: 1;
                    }

                    .poster-faq .section-head {
                        text-align: center;
                        margin-bottom: 48px;
                    }

                    .poster-faq .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.12);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 13px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                        border: 1px solid rgba(212, 175, 55, 0.15);
                    }

                    .poster-faq .section-head h2 {
                        color: #ffffff;
                        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
                        font-weight: 800;
                        line-height: 1.22;
                        margin: 0;
                    }

                    .poster-faq .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-faq-list {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: flex;
                        flex-direction: column;
                        gap: 12px;
                    }

                    .poster-faq-item {
                        background: var(--fq-card);
                        border: 1px solid var(--fq-border);
                        border-radius: var(--fq-radius);
                        overflow: hidden;
                        transition: border-color var(--fq-trans), box-shadow var(--fq-trans);
                    }

                    .poster-faq-item:hover {
                        border-color: #D4AF37;
                    }

                    .poster-faq-item.poster-faq-open {
                        border-color: var(--fq-accent);
                        box-shadow: 0 0 0 1px rgba(145, 217, 4, 0.25), 0 8px 32px rgba(0, 0, 0, 0.35);
                    }

                    .poster-faq-btn {
                        width: 100%;
                        background: none;
                        border: none;
                        padding: 20px 22px;
                        display: flex;
                        align-items: center;
                        gap: 16px;
                        cursor: pointer;
                        text-align: left;
                        outline: none;
                    }

                    .poster-faq-btn:focus-visible {
                        outline: 2px solid var(--fq-accent);
                        outline-offset: -2px;
                    }

                    .poster-faq-num {
                        flex-shrink: 0;
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        background: rgba(145, 217, 4, 0.1);
                        border: 1px solid var(--fq-border);
                        color: var(--fq-accent);
                        font-size: .7rem;
                        font-weight: 800;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        letter-spacing: .05em;
                        transition: background var(--fq-trans), border-color var(--fq-trans);
                    }

                    .poster-faq-open .poster-faq-num {
                        background: var(--fq-accent);
                        border-color: var(--fq-accent);
                        color: var(--fq-dark);
                    }

                    .poster-faq-q-text {
                        margin: 0;
                        padding: 0;
                        font-size: 1rem;
                        font-weight: 600;
                        line-height: 1.4;
                        flex: 1;
                        color: var(--fq-white);
                        transition: color var(--fq-trans);
                    }

                    .poster-faq-open .poster-faq-q-text {
                        color: var(--fq-accent);
                    }

                    .poster-faq-icon {
                        flex-shrink: 0;
                        width: 28px;
                        height: 28px;
                        border-radius: 50%;
                        background: #000;
                        border: 1px solid var(--fq-border);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        transition: background var(--fq-trans), transform var(--fq-trans);
                    }

                    .poster-faq-icon svg {
                        width: 13px;
                        height: 13px;
                        stroke: var(--fq-accent);
                        transition: transform var(--fq-trans);
                    }

                    .poster-faq-open .poster-faq-icon {
                        background: var(--fq-accent);
                    }

                    .poster-faq-open .poster-faq-icon svg {
                        stroke: var(--fq-dark);
                        transform: rotate(45deg);
                    }

                    .poster-faq-answer {
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height var(--fq-trans);
                        cursor: pointer;
                    }

                    .poster-faq-answer-inner {
                        padding: 0 22px 20px 70px;
                        text-align: justify;
                        color: var(--fq-text);
                        font-size: .94rem;
                        line-height: 1.72;
                    }

                    /* -------- POSTER FAQ RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-faq {
                            padding: 65px 0 70px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-faq {
                            padding: 60px 0 65px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-faq {
                            padding: 55px 0 60px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-faq {
                            padding: 52px 0 60px;
                        }

                        .poster-faq-answer-inner {
                            padding-left: 22px;
                        }

                        .poster-faq-btn {
                            padding: 16px 16px;
                            gap: 12px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-faq .section-head h2 {
                            font-size: 22px;
                        }

                        .poster-faq-q-text {
                            font-size: .9rem;
                        }

                        .poster-faq-answer-inner {
                            font-size: .85rem;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-faq .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-faq-q-text {
                            font-size: .85rem;
                        }

                        .poster-faq-answer-inner {
                            font-size: .8rem;
                        }
                    }
                



                   
                    /* -------- READY TO CREATE YOUR POSTER SECTION -------- */
                    .poster-ready {
                        background: #ffffff;
                        padding: 40px 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .poster-ready .section-head {
                        text-align: center;
                        margin-bottom: 18px;
                    }

                    .poster-ready .section-head .sm-title {
                        display: inline-block;
                        background: rgba(212, 175, 55, 0.1);
                        color: #d4a017;
                        padding: 6px 20px;
                        border-radius: 30px;
                        font-size: 10px;
                        font-weight: 700;
                        text-transform: uppercase;
                        margin-bottom: 12px;
                    }

                    .poster-ready .section-head h2 {
                        font-size: 34px;
                        font-weight: 800;
                        color: black !important;
                        line-height: 1.2;
                        margin: 0;
                    }

                    .poster-ready .section-head h2 span {
                        color: #d4a017;
                    }

                    .poster-ready-desc {
                        color: #555;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        max-width: 850px;
                        margin: 0 auto 12px;
                    }

                    .poster-ready-buttons {
                        display: flex;
                        gap: 15px;
                        flex-wrap: wrap;
                        justify-content: center;
                        margin-top: 25px;
                    }

                    .poster-ready-buttons .poster-hero-btn-primary,
                    .poster-ready-buttons .poster-hero-btn-secondary {
                        display: inline-block;
                    }

                    /* -------- POSTER READY RESPONSIVE -------- */
                    @media (max-width: 1265px) {
                        .poster-ready .section-head h2 {
                            font-size: 30px;
                        }
                    }

                    @media (max-width: 991px) {
                        .poster-ready .section-head h2 {
                            font-size: 28px;
                        }
                    }

                    @media (max-width: 768px) {
                        .poster-ready .section-head h2 {
                            font-size: 26px;
                        }

                        .poster-ready-desc {
                            font-size: 14px;
                        }

                        .poster-ready-buttons {
                            flex-direction: column;
                            align-items: center;
                            width: 100%;
                        }

                        .poster-ready-buttons .poster-hero-btn-primary,
                        .poster-ready-buttons .poster-hero-btn-secondary {
                            width: 100%;
                            max-width: 400px;
                            text-align: center;
                            padding: 12px 20px;
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 600px) {
                        .poster-ready .section-head h2 {
                            font-size: 24px;
                        }

                        .poster-ready-desc {
                            font-size: 13px;
                        }
                    }

                    @media (max-width: 480px) {
                        .poster-ready {
                            padding: 40px 0;
                        }

                        .poster-ready .section-head h2 {
                            font-size: 22px;
                            text-align: left;

                        }

                        .poster-ready-desc {
                            font-size: 13px;
                        }

                        .poster-ready-buttons .poster-hero-btn-primary,
                        .poster-ready-buttons .poster-hero-btn-secondary {
                            font-size: 13px;
                            padding: 10px 16px;
                        }
                    }

                    @media (max-width: 380px) {
                        .poster-ready .section-head h2 {
                            font-size: 20px;
                        }

                        .poster-ready-desc {
                            font-size: 12px;
                        }
                    }
                



