a {
    color: #fff;
    text-decoration: none;
}

.btn {
    display: inline-block;
    background-color: #f2f3ff;
    color: #000;
    border: 2px solid rgb(70, 87, 237);
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 180px;
    cursor: pointer;
    margin: 10px;
    text-align: center;
    align-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    background-color: rgb(70, 87, 237);
    color: #f2f3ff;
}

.btn:active {
    transform: scale(0.98);
}

.btn.secondary {
    background: rgba(0, 0, 0, 0.2);
    color: #f2f3ff;
    border: 2px solid #f2f3ff;
}

.btn.secondary:hover {
    background: #f2f3ff;
    color: #000;
}

/* ============ Headings ============ */
h1 {
    top: 100px;
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    transform: translateX(-100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
    opacity: 0;
}

h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    transform: scale(0.5);
    transition: transform 1.5s ease, opacity 1.5s ease;
    opacity: 0;
}

h2.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============ Tech Icons ============ */
.web-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    padding: 0 10%;
    gap: 5vw;
    background-color: rgb(2, 10, 34);
    box-shadow: #4657ed 0 0 200px 0;
    width: 100%;
}
.web-section .web-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
}
.web-section .web-icon h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700px;
    text-align: center;
}
.web-section img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 6px;
    box-shadow: rgb(70, 87, 237) 0 0 5px 2px;
    padding: 20px;
    border-radius: 20px;
    background-color: #010913;
}
.web-section img:hover {
    transform: scale(1.05);
}

.web-icon h2 {
    font-size: 20px;
    margin-bottom: auto;
    font-weight: 100;
    text-shadow: none;
    font-weight: bold;
    color: #fff;
}

