/* ========================= GLOBAL RESET & BASE ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Final Fonts */


@font-face {
    font-family: baloosemibold;
    src: url("../fonts/Baloo2-SemiBold.ttf");
}

@font-face {
    font-family: baloobold;
    src: url("../fonts/Baloo2-Bold.ttf");
}


@font-face {
    font-family: balooextrabold;
    src: url("../fonts/Baloo2-ExtraBold.ttf");
}

@font-face {
    font-family: baloomedium;
    src: url("../fonts/Baloo2-Medium.ttf");
}

@font-face {
    font-family: balooregular;
    src: url("../fonts/Baloo2-Regular.ttf");
}


html {
    height: 100%;
    overflow: auto;
}

body {
    font-family: balooregular;
    background-color: #f9f9f9;
    /* color: #333; */
    overflow-x: hidden !important;
    padding-top: 20px;
    /* header height ke hisaab se */
    min-height: 100vh;
    overflow: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    align-items: center;

}


/* ========================= HEADER ========================= */


img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.site-header {
    background: #5025d1;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: fixed;
    /* IMPORTANT */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.35s ease;
    /* smooth hide */
}

/* SCROLL DOWN PE HIDE */
.site-header.hide {
    transform: translateY(-100%);
}


/* ========================= SIDE HEADER ========================= */
.header-flex {
    display: grid;
    gap: 15px;
    justify-content: center;
    position: relative;
}

.site-header .sicon {
    position: absolute;
    right: 20px;
    color: #ffffff;
    font-size: 22px;
}

.site-header .sicon i {
    margin-left: 10px;
}

.site-header .sicon i:hover {
    color: #ccc;
}

.menu-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    left: 20px;
    font-size: 1.5rem;
    font-family: baloobold;
}


.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: #5025d1;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    padding: 125px 37px;
    transition: left 0.4s ease;
    z-index: 9999;
}

.side-menu.active {
    left: 0;
}

.close-btn {
    position: absolute;
    font-size: 37px;
    background: none;
    color: #ffffff;
    border: none;
    cursor: pointer;
    float: left;
    margin-bottom: 20px;
    left: 215px;
    top: 4px;

}

.side-nav a {
    display: block;
    padding: 5px 0;
    color: #ffffff;
    border-bottom: 0px solid #eee;
    font-size: 1.6rem;
    padding-top: 5px;
    font-family: baloobold;
    line-height: 1.6;

}

.side-nav a:hover {
    color: #ccc;

}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.logo {
    align-items: center;
    align-content: center;
    text-align: center
}


.logo h1 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    line-height: 0.9;
    font-family: baloobold;


}

.logo span {
    font-size: 16px;
    color: #ffffff;
    display: block;
    /* सेंटर अलाइनमेंट बेहतर करने के लिए */
    text-align: center;
}




/* ========================= HERO SECTIONS ========================= */
.hero-section {
    position: relative;
    height: 95vh;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1;
    font-family: logo-font;

    font-family: baloobold;

}

.hero-left span {
    color: #ffffff
}

.hero-left p {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
    text-align: justify;
    font-family: balooregular;

}

.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 7px;
    border: 1px solid #ffffff;

}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}


/* ========================= BUTTONS ========================= */
.btn1 {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 0px;
    margin-top: 20px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 1rem;
    font-family: balooextrabold;
}

.slider-primary-btn {
    background: none;
    color: rgb(255, 255, 255);
    border-radius: 0px;
    font-size: 1rem;
    font-family: balooextrabold;
}

.slider-primary-btn:hover {
    background: #5025d1;
    color: #ffffff;
    border: 1px solid #5025d1;

}

.btn2 {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 0px;
    margin-top: 20px;
    font-size: 1rem;
    font-family: balooextrabold;
    border: 1px solid rgb(255, 255, 255);   
}

.slider-secondary-btn {
    background: none;
    color: rgb(255, 255, 255);
    border-radius: 0px;
        font-size: 1rem;
    font-family: balooextrabold;
}

.slider-secondary-btn:hover {
    background: #5025d1;
    color: #ffffff;
    border: 1px solid #5025d1;

}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 0px;
    margin-top: 20px;
    border: 1px solid #ffffff;
    font-size: 1rem;
    font-family: balooextrabold;
}

.primary-btn {
    background: none;
    color: #ffffff;
    border-radius: 0px;
        font-size: 1rem;
    font-family: balooextrabold;
}

.primary-btn:hover {
    background: #5025d1;
    color: #ffffff;
    border: 1px solid #5025d1;

}

/* ========================= featured work SECTIONS ========================= */

.featured-work {
    background: #000000;
    padding: 80px 0;
}

/* FLEX LAYOUT */
.featured-flex {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: justify;
}

/* RIGHT CONTENT */
.featured-right h2 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    line-height: 0.9;
    font-family: baloobold;
}



.featured-right p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    max-width: 450px;
    font-family: balooregular;
}

.featured-right li {
    font-size: 16px;
    font-family: balooregular;
    margin-left: 30px;
    color: #ffffff;

}

.featured-right b {
    font-size: 1.1rem;
    font-family: balooregular;
}

/* ART GRID */
.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.featured-work .art-item {
    cursor: pointer;
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #a7a7a7;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


.featured-work .art-item:hover {
    background-color: #5025d1;
    /* hover background */
    box-shadow:
        0 15px 35px #5025d1;
    /* strong shadow */
    transform: translateY(-15px);

}

.art-item:hover h3 {
    transform: translateY(-8px);
    color: #ffffff;
}

.art-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    padding: 7px;
}

.art-item h3 {
    padding: 12px;
    font-size: 1.3rem;
    color: rgb(0, 0, 0);
     font-family: baloomedium;
    


}

.feature-gif {
    display: none;
    position: absolute;
    float: right;
    right: 640px;
     top: 450px;
    height: 220px;
    width: 220px;
    overflow: hidden;
    transform: scaleX(-1);
    z-index: 11;
}

.feature-gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(45deg);

}

/* FULL ART ITEM LINK */
.art-link {
    display: block;
    text-decoration: none;
    color: inherit;
}



/* ========================= Projects Section - Not using========================= */

.services-section {
    background: #000000;
    padding: 90px 0;
}

.services-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    font-size: 40px;
    font-family: h1-font;
}



/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.service-box {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    overflow: hidden;
    border-left: 5px solid #5025d1;
    transition: all 0.45s ease;
}

/* SLIDING BACKGROUND */
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #5025d1;
    transform: translateX(-100%);
    transition: transform 0.45s ease;
    z-index: 0;
}

/* CONTENT */
.service-box h3,
.service-box p {
    position: relative;
    z-index: 2;
    font-family: paragraph;
}

.service-box h3 {
    font-size: 20px;
    color: #5025d1;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.service-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    transition: color 0.4s ease;
    font-family: paragraph;
}

/* HOVER */
.service-box:hover::before {
    transform: translateX(0);
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.service-box:hover h3,
.service-box:hover p {
    color: #ffffff;
}

/* ===== Arrow CTA ===== */
.service-box {
    position: relative;
    text-decoration: none;
}

.service-box .arrow {
    position: absolute;
    right: 40px;
    bottom: 0px;
    font-size: 50px;
    font-weight: 700;
    color: #5025d1;
    transition:
        transform 0.4s ease,
        color 0.4s ease;
}

/* Hover arrow animation */
.service-box:hover .arrow {
    transform: translateX(8px);
    color: #ffffff;
}

/* Cursor feedback */
.service-box {
    cursor: pointer;
}

*/
/* ================= LATEST WORKS ================= */

.latest-works {
    padding: 40px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.336),
            rgba(0, 0, 0, 0.336)), url(../images/slider1.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.latest-works .container {
    width: 100%;
    max-width: 1220px;
    margin: auto;
}

/* HEADER */
.works-header {
    text-align: center;
    margin-bottom: 50px;
    margin: 30px 0;
    ;
}

.works-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    font-family: baloobold;

}

.works-header p {
    font-size: 16px;
    color: #000000;
    margin-top: 15px;
    font-family: balooregular;
    line-height: 1;

}

/* SLIDER WRAPPER */
.works-slider-wrapper {
    position: relative;
    margin: 0 0px;
    /* proper spacing */
}

/* SLIDER VIEW */
.works-slider {
    overflow: hidden;
    background: none;
    padding: 15px 0;
}

