

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mark3-t22-about-section {
    padding: 60px 10%;
    font-family: 'Inter', sans-serif; /* Clean sans-serif font */
    background-color: #f0f0f0;
    color: #000000;
    margin-top: 70px;
}

/* Top Row Layout */
.mark3-t22-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.mark3-t22-main-heading {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    color: #1d1c1c;
}

.mark3-t22-sub-text {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* Bottom Row Layout */
.mark3-t22-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mark3-t22-mission-statement {
    max-width: 700px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

/* Circular Scroll Button */


.mark3-t23-container {
    width: 100%;
    padding: 60px 0%;
    background-color: #f0f0f0;
}

/* Grid for Images */
.mark3-t23-image-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    height: 500px; /* Aap height adjust kar sakte hain */
}

.mark3-t23-img-col {
    overflow: hidden;
}

.mark3-t23-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko crop karke fit karne ke liye */
   filter: grayscale(100%) brightness(0.9);

}

/* Alag alag width proportions */
.mark3-t23-img-large { flex: 2; }
.mark3-t23-img-medium { flex: 1.5; }
.mark3-t23-img-narrow { flex: 0.5; }

/* Text Styling */
.mark3-t23-content {
    max-width: 900px;
}

.mark3-t23-description {
    font-size: 38px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-left: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mark3-t23-image-grid {
        flex-direction: column;
        height: auto;
    }
    .mark3-t23-description {
        font-size: 24px;
    }
}
@media (max-width: 425px) {
 
    .mark3-t22-main-heading {
        font-size: 4rem;
    }
    .mark3-t22-sub-text{
        display: none;
    }
}


.mark3-t24-wrapper {
    padding: 80px 5%;
    background-color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.mark3-t24-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* Columns */
.mark3-t24-left-col {
    width: 25%;
}

.mark3-t24-right-col {
    width: 60%;
}

/* Typography */
.mark3-t24-main-title {
    font-size: 5rem;
    font-weight: 900;
    color: #191818;
    margin-bottom: 40px;
}

.mark3-t24-side-note, .mark3-t24-brand-tag {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    max-width: 200px;
}

.mark3-t24-main-para {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
}

.mark3-t24-sub-heading {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Image Styling */
.mark3-t24-image-container {
    width: 100%;
    overflow: hidden;
}

.mark3-t24-bottom-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .mark3-t24-row {
        flex-direction: column;
    }
    .mark3-t24-left-col, .mark3-t24-right-col {
        width: 100%;
    }
    .mark3-t24-main-title {
        font-size: 48px;
    }
}
        :root {
            --mark3-t21-dark: #0f172a;
            --mark3-t21-grey: #cbd5e1;
            --mark3-t21-accent-start: #ff0080;
            --mark3-t21-accent-end: #7928ca;
        }

      

        .mark3-t21-main-wrapper {
            display: flex;
            height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 0 8%;
            background-color: #f0f0f0;
        }

        /* Left Section: Years */
        .mark3-t21-years-container {
            flex: 1;
            height: 600px; /* Isse upar aur niche ke years bhi dikhenge */
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mark3-t21-years-track {
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mark3-t21-year-digit {
            height: 200px; /* Fixed height for precise scrolling */
            font-size: 15rem;
            font-weight: 800;
            line-height: 150px;
            color: var(--mark3-t21-grey);
            opacity: 0.15;
            transition: all 0.6s ease;
            user-select: none;
        }

        /* Active Year (Middle one) */
        .mark3-t21-year-digit.active {
            color: var(--mark3-t21-dark);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Middle Vertical Line */
        .mark3-t21-timeline-line {
            width: 6px;
            height: 450px;
            background: #f1f5f9;
            margin: 0 80px;
            position: relative;
        }

        .mark3-t21-gradient-indicator {
            position: absolute;
            top: 0;
            left: -1px;
            width: 6px;
            height: 100px;
            background: linear-gradient(to bottom, var(--mark3-t21-accent-start), #00d2ff);
            border-radius: 10px;
            transition: top 0.8s ease;
        }

        /* Right Section: Story */
        .mark3-t21-story-content {
            flex: 1;
            max-width: 450px;
        }

        .mark3-t21-story-title {
            font-size: 4.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--mark3-t21-dark);
        }

        .mark3-t21-story-desc {
            font-size: 1.6rem;
            line-height: 1.8;
            color: #475569;
            min-height: 150px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .mark3-t21-nav-icon {
            margin-top: 20px;
            width: 40px;
            height: 50px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .mark3-t21-main-wrapper { flex-direction: column; padding: 20px; }
            .mark3-t21-year-digit { font-size: 5rem; height: 100px; line-height: 100px; }
            .mark3-t21-years-container { height: 300px; }
            .mark3-t21-timeline-line { height: 2px; width: 100%; margin: 30px 0; }
            .mark3-t21-story-title { font-size: 2.5rem; text-align: center; }
        }


        .mark3-t24-testimonial-container {
    padding: 100px 8%;
    background-color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}

.mark3-t24-testimonial-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.mark3-t24-testimonial-heading {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.mark3-t24-testimonial-details {
    flex: 1;
    max-width: 500px;
}

/* Avatars */
.mark3-t24-avatar-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.mark3-t24-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.mark3-t24-avatar-muted {
    opacity: 0.3;
    filter: grayscale(100%);
}

/* Quote Text */
.mark3-t24-quote {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 25px;
}

.mark3-t24-client-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Brand Logos Row */
.mark3-t24-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mark3-t24-logo-circle {
    width: 120px;
    height: 120px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.mark3-t24-logo-circle img {
    max-width: 50px;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .mark3-t24-testimonial-content {
        flex-direction: column;
        gap: 40px;
    }
    .mark3-t24-brand-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Container updates for Slider */
.mark3-t24-brand-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    animation: scrollLogos 20s linear infinite; /* Loop animation */
}

/* Animation Keyframes */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Halfway through because we cloned the content */
}

/* Smooth transition for Review text */
.mark3-t24-quote {
    transition: opacity 0.5s ease-in-out;
}

/* Stop slider on hover */
.mark3-t24-brand-row:hover {
    animation-play-state: paused;
}