* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Comfortaa', sans-serif;
}

body {
    /* background: #d8eef8; */
    color: #333;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: relative;
    top: 0;
    z-index: 100;
    padding: 12px 40px;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.nav-item {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12.5px;
    color: #2c3e50;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-item.active {
    background: linear-gradient(135deg, #5da8f0, #3178d4);
    color: #fff;
    font-weight: 600;
}

.nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 12.5px;
    width: 120px;
    font-family: 'Comfortaa', sans-serif;
    color: #333;
}

.search-box input::placeholder {
    color: #888;
}

.login-btn {
    border: none;
    cursor: pointer;
    font-size: 12.5px;
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #5da8f0, #3178d4);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(49, 120, 212, 0.35);
    transition: opacity 0.2s;
}

/* .login-btn:hover {
    opacity: 0.88;
} */

/* ===========================
   LANDING PAGE WRAPPER
   =========================== */
.landing-page {
    /* background: linear-gradient(180deg,
            #c5e4f5 0%,
            #b8daf0 30%,
            #a8d0eb 60%,
            #cce8f8 100%); */
    min-height: 100vh;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 120vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 0;
    background: #D9EEF7;
    /* background:
        linear-gradient(rgba(135, 180, 220, 0.6), rgba(135, 180, 220, 1.0)),
        url('../img/bg_cloud.jpg') center top/cover no-repeat; */
}

.hero header,
.hero .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.cloud {
    position: absolute;
    top: 0;
    left: 0;

    width: 1728px;
    height: 1024px;

    object-fit: cover;

    opacity: 1;
    mix-blend-mode: color-burn;

    z-index: 0;
    pointer-events: none;
}

.bird {
    position: absolute;
    top: 50px;
    left: 70px;
    width: 334px;
    opacity: 0.2;
    mix-blend-mode: multiply;
    transform: rotate(-37.35deg);
    pointer-events: none;
    z-index: 1;
}


/* Charismafy logo/title */

.content {
    text-align: center;
    z-index: 2;
    position: absolute;
    top: 140px;
    left: 48%;
    transform: translateX(-50%);
    text-align: center;
}

.content p {
    font-size: 18px;
    color: #0a0a0a;
    margin-top: -26px;
    letter-spacing: 0.5px;
}

/* Kids image — left side */
.kids {
    position: absolute;
    left: -20px;
    bottom: 20px;
    z-index: 3;
}

.kids img {
    width: 263px;
}

/* Robot / dinosaur — right side */
.robot {
    position: absolute;
    right: 13px;
    bottom: 0;
    z-index: 3;
}

.robot img {
    width: 850px;
}

/* TALK SECTION */
.talk-section {
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.talk-left {
    flex: 0 0 55%;
    /* wider left column */
    max-width: 55%;
}
.stripe-button-el span {
    display: block;
    position: relative;
    padding: 6px 16px 17px 10px;
    height: 30px;
    line-height: 30px;
    box-shadow:
      inset 1px 1px 2px 0 #FFFFFF4D,
      inset -1px -2px 2px 0 #FFFFFF1A,
      inset 0 0 10px 0 #FFFFFF4D;
    background: #2F80ED;
    font-size: 14px;
    color: #fff;
    /* font-weight: bold; */
    font-family: 'Comfortaa', sans-serif;
    border-radius: 10px;
}

.talk-left h2 {
    font-size: 51px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 28px;
}

.talk-left h2 em {
    font-style: normal;
    color: #e67e22;
    /* orange "champ" */
}

.talk-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: -36px;
}

.talk-features li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 29px;
    color: #444;
    line-height: 1.55;
    position: relative;
    padding-left: 25px;
    font-family: 'Comfortaa', sans-serif;
}

.talk-features li::before {
    /* content: "⭐"; */
    /* position: absolute; */
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    margin-top: 5px;
}

.talk-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.talk-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
}

/* Stack-of-books character */
.books-character {
    position: absolute;
    left: 60px;
    bottom: -30px;
    z-index: 2;
}

.books-character img {
    width: 90px;
}

/* ===========================
   TOP STORIES SECTION
   =========================== */
