    @import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&display=swap');

    * {
        margin: 0%;
        padding: 0%;
    }


    /* Full Hero Section */
    .hero {
        height: 100vh;
        width: 100%;
        background: url('../images/samarjitroy_Herosection_image.jpg') fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding: 0;
        text-align: left;
        color: #ffffff;
    }

    /* Dark Overlay */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0,0,0,0.65); */
    }

    .hero-image {
        position: relative;
        z-index: 2;
    }

    .hero-image img {
        width: 80vh;
        height: auto;
        transition: transform 0.3s ease;
    }

    .hero-image img:hover {
        transform: translateY(-10px);
    }

    /* Content */
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 20px 0;
        text-align: center;
    }

    /* Main Title */
    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #5e1a14;
        letter-spacing: 0px;
        text-align: center;
        line-height: 1.2;
    }

    /* Subtitle */
    .hero-content h2 {
        font-size: 3.2rem;
        font-weight: 500;
        text-transform: uppercase;
        margin-top: 0;
        color: #5e1a14;
        text-align: center;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .separator-of {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 15px 0;
        color: #5e1a14;
        font-size: 1.9rem;
    }

    .separator-of .text-of {
        letter-spacing: 1px;
    }



    /* Button */
    .cart-btn12 {
        position: relative;
        /* margin: auto; */
        padding: 12px 18px;
        transition: all 0.2s ease;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .cart-btn12:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 50px;
        background: #ab3646;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        z-index: 0;
    }

    .cart-btn12 span {
        position: relative;
        font-family: "Ubuntu", sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #ffffff;
        /* Adjusted color for dark theme */
        z-index: 1;
    }

    .cart-btn12 svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #ffffff;
        /* Adjusted color for dark theme */
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
        z-index: 1;
    }

    .cart-btn12:hover:before {
        width: 100%;
        background: #ab3646;
        /* Changed hover color to match */
    }

    .cart-btn12:hover span,
    .cart-btn12:hover svg {
        color: #ffffff;
        stroke: #ffffff;
    }

    .cart-btn12:hover svg {
        transform: translateX(0);
    }

    .cart-btn12:active {
        transform: scale(0.95);
    }



    /* Author Name */
    .author {
        color: #ffffff;
        font-size: 2.2rem;
        background: #5f1c14;
        padding: 8px;
        border-radius: 50px;
        letter-spacing: 2px;
        margin: 20px auto;
    }


    /* MAIN SECTION */
    .about_the_author {
        position: relative;
        width: 100%;
        background: #ffffff;
        padding: 100px 5%;
        box-sizing: border-box;
    }

    .author-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
        flex-wrap: wrap;
    }

    /* LEFT COLUMN */
    .author-col-left {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
    }

    .author-col-left h1 {
        font-family: "Playfair Display", serif;
        font-size: 50px;
        color: #333;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .author-col-left .sub-title {
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: #888;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .author-col-left p {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .learn-more-button {
        display: inline-block;
        background: #ab3646;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        margin-top: 10px;
        transition: background 0.3s ease;
    }

    .learn-more-button:hover {
        background: #941d28;
    }

    /* CENTER COLUMN */
    .author-col-center {
        position: relative;
        flex: 0 0 500px;
        display: flex;
        justify-content: center;
    }

    .author-image-wrapper img {
        width: 100%;
        display: block;
        position: relative;
        z-index: 3;
    }

    /* Circular Text Badge */
    .circle-badge {
        position: absolute;
        top: -30px;
        left: -40px;
        width: 140px;
        height: 140px;
        z-index: 4;
        animation: spin 15s linear infinite;
    }

    .circle-badge svg {
        width: 100%;
        height: 100%;
        fill: #999;
        font-family: "Poppins", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }

    @keyframes spin {
        100% {
            transform: rotate(360deg);
        }
    }

    /* RIGHT COLUMN */
    .author-col-right {
        position: relative;
        flex: 1;
        width: 50%;
        z-index: 5;
        margin-left: -117px;
    }

    .author-quote-card {
        background: #fce7cf;
        padding: 50px 40px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

    .author-quote-card p {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        color: #444;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .author-quote-card .author-signature {
        transform: rotate(349deg);
        position: absolute;
        margin: -3pc 0 0 4pc;
    }

    .author-quote-card .author-signature img {
        height: 70px;
        width: auto;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .author-layout {
            flex-direction: column;
            text-align: center;
            gap: 50px;
        }

        .author-col-right {
            margin-left: 0;
            margin-top: -30px;
            width: 100%;
        }

        .circle-badge {
            left: 0;
        }

        /* CENTER COLUMN */
        .author-col-center {
            flex: 0 0 100px;
        }

        .author-quote-card .author-signature img {
            height: 60px;
            width: auto;
        }
    }

    /* MAIN SECTION */
    .stores-section {
        padding: 60px 5%;
        background: #ffffff;
        text-align: center;
        border-top: 4px solid #752f1a;
    }

    /* HEADING */
    .stores-heading {
        font-size: 1.5pc;
        font-weight: 600;
        letter-spacing: 1px;
        color: #752f1a;
        text-transform: uppercase;
        margin-bottom: 40px;
        text-decoration: none;
    }


    @keyframes slides {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .publishpletfromlogo {
        overflow: hidden;
        padding: 30px 0px;
        white-space: nowrap;
        position: relative;
    }

    .publishpletfromlogo:before,
    .publishpletfromlogo:after {
        position: absolute;
        top: 0;
        content: '';
        width: 250px;
        height: 100%;
        z-index: 2;
    }

    .publishpletfromlogo:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    }

    .publishpletfromlogo:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    }

    .publishpletfromlogo_items {
        display: inline-block;
        animation: 35s slides infinite linear;
    }

    .publishpletfromlogo:hover .publishpletfromlogo_items {
        animation-play-state: paused;
    }

    .publishpletfromlogo_items img {
        height: 50px;
        padding: 10px 40px;
    }



    /* MAIN SECTION */
    .about_the_author1 {
        position: relative;
        width: auto;
        margin: 0pc 0px;
        padding: 7pc 10%;
        height: auto;
        background: url("../images/samarjitroy_Herosection_image.jpg") fixed;
        background-position: center;
        background-repeat: repeat;
        background-size: cover;
    }

    /* DARK OVERLAY */
    .about_the_author1 .overlay1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(212, 212, 212, 0.212);
        z-index: 1;
    }

    /* CONTENT LAYOUT */
    .content-container1 {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        z-index: 2;
        gap: 40px;
    }

    /* LEFT SIDE */
    .left-content1 {
        flex: 1 1 150px;
    }



    .left-content1 h1 {
        padding: 10px;
        font-family: "Playfair", serif;
        font-style: normal;
        color: #ab3646;
        font-size: 25px;
        font-weight: 800;
        margin-bottom: 0px;
    }

    .left-content1 h2 {
        font-family: "Playfair", serif;
        font-style: normal;
        color: #752f1a;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .left-content1 p {

        font-family: "Poppins", sans-serif;
        color: #000000;
        font-size: 15px;
        line-height: 1.7;
        width: auto;
        letter-spacing: 0.2px;
    }

    .left-content1 p span {
        color: #F29C1F;
        font-weight: 700;
    }

    .left-content1_btn {
        background: #f29c1f;
        padding: 20px 50px;
        font-size: 16px;
        color: #1f1b17;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .left-content1_btn:hover {
        background: #ffe4ae;
        color: #000;
    }

    /* RIGHT SIDE CARDS */
    .right-content1 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .right-content1 img {
        height: 60vh;
        width: auto;
        filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease;
    }

    .right-content1 img:hover {
        transform: translateY(-10px);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .content-container1 {

            align-items: center;
            flex-direction: column;
            text-align: center;
        }

        .right-content1 {
            align-items: center;
        }
    }


    .contact-section {
        padding: 80px 20%;
        background: #19161200;
        color: #fff;
        font-family: "Poppins", sans-serif;
    }

    .contact-container {
        display: flex;
        justify-content: space-between;
        gap: 50px;
        flex-wrap: wrap;
    }

    :root {
        --gold-main: #f29c1f;
        --gold-soft: #E9C98A;
        --navy-deep: #0E1A2A;
        --midnight: #1B2430;
        --charcoal: #11141A;
        --blue-grey: #4A5763;
    }


    /* LEFT INFO BOX */
    .contact-info-box {
        background: #ab3646;
        padding: 35px;
        width: 360px;
        height: max-content;
        border-radius: 25px;
    }

    .contact-info-box h2 {
        background: #fce7cf;
        padding: 12px;
        text-align: center;
        border-radius: 20px;
        font-size: 22px;
        margin-bottom: 30px;
        color: #752f1a;
    }

    /* INFO ITEMS */
    .info-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
        background: #fce8d0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #752f1a;
    }

    .info-item h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .info-item p {
        color: #ffffff;
        font-size: 14px;
    }

    .contact-info-box hr {
        border: none;
        border-top: 1px solid #ffffff;
        margin: 25px 0;
    }

    /* RIGHT FORM BOX */
    .contact-form-box {
        flex: 1;
        background: #ab3646;
        padding: 40px;
        border-radius: 25px;
        /* border: 1px solid #f29c1f; */
    }

    .contact-form-box h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    /* FORM ROWS */
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-row input,
    .contact-form-box textarea {
        flex: 1;
        width: 100%;
        padding: 14px 10px;
        border-radius: 0;
        border: none;
        outline: none;
        background: transparent;
        color: #fff;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        font-size: 15px;
        transition: border-color 0.3s ease;
    }

    .form-row input::placeholder,
    .contact-form-box textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .form-row input:focus,
    .contact-form-box textarea:focus {
        border-bottom: 2px solid #fff;
    }

    /* MESSAGE BOX */
    .contact-form-box textarea {
        height: 140px;
        resize: vertical;
        margin-bottom: 20px;
    }

    /* SUBMIT BUTTON */
    .submit-btn {
        background: #f29c1f;
        padding: 14px 32px;
        font-size: 16px;
        color: #1f1b17;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: rgb(240, 200, 114);
    }

    /* Button */
    .cart-btn1 {
        position: relative;
        /* margin: auto; */
        padding: 12px 18px;
        transition: all 0.2s ease;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .cart-btn1:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 50px;
        background: #fce7cf;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        z-index: 0;
    }

    .cart-btn1 span {
        position: relative;
        font-family: "Ubuntu", sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #000000;
        /* Adjusted color for dark theme */
        z-index: 1;
    }

    .cart-btn1 svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #000000;
        /* Adjusted color for dark theme */
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
        z-index: 1;
    }

    .cart-btn1:hover:before {
        width: 100%;
        background: #fce7cf;
        /* Changed hover color to match */
    }

    .cart-btn1:hover span,
    .cart-btn1:hover svg {
        color: #ab3646;
        stroke: #ab3646;
    }

    .cart-btn1:hover svg {
        transform: translateX(0);
    }

    .cart-btn1:active {
        transform: scale(0.95);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .contact-container {
            flex-direction: column;
        }

        .contact-section {
            padding: 0px;
        }

        .contact-info-box {
            width: auto;
            border-radius: 0%;
        }

        .contact-form-box {
            border-radius: 0px;
        }
    }

    /* =======================================================
       NEW VIDEO TRAILER SECTION
    ========================================================*/
    .video-trailer-section {
        position: relative;
        width: 100%;
        padding: 10%;
        background-image: url('../images/video\ trailer-background.png');
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        box-sizing: border-box;
    }

    .trailer-content-wrapper {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .trailer-text-content {
        flex: 1;
        max-width: 600px;
    }

    .trailer-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ab3646;
        border: 1px solid #ffffff;
        padding: 6px 16px;
        border-radius: 30px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .trailer-badge i {
        font-size: 10px;
    }

    .trailer-title-top {
        font-size: 38px;
        color: #5e1a14;
        font-weight: 400;
        line-height: 1.2;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .trailer-title-main {
        font-size: 50px;
        color: #5e1a14;
        font-weight: 500;
        line-height: 1.1;
        margin: 0 0 20px 0;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .trailer-description {
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #ab3646;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 450px;
    }

    .trailer-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
    }

    .btn-watch-trailer {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        color: #5e1a14;
        padding: 14px 28px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .btn-watch-trailer:hover {
        background: #ab3646;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .btn-remind-me {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border: 1px solid #ffffff;
        padding: 14px 28px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-remind-me:hover {
        background: #ab3646;
        border-color: #ab3646;
    }

    /* RIGHT SIDE VISUAL */
    .trailer-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .large-play-button {
        display: block;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .large-play-button:hover {
        transform: scale(1.05);
    }

    .play-icon-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        background: rgba(171, 54, 70, 0.6);
        backdrop-filter: blur(5px);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }

    .play-icon-circle i {
        color: #ffffff;
        font-size: 32px;
        margin-left: 6px;
    }

    @media (max-width: 1200px) {
        .trailer-title-top {
            font-size: 10px;
        }

        .trailer-title-main {
            font-size: 25px;
        }

        .play-icon-circle {
            width: 80px;
            height: 80px;
        }
    }

    @media (max-width: 900px) {
        .trailer-content-wrapper {
            flex-direction: column;
            text-align: center;
        }

        .trailer-text-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trailer-description {
            text-align: center;
        }

        .trailer-buttons {
            justify-content: center;
        }

        .trailer-title-top {
            font-size: 10px;
        }

        .trailer-title-main {
            font-size: 25px;
        }

        .play-icon-circle {
            width: 80px;
            height: 80px;
        }

        .video-trailer-section::before {
            background: linear-gradient(to bottom, rgba(94, 26, 20, 0.98) 0%, rgba(94, 26, 20, 0.85) 70%, rgba(171, 54, 70, 0.8) 100%);
        }

        .trailer-visual {
            margin-top: 40px;
        }
    }

    /* -------------------------------------------------------
   📱 300px – 400px (Small Mobiles)
--------------------------------------------------------*/
    @media (min-width:300px) and (max-width:400px) {
        .hero {
            height: 100vh;
            width: 100%;
            /* background: url(../images/John-Paul_Herosection_image-mobile_cover-size.jpg) fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover; */
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            margin-top: 50px;
        }

        .author {
            color: #ffffff;
            font-size: 1rem;
            background: #5f1c14;
            padding: 8px;
            border-radius: 50px;
        }

        .hero-content {
            margin: 0;
            padding: 0 15px !important;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 1.6rem;
            line-height: 1.2;
        }

        .hero-content h2 {
            font-size: 1.5rem;
            line-height: 1.2;
            margin-top: 0;
        }

        .separator-of {
            font-size: 1rem;
            gap: 8px;
            margin: 10px 0;
        }

        .separator-of svg {
            width: 50px;
        }

        .left-content h2,
        .left-content1 h2 {
            font-size: 20px;
        }

        .left-content p,
        .left-content1 p {
            font-size: 13px;
        }

        .about_the_author1 {
            padding: 80px 10%;
        }

        .right-content img {
            height: 25vh;
        }

        .right-content1 img {
            height: 25vh;
        }

        .about_the_author {
            position: relative;
            width: auto;
            margin: 0pc 0px;
            padding: 5pc 5%;
            height: auto;
        }

        .form-row {
            flex-direction: column;
            gap: 12px;
        }

        .submit-btn {
            width: 100%;
        }
    }


    /* -------------------------------------------------------
   📱 401px – 768px (Mobiles + Small Tablets)
--------------------------------------------------------*/
    @media (min-width:401px) and (max-width:767px) {
        .hero {
            height: auto;
            width: 100%;
            /* background: url(../images/John-Paul_Herosection_image-mobile_cover-size.jpg) fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover; */
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            margin-top: 10pc;
        }

        .hero-content {
            margin: 0;
            padding: 0 20px 50px !important;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2em;
            line-height: 1.2;
        }

        .hero-content h2 {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-top: 0;
        }

        .author {
            color: #ffffff;
            font-size: 1rem;
            background: #5f1c14;
            padding: 8px;
            border-radius: 50px;
        }

        .separator-of {
            font-size: 1.2rem;
            gap: 10px;
            margin: 10px 0;
        }

        .separator-of svg {
            width: 60px;
        }

        .content-container,
        .content-container1 {
            text-align: center;
        }

        .right-content,
        .right-content1 {
            align-items: center;
        }


        .left-content h1 {

            font-size: 25px;
        }

        .about_the_author1 {
            padding: 80px 3%;
        }

        .about_the_author {
            position: relative;
            width: auto;
            margin: 0pc 0px;
            padding: 5pc 5%;
            height: auto;
        }

        .right-content img {
            height: 30vh;
        }

        .right-content1 img {
            height: 35vh;
        }

        .form-row {
            flex-direction: column;
            gap: 12px;
        }

        .left-content h2,
        .left-content1 h2 {
            font-size: 32px;
        }

        .publishpletfromlogo_items img {
            height: 70px;
        }

        .contact-section {
            padding: 0%;
        }


        .contact-form-box h1 {
            font-size: 28px;
        }
    }


    /* -------------------------------------------------------
   💻 769px – 1023px (Tablets)
--------------------------------------------------------*/
    @media (min-width:768px) and (max-width:1023px) {
        .hero {
            height: 100vh;
            width: 100%;
            flex-direction: column;
            gap: 0%;
            padding: 3pc 0;
        }

        .hero-image img {
            width: 60vh;
        }

        .hero-content {
            margin: 1pc 0px 0px 0.5pc;
            padding: 0 !important;
            text-align: center;
        }

        .hero-content {
            padding: 20px 0 0 10pc;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content h2 {
            font-size: 2rem;
        }

        .author {
            color: #ffffff;
            font-size: 1.5rem;
            background: #5f1c14;
            padding: 8px;
            border-radius: 50px;
        }

        .about_the_author {
            padding: 2pc 15%;
            height: auto;
        }


        .left-content h2,
        .left-content1 h2 {
            font-size: 32px;
        }

        .contact-section {
            padding: 70px 12%;
        }

        .about_the_author1 {
            padding: 80px 10%;
        }


        .right-contentdiv1 {
            width: 20%;
            height: 10vh;
            /* border: 4px solid #fff; */
            /* border-top: 4px solid #f29c1f; */
            border-left: 4px solid #f29c1f;
            position: absolute;
            margin: 17.5pc 0px 0px -28pc;
        }

        .right-contentdiv2 {
            height: 10vh;
            margin: -1pc 0px 0px 28pc;
        }


        .right-content1div1 {
            width: 20%;
            height: 10vh;
            /* border: 4px solid #fff; */
            border-top: 4px solid #f29c1f;
            border-left: 4px solid #f29c1f;
            position: absolute;
            margin: -1.5pc 0px 0px -25pc;

        }

        .right-content1div2 {
            width: 20%;
            height: 10vh;
            /* border: 4px solid #fff; */
            border-bottom: 4px solid #f29c1f;
            border-right: 4px solid #f29c1f;
            position: absolute;
            margin: 17.5pc 0px 0px 25pc;
        }

        .left-content1 p {

            width: auto
        }


        .form-row {
            flex-direction: column;
            gap: 12px;
        }
    }

    @media (min-width:1280px) {

        .right-content img,
        .right-content1 img {
            height: 70vh;
        }
    }

    /* -------------------------------------------------------
   🖥️ 1024px – 1399px (Small Laptops + Large Tablets)
--------------------------------------------------------*/
    @media (min-width:1024px) and (max-width:1399px) {
        .hero {
            height: 100vh;
            width: 100%;
            /* flex-direction: column; */
            gap: 0%;
            padding: 3pc 0;
        }

        .hero-content {
            padding: 20px 0 0 0pc;
        }

        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-content h2 {
            font-size: 2rem;
        }

        .author {
            color: #ffffff;
            font-size: 1.5rem;
            background: #5f1c14;
            padding: 8px;
            border-radius: 50px;
        }

        .hero-image img {
            width: 65vh;
        }

        .about_the_author,
        .about_the_author1 {
            padding: 80px 2%;
        }

        .right-contentdiv1 {
            width: 15%;
            height: 12vh;
            margin: 13.8pc 0px 0px -1pc;
        }

        .right-contentdiv2 {

            height: 12vh;
            width: 15%;
            margin: -1.5pc 0px 0px 21pc;
        }

        .right-content1div1 {
            width: 15%;
            height: 12vh;
            margin: -1.2pc 0px 0px -1pc;

        }

        .right-content1div2 {

            height: 12vh;
            width: 15%;
            margin: 13.5pc 0px 0px 18.5pc;
        }


        .left-content h2,
        .left-content1 h2 {
            font-size: 32px;
        }

        .contact-section {
            padding: 80px 2%;
        }

        .contact-container {
            gap: 13px;
        }

        .author-quote-card .author-signature {
            transform: rotate(349deg);
            position: absolute;
            margin: 0pc;
        }
    }


    @media (min-width:1400px) and (max-width:1699px) {

        .hero-content {
            padding: 20px 0 0 0pc;
        }

        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-content h2 {
            font-size: 2rem;
        }

        .author {
            color: #ffffff;
            font-size: 1.5rem;
            background: #5f1c14;
            padding: 8px;
            border-radius: 50px;
        }

        .about_the_author,
        .about_the_author1 {
            padding: 80px 2%;
        }



        .right-contentdiv1 {
            width: 15%;
            height: 20vh;
            margin: 12pc 0px 0px -1pc;
        }

        .right-contentdiv2 {

            height: 20vh;
            width: 15%;
            margin: -1.5pc 0px 0px 24pc;
        }

        .right-content1div1 {
            width: 15%;
            height: 20vh;
            margin: -1.2pc 0px 0px -1pc;

        }

        .right-content1div2 {

            height: 20vh;
            width: 15%;
            margin: 15pc 0px 0px 24pc;
        }


        .left-content h2,
        .left-content1 h2 {
            font-size: 32px;
        }

        .contact-section {
            padding: 80px 2%;
        }

        .contact-container {
            gap: 13px;
        }
    }

    /* =======================================================
       VIDEO MODAL STYLES
    ========================================================*/
    .video-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        align-items: center;
        justify-content: center;
    }

    .video-modal-content {
        position: relative;
        width: 90%;
        max-width: 900px;
        background: #000;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    }

    .close-modal {
        position: absolute;
        top: -40px;
        right: 0;
        color: #ffffff;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-modal:hover {
        color: #ab3646;
    }

    .modal-video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 ratio */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
    }

    .modal-video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        outline: none;
    }

    .review-section {
        padding: 80px 10%;
        background: #faf3e8;
        position: relative;
    }

    .review-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .review-text {
        flex: 1;
        text-align: left;
        padding-right: 20px;
    }

    .video-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #d4c0a5;
        padding: 8px 16px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #4a2114;
        margin-bottom: 30px;
    }

    .video-badge i {
        font-size: 20px;
    }

    .quote-icon {
        font-family: "Playfair Display", serif;
        font-size: 9rem;
        color: #d4c0a5;
        line-height: 0.5;
        margin-bottom: -20px;
    }

    .review-text h2 {
        font-family: "Playfair Display", serif;
        color: #4a2114;
        font-size: 70px;
        margin-bottom: 15px;
        line-height: 1.1;
        font-weight: 700;
    }

    .floral-divider {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        color: #cbb493;
    }

    .floral-divider span {
        display: block;
        width: 40px;
        height: 1px;
        background: #cbb493;
    }

    .floral-divider i {
        font-size: 12px;
    }

    .review-text p {
        font-family: "Poppins", sans-serif;
        color: #444;
        font-size: 16px;
        margin: 0;
        line-height: 1.6;
    }

    .review-video-wrapper {
        flex: 0.7;
        padding: 12px;
        background: #faf3e8;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 0 0 1px #e3d2be;
        position: relative;
    }

    .review-video {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background: #000;
    }

    .review-video video {
        width: 100%;
        height: auto;
        display: block;
    }

    .review-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: rgba(74, 33, 20, 0.75);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .review-play-btn i {
        color: #fff;
        font-size: 24px;
        margin-left: 4px;
    }

    .review-play-btn:hover {
        background: rgba(74, 33, 20, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }

    @media (max-width: 1400px) {
        .video-badge {
            font-size: 13px;
        }

        .review-text h2 {
            font-size: 50px;
        }

        .review-container {
            max-width: 800px;
        }
    }

    @media (max-width: 1200px) {
        .review-container {
            flex-direction: row;
            text-align: left;
        }

        .review-text {
            flex: 1;
            text-align: left;
        }

        .quote-icon {
            font-size: 7rem;
        }

        .review-text h2 {
            font-size: 50px;
        }

        .review-video-wrapper {
            width: 90%;
            margin: 0 auto;
        }
    }


    @media (max-width: 900px) {
        .review-container {
            flex-direction: row;
            text-align: left;
        }

        .review-text {
            flex: 1;
            text-align: left;
        }

        .quote-icon {
            font-size: 6rem;
        }

        .review-text h2 {
            font-size: 40px;
        }

        .review-video-wrapper {
            width: 90%;
            margin: 0 auto;
        }
    }

    @media (max-width: 690px) {

        .review-container {
            flex-direction: column;
            text-align: left;
        }

        .review-text {
            flex: 1;
            text-align: left;
            padding-right: 0px;
        }

        .quote-icon {
            font-size: 6rem;
        }

        .review-text h2 {
            font-size: 35px;
        }

        .review-video-wrapper {
            width: 90%;
            margin: 0 auto;
        }
    }