:root{
    --primary: #ec2b1c;
    --black: #000000;
    --white: #ffffff;
}

/* GLOBAL */
body{
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
}

/* ================= NAVBAR ================= */
.navbar{
    padding: 8px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img{
    height: 45px;
}

/* NAV LINKS */
.nav-link{
    font-weight: 500;
    margin: 0 8px;
    color: var(--black) !important;
    transition: 0.3s ease;
    position: relative;
}

/* HOVER COLOR (YOUR REQUEST) */
.nav-link:hover{
    color: var(--primary) !important;
}

/* OPTIONAL UNDERLINE ANIMATION (PRO LOOK) */
.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav-link:hover::after{
    width: 100%;
}

/* ACTIVE LINK (optional future use) */
.nav-link.active{
    color: var(--primary) !important;
}

/* ================= FOOTER ================= */
footer{
    background: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-title{
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link{
    display: table;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-link:hover{
    color: var(--black);
}

.copyright{
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
}

.copyright a{
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.copyright a:hover{
    color: var(--black);
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f1f1;
    color: #333;
    border-radius: 50%;

    transition: 0.3s ease;
    text-decoration: none;
}

/* HOVER COLORS */
.footer-social a:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* BRAND COLORS */
.footer-social a:nth-child(1):hover {
    background: #0077b5; /* LinkedIn */
}

.footer-social a:nth-child(2):hover {
    background: #ff0000; /* YouTube */
}

.footer-social a:nth-child(3):hover {
    background: #000000; /* TikTok */
}

.footer-social a:nth-child(4):hover {
    background: #e1306c; /* Instagram */
}

/* BUTTON STYLE (optional but recommended) */
.btn-primary-custom{
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary-custom:hover{
    background: #c72216;
}

/* ================= HERO SECTION ================= */
.hero-section{
    padding: 90px 0;
    position: relative;

    /* BACKGROUND IMAGE */
    background: url('../images/hero.webp') no-repeat center center;
    background-size: cover;
}

/* DARK OVERLAY FOR READABILITY */
.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* CONTENT ABOVE OVERLAY */
.hero-section .container{
    position: relative;
    z-index: 2;
}

/* ================= HERO TEXT ================= */

/* small badge */
.hero-badge{
    display: inline-block;
    background: rgba(236, 43, 28, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

/* main heading */
.hero-title{
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* subtitle */
.hero-subtitle{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

/* paragraph */
.hero-text{
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    max-width: 650px;
}

/* ================= BUTTONS ================= */

.btn-primary-custom{
    background: var(--primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    font-weight: 500;
    border: none;
}

.btn-primary-custom:hover{
    background: #c72216;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom{
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    font-weight: 500;
}

.btn-outline-custom:hover{
    background: #fff;
    color: var(--black);
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
    .hero-section{
        padding: 80px 0;
        text-align: left;
    }

    .hero-title{
        font-size: 34px;
    }

    .hero-subtitle{
        font-size: 18px;
    }

    .hero-text{
        font-size: 14px;
    }
}

/* ========================================== */

/* ================= SECTIONS BACKGROUND ================= */
.features{
    background: var(--primary);
    padding: 80px 0;
}
.manifesto{
    background: var(--white);
    padding: 80px 0;
}

.about{
    padding: 80px 0;
}

/* ================= FEATURE CARDS ================= */

.feature-card h4{
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.feature-card .icon {
    display: flex;
    justify-content: center;
}

.feature-card .icon img{
    height: 100px;
}

.feature-card p{
    color: var(--white);
    text-align: center;
}

/* ================= SECTION TITLES ================= */
.section-title{
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.section-subtext{
    color: rgba(255,255,255,0.85);
}

/* ================= ABOUT IMAGE ================= */
.about-img{
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* ================= ABOUT TEXT ================= */
.manifesto p,
.about p,
.about h5{
    color: var(--black);
    line-height: 1.7;
}

.manifesto .section-title{
    color: var(--primary);
}

.packages{
    background: var(--black);
    color: var(--white);
}

/* ================= BUTTON ================= */
.btn-light-custom{
    background: var(--white);
    color: var(--primary);
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-light-custom:hover{
    background: var(--black);
    color: var(--white);
}

/* ================= ABOUT LAYOUT ================= */
.about .row{
    align-items: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
    .section-title{
        font-size: 28px;
        text-align: center;
    }

    .about,
    .manifesto,
    .features{
        text-align: center;
    }
}

/* ====================================== */

.services{
    background: #fff;
    padding: 90px 0;
}

/* SECTION SUB TEXT */
.section-subtext{
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* SERVICE CARD */
.service-card{
    background: #fff;
    border: 1px solid #eee;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

.service-card:hover{
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

/* SERVICE TITLE */
.service-card h4{
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

/* TAGLINE */
.service-tagline{
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-service{
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-service:hover{
    background: var(--primary);
    color: #fff;
}

/* BUTTON FULL WIDTH */
.btn-primary-custom{
    background: var(--primary);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary-custom:hover{
    background: #c72216;
}



/* ============== NO AI SHORTCUT =================== */

.no-ai{
    background: #fff;
    padding: 100px 0;
}

.no-ai-title{
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
}

.no-ai-text{
    font-size: 20px;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========= Creative About ========= */

.about-section {
    position: relative;
    padding: 100px 20px;
    background: var(--white);
    overflow: hidden;
    text-align: center;
}

.about-content {
    max-width: 850px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.about-content p {
    font-size: 18px;
    color: var(--black);
    line-height: 1.7;
}

/* ⭐ STARS */
.star {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #ff4d4d;
    transform: rotate(45deg);
    animation: float 3s infinite ease-in-out;
}

.star-1 {
    top: 100px;
    right: 120px;
}

.star-2 {
    bottom: 120px;
    right: 60px;
}

.star-3 {
    top: 200px;
    left: 100px;
}

/* Floating Animation */
@keyframes float {
    0%,100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
}

/* =============== WORKS ================= */

/* WORKS SECTION */
.works {
    background: #fff;
    padding: 80px 0;
}

/* SLIDER WRAPPER */
.works-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.works-track {
    display: flex;
    width: calc(270px * 8);
    animation: worksScroll 30s linear infinite;
}

/* HOVER = STOP */
.works-slider:hover .works-track {
    animation-play-state: paused;
}

/* SINGLE ITEM */
.works-slide {
    width: 450px;
    margin-right: 20px;
    flex-shrink: 0;
}

.works-slide img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.works-slide img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ANIMATION */
@keyframes worksScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .works-slide {
        width: 180px;
        margin-right: 15px;
    }

    .works-track {
        width: calc(200px * 8);
    }
}

/* ============= TESTIMONIALS =============== */

.testimonials{
    background: #fafafa;
    padding: 90px 0;
}

.testimonials .section-title{
    color: var(--primary);
}

.testimonial-box{
    max-width: 750px;
    background: #fafafa;
    padding: 40px;
}

.testimonial-text{
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.client-name{
    font-weight: 600;
    color: #000;
}

/* arrows color fix */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
}

/* ======book SECTION ==== */

/* ================= PROMO SECTION ================= */

/* CARD */
.promo-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

/* IMAGE */
.promo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
    display:block;
}

/* HOVER EFFECT */
.promo-card:hover img{
    transform:scale(1.08);
}

/* OPTIONAL DARK OVERLAY (premium look) */
.promo-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(245, 206, 206, 0.4), transparent);
    opacity:0;
    transition:0.3s;
}

.promo-card:hover::after{
    opacity:1;
}

/* ================= RESPONSIVE ================= */

/* tablets */
@media(max-width:992px){
    .promo-card{
        border-radius:10px;
    }
}

/* mobile */
@media(max-width:576px){
    .promo-section{
        padding:30px 0;
    }
}

.promo-section .section-title{
    color: var(--primary);
}

.promo-section .hero-buttons{
    justify-content: center;
}

/* =========================
   PACKAGES PAGE ONLY CSS
   ========================= */

/* =========================
   PACKAGES PAGE ONLY CSS
   ========================= */

/* HERO */
.pkg-hero {
    padding: 80px 20px;
}

.pkg-hero-title {
    font-size: 38px;
    font-weight: 700;
}

.pkg-hero-text {
    max-width: 800px;
    margin: 10px auto;
    opacity: 0.85;
}

/* SECTION */
.pkg-section {
    padding: 70px 0;
}

.pkg-section h1 {
    color: var(--primary);
}

.pkg-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* CARD */
.pkg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-6px);
}

.pkg-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.pkg-card li.span {
    color: var(--primary);
    font-weight: 500;
}

/* FEATURED */
.pkg-featured {
    border: 2px solid var(--primary);
}

.writing_pkg .pkg-featured {
    border-color: var(--black);
}

/* PRICE */
.pkg-price {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--primary);
}

.writing_pkg .pkg-price {
    color: var(--black);
}

.writing_pkg .pkg-card h3 {
    color: var(--black);
}

/* LIST */
.pkg-card ul {
    flex-grow: 1;
    padding-left: 18px;
    margin-bottom: 15px;
}

.pkg-card ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

/* BUTTON (PRIMARY IMAGE) */
.pkg-btn {
    margin-top: auto;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url('/images/primary_btn.png') no-repeat center;
    background-size: 75% 125%;

    transition: 0.3s ease;
}

.pkg-btn:hover {
    transform: scale(1.04);
}

/* WRITING BUTTON (BLACK IMAGE) */
.writing_pkg .pkg-btn {
    background: url('/images/black_btn.png') no-repeat center;
    background-size: 75% 125%;
}

/* OUTLINE BUTTON */
.pkg-btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
}

/* CLOUD SECTION */
.pkg-cloud {
    padding: 60px 20px;
    background: var(--primary);
    color: var(--white);
}

/* CTA */
.pkg-cta {
    padding: 60px 20px;
    text-align: center;
}

.pkg-cta .pkg-btn {
    background: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pkg-hero-title {
        font-size: 26px;
    }

    .pkg-heading {
        font-size: 22px;
    }

    .pkg-card {
        padding: 20px;
    }
}

/* contact page =============== */


.contact-hero{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
    color:#fff;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    margin-bottom:20px;
}

.contact-hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.contact-hero p{
    font-size:18px;
    opacity:.85;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.contact-main{
    padding:100px 0;
    background:#f8fafc;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.contact-form-box h2{
    margin-bottom:30px;
    font-weight:700;
}

.form-control{
    border:1px solid #e5e7eb;
    border-radius:12px;
    min-height:55px;
}

textarea.form-control{
    min-height:180px;
}

.contact-info-box{
    background: var(--primary);
    color:#fff;
    padding:45px;
    border-radius:24px;
    height:100%;
}

.info-item{
    margin-bottom:30px;
}

.info-item h6{
    color: var(--white);
    margin-bottom:10px;
}

.why-us-contact{
    padding:100px 0;
    color: var(--black);
}

.why-us-contact .section-title{
    margin-bottom:60px;
}

.why-us-contact .feature-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.why-us-contact h2,
.why-us-contact .feature-card h4,
.why-us-contact .feature-card p{
    color: var(--black);
}


.why-us-contact .feature-card:hover{
    transform:translateY(-8px);
}

.why-us-contact .feature-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.btn-primary{
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
}

@media(max-width:991px){

    .contact-hero{
        text-align:center;
        padding:80px 0;
    }

    .contact-hero h1{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
    }
}

/* ==========Design page============ */

.writing-hero {
    background-color: #ec2b1c;
    position: relative;
    color: var(--white);
}

.writing-hero img{
    width: 100%;
}

.writing-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* IMPORTANT */
}


.writing-services {
    position: relative;
    background: #e62117;
    color: #fff;
    padding: 150px 0;
    overflow: hidden;
}

/* Grid layout */
.writing-services .service-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.writing-services .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../images/wave1.png');
    background-size: 1000px 100px;
}

.writing-services .wave11{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../images/wave11.png');
    background-size: 1000px 100px;
}

/* Cards */
.writing-services .service-card{
    background: var(--primary);
    padding: 30px;
    box-shadow: none;
    border: none;
}

/* hover effect */
.writing-services .service-card:hover{
    transform: none;
    border-color: none;
}

/* Card title */
.writing-services .service-card h3{
    color: var(--white);
}

/* text */
.writing-services .service-card p{
    color: var(--white);
}


/* Responsive */
@media (max-width: 992px){
    .writing-services .service-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .writing-services .service-grid{
        grid-template-columns: 1fr;
    }

    .writing-services .section-title{
        font-size: 26px;
    }
}

/* ========================== */

.services-section{
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
    position: relative;
}

.section-title{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--black);
}

.section-title h2{
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p{
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
}

/* GRID */
.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card{
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 37, 37, 0.15);
}

.service-card:hover{
    transform: translateY(-8px);
    border-color: #e62117;
    box-shadow: 0 15px 40px rgba(230,33,23,0.15);
}

/* ICON */
.service-card .icon{
    
    margin-bottom: 20px;
    display: inline;
        align-items: center;
}

.service-card .icon img{
    width: 25%;
    object-fit: contain;
}

/* TEXT */
.service-card h3{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
    line-height: 1.4;
}

.service-card p{
    font-size: 14px;
    color: var(--black);
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .services-grid{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 28px;
    }
}

/* =============design page================= */
.book-cover-section {
    background-color: #f0261c;
    padding: 50px 0 20px 0;
    color: #fff;
    position: relative;
}

.book-cover-section .wave{
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../images/wave111.png');
    background-size: 1000px 100px;
}

/* Title */
.book-cover-section .section-title {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Paragraph */
.book-cover-section .section-text {
   
    line-height: 1.8;
    padding-right: 20px;
}

/* Video Styling */
.book-cover-section .section-video {
    width: 100%;
    max-width: 520px;
}

.animation-assets-section {
    padding: 150px 0 60px 0;
}

.animation-assets-section .section-title {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.animation-assets-section .section-desc {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-video-section {
    background: var(--primary);
    padding: 90px 0;
    color: #fff;
}

.cta-video {
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    pointer-events: none;
}

/* Title */
.cta-title {
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text */
.cta-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}


.process-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.process-text {
    font-size: 16px;
    line-height: 1.8;
}

/* Images */
.process-img {
    width: 300px
}

.our-process h3{
    color: var(--primary);
}

/* ============    portfolio page         = */

.portfolio h2{
    color: var(--primary);
}

.book-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

/* Hover Effect */
.book-img:hover {
    transform: scale(1.05);
}

.novel-gallery {
    background: #ffffff;
}

.novel-gallery .section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image styling */
.novel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

/* Hover effect */
.novel-img:hover {
    transform: translateY(-5px) scale(1.03);
}

/**/

.alert-box {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #e6f9f0;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-error {
    background-color: #fdecea;
    color: #842029;
    border: 1px solid #f5c2c7;
}