.stories-tree {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Each row */
.story-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
}

/* Zig-zag effect */
.story-row.right {
    justify-content: flex-start;
    margin-right: 100px;
}

.story-row.left {
    justify-content: flex-end;
}

/* Image styling */
.story-img img {
    width: 380px;
    height: 80px;
    border-radius: 15px;
}

/* Text box (pencil label look base) */
.story-text {
    background: #eee;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* ===========================
   EXPLORE SECTION
   =========================== */
.explore-grid {
    padding: 8px 16px;
    border: 1px solid #E1E1E101;
    border-radius: 24px;
    background-image: url('../../icons/bg_img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.explore-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    max-width: 420px;
    max-height: 420px;
    height: 87%;
}


.explore-card {
    width: 100%;
    max-width: 375px;
    position: relative;
    background-image: url('../../icons/cardbg.png');
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    border-radius: 25px;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: none;
    height: 100%;
    max-height: 259px;
}

.explore-card:hover {
    transform: translateY(-8px);
}

.explore-card h1 {
    font-size: 25px;
    color: #0A2540CC;
    padding: 0 10px;
    margin-top: 20px;
    margin-left: 10px;
}

.explore-desc {
    font-size: 12px;
    color: #3854A7;
    margin-left: 15px;
}

.explore-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15PX;
    padding: 10px;
    margin-bottom: 30px;
}

.explore-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: 0px 8px 4px 0px #1111114D; */
}

.explore-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg_dolphin.jpg") center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.explore-card>* {
    position: relative;
    z-index: 1;
}


.explore-read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    border: none;
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(
    90deg,
    rgba(56, 84, 167, 0.75) 0%,
    rgba(158, 220, 255, 0.75) 100%);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    inset -1px -2px 2px rgba(255, 255, 255, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
    color: #0A2540CC;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: .3s;
    /* margin-bottom: 10px; */
    margin-left: 35px;
    cursor: pointer;
}

.explore-read-btn:hover {
    opacity: 0.88;
}

.explore-btn-wrapper {
    display: flex;
    justify-content: center;
}

.card-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 150px;
    gap: 15px;
}

.explore-more-btn {
    /* display: block; */
    margin: 20px auto;
    background: #2F80ED;
    color: #fff;
    border-radius: 14px;
    padding: 10px 28px;
    font-weight: 600;
}

/* ===========================
   COLLECTIONS SECTION
   =========================== */

.collections-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.collection-row {
    background: linear-gradient(135deg, #7db2d8, #cbdce9);
    backdrop-filter: blur(136px);
    border-radius: 40px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    width: fit-content;
    position: relative;
    overflow: hidden;
}


.collection-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/collectio_bg.jpg") center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

/* Wrapper for 3 images */
.collection-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 30px;
    padding: 25px;
}

/* Common image style */
.collection-img {
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Small images (left & right) */
.collection-img.small {
    width: 110px;
    height: 110px;
}

/* Big center image */
.collection-img.big {
    width: 260px;
    height: 160px;
}

/* Label */
.collection-label {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
}

/* TESTIMONIALS SECTION */

.testimonial-label {
    margin-top: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #0A2540;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    width: 60%;
}

.testimonials-section {
    padding: 10px 20px;
    background-image: url('../../icons/test_bg.png');
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.testimonials-grid {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
}

/* Full-width video on top */
.video-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    /* margin-bottom:18px; */
    padding: 10px;
}

.video-wrapper img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

/* YouTube-style red play button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 38px;
    background: #ff0000;
    border-radius: 10px;
}

.video-play-btn:after {
    content: "";
    position: absolute;
    left: 21px;
    top: 10px;
    border-left: 14px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

/* Card body below video */
.testimonial-content {
    padding: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.45;
    color: #444;
    /* margin-bottom:18px; */
    padding: 10px;
    font-family: 'Comfortaa', sans-serif;
}

.testimonial-content hr {
    margin: 10px 12px 25px;
    border: 0;
    border-top: 1.5px solid #00000040;
}


/* Divider line above button */
.testimonial-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
}

.testimonial-link {
    display: flex;
    justify-content: center;
}