/* ============ Process (Desktop) ============ */
.progress-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0;
    width: 100%;
    padding-bottom: 100px;
}
.align-blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-block,
.lower-block {
    display: flex;
    justify-content: space-around;
    width: 1000px;
    max-width: 90vw;
    opacity: 0;
    transform: translateY(-30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-top: 50px;
}
.top-block {
    margin-left: 125px;
}
.lower-block {
    margin-top: -30px;
    margin-left: -125px;
    margin-bottom: 50px;
}
.top-block.visible,
.lower-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* default: desktop visible, mobile hidden */
.align-blocks {
    display: flex;
} /* desktop process */
.mobile-align-blocks {
    display: none;
} /* mobile process */

/* show mobile / hide desktop at <= 1024px */
@media (max-width: 1024px) {
    .align-blocks {
        display: none;
    }
    .mobile-align-blocks {
        display: flex;
    }
}

/* Tiles */
.top-block-row,
.lower-block-row {
    width: 165px;
    height: 165px;
    background-color: #010913;
    rotate: 0;
    border: #050517 2px solid;
    border-radius: 30% 10% 10% 10%;
    cursor: pointer;
    box-shadow: rgb(70, 87, 237) 0 0 5px 2px;
    position: relative;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.lower-block-row {
    border-radius: 10% 10% 30% 10%;
}
.radius-left {
    border-radius: 10% 10% 30% 30%;
}
.radius-right {
    border-radius: 30% 30% 10% 10%;
}
.top-block-row:hover,
.lower-block-row:hover {
    transform: rotate(45deg) scale(1.05);
}
.top-block-row h3,
.lower-block-row h3 {
    color: #fff;
    font-size: 50px;
    text-align: center;
    margin-left: -70px;
    margin-top: 10px;
    transform: rotate(-45deg);
}
.top-block-row p,
.lower-block-row p {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transform: rotate(-45deg);
}
/* Clickable overlay so entire tile is an accessible link */
.tile-link {
    position: absolute;
    inset: 0;
}

/* ============ Process (Mobile) toggle lives in mobile CSS ============ */

/* ============ Carousel ============ */
#catalog {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 0;
    /* margin: 0 -20px; */
    overflow: hidden;
    position: relative;
    background-image: url('/images/img-png/jeremiah1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    box-shadow: rgb(70, 87, 237) 0 0 100px 0;
}

.carousel-container {
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    left: 0;
    transition: margin-left 0.25s ease, width 0.25s ease;
}

.caroucel-wrap {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
    gap: 15px;
    padding: 0;
}

.caroucel-link {
    color: inherit;
}

.caroucel-item {
    background-size: cover;
    background-position: center;
    width: clamp(220px, 24vw, 320px);
    aspect-ratio: 2 / 3;
    height: auto;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: rgb(70, 87, 237) 0 0 5px 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

/* Carousel copy panel */
.holl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 655px;
    height: 100%;
    background-color: rgb(6, 10, 27);
    padding: 50px;
    line-height: 1.5;
    color: white;
    position: absolute;
    left: 0;
    z-index: 2;
    background-image: url('/images/img-png/jeremiah.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-shadow: #000 0 0 10px 0;
}

.holl h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 1;
}

.holl p {
    margin: 0 auto;
}

.back-holl {
    max-width: 550px;
    height: 600px;
    background-color: #000;
    margin-left: 650px;
    border-radius: 0 20px 20px 0;
}

.right-holl {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background-image: url('/images/img-png/jeremiah.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 10;
    box-shadow: #000 0 0 10px 0;
}

/* Carousel Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(70, 87, 237, 0.8);
    border: 2px solid rgb(7, 4, 173);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(70, 87, 237, 0.299);
}

.nav-arrow:hover {
    background: rgba(70, 87, 237, 0.946);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(70, 87, 237, 0.5);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.nav-arrow[aria-disabled='true'] {
    opacity: 0.3;
    pointer-events: none;
    background: rgba(100, 100, 100, 0.5);
    border-color: #666;
}

/* Carousel images (keep your URLs; corrected typos if desired) */
.item-one {
    background-image: url('/images/img-png/1.png');
}

.item-two {
    background-image: url('/images/img-png/2.png');
}

.item-three {
    background-image: url('/images/img-png/3.png');
}

.item-four {
    background-image: url('/images/img-png/4.png');
}

.item-five {
    background-image: url('/images/img-png/5.png');
}

.item-six {
    background-image: url('https://cdn.midjourney.com/0e08f82e-fa76-4a0c-af79-a924a6a1ff5f/0_0.png');
}

.item-seven {
    background-image: url('https://cdn.midjourney.com/8679e11d-6171-4fe1-aed5-5db3977c7991/0_3.png');
}

.item-eigth {
    background-image: url('https://cdn.midjourney.com/410478f6-0885-432e-8461-1a63633aac86/0_3.png');
}

/* keep original class name for compatibility */
.item-nine {
    background-image: url('https://cdn.midjourney.com/06679cd9-3b81-4685-8d2d-e7556943a509/0_1.png');
}

.item-ten {
    background-image: url('https://cdn.midjourney.com/7746e0c6-6cae-47cb-b681-4c0731273204/0_0.png');
}

.item-eleven {
    background-image: url('https://cdn.midjourney.com/28559189-0001-48db-a694-27eee223b6ec/0_0.png');
}

.item-twelve {
    background-image: url('https://cdn.midjourney.com/853df166-66d9-4e10-9dac-94ced96446f9/0_0.png');
}

.item-terteen {
    background-image: url('https://cdn.midjourney.com/31acef22-601f-42ac-83c7-7cb5367f5a3c/0_0.png');
}

/* kept original */
.item-forteen {
    background-image: url('https://cdn.midjourney.com/903d4b77-3f0f-4daf-a6f8-2f080b6101a1/0_0.png');
}

/* kept original */
.item-fifteen {
    background-image: url('https://cdn.midjourney.com/3cf49005-1f13-415f-a156-4fe0a0fcafd5/0_0.png');
}

.item-sixteen {
    background-image: url('/images/img-png/5.png');
}

/* Zoom / Fullscreen */
.zoom-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 250px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}
.fullscreen-container.active {
    display: flex;
}

.fullscreen-content {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 90vw;
    height: 90vh;
    border-radius: 20px;
}
.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(248, 70, 247, 0.8);
    color: #fff;
    border: 2px solid #f846f7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.close-fullscreen:hover {
    background: rgba(248, 70, 247, 1);
}

/* ============ Services ============ */

.services-home-background {
    width: 100%;
    padding-bottom: 50px;
}

.services-home {
    /* Grid = neat rows + equal heights */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px; /* keeps section centered on large screens */
    color: #fff;
}

.services-home h2 {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    opacity: 1;
    text-align: center;
    width: 100% !important  ;
}

/* Cards */
.service-block {
    /* remove fixed width so grid controls sizing */
    width: auto;
    max-width: none;

    background-color: rgb(2, 10, 34);
    color: #f5f5f5;
    border-radius: 10px;
    box-shadow: rgb(70, 87, 237) 0 0 5px 2px;
    padding: 20px;

    /* alignment + reveal */
    display: flex; /* vertical layout inside the card */
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-12px);
    transition: transform 0.35s ease, opacity 0.35s ease,
        background-color 0.25s ease, color 0.25s ease;
}

.service-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-block h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 4px 0 6px;
    text-align: left; /* keep headings aligned */
}

.service-block hr {
    border: 0;
    height: 1px;
    background: rgba(245, 245, 245, 0.2);
    margin: 0 0 4px 0;
}

.service-block p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    /* take remaining space so button sits at bottom */
    flex: 1 1 auto;
}

.service-block .btn,
.service-block a.btn {
    margin-top: auto;
}

.service-block:hover {
    background-color: #f5f5f5;
    color: rgba(0, 0, 0, 0.95);
    transform: translateY(0) scale(1.02);
}

.service-block:hover .btn,
.service-block:hover a.btn {
    background-color: rgb(70, 87, 237);
    color: #f2f3ff;
}

