.content-marketing-hero .hero-content h1{
font-size: 56px;
max-width: 550px;

}
.content-marketing-hero .hero-content p{
    font-size: 18px;
    max-width: 807px;
    font-weight: 300;
    line-height: 170%;
    text-transform: capitalize !important;

}

.hero-section .hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .content-marketing-hero .hero-content h1 {
        font-size: 48px;
    }
    .hero-section .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .content-marketing-hero .hero-content h1 {
        font-size: 38px;
    }
    .content-marketing-hero .hero-content p {
        font-size: 16px;
    }
    .hero-section .hero-image {
        max-width: 320px;
    }
}





/* Content Struggle Section Styling */
.content-struggle-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.struggle-card-wrapper {
    background: rgba(28, 28, 28, 1);
    border-radius: 27px;
    padding: 30px;
    max-width: 1390px;
    margin: 0 auto;
}

.struggle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Portrait Styling */
.struggle-image img {
    width: 100%;
    border-radius: 16px;
    filter: grayscale(100%);
    display: block;
}

/* Typography Hierarchy */
.struggle-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--text-color);
}

.struggle-title .text-signature {
    font-size: 64px;
}

.struggle-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.struggle-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    opacity: 0.85;
}

/* Red Dot Bullets */
.struggle-list li::before {
    content: '●';
    color: #A30933; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.struggle-footer {
    font-family: 'Prata', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .struggle-card-wrapper {
        padding: 40px 24px;
    }
    
    .struggle-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .struggle-title {
        font-size: 42px;
    }

    .struggle-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .content-struggle-section { padding: 70px 24px; }
    .struggle-card-wrapper { padding: 25px 20px; }
    .struggle-title { font-size: 36px; margin-bottom: 30px; }
    .struggle-title .text-signature { font-size: 42px; }
    .struggle-list li { font-size: 16px; }
    .struggle-footer { font-size: 26px; }
    .struggle-image { max-width: 300px; }
}



/* Content Elevated Section Styling */
.content-elevated-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.content-elevated-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /* transform: translate(-50%, -50%); */
    width: 600px;
    height: 600px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(277px);
    z-index: 0;
}

.elevated-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Typography Scaling */
.elevated-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text-color);
}

.elevated-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 580px;
    opacity: 0.9;
}

/* Value Propositions */
.value-props-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.prop-title {
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Garet-Bold */
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

/* Red Dot Bullets */
.prop-title::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.prop-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
    padding-left: 25px;
    opacity: 0.8;
}

/* Image Column & Glow Effect */
.elevated-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.elevated-image-wrap img {
    filter: grayscale(100%);
    position: relative;
    z-index: 1;
    max-width: 100%;
}