.testimonial-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 18px 8px 8px;
    background: #3854A74D;
    border-radius: 30px;
    margin-bottom: 10px;
}

.linkedin-icon {
    width: 22px;
    height: 22px;
    background: #3d62c7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-icon i {
    color: #fff;
    font-size: 12px;
}

.testimonial-link span:last-child {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}


.view-more-btn {
    margin-top: 30px;
    padding: 12px 40px;
    border: none;
    border-radius: 40px;
    background: #2F80ED;
    color: #fff;
    font-family: 'Comfortaa', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 1px 1px 2px rgba(255, 255, 255, 0.30),
        inset -1px -2px 2px rgba(255, 255, 255, 0.10),
        inset 0 0 10px rgba(255, 255, 255, 0.30);
}

.view-more-btn:hover {
    transform: translateY(-2px);
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section {
    padding: 30px 0;
    text-align: center;
    background-color: #DBF1FC;
}

.pricing-label {
    margin-top: 1px;
    font-size: 20px;
    font-weight: 600;
    color: #2A4460;
    background: #AAC1E0;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    width: 30%;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    width: 150px;
    height: 150px;
    background: #3854A74D;
    backdrop-filter: blur(14px);
    border-radius: 50px;
    padding: 30px 28px;
    min-width: 170px;
    max-width: 200px;
    text-align: center;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.65);
    transition: transform 0.2s; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow:
        inset 1px 1px 2px rgba(255, 255, 255, .4),
        inset -1px -2px 2px rgba(255, 255, 255, .2),
        inset 0 0 10px rgba(255, 255, 255, .3);

    transition: .3s;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
    background: #2F80ED !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}
.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    width: 150px;
    height: 180px;
    margin-bottom: 10px;
    background: #3854A7;
    transform: translateY(-20px);
    box-shadow:
        0 20px 40px rgba(56, 84, 167, .35),
        inset 1px 1px 2px rgba(255, 255, 255, .25),
        inset -1px -2px 2px rgba(255, 255, 255, .15);
}

.pricing-tier {
    font-size: 20px;
    font-weight: 700;
    color: #0A2540CC;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-tier {
    color: #fff;
}

.pricing-currency {
    font-size: 24px;
    vertical-align: super;
}

.pricing-period {
    font-size: 12px;
    color: #0A2540CC;
    margin-top: 6px;
}

.start-btn {
    margin-top: 2px;
    border: none;
    padding: 5px;
    border-radius: 30px;
    background: #FFCD0F;
    font-size: 10px;
    color: #3854A7;
    font-weight: 700;
    cursor: pointer;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #3f5aa9;
    padding: 28px 0 24px;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.38);
}

.social-icons i {
    font-size: 15px;
    color: #fff;
}

.footer p {
    font-size: 12.5px;
    opacity: 0.85;
    color: #fff;
}


/* ===========================
   RESPONSIVE BASICS
   =========================== */
@media (max-width: 900px) {
    .header {
        padding: 10px 20px;
    }

    .talk-section {
        flex-direction: column;
        padding: 40px 30px;
    }

    .explore-section,
    .testimonials-section {
        margin: 0 12px;
        padding: 36px 24px;
    }

    .collections-section,
    .top-stories-section,
    .pricing-section {
        padding: 40px 24px;
    }

    .hero-logo-title {
        font-size: 44px;
    }

    .talk-left h2 {
        font-size: 26px;
    }

    .pricing-cards {
        gap: 16px;
    }

    .pricing-card.featured {
        transform: scale(1.04);
    }
}

@media (max-width:768px) {

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .testimonial-content {
        text-align: center;
    }

    .video-wrapper {
        width: 220px;
        height: 150px;
    }

    .testimonial-author {
        font-size: 26px;
    }

    .testimonial-text {
        font-size: 18px;
    }

}

/* PAYMENT SCREEN CARD  */