/* TRACK */
.works-track {
    display: flex;
    gap: 30px;
    animation: worksScroll 10s linear infinite;
    will-change: transform;
}

/* PAUSE ON HOVER */
.works-slider:hover .works-track {
    animation-play-state: paused;
}

/* WORK ITEM */
.work-item {
    min-width: 260px;
    text-align: center;
    background: none;
}

.work-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    padding: 7px;
    border: 1px solid #e2e2e2;
    background: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.work-item:hover img {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px #5025d1;
    background: #5025d1;
}

.work-item h3 {
    margin-top: 0px;
    font-size: 1.3rem;
    color: #000000;
    font-family: baloomedium;
}

.work-item span {
    margin-top: 0px;
    font-size: 1rem;
    color: #000000;

    font-family: balooregular;
    color: #5025d1;
    line-height: 1px;
}

/* ARROWS */
.works-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgb(56 118, 29);
    background: #fff;
    color: rgb(56 118, 29);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.works-arrow:hover {
    background: rgb(56 118, 29);
    color: #fff;
}

.works-arrow.left {
    left: -45px;
}

.works-arrow.right {
    right: -45px;
}

/* ANIMATION */
@keyframes worksScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ========================= Why Choose Me ========================= 

.why-choose {
    position: relative;
    padding: 65px 0;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.336),
        rgba(0, 0, 0, 0.336)
    ), url(../images/why-choose.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 15px;
}

.why-header h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 0.9;
}

.why-header p {
    color: #dddddd;
    font-size: 16px;
    line-height: 1.6;
}

/* List Grid */
/* .why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
} */

/* Item 
.why-list li {
    display: flex;
    gap: 15px;
   background: rgba(255, 255, 255, 0.08);
    padding: 12px;
   /* border-left: 4px solid #5025d1;
    backdrop-filter: blur(4px);
transition: transform 0.3s ease, background 0.3s ease;
}*/


/*
.why-list li:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
} */

/* Icon 
.why-list .icon {
    font-size: 22px;
    color: #5025d1;
    flex-shrink: 0;
    margin-top: 3px;
} */

/* Text 
.why-list h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
} 

.why-list p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
} */



/* ========================= All CTA Page ========================= */
.cta {
    
    background: #f0f0f0;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;

    font-family: baloobold;

}

.cta p {
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 20px;
    font-family: balooregular;
}

.cta .primary-btn {
    background: none;
    color: #5025d1;
    border-radius: 0px;
    border: 1px solid #5025d1;
    font-family: balooextrabold;
    font-size: 1rem;

}

.cta .primary-btn:hover {
    background: none;
    color: #ffffff;
    border-radius: 0px;
    border: 1px solid #5025d1;
    background: #5025d1;
}


.cta-gif {
    display: none;
    position: relative;
    float: right;
     transform: translate(200px);
    height: 220px;
    width: 300px;
    overflow: hidden;
    transform: scaleX(-1);
    z-index: 11;
    display: flex;
    justify-content: flex-end;

}

.cta-gif img {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(0deg);
    right: 0;
    bottom: 30px;
    left: 50px;
}

/* ========================= FOOTER ========================= */
.site-footer {
    background: #000000;
    color: rgb(255, 255, 255);
    padding-top: 70px;
    border-top: 1px solid #ffffff;
}

/* TOP AREA */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 50px;
}

/* COLUMNS */
.footer-col h3 {
    font-size: 1.3rem;

    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-family: baloomedium;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.3rem;

    font-family: baloomedium;

}

.footer-col ul li a:hover {
    text-decoration: none;
    color: #5025d1;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 10px;
    color: #fff;
    outline: none;
    font-family: balooregular;
    width: 145px;
}

.newsletter-form button {
    background: rgb(255, 255, 255);
    border: none;
    padding: 10px 8px;
    cursor: pointer;

    font-family: balooextrabold;
    font-size: 1rem;
}


.newsletter-form button:hover {
    background: #5025d1;
    color: #ffffff;


}


/* SOCIAL */
.social-title {
    margin-bottom: 10px;
}

.footer-social a {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-right: 15px;
}

.footer-social a:hover {
    color: #5025d1;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgb(255, 255, 255);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    font-family: balooregular;
}

.footer-bottom a {
    color: rgb(255, 255, 255);
    margin-left: 10px;
    text-decoration: none;
}

/* ========================= Menu page ========================= */

.page-hero {
    position: relative;
    color: #ffffff;
    padding: 150px 0;
    overflow: hidden;

}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Overlay */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.233);
    z-index: 2;
}

/* Content */
.page-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT aligned */
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    /* tight spacing */
        line-height: 1;
    font-family: baloobold;



}

.page-hero p {
    font-size: 16px;
    max-width: 650px;
    margin-top: 0;
    /* no gap above */
    opacity: 0.9;
    text-align: justify;
    font-family: balooregular;
}


.text-highlight {
    background: #000000b4;
    /* blue highlight */
    color: #fff;
    /* white text */
    padding: 4px 8px;
    /* space around text */
    display: inline;
    /* stay wrapped with text */
    box-decoration-break: clone;
    /* multi-line background continue */
    -webkit-box-decoration-break: clone;
}


/* ========================= PAGE BODY SECTION ========================= */

.page-body {
    padding: 80px 0;
    background: #020202;
}

.page-heading {
    position: relative;
    bottom: 40px;
    width: auto;
}

.page-heading h1 {
    font-size: 3rem;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 8px;
}

.page-heading p {
    color: white;
    text-align: left;
    font-family: balooregular;
}

/* GRID */
.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
    /* ✅ equal height fix */
}

/* CARD */
.page-box {
    cursor: pointer;
    display: flex;
    height: 100%;
    /* ✅ equal height */
    background: none;
    border: 1px solid #e5e5e5;
    padding: 7px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.page-box a {
    text-decoration: none;
    color: inherit;
}

.page-box:hover {
    background-color: #5025d1;
    box-shadow: 0 15px 35px #5025d1;
    transform: translateY(-15px);
    color: #ffffff;
}

/* IMAGE */
.page-image {
    width: 50%;
    min-width: 150px;
    overflow: hidden;
}

.page-image img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.page-content {
    padding: 12px;
    position: relative;
    display: flex;
    /* ✅ flex layout */
    flex-direction: column;
    /* ✅ vertical stack */
    height: 100%;
    /* ✅ stretch content */
}

.page-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
    font-family: baloobold;

}

.page-content p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    flex-grow: 1;
    font-family: balooregular;
    /* ✅ main equal height trick */
}

/* ARROW BUTTON */
.page-arrow {
    position: absolute;
    bottom: 0px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: none;
    color: #ffffff;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.page-box:hover .page-arrow {
    color: #ffffff;
    transform: translateX(6px);
}

.page-price {
    font-size: 16px;
    font-weight: 700;
    color: #5025d1;
    margin-top: 10px;
    margin-bottom: 35px;
}



/* ========================= Blogs Listing  ========================= */

.blog-section {
    padding: 80px 0;
    background: #020202;
}

.blog-section h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 50px;
    font-family: baloobold;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(minmax(280px, 1fr));
    gap: 30px;
}


.blog-card {
    display: flex;
    background: #0d0d0d;
    border: 1px solid #ccc;
    transition: all 0.35s ease;
    overflow: hidden;
    position: relative;
}

.blog-card:hover {
    background: #5025d1;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #5025d1;
}


.blog-content {
    padding: 30px;
    width: 60%;
    min-width: 0;
}

.blog-meta {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.blog-card:hover .blog-meta {
    color: #ffffff;
}


.blog-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: baloobold;
    line-height: 1;
}

.blog-content h2 a {
    color: #ffffff;
    text-decoration: none;
}

.blog-excerpt {
    font-size: 16px;

    color: #d5d5d5;
    margin-bottom: 35px;
    word-wrap: break-word;
    font-family: balooregular;
    /* --- Naya Line-Clamp Code --- */
    display: -webkit-box;
    /* Flexbox jaisa box model banata hai */
    -webkit-line-clamp: 2;
    /* Aap kitni lines dikhana chahte hain? (Yahan 2 set hai) */
    -webkit-box-orient: vertical;
    /* Box ko vertical alignment deta hai */
    overflow: hidden;
    /* Baaki ka text chhupa deta hai */
}