/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .elevated-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .elevated-title {
        font-size: 48px;
    }

    .elevated-image-wrap {
        order: -1; /* Image appears first on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .content-elevated-section { padding: 70px 24px; }
    .content-elevated-section::before { width: 300px; height: 300px; filter: blur(60px); }
    .elevated-title { font-size: 36px; }
    .elevated-lead { font-size: 18px; margin-bottom: 30px; }
    .prop-title { font-size: 18px; }
    .prop-text { font-size: 16px; }
    .elevated-image-wrap { max-width: 320px; }
}





/* Moxie Process Section Styling */
.moxie-process-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.process-header {
    margin-bottom: 80px;
}

.process-header .eyebrow {
    font-family: 'Garet', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.process-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.process-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Grid/Flex Layout for Staggered Rows */
.process-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin: 0 auto;
}

.process-grid.top-row {
    margin-bottom: 48px;
}

/* Individual Process Card */

.process-card-wrap{
    position: relative;
    background: linear-gradient(180deg, #1C1C1C 0%, #A63151 100%);
    padding: 1px;
    border-radius: 8px;
    min-width: 320px;
    max-width: 447px;
}
.process-card {
    flex: 1;
    background: rgb(0, 0, 0);
    height: 100%;
    padding: 22px 19px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.process-card:hover {
    border-color: rgba(163, 9, 51, 0.3);
}

/* Watermark Numbering */
.process-number {
    font-family: 'Prata', serif;
    font-size: 76px;
    color: rgba(255, 255, 255, 0.16);
    line-height: 1;
    z-index: 0;
    text-align: center;
}

.process-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 40px;
}

.process-step-title {
    font-family: 'Prata', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.process-step-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .process-grid.top-row {
        margin-bottom: 0;
    }
    
    .process-card {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .process-main-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .moxie-process-section { padding: 70px 24px; }
    .process-main-title { font-size: 36px; }
    .process-intro { font-size: 18px; }
    .process-card-wrap { min-width: 100%; }
    .process-number { font-size: 56px; }
    .process-step-title { font-size: 24px; }
    .process-step-text { font-size: 16px; }
}






/* What We Offer Section Styling */
.what-we-offer-section {
    padding: 100px 24px;
    background-color: #000;
    /* Replicating the dark brick texture and fog effect */

    background-image: 
        linear-gradient(180deg, #000000 8.17%, rgba(0, 0, 0, 0) 100%),
        url('../content-marketing-images/brick-texture.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Atmospheric Red Glow Centers */
.what-we-offer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.offer-header {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.offer-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: #fff;
    margin-bottom: 25px;
}

.offer-subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Grid Layout */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card Styling */
.offer-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 9, 51, 0.4);
    background: rgba(20, 20, 20, 0.8);
}

.card-title {
    font-family: 'Prata', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
}

.card-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section { padding: 70px 24px; }
    .what-we-offer-section::before { width: 300px; height: 300px; filter: blur(60px); }
    .offer-title { font-size: 36px; }
    .offer-subtitle { font-size: 18px; }
    .offer-card { padding: 30px 25px; }
    .card-title { font-size: 24px; }
    .card-description { font-size: 16px; }
}






/* Testimonials Section Styling */
.testimonials-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.testimonials-header {
    margin-bottom: 70px;
}

.testimonials-header .eyebrow {
    font-family: 'Garet', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.testimonials-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    margin-top: 10px;
}

.testimonials-slider {
    display: block;
    margin: 0 -20px;
    /* Offset the slide margins */
}

.testimonial-card {
    background: rgba(26, 26, 26, 1);
    border: 5.32px solid rgba(32, 32, 32, 0.93);
    border-radius: 20px;
    padding: 48px;
    min-height: 420px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    /* margin: 0 20px;  Removed from here, applied to slick-slide instead */
}

.testimonial-card>img {
    width: 120px;
}

.testimonial-text {
    flex-grow: 1;
}

.testimonial-card p {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 27.59px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.testimonial-author img {
    width: 87px;
    height: 87px;
}

.testimonial-author strong {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 23px;
    line-height: 26.97px;
    letter-spacing: -2%;
    text-transform: capitalize;
}

.testimonials-cta {
    text-align: center;
    margin-top: 70px;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: inherit !important;
    margin: 0 40px; /* Creates the 80px gap */
    
}

.testimonials-slider {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .testimonials-slider {
        margin: 0;
    }

    .testimonial-card {
        width: 100%;
        padding: 24px;
    }

    .testimonial-card>img {
        width: 80px;
    }

    .testimonial-author img {
        width: 87px;
        height: 87px;
    }

    .testimonial-author strong {
        font-size: 18px;
    }

    .testimonial-text p {
        font-size: 14px;
    }

    .testimonial-text p:last-child {
        margin-bottom: 0;
    }

    .testimonial-author {
        margin-top: 20px;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .testimonials-title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    .testimonials-title {
        font-size: 36px;
    }
    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }
}




/* Why Moxie Section Styling */
.why-moxie-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow behind the text content */
.why-moxie-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(100px);
    z-index: 0;
}

.why-moxie-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Grayscale Image Masking */
.why-moxie-image img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(100%);
    display: block;
}

.why-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.why-lead {
    font-family: 'Garet', sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.95;
}

.why-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.85);
}

.why-description strong {
    color: #fff;
    font-weight: 850; /* Garet-Bold */
}

/* Pillar Cards Stack */
.why-pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateX(10px);
    border-color: rgba(163, 9, 51, 0.3);
}

.pillar-card h3 {
    font-family: 'Garet', sans-serif;
    font-weight: 850;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.pillar-card p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .why-moxie-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-moxie-image {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-moxie-section { padding: 70px 24px; }
    .why-moxie-section::before { width: 250px; height: 250px; filter: blur(60px); }
    .why-title { font-size: 42px; }
    .why-lead { font-size: 18px; }
    .why-description { font-size: 16px; }
    .pillar-card { padding: 25px 20px; }
    .why-moxie-image { max-width: 320px; }
}