.wrapper {
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(180deg, #8DD0D7, #8DD7FF);
}

.story-image img {
    width: 88%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    /* max-width: 200px;
    max-height: 200px; */
    margin-bottom: 40px;
    height: 249px;
}


.featured-card {
    position: relative;
    width: 888px;
    height: 244px;
    border-radius: 25px;
    background-image: url('../../icons/cardbg.png');
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg_dolphin.jpg") center/cover no-repeat;
    opacity: .18;
    z-index: 0;
}

.featured-card>* {
    position: relative;
    z-index: 1;
}

.featured-card h1 {
    color: #0A2540CC;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-desc {
    color: #3854A7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.story-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.rating {
    color: #0A2540CC;
    font-weight: 700;
}

.views {
    color: #0A2540CC;
}


/*==============================
Button
===============================*/

.read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 20px auto 0;
    border: none;
    background: linear-gradient(90deg, #3854A7, #9EDCFF);
    color: #0A2540CC;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: .3s;
}

/*==============================
Section Title
===============================*/

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-card {
    position: relative;
    background-image: url('../../icons/cardbg.png');
    border-radius: 25px;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: none;
    height: fit-content;
    margin-bottom: 10px;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 8px 4px 0px #1111114D;
}

.story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg_dolphin.jpg") center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.story-card>* {
    position: relative;
    z-index: 1;
}


.card-body-custom {
    padding: 15px;
}

.card-body-custom h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0A2540CC;
}

.card-body-custom p {
    color: #0A2540;
    font-size: 10px;
    line-height: 1.7;
}

.bottom-info {
    display: flex;
    justify-content: space-between;
    margin: 17px 0;
    font-weight: 600;

}

.bottom-info span:first-child {
    color: #0A2540CC;
}

.read-btn-small {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin: 78px auto 0;
    border: none;
    background: linear-gradient(90deg,
        rgba(56, 84, 167, 0.75) 0%,
        rgba(158, 220, 255, 0.75) 100%);
    box-shadow:
        inset 1px 1px 2px #FFFFFF4D,
        inset -1px -2px 2px #FFFFFF1A,
        inset 0 0 10px #FFFFFF4D;
    color: #0A2540CC;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: .3s;
}

.read-btn-small:hover {
    transform: translateY(-2px);
}


@media(max-width:991px) {

    .featured-card {
        margin-top: 30px;
    }

    .featured-card h1 {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    .search-box input {
        width: 100%;
    }

    .story-info {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .featured-card {
        padding: 30px;
    }
}

/* CARD DETAILS PAGE  */

.card-wrapper {
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(213.96deg, #8DD0D7 8.36%, #8DD7FF 90.37%);
    min-height: 100vh;
}

.page-title {
    text-align: center;
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 600;
    color: #0A2540CC;
}

/* Card Container */
.card-box {
    background: #ffff;
    /* slight transparency for blur */
    border-radius: 12px;
    padding: 30px;

    /* Glass effect */
    /* backdrop-filter: blur(111.22px);
    -webkit-backdrop-filter: blur(111.22px); */

    /* Inset shadows (your design) */
    /* box-shadow:
        -27.67px 27.67px 27.67px rgba(255, 255, 255, 0.07) inset,
        27.67px -27.67px 27.67px rgba(165, 165, 165, 0.07) inset; */

    /* Optional outer soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Credit card image */
.credit-img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
}

/* Text */
.label {
    color: #555;
    font-weight: 500;
}

.value {
    color: #2d6cdf;
    font-weight: 500;
}

/* Divider */
.divider {
    border-left: 2px dashed #0A2540CC;
    height: 100%;
}

.input-error {
    border: 1px solid #FF4A5E !important;
}

.input-error::placeholder {
    color: #FF4A5E;
}

/* Button */
.btn-custom {
    background: #367FE7;
    border: none;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 8px 18px;
}

/* Input */
.input-custom {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 8px;
}

/* Invoice Table */
.invoice-box {
    background: #fff;
    border-radius: 14px;
    margin-top: 30px;
    overflow: hidden;
}

.table th,
.table td {
    text-align: center;
    padding: 16px;
}

.table thead {
    border-bottom: 1px dashed #bbb;
}

.table td {
    border-top: 1px dashed #ddd;
}

.view-link {
    color: #2d6cdf;
    text-decoration: none;
}