.blog-card:hover .blog-excerpt {
    color: #ffffff;
}

.blog-image {
    width: 40%;
    height: 350px;
    overflow: hidden;
    padding: 7px
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}


.read-more {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-family: balooextrabold;
    font-size: 1rem;
}

.read-more::after {
    content: " →";
    transition: 0.3s;
}

.blog-card:hover .read-more {
    color: #ffffff;
}

/* ========================= Single page blog ========================= */
.blog-single-content {
    padding: 80px 0;
    background: #020202;
}

.blog-single-content .container {
    max-width: 900px;
    margin: auto;

}

/* FEATURED IMAGE */
.blog-single-image {
    width: 100%;
    height: 420px;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 0px;
    padding: 7px;
    border: 1px solid #ccc;
}

.blog-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TITLE */
.blog-single-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1;
    /* Ye lines add karein */
    overflow-wrap: break-word;
    word-wrap: break-word;
     font-family: baloobold;
}

/* META */
.blog-single-meta {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 35px;
    font-family: balooregular;
}

/* ARTICLE */
.blog-article {
    color: #dcdcdc;
    font-size: 16px;
    /* Ye line add karein */
    overflow-wrap: break-word;
    text-align: justify;
    font-family: balooregular;
}

.blog-article p {
    font-family: 16px;
    margin-bottom: 22px;
    font-family: balooregular;
    
}

/* HEADINGS */
.blog-article h2 {
    font-size: 40px;
    margin: 40px 0 15px;
    color: #ffffff;
    font-family: h1-font;
}

.blog-article h3 {
    font-size: 20px;
    margin: 30px 0 12px;
    color: #ffffff;
}

/* IMAGES INSIDE CONTENT */
.blog-article img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 6px;
}

/* BLOCKQUOTE */
.blog-article blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background: #0d0d0d;
    border-left: 4px solid #5025d1;
    font-style: italic;
    color: #ffffff;
}


/* ================= Contact ================= */

.contact-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-section .container {
    max-width: 1000px;
    margin: auto;
}

/* SUCCESS / ERROR MESSAGE */
.form-message {
    background: rgba(56, 118, 29, 0.15);
    border-left: 4px solid #5025d1;
    padding: 12px 18px;
    color: #067a2b;
    margin-bottom: 25px;
    font-size: 14px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
}

/* ================= CONTACT FORM ================= */

.contact-form {
    background: none;
    border: 1px solid #5025d1;
    padding: 35px;
    /* 🔽 reduced from 80px */
    max-width: 520px;
    /* 🔽 form ko slim banaya */
    transition: all 0.35s ease;
}

.contact-form h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-family: baloobold;
}

/* FORM GROUP */
.form-group {
    margin-bottom: 14px;
    /* 🔽 spacing kam */
}

.form-group label {
    display: block;
    color: #000000;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: balooregular;

}

/* INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    /* 🔽 compact */
    background: #ffffff;
    border: 1px solid #5025d1;
    color: #000000;
   font-size: 16px;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: balooregular;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #5025d1;
    box-shadow: 0 0 0 2px rgba(56, 118, 29, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    /* 🔽 smaller textarea */
}

/* ================= BUTTON ================= */

.contact-form .btn {
    margin-top: 8px;
    padding: 10px 22px;
    /* 🔽 smaller button */
    font-size: 1rem;
    background: #5025d1;
    color: #ffffff;
    font-family: balooextrabold;
}

.contact-form .btn:hover {

    background: rgb(255 0 0 / 70%);
    color: #ffffff;
    border: 1px solid rgb(255 0 0 / 70%);
}


/* ================= CONTACT INFO ================= */

.contact-info {
    background: rgb(255, 255, 255);
    padding: 35px;
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000000;
    font-family: baloobold;

}

.contact-info p {
   font-size: 16px;
    margin-bottom: 18px;
    color: #000000;
    font-family: balooregular;
}

/* INFO LIST */
.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;


}

.contact-info ul li {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #000000;
    font-family: balooextrabold;

}

.contact-info strong {
    color: #5025d1;
    font-size: 20px;

}



/* ================= ABOUT SECTION ================= 

.about-content {
    padding: 90px 0;
    background: #ffffff;   
    color: #111111;
}

.about-content .container {
    max-width: 900px;
    margin: auto;
}


.about-block {
    margin-bottom: 55px;
}



.about-block h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111111;
    position: relative;
    padding-bottom: 10px;
}

.about-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #5025d1;
}


.about-block p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #444444;
    max-width: 800px;
}



.about-block ol {
    margin-top: 18px;
    padding-left: 22px;
}

.about-block ol li {
    font-size: 16px;
    color: #444444;
    margin-bottom: 10px;
    line-height: 1.7;
}

} */



/* ================= PROFILE SECTION ================= */
.about-profile {
    padding: 100px 0;
    /* Background Image setup */
    background-image: linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)), url('../images/about/about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Isse image scroll nahi hogi, fix rahegi */
    background-repeat: no-repeat;
    color: #ffffff;
    /* Background dark hai isliye text white kiya gaya hai */
}

.profile-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}


.profile-image {
    width: 320px;
    height: 420px;
    overflow: hidden;
    border-radius: 0px;
    padding: 7px;
    border: 1px solid #000000;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.profile-content {
    flex: 1;
}

/* Text visibility behtar karne ke liye updates */
.profile-content h1 {

    margin-bottom: 0px;
    color: #ffffff;
    /* Heading ko white kiya */
    font-size: 3rem;
    font-family: baloobold;
  
}

.profile-role {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    /* Thoda bright green shade solo leveling vibe ke liye */
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: balooregular;


}

.profile-bio {
    font-size: 16px;
    color: #e0e0e0;
    /* Bio text ko light grey kiya taaki dikhne mein asani ho */
    margin-bottom: 0px;
    max-width: 800px;
    text-align: justify;
    font-family: balooregular;
}

.profile-details p {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-family: paragraph;
}

.profile-details strong {
    color: #111;
}

/* BUTTON */
.profile-content .btn {
    margin-top: 30px;
    padding: 12px 28px;
    font-family: balooextrabold;
    font-size: 1rem;
}



/* ================= SECTION ================= */
/* 
.gallery-section {
    padding: 90px 0;
    background: #000000;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}



.gallery-item {
    border: 1px solid #ffffff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    box-sizing: border-box;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #5025d1;
    background: #5025d1;
}



.gallery-image {
    width: 100%;
    height: 260px;
    overflow: hidden;       /* ✔ only image clipped *
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}



.gallery-item h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 14px 6px 6px;
    line-height: 1.3;

    /* 🔥 MOST IMPORTANT FIX 
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}



.gallery-item p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 6px 10px;

    word-wrap: break-word;
    overflow-wrap: break-word;
}



} */



/* ====================== Gallery Section ============================== */
.gallery-section {
    padding: 80px 0;
    background: #000;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ITEM */
.gallery-item {
    border: 1px solid #fff;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    background: #5025d1;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px #5025d1;
}

/* IMAGE */
.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* IMAGE COUNT */
.image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgb(255 0 0 / 70%);
    color: #fff;
    padding: 4px 10px;
    font-size: 16px;
}

/* TEXT */
.gallery-item h2 {
    margin: 15px 0 8px;
    color: #fff;
    font-size: 1.8rem;
    font-family: baloobold;
    line-height: 1.2;
}

.gallery-item p {
    font-size: 16px;
    color: #ddd;
    font-family: balooregular;
}

/* ====================== RESPONSIVE ============================== */

/* Tablets */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-item h2 {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image {
        height: 260px;
    }

    .gallery-item {
        padding: 10px;
    }

    .gallery-item h2 {
        font-size: 1.4rem;
    }

    .gallery-item p {
        font-size: 14px;
    }

    .image-count {
        font-size: 14px;
        padding: 3px 8px;
    }
}

/* ================= LIGHTBOX ================= */

/* LIGHTBOX */
.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
    z-index: 9999;
}

.lightbox.show{
    opacity: 1;
    pointer-events: auto;
}

/* COVERFLOW */
.coverflow{
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 520px;
    perspective: 1600px;
}

.coverflow img{
    position:absolute;
    top:50%;
    left:50%;
    width:300px;
    height:440px;
    object-fit:cover;
    transform-style:preserve-3d;
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1),opacity 0.75s ease;
    box-shadow:0 30px 60px rgba(0, 0, 0, 0.918);
    will-change: transform, opacity;
}


