* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
       font-family: poppines, sans-serif;
}

.mark3-blog-mt-section {
    width: 100%;
    max-height: 100vh;
    display: flex;
    background: #f0f0f0;
    margin-top: 70px;
}

.mark3-blog-mt-container {
    display: flex;
    width: 100%;
}

/* Left Section */
.mark3-blog-mt-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mark3-blog-mt-date {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.mark3-blog-mt-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #101828;
}

.mark3-blog-mt-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 40px;
}

.mark3-blog-mt-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mark3-blog-mt-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.mark3-blog-mt-author-name {
    font-weight: 600;
    color: #101828;
}

.mark3-blog-mt-author-role {
    font-size: 14px;
    color: #475467;
}

/* Right Section */
.mark3-blog-mt-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mark3-blog-mt-img-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.mark3-blog-mt-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet (768px) */
@media (max-width: 768px) {
    .mark3-blog-mt-container {
        flex-direction: column;
    }

    .mark3-blog-mt-left {
        padding: 40px 30px;
    }

    .mark3-blog-mt-title {
        font-size: 36px;
    }

    .mark3-blog-mt-right {
        height: 500px;
    }

    .mark3-blog-mt-quote {
        font-size: 24px;
    }
}

/* Mobile (425px) */
@media (max-width: 425px) {
    .mark3-blog-mt-left {
        padding: 30px 20px;
    }

    .mark3-blog-mt-title {
        font-size: 28px;
    }

    .mark3-blog-mt-desc {
        font-size: 16px;
    }

    .mark3-blog-mt-right {
        height: 400px;
    }

    .mark3-blog-mt-overlay {
        padding: 30px 20px;
    }

    .mark3-blog-mt-quote {
        font-size: 18px;
        line-height: 1.3;
    }
}

.mark3-blog-mt-main-section {
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px 0;
      font-family: poppines, sans-serif;
}

.mark3-blog-mt-wrapper {
    display: flex;
    max-width: 1450px;
    margin: 0 auto;
        flex-direction: column;
}

/* Image Side */
.mark3-blog-mt-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 600px;
}

.mark3-blog-mt-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mark3-blog-mt-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    padding: 40px;
}

.mark3-blog-mt-overlay-quote {
    color: white;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1.4;
    max-width: 100%;
    opacity: 0.3;
}

/* Text Side */
.mark3-blog-mt-text-container {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    display: flex;
    align-items: center;
}

.mark3-blog-mt-content-box {
    max-width: 1300px;
}

.mark3-blog-mt-dropcap {
    float: left;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    margin-right: 12px;
    color: #101828;
}

.mark3-blog-mt-intro-para {
    font-size: 18px;
    color: #475467;
    line-height: 1.6;
    margin-bottom: 40px;
}

.mark3-blog-mt-main-quote {
    font-size: 24px;
    font-weight: 500;
    color: #101828;
    line-height: 1.5;
    margin-bottom: 30px;
    border-left: 4px solid #EAECF0;
    padding-left: 20px;
}

.mark3-blog-mt-author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mark3-blog-mt-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mark3-blog-mt-author-name {
    font-size: 16px;
    color: #475467;
    font-weight: 600;
}

/* --- Media Queries --- */

/* Tablet (768px) */
@media (max-width: 768px) {
    .mark3-blog-mt-wrapper {
        flex-direction: column; /* Stack vertically */
    }
    
    .mark3-blog-mt-image-container {
        height: 400px;
    }
    
    .mark3-blog-mt-text-container {
        padding: 40px 20px;
    }
}

/* Mobile (425px) */
@media (max-width: 425px) {
    .mark3-blog-mt-main-quote {
        font-size: 18px;
    }
    
    .mark3-blog-mt-overlay-quote {
        font-size: 18px;
    }
}

:root {
    --brand-blue: #000000;
    --text-dark: #101828;
    --text-gray: #475467;
}

.mark3-testimonial-mt-section {
    padding: 80px 5%;
    background-color: #f0f0f0;
       font-family: poppines, sans-serif;
    max-width: 1500px;
    margin: 0 auto;
}

.mark3-testimonial-mt-header {
    text-align: center;
    margin-bottom: 60px;
}

.mark3-testimonial-mt-badge {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.mark3-testimonial-mt-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.mark3-testimonial-mt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mark3-testimonial-mt-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mark3-testimonial-mt-img-box {
    flex-shrink: 0;
}

.mark3-testimonial-mt-user-img {
    width: 160px;
    height: 160px;
    border-radius: 4px;
    object-fit: cover;
}

.mark3-testimonial-mt-stars {
    color: var(--brand-blue);
    font-size: 18px;
    margin-bottom: 12px;
}

.mark3-testimonial-mt-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.mark3-testimonial-mt-meta {
    font-size: 14px;
}

.mark3-testimonial-mt-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 8px;
}

.mark3-testimonial-mt-company {
    color: #98A2B3;
}

/* --- Responsive Media Queries --- */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .mark3-testimonial-mt-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 50px;
    }

    .mark3-testimonial-mt-main-title {
        font-size: 28px;
    }

    .mark3-testimonial-mt-item {
        flex-direction: row;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile (max-width: 425px) */
@media (max-width: 425px) {
    .mark3-testimonial-mt-item {
        flex-direction: column; /* Image on top of text */
        text-align: center;
    }

    .mark3-testimonial-mt-user-img {
        width: 120px;
        height: 120px;
    }

    .mark3-testimonial-mt-main-title {
        font-size: 24px;
    }

    .mark3-testimonial-mt-quote {
        font-size: 15px;
    }
}

.mark4-review-mt-modal {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
       font-family: poppines, sans-serif;
    overflow: hidden;
}

.mark4-review-mt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eaecf0;
}

.mark4-review-mt-title {
    font-size: 20px;
    font-weight: 700;
    color: #101828;
}

.mark4-review-mt-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #667085;
    cursor: pointer;
}

.mark4-review-mt-body {
    padding: 24px;
}

.mark4-review-mt-description {
    color: #475467;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.mark4-review-mt-section {
    margin-bottom: 20px;
}

.mark4-review-mt-label {
    display: block;
    font-weight: 600;
    color: #344054;
    margin-bottom: 10px;
}

.mark4-review-mt-stars {
    display: flex;
    gap: 8px;
    font-size: 32px;
    color: #D0D5DD;
}

.mark4-review-mt-star {
    cursor: pointer;
    transition: color 0.2s;
}

.mark4-review-mt-star.active {
    color: #000000; /* Golden color from screenshot */
}

.mark4-review-mt-textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 1px solid #D0D5DD;
    border-radius: 0px;
    font-size: 15px;
    resize: none;
    outline: none;
}

.mark4-review-mt-textarea:focus {
    border-color: #000000; /* Orange focus */
}

.mark4-review-mt-footer {
    padding: 16px 24px;
    background: #fcfcfd;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.mark4-review-mt-btn-cancel {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 0px;
    font-weight: 600;
    color: #344054;
    cursor: pointer;
}

.mark4-review-mt-btn-post {
    padding: 10px 18px;
    background: #000000; /* Primary orange color */
    border: none;
    border-radius: 0px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

/* --- Responsive Adjustments --- */
@media (max-width: 640px) {
    .mark4-review-mt-modal {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .mark4-review-mt-footer {
        flex-direction: column-reverse;
    }
    
    .mark4-review-mt-btn-cancel, 
    .mark4-review-mt-btn-post {
        width: 100%;
    }
}