.service-block:hover .btn .service-block:hover a.btn {
    transform: scale(1.02);
}

/* CTA buttons row below the grid */
.services-buttons {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 10px 0 0;
    width: 100%;
}

.services-cta {
    margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .services-home {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 16px;
    }
    .service-block h3 {
        font-size: 20px;
    }
    .service-block p {
        font-size: 15px;
    }
    .services-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============ Footer ============ */
footer {
    box-shadow: rgb(70, 87, 237) 0 0 100px 0;
    background-color: rgb(2, 10, 34);
}

.footer-box-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 0 150px;
    gap: 40px;
}

/* make the menu itself a column */
.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align links left */
}

.footer-menu a {
    display: block;
    color: #f5f5f5;
    font-size: 15px;
    margin: 8px 0;
}

.footer-box img {
    width: 200px;
    height: auto;
    margin: 50px 0 30px -6px;
}

.contact-us {
    margin-top: 50px;
    text-align: left;
}

.contact-us h4 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.copyright {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
}

.copyright h5 {
    margin-bottom: 10px;
    color: #f5f5f5;
    font-weight: 300;
}

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
    .hero-h1,
    .hero-p,
    .top-block,
    .lower-block,
    h2,
    .service-block,
    .caroucel-wrap {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* ============ Custom Styles for AI Content ============ */
.content-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 60px 40px;
    background: rgba(2, 10, 34, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.content-section h3 {
    color: #6b7cf0;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
}

.content-section h4 {
    color: #8b9cf0;
    margin: 20px 0 15px 0;
    font-size: 1.2rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.content-section ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4657ed;
    font-weight: bold;
}

/* Notes section */
.notes-section {
    background: rgba(70, 87, 237, 0.1);
    border-left: 4px solid #4657ed;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.notes-section p {
    font-style: italic;
    color: #b0b0b0;
    margin: 0;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: linear-gradient(135deg, #4657ed, #6b7cf0);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(70, 87, 237, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(70, 87, 237, 0.6);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.benefit-counter {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.benefit-label {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.benefit-description {
    color: #b0b0b0;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-top: 0;
}

/* ============ Contact Sections ============ */

.contact-section {
    background: rgba(2, 10, 34, 0.9);
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(70, 87, 237, 0.2);
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    box-shadow: #4657ed;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4657ed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

/* ============ Contact Info Cards ============ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
}

.contact-card {
    background: rgba(70, 87, 237, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(70, 87, 237, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 87, 237, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: #4657ed;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.contact-details {
    color: #e5e7eb;
    line-height: 1.6;
}

.contact-details a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4657ed;
}

/* ============ Contact Form ============ */
.form-section {
    padding: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(70, 87, 237, 0.1);
    border: 1px solid rgba(70, 87, 237, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4657ed;
    box-shadow: 0 0 0 3px rgba(70, 87, 237, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* ============ About Content Sections ============ */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: rgba(2, 10, 34, 0.9);
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(70, 87, 237, 0.2);
    box-shadow: #4657ed 0 0 5px 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4657ed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(70, 87, 237, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(70, 87, 237, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 87, 237, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: #4657ed;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.value-description {
    color: #e5e7eb;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: rgba(70, 87, 237, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(70, 87, 237, 0.3);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4657ed, #06b6d4);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.member-role {
    color: #4657ed;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #e5e7eb;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4657ed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ============ Definition Blocks for AI/LLM ============ */
.definition {
    background: rgba(70, 87, 237, 0.1);
    border-left: 4px solid #4657ed;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-size: 1.1em;
    font-weight: 400;
    text-align: left;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.definition h2 {
    margin-bottom: 15px;
    color: #fff;
}

.definition p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* ============ Key Takeaways Styling ============ */
.key-takeaways {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid #06b6d4;
    border-radius: 12px;
    padding: 20px;
    max-width: 1200px;

    margin: 50px auto 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-size: 1.1em;
    font-weight: 400;
    text-align: left;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.key-takeaways h4 {
    color: #06b6d4;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.key-takeaways ul {
    list-style-position: inside;
    color: #e0e0e0;
}

.key-takeaways li {
    margin: 10px 0;
    line-height: 1.6;
}

/* ============ Author Box with Audio Player ============ */
.author-box {
    background: rgba(70, 87, 237, 0.1);
    border: 1px solid rgba(70, 87, 237, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4657ed;
}

.author-details {
    flex: 1;
}

.author-details h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.author-details p {
    color: #e0e0e0;
    font-size: 0.95em;
    margin: 3px 0;
}

.audio-player-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    position: sticky;
    top: 80px;
    /* adjust this to match your header height */
    z-index: 900;
}

.audio-player-title {
    color: #06b6d4;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.audio-player {
    width: 100%;
    height: 40px;
    filter: invert(1) hue-rotate(180deg);
}

/* ============ Content Images ============ */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-caption {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

.image-container {
    margin: 40px 0;
}