/* STATES */
.coverflow img.active{
    transform: translate(-50%,-50%) scale(1.35);
    z-index: 5;
    opacity: 1;
}

.coverflow img.left{
    transform: translate(-160%,-50%) rotateY(35deg) scale(.95);
    opacity: .7;
}

.coverflow img.left2{
    transform: translate(-260%,-50%) rotateY(45deg) scale(.8);
    opacity: .3;
}

.coverflow img.right{
    transform: translate(60%,-50%) rotateY(-35deg) scale(.95);
    opacity: .7;
}

.coverflow img.right2{
    transform: translate(160%,-50%) rotateY(-45deg) scale(.8);
    opacity: .3;
}

.coverflow img.hidden{
    opacity: 0;
}

/* NAV */
.lightbox .nav{
    position: absolute;
    top: 50%;
    font-size: 60px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 11;
}

.lightbox .prev{ left: 30px; }
.lightbox .next{ right: 30px; }

.close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index:11;
}

/* MOBILE */
@media(max-width:768px){
    .coverflow{ height: 380px; }
    .coverflow img{
        width: 190px;
        height: 280px;
    }
}





.collection-page {
    padding: 60px 0;
    background: #000000;
}

/* HEADER */
.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.collection-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.collection-header p {
    margin-top: 15px;
    font-size: 16px;
    color: #ffffff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: paragraph;
}

/* =========================
   ⭐ 2 ITEMS PER ROW SYSTEM
   ========================= */
.collection-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
}

/* ITEM CARD */
.collection-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #929292;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    box-shadow: 15px 15px 35px #5025d1;
    background: #5025d1;
}

/* TEXT SIDE */
.collection-text {
    flex: 1;
    min-width: 0;
}

.poster-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: baloobold;
}

/* META LIST */
.poster-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.poster-meta li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: balooregular;
    text-align: justify;
    line-height: 1.5;
}

.poster-meta span {
    font-size: 16px;
    font-style: italic;
    font-family: balooregular;
}

/* BUTTON */
.poster-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #5025d1;
    color: #fff;
    font-size: 1rem;
    font-family: balooextrabold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.poster-btn:hover {
    background: #099b10;
}

.collection-item:hover .poster-btn {
    background: rgb(255 0 0 / 70%);
    color: #fff;
}

/* IMAGE */
.collection-image {
    flex-shrink: 0;
}

.collection-image img {
    width: 260px;
    height: 360px;
    object-fit: cover;
    padding: 7px;
    border: 1px solid #5025d1;
    background: #fff;
    display: block;
}

/* =========================
   📱 RESPONSIVE FIX
   ========================= */
@media (max-width: 991px) {
    .collection-list {
       
            grid-template-columns: repeat(2, 1fr);
    }

    .collection-item {
        flex-direction: column-reverse;
        text-align: center;
    }

    .collection-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }
}


@media (max-width: 765px) {
    .collection-list {
       
            grid-template-columns: repeat(1, 1fr);
    }

    .collection-item {
        flex-direction: column-reverse;
        text-align: center;
    }

    .collection-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }
}




/* =====================Story page============================================*/
.teaser-section {
    margin: 0 auto;
    padding: 50px 80px 50px 80px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)), url('../images/slider1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background-color: #000000; */
}

.teaser-card {
    /* background:#5025d1; */
    border-radius: 0px;
    padding: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .08);
}

.teaser-img {
    width: 100%;
    border-radius: 0px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .7);
    padding: 6px;
    border: 1px solid #ccc;
}

.teaser-title {
    font-size: 2.5rem;
    margin: 0 0 5px;
    color: #fff;
    font-family: baloobold;
 
}

.teaser-card h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #fff;
    font-family: balooregular;


}

.teaser-text {
    opacity: .9;
    color: #fff;
    text-align: justify;
    font-size: 16px;
    font-family: balooregular;
    white-space: pre-line;
}



.teaser-section .main-btn {
    margin-top: 16px;
    padding: 12px 28px;
    border-radius: 0px;
    border: none;
    background: #ffffff;
    color: #000000;
    cursor: pointer;

    font-family: balooextrabold;
    font-size: 1rem;

}

.teaser-section .main-btn:hover {

    background: #5025d1;
    color: #ffffff;
    box-shadow: 0 10px 30px #5025d1;
    /* border:1px solid rgba(255,255,255,.08); */
    transition: all 0.3s ease;

}

/* =========== COMIC READER =========== */
.reader-wrapper {

    background-image: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)), url('../images/slider1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background:#000; */
    display: none;
    padding: 0px 35px;
}

.reader-panel {
    /* background:#5025d1; */
    padding: 30px 220px 60px;
    border-radius: 0px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    max-width: 1200px;
    margin: auto;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .08);
}

.panel-count {
    font-size: 1.3rem;
    opacity: .7;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    font-family: baloomedium;
}

.panel-text {
    font-size: 16px;
    text-align: justify;
    min-height: 170px;
    color: #fff;
    font-family: balooregular;
}

.comic-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#readMoreBtn {
    display: block;
    margin: 15px auto 0 auto;
}

/* 👇 New class added */
.nav-group {
    display: flex;
    gap: 10px;
}

.step-btn {
    padding: 10px 22px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #ffffff33;
    color: #000000;
    cursor: pointer;
  font-family: balooextrabold;
    font-size: 1rem;
}

.step-btn span,
.download-icon span {
    position: relative;
    font-size: 16px;
}

.step-btn:hover,
.download-icon:hover {
    background: #5025d1;
    color: #ffffff;
    box-shadow: 0 10px 30px #5025d1;
    /* border:1px solid rgba(255,255,255,.08); */
    transition: all 0.3s ease;
}



.download-icon {
    padding: 10px 22px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #ffffff33;
    color: #000000;
    cursor: pointer;
  font-family: balooextrabold;
    font-size: 1rem;
}




#downloadIcon {
    display: block;
    margin: 15px auto 0 auto;
}

.download-icon:hover {
    /* background:#ff0000; */
    color: #fafafa;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
    transition: 0.3s;
}

/* hidden */
#downloadPdf {
    display: none;
    padding: 10px 22px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #ffffff33;
    color: #000000;
    cursor: pointer;

}

#downloadPdf:hover {

    background: rgb(255 0 0 / 70%);
    border: 1px solid #ffffff33;
    color: #000000;

}


/* Suggation story */

.new-story-section {
    padding: 60px 25px;
    /* background-image: linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .75)), url('../images/slider1.jpeg'); */
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid #ffffff;
}

.section-heading {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 6px;
    font-family: baloobold;

}

.section-sub {
    text-align: center;
    color: #ddd;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-family: paragraph;

}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}



.story-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    border-radius: 0px;
    overflow: hidden;
    background: rgba(0, 0, 0, .55);
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 15px 15px 35px #5025d1;
    background: #5025d1;
}

.story-img {
    width: 100%;
    display: block;
    padding: 7px;
}

.story-content {
    background: none;
    padding: 8px;
    border: 1px solid #ccc;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}


.story-content img {
    width: 150px;
    height: 215px;
    object-fit: cover;
    border: 1px solid #444;

}

.story-text h3 {
    color: #fff;
    margin: 0 0 4px;
    font-family: h3-font;
    font-size: 1.3rem;

}

.genre-tag {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-family: paragraph;
    font-size: 1.1rem;
    font-weight: bold;
}

.story-text p {
    color: #fff;
    line-height: 1.6;
    font-family: paragraph;
    font-size: 16px;

}

.read-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    background: #ffffff;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    font-family: btn-font;
    font-size: 0.7rem;
}

.story-card:hover .read-btn {
    background: rgb(255 0 0 / 70%);
    color: #ffffff;
}





/*=======================Purchase page========================================*/

.purchase-pro {
    background: #000;
    padding: 15px 0;
    border-bottom: 1px solid #969696;
}

/* GLASS CARD */
.purchase-pro-card {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    /* border: 1px solid #999999; */
    box-shadow: 0 0 50px rgba(0, 0, 0, .7);
}

/* LEFT IMAGE AREA */
.pp-left {
    position: relative;
    right: 50px;
}

.pp-badge {
    position: absolute;
    top: 22px;
    left: 111px;
    background: rgb(255 0 0 / 70%);
    color: #fff;
    padding: 6px 12px;
   font-size: 16px;
    font-family: balooregular;
}

.pp-left img {
    cursor: pointer;
    width: 80%;
    border: 4px solid #ffffff;
    background: #fff;
    transition: transform .4s;
    margin-left: 100px;
    margin-top: 10px;
}

.pp-left img:hover {
    transform: scale(1.03);
}

/* TEXT AREA */
.pp-right h1 {
    color: #fff;
    margin-top: 0;
    font-size: 3rem;
    font-family: baloobold;

}

.pp-meta {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: balooregular;

}

.pp-rating {
    color: #ffe767;
    margin-bottom: 12px;

}

.pp-rating span {
    color: #fff;
        font-size: 16px;
    font-family: balooregular;
}

/* DESCRIPTION */
.pp-desc {
    color: #ffffff !important;
    line-height: 1.7;
    margin: 15px 0 10px;
        font-size: 16px;
    font-family: balooregular;
}

/* PRICE BOX */
.pp-price-box {
    background: #5025d1;
    border: 1px solid #5025d1;
    padding: 12px 18px;
    width: max-content;
    margin-bottom: 15px;
}

.pp-price {
    font-size: 26px;
    color: #ffeb69;
       font-size: 16px;
    font-family: balooregular;
}

.pp-offer {
    display: block;
    color: #d3ffd3;
    font-size: 0.9rem;
    font-family: balooregular;
}

/* BUTTONS */
.pp-btn-group a {
    padding: 12px 22px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
    font-size: 1rem;
    font-family: balooextrabold;
}

.pp-btn-buy {
    background: rgb(255 0 0 / 70%);
    color: #fff;
}

.pp-btn-pre {
    background: #067a2b;
    color: #fff;
}

.pp-btn-group a:hover {
    opacity: .85;
    transform: translateY(-2px);
}

/* BENEFITS LIST */
.pp-benefits {
    margin-top: 12px;
    color: #ffffff;
    font-size: 14px;
    list-style: none;
    padding: 0;
}

.pp-benefits li {
    margin-bottom: 6px;
    font-size: 16px;
     font-family: balooregular;
}


.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.zoom-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 85vh;
    margin-top: 40px;
    border: 4px solid #fff;
    animation: zoomIn .3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    font-weight: bold;
}



/*===================Shop similer======================*/

.shop-sec {
    padding: 60px 0;
    background: #000000;
}

.shop-sec h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
     font-family: baloobold;
}

.shop-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shop-item {
    cursor: pointer;
    background: none;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #a7a7a7;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    padding-bottom: 15px;
}

.shop-item:hover {
    background-color: #5025d1;
    /* hover background */
    box-shadow: 0 15px 35px #5025d1;
    /* strong shadow */
    transform: translateY(-15px);
}

.shop-item:hover {
    transform: translateY(-8px);
}


.shop-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    /* border:3px solid #fff; */
    padding: 7px;
}

.shop-item h3 {
    color: #fff;
    margin-top: 10px;
    font-size: 1.3rem;
    font-family: baloomedium;
    
}

.shop-item p {
    color: #caffca;
    font-size: 16px;
    font-family: balooregular;
}

.price {
    display: block;
    color: #ffe66a;
    margin: 8px 0;
    font-size: 16px;
    font-family: baloosemibold;
}

.shop-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #5025d1;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: balooextrabold;
}

.shop-item:hover .shop-btn {
    background: rgb(255 0 0 / 70%);
}



/*===================Related post=====================*/


.related-sec {
    background: #000000;
    padding: 60px 0;
}

.related-sec h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-family: baloobold;
    font-size: 2.5rem;
}

.related-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.r-card {
    cursor: pointer;
    background: none;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #a7a7a7;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.r-card:hover {
    background-color: #5025d1;
    /* hover background */
    box-shadow:
        0 15px 35px #5025d1;
    /* strong shadow */
    transform: translateY(-15px);
}

.art-item:hover {
    transform: translateY(-8px);
}


.r-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    padding: 7px;
    /* border:3px solid #fff; */
}

.r-card h3 {
    color: #fff;
    margin-bottom: 17px;
    font-size: 1.3rem;
       font-family: baloomedium;

}

.r-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #5025d1;
}





/* ============order form================================= */
.order-wrapper {
    background: #000;
    padding: 60px 0;
}

.order-box {
    max-width: 900px;
    margin: auto;
    background: #0f2a0f;
    padding: 30px;
    border: 1px solid #2e6f2b;
    box-shadow: 0 0 40px rgba(0, 0, 0, .7);
    color: #fff;
}

.order-box h2 {
    font-size: 40px;
    margin: 0 0 5px 0;
    font-size: 30px;
    font-family: h1-font;
}

.order-box p {
   font-size: 16px;
    margin-bottom: 15px;
    color: #c4ffc4;
    font-family: paragraph;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-grid .full {
    grid-column: 1 / 3;
}

.order-box label {
    font-size: 13px;
    color: #afffaf;
}

.order-box input,
.order-box textarea {
    width: 100%;
    padding: 10px;
    background: #0b200b;
    border: 1px solid #2f6a2c;
    color: #fff;
    border-radius: 6px;
    margin-top: 4px;
}

.order-submit-btn {
    margin-top: 15px;
    padding: 12px 25px;
    border: none;
    background: rgb(255 0 0 / 70%);
    color: #fff;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.order-submit-btn:hover {
    opacity: .9;
}

/* SUCCESS MESSAGE */
.order-success {
    display: none;
    margin-top: 15px;
    background: #063b14;
    border: 1px solid #3c9b4a;
    padding: 12px;
    border-radius: 6px;
    color: #baffba;
}



/*==================Mobile Tablet Responsive code================================*/


/* ========================= Navbar and sidebar ========================= */

/* Navbar */
@media (max-width: 992px) {
    .logo h1 {
        font-size: 2.4rem;
    }

    .logo span {
        font-size: 13px;
    }

    .menu-btn {
        font-size: 24px;
        left: 15px;

    }

    .site-header .sicon {
        font-size: 22px;
    }

    .side-menu {
        width: 240px;
        padding: 110px 30px;
    }

    .close-btn {
        font-size: 34px;
        left: 200px;
        top: 4px;
    }

    .side-nav a {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .logo span {
        font-size: 12px;
    }

    .menu-btn {
        font-size: 22px;
        left: 12px;

    }

    .site-header .sicon {
        font-size: 20px;
    }

    .side-menu {
        width: 220px;
        padding: 100px 25px;
    }

    .close-btn {
        font-size: 32px;
        left: 185px;
    }

    .side-nav a {
        font-size: 24px;
        padding-top: 4px;
    }
}

@media (max-width: 425px) {
    .logo h1 {
        font-size: 1.8rem;

    }

    .logo span {
        font-size: 11px;
    }

    .menu-btn {
        font-size: 20px;
        left: 0px;
    }

    .site-header .sicon {
        font-size: 18px;
        right: 0px;
    }

    .side-menu {
        width: 200px;
        padding: 90px 20px;
    }

    .close-btn {
        font-size: 28px;
        left: 170px;
    }

    .side-nav a {
        font-size: 22px;
    }

}

@media (max-width: 360px) {
    .logo h1 {
        font-size: 1.5rem;

    }

    .logo span {
        font-size: 10px;
    }

    .menu-btn {
        font-size: 18px;
    }

    .site-header .sicon {
        font-size: 16px;
        right: 0px;
    }

    .side-nav a {
        font-size: 20px;
    }
}


/* ================= HERO RESPONSIVE ONLY ================= */

/* Tablet */
@media (max-width: 992px) {

    .hero-left h1 {

        font-size: 2.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-slider {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {


    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
        padding: 50px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left p {
        text-align: justify;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .hero-slider {
        height: 340px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-slider {
        height: 300px;
    }
}

/* ================= 320px EXTREME ================= */
@media (max-width: 360px) {

    .hero-left h1 {
        font-size: 1.8rem;

    
    }
    .hero-section {
        padding: 30px 0 50px;
    }

    .hero-slider {
        height: 260px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 6px;
        /* flex-wrap: wrap; */
    }
}


/* ============== FEATURED WORK RESPONSIVE ONLY ============== */

/* Tablet */
@media (max-width: 992px) {

    .featured-right h2 {
        font-size: 2.3rem;

    }

    .featured-flex {
        grid-template-columns: 1fr 1fr;
        /* same feel */
        gap: 40px;
    }

    .art-item img {
        height: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .featured-right h2 {
        font-size: 2rem;

    }

    .featured-work {
        padding: 70px 0;
    }

    .featured-flex {
        grid-template-columns: 1fr;
        /* stack */
        gap: 45px;
        text-align: center;
    }

    * 🔥 ORDER CHANGE */
    .featured-right {
        grid-row: 1;
    }

    .featured-left {
        grid-row: 2;
    }

    .featured-right p,
    .featured-right li {
        text-align: justify;
        margin-left: 0;
    }

    .featured-right ul {
        padding-left: 20px;
    }

    .art-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .featured-right h2 {
        font-size: 2rem;

    }

    .featured-work {
        padding: 60px 0;
    }

    .art-grid {
        gap: 18px;
    }

    .art-item img {
        height: 140px;
    }
}

/* ============== 320px EXTREME FIX ============== */
@media (max-width: 360px) {

    .featured-right h2 {
        font-size: 1.8rem;

    }

    .featured-work {
        padding: 55px 0;
    }

    .art-grid {
        grid-template-columns: 1fr;
        /* extreme safety */
        gap: 20px;
    }

    .art-item img {
        height: 160px;
    }
}


/* ============== LATEST WORKS RESPONSIVE ONLY ============== */

/* Tablet */
@media (max-width: 992px) {


    .works-header h2 {
        font-size: 2.5rem;

    }

    .works-track {
        gap: 25px;
    }

    .work-item {
        min-width: 240px;
    }

    .work-item img {
        height: 340px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .works-header h2 {
        font-size: 2rem;

    }

    .latest-works {
        padding: 30px 0;
        background-attachment: scroll;
        /* mobile safety */
    }

    .works-header {
        margin-bottom: 40px;
    }

    .works-track {
        gap: 20px;
    }

    .work-item {
        min-width: 220px;
    }

    .work-item img {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .works-header h2 {
        font-size: 2rem;

    }

    .works-header {
        margin-bottom: 35px;
    }

    .works-track {
        gap: 18px;
    }

    .work-item {
        min-width: 200px;
    }

    .work-item img {
        height: 260px;
    }
}

/* ============== 320px EXTREME FIX ============== */
@media (max-width: 360px) {

    .works-header h2 {
        font-size: 1.8rem;

    }

    .latest-works {
        padding: 50px 0;
    }

    .works-track {
        gap: 15px;
    }

    .work-item {
        min-width: 180px;
    }

    .work-item img {
        height: 240px;
    }
}


/* ============== CTA RESPONSIVE ONLY ============== */

/* Tablet */
@media (max-width: 992px) {



    .cta {
        padding: 55px 0;
    }

    .cta p {
        max-width: 700px;
    }
}

/* Mobile */
@media (max-width: 768px) {


    .cta {
        padding: 50px 0;
        text-align: center;
    }

        .cta h2 {
        font-size: 1.8rem;
    }


    .cta p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {


    .cta {
        padding: 45px 0;
    }


    .cta h2 {
        font-size: 1.8rem;
    
    }

    
    .cta-gif {

    display: none;
    }

}

/* ============== 320px EXTREME FIX ============== */
@media (max-width: 360px) {

    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    
    }

    .cta-gif {

    display: none;
    }



}


/* ============== FOOTER RESPONSIVE ONLY ============== */

/* Tablet */
@media (max-width: 992px) {

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .newsletter-form input {
        width: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .site-footer {
        padding-top: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-form input {
        max-width: 220px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .site-footer {
        padding-top: 50px;
    }

    .newsletter-form input {
        max-width: 200px;
    }
}

/* ============== 320px EXTREME FIX ============== */
@media (max-width: 360px) {

    .site-footer {
        padding-top: 45px;
    }

    .newsletter-form input {
        max-width: 180px;
    }
}


/*================== Respondive Page gero ================== */

/* Tablet */
@media (max-width: 992px) {
    .page-hero {
        padding: 100px 0;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero p {
        font-size: 16px;
        max-width: 550px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero-content {
        align-items: center;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 16px;
        max-width: 90%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-hero {
        padding: 45px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 16px;
    }
}

/* Extreme 320px fix */
@media (max-width: 360px) {
    .page-hero {
        padding: 30px 0;
        height: 50vh;
    }

    .page-hero h1 {
        font-size: 1.8rem;

    }

    .page-hero p {
        font-size: 16px;
        text-align: justify;
    }
}


/* ================== RESPONSIVE PAGE BODY ================== */

/* Tablet */
@media (max-width: 992px) {
    .page-body {
        padding: 60px 0;
    }

    
    .page-image {
    width: 50%;
    min-width: 150px;
    overflow: hidden;
}

.page-image img {
    width: 250px;
    height: 320px;
    object-fit: cover;
    display: block;
}


    .page-heading h1 {
        font-size: 2rem;
    }

    .page-heading p {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 1.6rem;
    }

    .page-content p {
        font-size: 16px;
    }

    .page-price {
       font-size: 16px;
    }

    .page-arrow {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-body {
        padding: 50px 0;
    }

    .page-heading h1 {
        font-size: 1.8rem;
    }

    .page-heading p {
        font-size: 16px;
    }

    .page-grid {
        gap: 20px;
    }

    .page-box {
        flex-direction: row;
        /* stacked on mobile */
    }

      .page-image {
    width: 50%;
    min-width: 150px;
   overflow: hidden;
}

.page-image img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    display: block;
}




    .page-content {
        padding: 10px;
        height: auto;
    }

    .page-content h2 {
        font-size: 1.4rem;
    }

    .page-content p {
        font-size: 16px;
    }

    .page-arrow {
        bottom: 10px;
        right: 15px;
        font-size: 36px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-body {
        padding: 40px 0;
    }

          .page-image {
    width: 50%;
    min-width: 150px;
   overflow: hidden;
}

.page-image img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    display: block;
}


    .page-heading h1 {
        font-size: 1.6rem;
    }

    .page-heading p {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 1.2rem;
    }

    .page-content p {
        font-size: 16px;
    }

    .page-arrow {
        font-size: 30px;
        right: 10px;
    }
}

/* Extreme Mobile 320px fix */
@media (max-width: 360px) {
    .page-body {
        padding: 30px 0;
    }


              .page-image {
    width: 50%;
    min-width: 150px;
   overflow: hidden;
}

.page-image img {
    width: 130px;
    height: 180px;
    object-fit: cover;
    display: block;
}


    .page-heading h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .page-heading p {
        font-size: 16px;
    }

    .page-grid {
        gap: 15px;
    }

    .page-content h2 {
        font-size: 1.1rem;
    }

    .page-content p {
        font-size: 16px;
    }

    .page-arrow {
        font-size: 28px;
        right: 8px;
    }
}


/* ================= BLOG SECTION RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-content h2 {
        font-size: 2.5rem;
    }

    .blog-excerpt {
        font-size: 16px;
    }

    .blog-meta {
        font-size: 13px;
    }

    .blog-card {
        flex-direction: row;
    }

    .blog-content {
        width: 60%;
        padding: 20px;
    }

    .blog-image {
        width: 40%;
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-grid {
        gap: 20px;
    }

    .blog-card {
        flex-direction: column;
        height: auto;
    }

    .blog-content {
        width: 100%;
        padding: 15px;
    }

    .blog-image {
        width: 100%;
        height: 250px;
        padding: 5px;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .blog-excerpt {
        font-size: 16px;
    }

    .blog-meta {
        font-size: 12px;
    }

    .read-more {
        bottom: 15px;
        left: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .blog-excerpt {
        font-size: 16px;
    }

    .blog-meta {
        font-size: 11px;
    }

    .blog-image {
        height: 200px;
    }

    .read-more {
        bottom: 10px;
        left: 10px;
    }
}

/* Extreme Mobile 320px fix */
@media (max-width: 360px) {
    .blog-section {
        padding: 30px 0;
    }

    .blog-content h2 {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .blog-excerpt {
        font-size: 16px;
    }

    .blog-meta {
        font-size: 10px;
    }

    .blog-image {
        height: 180px;
    }

    .read-more {
        bottom: 8px;
        left: 8px;
        font-size: 0.8rem;
    }
}

/* ================= BLOG SINGLE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .blog-single-content {
        padding: 60px 0;
    }

    .blog-single-image {
        height: 350px;
    }

    .blog-single-content h1 {
        font-size: 2.5rem;
    }

    .blog-single-meta {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .blog-article {
        font-size: 16px;
        line-height: 1.7;
    }

    .blog-article h2 {
        font-size: 2.5rem;
        margin: 30px 0 12px;
    }

    .blog-article h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-single-content {
        padding: 50px 0;
    }

    .blog-single-image {
        height: 280px;
        padding: 5px;
    }

    .blog-single-content h1 {
        font-size: 2rem;
    }

    .blog-single-meta {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .blog-article {
        font-size: 15px;
        line-height: 1.6;
    }

    .blog-article h2 {
        font-size: 2rem;
        margin: 25px 0 10px;
    }

    .blog-article h3 {
        font-size: 16px;
    }

    .blog-article img {
        margin: 20px 0;
    }

    .blog-article blockquote {
        margin: 25px 0;
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-single-content {
        padding: 40px 0;
    }

    .blog-single-image {
        height: 220px;
        padding: 3px;
    }

    .blog-single-content h1 {
        font-size: 1.7rem;
    }

    .blog-single-meta {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .blog-article {
        font-size: 14px;
        line-height: 1.5;
    }

    .blog-article h2 {
        font-size: 1.8rem;
        margin: 20px 0 8px;
    }

    .blog-article h3 {
        font-size: 15px;
    }

    .blog-article img {
        margin: 15px 0;
    }

    .blog-article blockquote {
        margin: 20px 0;
        padding: 15px 20px;
    }
}

/* Extreme Mobile 320px fix */
@media (max-width: 360px) {
    .blog-single-content {
        padding: 30px 0;
    }

    .blog-single-image {
        height: 180px;
    }

    .blog-single-content h1 {
        font-size: 1.5rem;
    }

    .blog-single-meta {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .blog-article {
        font-size: 13px;
        line-height: 1.4;
    }

    .blog-article h2 {
        font-size: 1.5rem;
        margin: 15px 0 6px;
    }

    .blog-article h3 {
        font-size: 14px;
    }

    .blog-article img {
        margin: 10px 0;
    }

    .blog-article blockquote {
        margin: 15px 0;
        padding: 12px 15px;
    }
}


/* ================= CONTACT SECTION RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        max-width: 100%;
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px 10px;
    }

    .contact-form .btn {
        font-size: 13px;
        padding: 8px 20px;
    }

    .contact-info {
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .contact-info p,
    .contact-info ul li,
    .contact-info strong {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 7px 10px;
    }

    .contact-form .btn {
        font-size: 12px;
        padding: 7px 18px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p,
    .contact-info ul li,
    .contact-info strong {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 1.7rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 11px;
        padding: 6px 8px;
    }

    .contact-form .btn {
        font-size: 11px;
        padding: 6px 15px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info h2 {
        font-size: 1.7rem;
    }

    .contact-info p,
    .contact-info ul li,
    .contact-info strong {
        font-size: 16px;
    }
}

/* Extreme Mobile 320px fix */
@media (max-width: 360px) {
    .contact-section {
        padding: 25px 0;
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 10px;
        padding: 5px 6px;
    }

    .contact-form .btn {
        font-size: 10px;
        padding: 5px 12px;
    }

    .contact-info {
        padding: 12px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p,
    .contact-info ul li,
    .contact-info strong {
        font-size: 16px;
    }
}


/* ================= PROFILE SECTION RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .about-profile {
        padding: 80px 0;
        background-attachment: scroll;
        /* Scrollable for smaller screens */
    }

    .profile-card {
        flex-direction: column;
        gap: 40px;
    }

    .profile-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .profile-content h1 {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .profile-role {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .profile-bio {
        font-size: 16px;
        max-width: 100%;
    }

    .profile-details p,
    .profile-details strong {
        font-size: 15px;
    }

    .profile-content .btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-profile {
        padding: 60px 0;
    }

    .profile-content h1 {
        font-size: 2.5rem;
    }

    .profile-role {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .profile-bio {
        font-size: 16px;
    }

    .profile-content .btn {
        font-size: 1rem;
        padding: 8px 22px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-profile {
        padding: 50px 0;
    }

    .profile-content h1 {
        font-size: 2rem;
    }

    .profile-role {
        font-size: 0.85rem;
    }

    .profile-bio {
        font-size: 16px;
    }

    .profile-content .btn {
        font-size: 1rem;
        padding: 6px 20px;
    }
}

/* Extreme Mobile 360px fix */
@media (max-width: 360px) {
    .about-profile {
        padding: 40px 0;
    }

    .profile-content h1 {
        font-size: 1.8rem;
    }

    .profile-role {
        font-size: 0.8rem;
    }

    .profile-bio {
        font-size: 16px;
    }

    .profile-content .btn {
        font-size: 1rem;
        padding: 5px 16px;
    }
}


/*====================== Gallery Section RESPONSIVE ==============================*/



/* ================= Teaser Section RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 992px) {
    .teaser-section {
        grid-template-columns: 1fr;
        /* single column layout */
        padding: 50px 40px;
        gap: 30px;
        background-attachment: scroll;
        /* fixed image not suitable for tablet */
    }

    .teaser-img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .teaser-title {
        font-size: 2.4rem;
    }

    .teaser-card h4 {
        font-size: 1rem;
    }

    .teaser-text {
        font-size: 16px;
    }

    .teaser-section .main-btn {

        padding: 10px 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .teaser-section {
        padding: 40px 20px;
        gap: 25px;
    }

    .teaser-img {
        max-height: 250px;
    }

    .teaser-title {
        font-size: 2.2rem;
    }

    .teaser-card h4 {
        font-size: 0.95rem;
    }

    .teaser-text {
        font-size: 16px;
    }

    .teaser-section .main-btn {

        padding: 8px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .teaser-section {
        padding: 30px 15px;
        gap: 20px;
    }

    .teaser-img {
        max-height: 200px;
    }

    .teaser-title {
        font-size: 2rem;
    }

    .teaser-card h4 {
        font-size: 0.85rem;
    }

    .teaser-text {
        font-size: 16px;
    }

    .teaser-section .main-btn {

        padding: 6px 16px;
    }
}

/* Extreme Mobile 320px */
@media (max-width: 360px) {
    .teaser-section {
        padding: 25px 10px;
    }

    .teaser-img {
        max-height: 180px;
    }

    .teaser-title {
        font-size: 1.8rem;
    }

    .teaser-card h4 {
        font-size: 0.8rem;
    }

    .teaser-text {
        font-size: 16px;
    }

    .teaser-section .main-btn {
        padding: 5px 14px;
    }
}


/* ================= COMIC READER RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .reader-wrapper {
        padding: 0 25px;
        background-attachment: scroll;
        /* fixed not suitable for tablet */
    }

    .reader-panel {
        padding: 25px 50px 40px;
    }

    .panel-count {
        font-size: 22px;
    }

    .panel-text {
        font-size: 16px;
        min-height: 150px;
    }

    .step-btn,
    .download-icon {

        padding: 8px 20px;
    }

    .nav-group {
        gap: 5px;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .reader-panel {
        padding: 20px 20px 30px;
    }

    .panel-count {
        font-size: 20px;
    }

    .panel-text {
        font-size: 15px;
        min-height: 130px;
    }

    .step-btn,
    .download-icon {

        padding: 7px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .reader-panel {
        padding: 15px 15px 25px;
    }

    .panel-count {
        font-size: 18px;
    }

    .panel-text {
        font-size: 14px;
        min-height: 110px;
    }

    .step-btn,
    .download-icon {

        padding: 6px 14px;
    }
}

/* Extreme Mobile 320px */
@media (max-width: 360px) {
    .reader-panel {
        padding: 12px 10px 20px;
    }

    .panel-count {
        font-size: 16px;
    }

    .panel-text {
        font-size: 13px;
        min-height: 90px;
    }

    .step-btn,
    .download-icon {
        font-size: 0.5rem;
        padding: 5px 12px;
    }
}

/* ================= NEW STORY SECTION ================= */
.new-story-section {
    padding: 60px 25px;
    background: #000000;
    /* background-image: linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .75)) ; , url('../images/slider1.jpeg'); */
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid #ffffff;
}

/* Heading */
.section-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 6px;
    font-size: 2.5rem;
    margin-bottom: 6px;
    font-family: baloobold;

}

.section-sub {
    text-align: center;
    color: #ddd;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: balooregular;
    line-height: 1;
}

/* Grid */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Story Card */
.story-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    border-radius: 0px;
    overflow: hidden;
    background: rgba(0, 0, 0, .55);
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 15px 15px 35px #5025d1;
    background: #5025d1;
}

/* Story Content */
.story-content {
    background: none;
    padding: 8px;
    border: 1px solid #ccc;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.story-content img {
    width: 150px;
    height: 215px;
    object-fit: cover;
    border: 1px solid #444;
}

/* Text */
.story-text h2 {
    color: #fff;
    margin: 0 0 4px;
    font-family: baloobold;
    font-size: 1.8rem;

}

.genre-tag {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: balooregular;

}

.story-text p {
    color: #fff;
    font-family: balooregular;
    font-size: 16px;
}

.read-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    background: #ffffff;
    color: #000;
    cursor: pointer;
    font-family: balooextrabold;
    font-size: 1rem;
}

.story-card:hover .read-btn {
    background: rgb(255 0 0 / 70%);
    color: #ffffff;
}





/* ================= Story RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .story-content {
        flex-direction: row;
        gap: 12px;
    }

    .story-content img {
        width: 130px;
        height: 185px;
    }

    .story-text h3 {
        font-size: 1.2rem;
    }

    .story-text p {
        font-size: 16px;
    }

    .read-btn {
        font-size: 1rem;
        padding: 8px 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .story-content img {
        width: 180px;
        height: 260px;
        margin-bottom: 10px;
    }

    .story-text h3 {
        font-size: 1.15rem;
    }

    .story-text p {
        font-size: 16px;
    }

    .read-btn {
        font-size: 1rem;
        padding: 7px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .story-content img {
        width: 140px;
        height: 200px;
    }

    .story-text h3 {
        font-size: 1rem;
    }

    .story-text p {
        font-size: 16px;
    }

    .read-btn {
        font-size: 1rem;
        padding: 6px 14px;
    }
}

/* Extreme Mobile 320px */
@media (max-width: 360px) {
    .story-content img {
        width: 120px;
        height: 175px;
    }

    .story-text h3 {
        font-size: 0.95rem;
    }

    .story-text p {
        font-size: 16px;
    }

    .read-btn {
        font-size: 1rem;
        padding: 5px 12px;
    }
}


/* ====================== Putchase pro RESPONSIVE ====================== */

/* Tablet */
@media(max-width:992px) {

    .shop-sec {
        padding: 60px 60px;
        background: #000000;
    }


    .related-sec {
        background: #000000;
        padding: 60px 30px;
    }


    .purchase-pro-card {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 20px;
    }

    .pp-left img {

        width: 75%;
        margin-left: 150px;
        margin-top: 10px;
    }

    .pp-badge {
        position: absolute;
        top: 20px;
        left: 160px;
        padding: 6px 12px;
        font-size: 16px;
        
    }

}

/* Mobile */
@media(max-width:768px) {
    .purchase-pro-card {
        /* grid-template-columns:1fr; */
        gap: 20px;
    }


    .shop-sec {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-left img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .pp-right h1 {
        font-size: 2rem;
        text-align: left;
    }

    .pp-left {
        position: relative;
        right: 0px;
    }

    .pp-badge {
        position: absolute;
        top: 10px;
        left: 45px;
        padding: 6px 12px;
      font-size: 16px;
      font-family: balooregular;

    }

    .pp-meta,
    .pp-rating,
    .pp-desc,
    .pp-btn-group,
    .pp-benefits {
        text-align: left;
    }

    .pp-price-box {
        position: relative;
        left: 0px;
    }

    .pp-btn-group a {
        margin: 8px 5px;
    }
}




/* Small Mobile */
@media(max-width:480px) {
    .purchase-pro-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-meta,
    .pp-rating,
    .pp-desc,
    .pp-btn-group,
    .pp-benefits {
        text-align: center;
    }

    .pp-price-box {
        position: relative;
        left: 95px;
    }

    .pp-left img {
        width: 70%;
    }

    .pp-right h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .pp-desc {
        font-size: 1rem;
    }

    .pp-badge {
        position: absolute;
        top: 10px;
        left: 75px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .pp-price {
        font-size: 1rem;
    }

    .pp-offer {
        font-size: 0.95rem;
    }

    .pp-btn-group a {
        font-size: 0.6rem;
        padding: 8px 16px;
    }

    .pp-benefits li {
        font-size: 16px;
    }
}

/* Extreme Mobile 320px */
@media(max-width:360px) {
    .pp-left img {
        width: 65%;
    }

    .pp-badge {
        position: absolute;
        top: 10px;
        left: 60px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .pp-right h1 {
        font-size: 1.6rem;
    }

    .pp-price-box {
        position: relative;
        left: 25px;
    }

    .pp-desc {
        font-size: 0.95rem;
    }

    .pp-price {
        font-size: 0.95rem;
    }

    .pp-offer {
        font-size: 0.85rem;
    }

    .pp-btn-group a {
        font-size: 0.55rem;
        padding: 6px 12px;
    }

    .pp-benefits li {
        font-size: 0.9rem;
    }
}

/* ====================== Shop similer RESPONSIVE ====================== */

/* Tablet */
@media(max-width:992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shop-item img {
        height: 200px;
    }

    .shop-item h3 {
        font-size: 1.2rem;
    }

    .shop-item p,
    .price {
        font-size: 16px;
    }

    .shop-btn {
        font-size: 0.65rem;
        padding: 8px 16px;
    }
}

/* Small Mobile */
@media(max-width:480px) {
    .shop-item img {
        height: 180px;
    }

    .shop-item h3 {
        font-size: 1.1rem;
    }

    .shop-item p,
    .price {
        font-size: 16px;
    }

    .shop-btn {
        font-size: 0.6rem;
        padding: 6px 12px;
    }
}

/* Extreme Mobile 320px */
@media(max-width:360px) {
    .shop-item img {
        height: 160px;
    }

    .shop-item h3 {
        font-size: 1rem;
    }

    .shop-item p,
    .price {
        font-size: 16px;
    }

    .shop-btn {
        font-size: 0.55rem;
        padding: 5px 10px;
    }
}



/* ====================== Related collection RESPONSIVE ====================== */

/* Laptop / small desktop */
@media(max-width:1200px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Tablet */
@media(max-width:992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .r-card img {
        height: 200px;
    }

    .r-card h3 {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media(max-width:768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .r-card img {
        height: 180px;
    }

    .r-card h3 {
        font-size: 1.1rem;
    }
}

/* Small Mobile / Extreme 320px */
@media(max-width:480px) {
    .r-card img {
        height: 160px;
    }

    .r-card h3 {
        font-size: 1rem;
    }
}

/* =================  order form RESPONSIVE ================= */

/* Laptop */
@media(max-width:1200px) {
    .order-wrapper {
        padding: 50px 20px;
    }

    .order-box {
        padding: 25px;
    }

    .order-box h2 {
        font-size: 2.3rem;
    }

    .order-box p {
        font-size: 16px;
    }
}

/* Tablet */
@media(max-width:992px) {
    .form-grid {
        grid-template-columns: 1fr;
        /* single column on tablet */
    }

    .form-grid .full {
        grid-column: 1 / 2;
    }

    .order-box h2 {
        font-size: 2rem;
    }

    .order-box p {
        font-size: 16px;
    }

    .order-box input,
    .order-box textarea {
        font-size: 16px;
        padding: 8px;
    }

    .order-submit-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .order-wrapper {
        padding: 40px 15px;
    }

    .order-box {
        padding: 20px;
    }

    .order-box h2 {
        font-size: 1.8rem;
    }

    .order-box p {
        font-size: 16px;
    }

    .order-box input,
    .order-box textarea {
       font-size: 16px;
        padding: 8px;
    }

    .order-submit-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* Extreme Mobile / Small devices */

@media(max-width:480px) {
    .order-box {
        padding: 15px;
    }

    .order-box h2 {
        font-size: 1.5rem;
    }

    .order-box p {
        font-size: 16px;
    }

    .order-box input,
    .order-box textarea {
        font-size: 16px;
        padding: 6px;
    }

    .order-submit-btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}