@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;600;700&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    overflow-x: hidden;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #ffffff;
    animation: loaderAutoHide 4s ease forwards;
}

#loading-screen.hidden {
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
}

@keyframes loaderAutoHide {

    0%,
    82% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#loading-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

body.loading {
    overflow: hidden !important;
}

/* map */

iframe {
    width: 100%;

}

.site-footer {
    background-image: url('assets/footer.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 100px 80px 80px;
    margin-top: 45px;
    color: #ffffff;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    min-height: 400px;
}

/* Brand - Bottom Left */
.footer-brand {
    position: absolute;
    top: 79px;
    left: -47px;
    max-width: 400px;

}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social img {
    width: 22px;
}

/* Footer links - Top Center */
.footer-links {
    position: absolute;
    top: 80px;
    left: 55%;
    transform: translateX(-50%);
    display: flex;
    gap: 140px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-col a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    white-space: nowrap;
}

/* CTA button - Bottom Right */
.footer-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 14px 36px;
    border: 2px solid #003049;
    background: transparent;
    color: #003049;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .site-footer {
        background-image: url('assets/footerbm.svg');
        padding: 40px 24px 200px;
        margin-top: 60px;
    }

    .footer-container {
        position: static;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Brand - First at Top */
    .footer-brand {
        position: static;
        max-width: 100%;
        margin-bottom: 40px;
        text-align: left;
        order: 1;
        margin-top: 55px;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        height: 48px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .footer-text br {
        display: none;
    }

    /* Social icons - Left aligned */
    .footer-social {
        gap: 12px;
        justify-content: flex-start;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-social img {
        width: 20px;
    }

    /* Footer links - After brand, Single column, left aligned */
    .footer-links {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 0;
        order: 2;
    }

    .footer-col {
        gap: 20px;
        margin-bottom: 54px;
    }

    .footer-col a {
        font-size: 15px;
        white-space: normal;
    }

    /* CTA button - Hide on mobile */
    .footer-btn {
        display: none;
    }

    /* Cow image at bottom */
    .site-footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 180px;
        background-image: url('assets/cowbgm.svg');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        pointer-events: none;
    }
}

/* .footer-section {
            background-image: url('assets/footer.svg');
            background-size: 100% auto;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 500px;
            position: relative;
            padding: 120px 50px 80px 50px;
            color: #FFFFFF;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            position: relative;
            min-height: 340px;
        }

        .brand-section {
            position: absolute;
            left: 0;
            top: 40px;
            width: 350px;
        }

        .brand-title {
            font-size: 48px;
            font-weight: 400;o
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .brand-tagline {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 40px;
            max-width: 280px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border: 2px solid #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .social-icon img {
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
        }

        .navigation-section {
            position: absolute;
            left: 450px;
            top: 40px;
            right: 280px;
            display: flex;
            justify-content: space-between;
        }

        .nav-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .nav-column a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.3;
            transition: opacity 0.3s ease;
        }

        .nav-column a:hover {
            opacity: 0.8;
        }

        .see-all-button {
            position: absolute;
            bottom: 0px;
            right: 0px;
            padding: 14px 28px;
            background: transparent;
            border: 2px solid #003049;
            color: #003049;
            font-family: 'Readex Pro', sans-serif;
            font-weight: 400;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .see-all-button:hover {
            background-color: #003049;
            color: #FFFFFF;
        }

        @media (max-width: 1200px) {
            .footer-section {
                padding: 60px 30px 40px 30px;
            }

            .brand-section {
                position: static;
                width: 100%;
                margin-bottom: 60px;
            }

            .navigation-section {
                position: static;
                left: auto;
                right: auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                margin-bottom: 60px;
            }

            .see-all-button {
                position: static;
                align-self: flex-start;
            }
        }

        @media (max-width: 768px) {
            .navigation-section {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .brand-title {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .navigation-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-section {
                padding: 40px 20px 30px 20px;
            }
        } */

.section12-newsletter-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.section12-newsletter-heading {
    color: #003049;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section12-newsletter-description {
    color: #003049;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section12-subscription-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.section12-email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #F9A55C;
    border-radius: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.section12-email-input::placeholder {
    color: #999;
}

.section12-email-input:focus {
    border-color: #e8944a;
}

.section12-subscribe-button {
    background-color: #F9A55C;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section12-subscribe-button:hover {
    background-color: #e8944a;
    transform: translateY(-2px);
}

.section12-subscribe-button:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .section12-newsletter-heading {
        font-size: 2.5rem;
    }

    .section12-newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .section12-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .section12-email-input {
        width: 100%;
    }

    .section12-subscribe-button {
        width: 100%;
    }
}

.blogs-section-10 {
    margin-top: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #003049;
    background: linear-gradient(to right, #F9A55C 25%, #F8F5E7 25%);
    min-height: 10vh;
}

.blogs-section-10 * {
    box-sizing: border-box;
}

.blogs10-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blogs10-heading {
    font-family: 'Readex Pro', sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #003049;
}

.blogs10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.blogs10-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.blogs10-card:hover {
    transform: translateY(-5px);
}

.blogs10-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Separate images for each blog */
.blog-image-1 {
    background-image: url('assets/blog1.jpg');
}

.blog-image-2 {
    background-image: url('assets/blog2.jpg');
}

.blog-image-3 {
    background-image: url('assets/blog3.jpg');
}

.blogs10-content {
    padding: 24px 0;
}

.blogs10-date {
    font-size: 14px;
    color: #003049;
    margin-bottom: 12px;
    opacity: 0.7;
}

.blogs10-title {
    font-size: 18px;
    font-weight: 600;
    color: #003049;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .blogs-section-10 {
        background: #F8F5E7;
    }

    .blogs10-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .blogs10-container {
        padding: 40px 15px;
    }

    .blogs10-grid {
        padding: 0;
        gap: 20px;
    }

    .blogs10-content {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .blogs10-heading {
        font-size: 28px;
    }

    .blogs10-title {
        font-size: 16px;
    }
}

.section9 {
    background-color: #fff;
    padding: 50px 20px;
}

.section9-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section9-title {
    text-align: center;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #003049;
    margin-bottom: 60px;
}

.section9-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section9-review-card {
    background-color: #F8F5E7;
    border-radius: 15px;
    padding: 40px 30px 30px;
    position: relative;
    overflow: hidden;
}

.section9-quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 30px;
    height: 24px;
    background-image: url('assets/comma.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.section9-review-text {
    font-family: 'Gilroy-Medium', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #003049;
    margin-bottom: 30px;
    margin-top: 20px;
}

.section9-reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin: 0 -30px -30px -30px;
}

.section9-reviewer-info-bg {
    background-color: white;
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
}

.section9-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.section9-reviewer-details {
    display: flex;
    flex-direction: column;
}

.section9-reviewer-name {
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #003049;
    margin-bottom: 2px;
}

.section9-reviewer-source {
    font-family: 'Gilroy-RegularItalic', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #003049;
    font-style: italic;
}

@media (max-width: 768px) {
    .section9-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section9-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .section9-review-card {
        padding: 30px 25px 25px;
    }
}

.section8 {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    background: #F8F5E7;
}

.section8-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;
}

.section8-video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section8-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.section8-heading {
    text-align: center;
    color: #003049;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: 'Readex Pro', sans-serif;
}

.section8-features-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.section8-feature {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.section8-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    display: block;
}

.section8-feature-text {
    color: #003049;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Readex Pro', sans-serif;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section8-heading {
        font-size: 2rem;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .section8-features-container {
        flex-direction: column;
        gap: 40px;
    }

    .section8-feature {
        min-width: 200px;
    }

    .section8-video-container {
        border-radius: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section8-container {
        padding: 15px;
    }

    .section8-heading {
        font-size: 1.8rem;
    }

    .section8-feature-icon {
        width: 60px;
        height: 60px;
    }

    .section8-feature-text {
        font-size: 1rem;
    }
}

.section6 {
    width: 100%;
    height: 60vh;
    position: relative;
}

.section6-banner {
    width: 100%;
    height: 100%;
    background: white url('assets/bgsec.svg') no-repeat center center;
    background-size: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}

.section6-stats-container {
    display: flex;
    align-items: center;
    gap: 80px;
    z-index: 2;
    position: relative;
    width: 50%;
    justify-content: flex-start;
    margin-left: -450px;
    margin-top: 125px;
}

.section6-stat-item {
    text-align: center;
    color: #003049;
}

.section6-stat-number {
    font-family: 'Readex Pro', sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}

.section6-stat-label {
    font-family: 'Circular Std', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.section6-cow-image {
    display: none;
}

@media (max-width: 1200px) {
    .section6-banner {
        padding: 0 40px;
    }

    .section6-stats-container {
        gap: 60px;
        margin-left: -300px;
    }
}

@media (max-width: 768px) {
    .section6 {
        height: auto;
        min-height: 80vh;
    }

    .section6-banner {
        flex-direction: column;
        padding: 80px 40px;
        justify-content: flex-start;
        background: white url('assets/mobilecow.svg') no-repeat center center;
        background-size: 90%;
    }

    .section6-stats-container {
        gap: 35px;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 50px;
        align-items: center;
        padding: 0;
    }

    .section6-cow-image {
        display: block;
        width: 70%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
    }

    .section6-stat-item {
        text-align: center;
        width: 100%;
    }

    .section6-stat-number {
        font-size: 80px;
    }

    .section6-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .section6-banner {
        padding: 60px 30px;
        background-size: 85%;
    }

    .section6-stats-container {
        gap: 30px;
    }

    .section6-stat-number {
        font-size: 70px;
    }
}

.section5 {
    font-family: 'Readex Pro', sans-serif;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    padding: 60px 20px;
}

.section5-wrapper {
    background-color: #FBE4D0;
    border-radius: 60px;
    padding: 60px 80px;
    max-width: 1600px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.section5-container {
    display: flex;
    align-items: center;
    gap: 200px;
    max-width: 1600px;
}

.section5-logo-section {
    position: relative;
    width: 450px;
    height: 450px;
}

.section5-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background-color: #F8F5E7;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.section5-tilted-section {
    width: 450px;
    height: 450px;
    background-color: #F9A55C;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.section5-right-section {
    width: 450px;
    height: 450px;
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    cursor: pointer;
    z-index: 5;
}

.section5-sindoor-image {
    position: absolute;
    left: 50px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 120px;
    height: auto;
    cursor: pointer;
    pointer-events: auto;
}

.section5-karunanidhi-image {
    position: absolute;
    right: 30px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    width: 150px;
    height: auto;
    cursor: pointer;
    pointer-events: auto;
}

.section5-content-section {
    flex: 1;
    max-width: 650px;
}

.section5-content-text {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #003049;
    font-size: 26px;
    line-height: 50px;
    letter-spacing: 0%;
    transition: opacity 0.3s ease;
}

/* Hover classes that will be applied via JavaScript */
.section5-wrapper.sindoor-hover {
    background-color: #F9A55C;
}

.section5-circle.sindoor-hover {
    background-color: #F9A55C;
}

.section5-circle.sindoor-hover .section5-tilted-section {
    background-color: #F8F5E7;
}

.section5-wrapper.karunanidhi-hover {
    background-color: #F8F5E7;
}

.section5-circle.karunanidhi-hover {
    background-color: #F9A55C;
}

.section5-circle.karunanidhi-hover .section5-tilted-section {
    background-color: #F8F5E7;
}

@media (max-width: 1200px) {
    .section5-container {
        gap: 100px;
    }

    .section5-wrapper {
        padding: 40px 60px;
    }
}

@media (max-width: 968px) {
    .section5 {
        padding: 0;
        background-color: #FFFFFF;
    }

    .section5-wrapper {
        background-color: transparent;
        border-radius: 0;
        padding: 40px 20px;
        max-width: 100%;
    }

    .section5-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .section5-logo-section {
        width: 300px;
        height: 300px;
    }

    .section5-circle {
        width: 300px;
        height: 300px;
    }

    .section5-tilted-section {
        width: 300px;
        height: 300px;
    }

    .section5-right-section {
        width: 300px;
        height: 300px;
    }

    .section5-sindoor-image {
        left: 30px;
        width: 80px;
    }

    .section5-karunanidhi-image {
        right: 20px;
        width: 100px;
    }

    .section5-content-section {
        max-width: 100%;
        width: 100%;
    }

    .section5-content-text {
        font-size: 16px;
        line-height: 28px;
        text-align: left;
        color: #003049;
    }

    /* Remove hover effects on mobile */
    .section5-wrapper.sindoor-hover,
    .section5-wrapper.karunanidhi-hover {
        background-color: transparent;
    }
}



.sec4 {
    background-color: white;
    font-family: 'Readex Pro', sans-serif;
    width: 100%;
}

.sec4-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 60px;
}

.sec4-content {
    flex: 1;
    max-width: 500px;
}

.sec4-main-heading {
    font-size: 30px;
    font-weight: 400;
    color: #003049;
    line-height: 1.2;
    margin-bottom: 30px;
}

.sec4-description {
    font-size: 16px;
    font-weight: 300;
    color: #003049;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sec4-learn-more-btn {
    background-color: #003049;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    font-family: 'Readex Pro', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.sec4-learn-more-btn:hover {
    background-color: #002a3d;
}

.sec4-image-section {
    flex: 1;
    max-width: 600px;
}

.sec4-cow-image {
    width: 100%;
    max-width: 628px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .sec4-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .sec4-content {
        order: 2;
        max-width: 100%;
        width: 100%;
    }

    .sec4-image-section {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .sec4-main-heading {
        font-size: 22px;
        text-align: left;
        margin-bottom: 15px;
    }

    .sec4-description {
        font-size: 14px;
        text-align: left;
        margin-bottom: 20px;
    }

    .sec4-cow-image {
        border-radius: 16px;
        max-width: 100%;
    }

    .sec4-learn-more-btn {
        padding: 12px 25px;
        font-size: 14px;
        display: inline-block;
    }
}



.product-section-3 {
    background-color: #F8F5E7;
    padding: 40px 20px;
    min-height: 10vh;
    font-family: 'Readex Pro', sans-serif;
}

.container-3 {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 8px;
    border-radius: 35px;
    width: fit-content;
    margin: 0 auto 40px auto;
    background-color: #EEC370;
    padding: 8px;
}

.tab-3 {
    background-color: transparent;
    color: white;
    padding: 12px 60px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 30px;
    margin: 0;
    min-width: 180px;
}

.tab-3.active {
    background-color: white;
    color: #003049;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.product-card-3 {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 25px;
}

.product-card-3.hidden {
    display: none;
}

.product-card-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-3 {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #f8f5e7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-card-3:hover .product-image-3 img {
    transform: scale(1.05);
}

.product-icon-3 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-content-3 {
    padding: 20px 20px 35px 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    background: white;
}

.rating-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 5px;
}

.stars-3 {
    color: #003049;
    font-size: 14px;
}

.rating-text-3 {
    color: #003049;
    font-size: 12px;
    margin-left: 5px;
}

.product-title-3 {
    color: #003049;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.shop-btn-3 {
    background-color: #003049;
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 170px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 48, 73, 0.2);
    z-index: 10;
}

.shop-btn-3:hover {
    background-color: #004a6b;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 48, 73, 0.3);
}

.carousel-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #003049;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .products-grid-3 {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        overflow: hidden;
    }

    .product-card-3 {
        display: none !important;
    }

    .product-card-3.active-slide {
        display: block !important;
    }

    .tab-3 {
        padding: 12px 20px;
        font-size: 13px;
        min-width: 110px;
    }

    .product-section-3 {
        padding: 30px 15px;
        margin-top: -29px;
    }

    .shop-btn-3 {
        width: 140px;
        padding: 15px 20px;
        font-size: 11px;
    }

    .carousel-dots {
        display: flex;
    }

    .product-image-3 {
        min-height: 280px;
    }

    .product-image-3 img {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .shop-btn-3 {
        width: 150px;
        padding: 18px 22px;
    }

    .tabs-3 {
        padding: 6px;
    }

    .tab-3 {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 95px;
    }

    .product-image-3 {
        min-height: 300px;
    }
}

.curved-section {
    background-color: #F8F5E7;
    position: relative;
    padding: 30px 40px 40px;
    margin-top: -40px;
}

.curved-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #F8F5E7;
    border-radius: 50px 50px 0 0;
}

.curved-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.curved-section .main-heading {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 60px;
    color: #003049;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.curved-section .features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.curved-section .feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

.curved-section .feature-item:hover {
    transform: translateY(-5px);
}

.curved-section .icon-container {
    width: 169px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.curved-section .icon-container:hover {
    transform: translateY(-8px) scale(1.05);
}

.curved-section .icon-container img {
    width: 169px;
    height: 144px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.curved-section .icon-container:hover img {
    transform: rotate(5deg);
}

.curved-section .feature-text {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: #003049;
    margin: 0;
}

@media (max-width: 768px) {
    .curved-section {
        padding: 60px 20px 100px;
    }

    .curved-section .main-heading {
        font-size: 28px;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .curved-section .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .curved-section .feature-item {
        min-width: 100%;
        max-width: 400px;
    }

    .curved-section .feature-text {
        font-size: 16px;
        font-weight: 300;
    }
}

@media (max-width: 480px) {
    .curved-section .main-heading {
        font-size: 24px;
        padding: 0 10px;
        font-weight: 300;
    }

    .curved-section .icon-container {
        width: 140px;
        height: 120px;
    }

    .curved-section .icon-container img {
        width: 140px;
        height: 120px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #EDF2F4;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-left a {
    text-decoration: none;
    color: #1D3557;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: #666;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right .nav-link {
    text-decoration: none;
    color: #1D3557;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-right .nav-link:hover {
    color: #666;
}

.contact-btn {
    background-color: #003049;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Readex Pro', sans-serif;
}

.contact-btn:hover {
    background-color: #002a3d;
}

/* Hide mobile elements on desktop */
.menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    /* Hide desktop navigation on mobile */
    .nav-left,
    .nav-right {
        display: none;
    }

    /* Show logo on left */
    .logo img {
        height: 35px;
    }

    /* Show hamburger icon on right */
    .menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 40px;
        background-color: #F8F5E7;
        padding: 10px;
        border-radius: 4px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .menu-icon span {
        width: 100%;
        height: 3px;
        background-color: #3B3411;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-icon.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    /* Mobile Menu */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        background: #EDF2F4;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu.active {
        max-height: calc(100svh - 70px);
        padding: 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #1D3557;
        font-weight: 300;
        font-size: 16px;
        letter-spacing: 0.5px;
        padding: 10px 0;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: #666;
    }

    .mobile-menu .contact-btn {
        width: 100%;
        margin-top: 10px;
        flex: 0 0 auto;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 65px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

.play-button {
    display: none;
}

.play-icon {
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100vw;
        margin: 0;
        padding: 0;
    }

    .mobile-text {
        display: inline !important;
    }

    .desktop-text {
        display: none !important;
    }

    .hero {
        height: 100vh;
        width: 100vw;
        margin: 0;
        padding: 0;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
        margin: 0;
        margin-top: -250px;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 115% !important;
        margin-bottom: 40px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-left {
        gap: 20px;
    }

    .nav-left a {
        font-size: 12px;
    }

    .logo-text {
        font-size: 20px;
    }

    .play-button {
        width: auto;
        height: auto;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
        line-height: 120% !important;
    }
}

/* header extra css */

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    text-decoration: none;
    display: block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    z-index: 999;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* Second Level */
.submenu {
    position: relative;
}

.submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    background: #fff;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.submenu:hover .submenu-content {
    display: block;
}

.submenu-content a:hover {
    background: #f2f2f2;
}

/* Mobile */
.mobile-menu details {
    width: 100%;
    flex: 0 0 auto;
}

.mobile-menu summary {
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
}

.mobile-menu details a {
    display: block;
    padding: 9px 25px;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        width: 100%;
        min-height: 100svh;
        height: auto;
    }

    .section5 {
        display: block;
        width: 100%;
        padding: 36px 0 44px;
        overflow: visible;
    }

    .section5-wrapper {
        width: 100%;
        padding: 28px 16px;
        overflow: visible;
    }

    .section5-container {
        width: 100%;
        gap: 24px;
    }

    .section5-logo-section,
    .section5-circle,
    .section5-tilted-section,
    .section5-right-section {
        width: clamp(260px, 82vw, 320px);
        height: clamp(260px, 82vw, 320px);
    }

    .section5-logo-section {
        flex: 0 0 auto;
    }

    .section5-sindoor-image {
        left: 10%;
        width: clamp(72px, 23vw, 92px);
    }

    .section5-karunanidhi-image {
        right: 7%;
        width: clamp(88px, 29vw, 112px);
    }

    .section6 {
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .section6-banner {
        min-height: auto;
        height: auto;
        padding: 64px 20px 260px;
        overflow: visible;
    }

    .section6-stats-container {
        position: relative;
        z-index: 1;
    }

    iframe {
        display: block;
        height: 340px;
        margin: 44px 0;
    }

    .section12-newsletter-section {
        padding: 36px 20px 12px;
    }

    .site-footer {
        margin-top: 52px;
        padding: 96px 24px 320px;
        overflow: visible;
        min-height: auto;
        background-color: #F9A55C;
        background-size: 100% auto;
        background-position: top center;
    }

    .footer-container {
        position: relative;
        z-index: 1;
    }

    .footer-brand {
        margin-top: 0;
    }

    .footer-links {
        padding-bottom: 32px;
    }

    .site-footer::after {
        z-index: 0;
        height: 280px;
        background-size: contain;
    }
}

/* About page */
.scroll-slides-container {
    padding-top: 70px;
    background: #fffaf4;
}

.scroll-slides-wrapper {
    width: 100%;
}

.scroll-slide {
    display: block;
}

.about-slides-ready {
    overflow-x: hidden;
}

.about-slides-ready .scroll-slides-container {
    height: 100svh;
    padding-top: 70px;
    overflow: hidden;
}

.about-slides-ready .scroll-slides-wrapper {
    position: relative;
    height: calc(100svh - 70px);
}

.about-slides-ready .scroll-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(34px) scale(.985);
    transition: opacity .75s ease, transform .75s ease, visibility .75s ease;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.about-slides-ready .scroll-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.about-slides-ready .scroll-slide.slide-exit-up {
    transform: translateY(-34px) scale(.985);
}

.about-slides-ready .scroll-slide.slide-exit-down {
    transform: translateY(34px) scale(.985);
}

.scroll-slide>* {
    transition: transform .75s ease, opacity .75s ease;
}

.about-slides-ready .scroll-slide:not(.active)>* {
    opacity: 0;
    transform: translateY(20px);
}

.about-slide-dots {
    position: fixed;
    right: 26px;
    top: 50%;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
}

.about-slide-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 48, 73, .28);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.about-slide-dot.active {
    background: #f9a55c;
    transform: scale(1.35);
}

.about-scroll-ready .scroll-slides-container {
    height: auto;
    padding-top: 70px;
    overflow: visible;
}

.about-scroll-ready .scroll-slides-wrapper {
    position: static;
    height: auto;
}

.about-scroll-ready .scroll-slide {
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: visible;
}

.about-scroll-ready .scroll-slide>* {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .75s ease, transform .75s ease;
}

.about-scroll-ready .scroll-slide.in-view>* {
    opacity: 1;
    transform: translateY(0);
}

.about-scroll-ready .about-slide-dots {
    display: none;
}

.about-stack-ready .scroll-slides-container {
    height: auto;
    padding-top: 70px;
    overflow: visible;
    background: #ffffff;
}

.about-stack-ready .scroll-slides-wrapper {
    position: relative;
    height: auto;
}

.about-stack-ready .scroll-slide {
    position: sticky;
    top: 70px;
    min-height: calc(100svh - 70px);
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
    box-shadow: 0 -1px 0 rgba(0, 48, 73, .12);
}

.about-stack-ready .scroll-slide>* {
    min-height: calc(100svh - 70px);
    opacity: 0;
    transform: translateY(44px) scale(.985);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.about-stack-ready .scroll-slide.in-view>* {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-stack-ready .scroll-slide+.scroll-slide {
    margin-top: -1px;
}

.about-stack-ready .about-slide-dots {
    display: none;
}

.about-snap-ready .scroll-slides-container {
    height: auto;
    padding-top: 70px;
    overflow: visible;
    scroll-snap-type: y mandatory;
}

.about-snap-ready .scroll-slides-wrapper {
    position: static;
    height: auto;
}

.about-snap-ready .scroll-slide {
    position: relative;
    display: block;
    min-height: calc(100svh - 70px);
    scroll-snap-align: start;
    scroll-margin-top: 70px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: visible;
}

.about-snap-ready .scroll-slide>* {
    min-height: calc(100svh - 70px);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.about-snap-ready .scroll-slide.in-view>* {
    opacity: 1;
    transform: translateY(0);
}

.about-snap-ready .about-slide-dots {
    display: none;
}

.about-fullpage-ready .scroll-slides-container {
    --about-header-height: 70px;
    --about-slide-height: calc(100svh - var(--about-header-height));
    height: calc((var(--about-slide-count, 7) * var(--about-slide-height)) + var(--about-header-height));
    padding-top: var(--about-header-height);
    overflow: visible;
    background: #ffffff;
}

.about-fullpage-ready .scroll-slides-wrapper {
    position: sticky;
    top: var(--about-header-height);
    height: var(--about-slide-height);
    overflow: hidden;
}

.about-fullpage-ready .scroll-slide {
    position: absolute;
    inset: 0;
    min-height: var(--about-slide-height);
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform .82s cubic-bezier(.22, 1, .36, 1), opacity .82s ease;
}

.about-fullpage-ready .scroll-slide.is-active {
    transform: translateY(0);
    pointer-events: auto;
    z-index: 3;
}

.about-fullpage-ready .scroll-slide.is-before {
    transform: translateY(-100%);
    z-index: 1;
}

.about-fullpage-ready .scroll-slide.is-after {
    transform: translateY(100%);
    z-index: 2;
}

.about-fullpage-ready .scroll-slide>* {
    min-height: var(--about-slide-height);
    opacity: 1;
    transform: translateY(0);
}

.about-fullpage-ready .scroll-slide.is-active>* {
    animation: aboutPanelIn .82s cubic-bezier(.22, 1, .36, 1) both;
}

.about-fullpage-ready .scroll-slide[data-slide="5"] .container-timeline-7575775,
.about-fullpage-ready .scroll-slide[data-slide="6"] .container-timeline-7575775 {
    height: var(--about-slide-height);
    min-height: var(--about-slide-height);
    padding-top: clamp(18px, 3vh, 34px);
    padding-bottom: clamp(18px, 3vh, 34px);
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.about-fullpage-ready .scroll-slide[data-slide="5"] .timeline-box-7575775,
.about-fullpage-ready .scroll-slide[data-slide="6"] .timeline-box-7575775 {
    min-height: 0;
}

@keyframes aboutPanelIn {
    from {
        opacity: .82;
        transform: translateY(26px) scale(.992);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-stack-ready .scroll-slide[data-slide="5"] .container-timeline-7575775,
.about-stack-ready .scroll-slide[data-slide="6"] .container-timeline-7575775 {
    height: calc(100svh - 70px);
    min-height: calc(100svh - 70px);
    padding-top: clamp(18px, 3vh, 34px);
    padding-bottom: clamp(18px, 3vh, 34px);
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.about-stack-ready .scroll-slide[data-slide="5"] .timeline-box-7575775,
.about-stack-ready .scroll-slide[data-slide="6"] .timeline-box-7575775 {
    min-height: 0;
}

.section8-74747499,
.hero-section-75656,
.journey-section-75656,
.timeline-section-75656,
.map-section-75656,
.container-timeline-7575775 {
    width: 100%;
    min-height: auto;
    padding: clamp(56px, 4vw, 110px) clamp(18px, 5vw, 80px);
}

.section8-74747499 {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 48, 73, .35);
}

.section8-container-74747499 {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.section8-video-container-74747499 {
    width: min(700px, 100%);
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 700 / 316;
    background: #000000;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .22);
}

.section8-video-container-74747499 video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vision-content-74747499 h2,
.hero-title-75656 h1,
.plants-heading-con56,
.contact-heading-con56 {
    font-family: 'Readex Pro', sans-serif;
    color: #1D3557;
    letter-spacing: 0;
}

.vision-content-74747499 h2 {
    font-size: clamp(30px, 3.2vw, 34px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 400;
}

.vision-content-74747499 p,
.hero-text-75656 p,
.map-description-75656,
.timeline-text-7575775,
.journey-text-75656,
.timeline-text-75656 {
    color: #34495e;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}

.vision-content-74747499 {
    max-width: 700px;
}

.vision-content-74747499 p {
    color: #003049;
    font-size: 15px;
    line-height: 1.5;
}

.hero-section-75656 {
    position: relative;
    min-height: calc(100vh - 70px);
    overflow: hidden;
    background: #003049 url('assets/aboutsec1.svg') no-repeat center center / cover;
}

.hero-content-75656 {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(28px, 5vw, 80px);
    padding-top: 160px;
}

.hero-title-75656 h1 {
    font-size: clamp(36px, 5.6vw, 42px);
    line-height: 1.08;
    font-weight: 600;
    color: #ffffff;
}

.title-line-75656 {
    width: min(225px, 42vw);
    height: 10px;
    margin-top: 18px;
    background: url('assets/line.svg') no-repeat left center / 100% 100%;
}

.hero-text-75656 p {
    max-width: 520px;
    color: #ffffff;
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.65;
}

.journey-section-75656,
.timeline-section-75656 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 80px);
    background: #ffffff;
    text-align: center;
}

.journey-section-75656 {
    min-height: calc(100vh - 70px);
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(rgba(0, 48, 73, .08), rgba(0, 48, 73, .08)), url('assets/sheep.png') no-repeat center center / cover;
}

.journey-section-75656 .year-badge-75656 {
    min-width: 86px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #003049;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.journey-section-75656 .journey-text-75656 {
    max-width: 620px;
    color: #ffffff;
    font-size: clamp(24px, 2.5vw, 26px);
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.timeline-section-75656 {
    min-height: calc(100vh - 70px);
    padding: clamp(70px, 2vw, 100px) 20px;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 48, 73, .35);
}

.timeline-section-75656 .timeline-box-75656 {
    width: calc(50% - 10px);
    min-height: 474px;
    padding: 60px 34px;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 48, 73, .72), rgba(0, 48, 73, .58)), url('assets/cowbg22.png') no-repeat center center / cover;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.timeline-section-75656 .timeline-box-75656:nth-child(2) {
    background: linear-gradient(rgba(0, 48, 73, .68), rgba(0, 48, 73, .46)), url('assets/cowbg23.png') no-repeat center center / cover;
}

.timeline-section-75656 .year-badge-75656 {
    min-width: 84px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #003049;
}

.timeline-section-75656 .timeline-text-75656 {
    max-width: 390px;
    margin-top: 26px;
    color: #ffffff;
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .26);
}

.year-badge-75656,
.year-badge-7575775,
.map-badge-75656 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 6px;
    padding: 10px 18px;
    background: #003049;
    color: #ffffff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
}

.timeline-box-75656 {
    width: min(420px, 100%);
    padding: 32px;
    border-radius: 8px;
    background: #fffaf4;
    border: 1px solid rgba(29, 53, 87, .12);
}

.timeline-text-75656 {
    margin-top: 18px;
}

.map-section-75656 {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #00384d;
}

.map-description-75656 {
    max-width: 803px;
    margin: 25px auto 28px;
    color: #ffffff;
    font-size: clamp(16px, 1.45vw, 16px);
    font-weight: 400;
    line-height: 1.65;
}

.map-section-75656 .map-badge-75656 {
    min-width: 220px;
    padding: 10px 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #003049;
    font-size: 16px;
    font-weight: 700;
}

.map-container-75656 {
    width: min(410px, 72vw);
    margin: 0 auto;
}

.map-container-75656 img {
    width: 100%;
    height: auto;
    display: block;
}

.container-timeline-7575775 {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    background: #ffffff;
}

.timeline-box-7575775 {
    min-height: 220px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 8px;
    background: #fffaf4;
    border: 1px solid rgba(29, 53, 87, .12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.quote-box-7575775 {
    background: #edf2f4;
}

.quote-text-7575775 {
    color: #1D3557;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.35;
}

.quote-bottom-7575775 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-top: 28px;
}

.founder-name-7575775 {
    color: #34495e;
    line-height: 1.5;
}

.brand-logo-about,
.quote-logo-7575775 {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.scroll-slide[data-slide="5"] .container-timeline-7575775 {
    max-width: none;
    min-height: calc(100vh - 70px);
    padding: clamp(70px, 8vw, 100px) 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(210px, 1fr));
    gap: 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 48, 73, .35);
}

.scroll-slide[data-slide="5"] .timeline-box-7575775 {
    min-height: 212px;
    padding: 48px 40px;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.scroll-slide[data-slide="5"] .box1-7575775,
.scroll-slide[data-slide="5"] .box3-7575775 {
    background: linear-gradient(rgba(0, 48, 73, .70), rgba(0, 48, 73, .56)), url('assets/4sec11.png') no-repeat center center / cover;
}

.scroll-slide[data-slide="5"] .box2-7575775 {
    background: linear-gradient(rgba(0, 48, 73, .62), rgba(0, 48, 73, .34)), url('assets/4sec22.png') no-repeat center center / cover;
}

.scroll-slide[data-slide="5"] .year-badge-7575775 {
    min-width: 104px;
    margin: 0 auto 22px;
    padding: 10px 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #003049;
    font-size: 18px;
    font-weight: 700;
}

.scroll-slide[data-slide="5"] .timeline-text-7575775 {
    max-width: 470px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(18px, 1.7vw, 20px);
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

.scroll-slide[data-slide="5"] .quote-logo-box-7575775 {
    background: #f8f5e7;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    text-align: left;
}

.scroll-slide[data-slide="5"] .quote-text-7575775 {
    max-width: 520px;
    color: #003049;
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 400;
    line-height: 1.35;
}

.scroll-slide[data-slide="5"] .quote-bottom-7575775 {
    margin-top: 8px;
}

.scroll-slide[data-slide="5"] .founder-name-7575775 {
    color: #003049;
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.15;
}

.scroll-slide[data-slide="5"] .quote-logo-wrap-7575775 {
    width: min(190px, 20vw);
}

.scroll-slide[data-slide="5"] .quote-logo-7575775 {
    width: 100%;
    max-width: 190px;
}

.scroll-slide[data-slide="6"] .container-timeline-7575775 {
    max-width: none;
    min-height: calc(100vh - 70px);
    padding: clamp(70px, 8vw, 100px) 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(242px, 1fr));
    gap: 16px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 48, 73, .35);
}

.scroll-slide[data-slide="6"] .timeline-box-7575775 {
    min-height: 242px;
    padding: 32px 48px;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.scroll-slide[data-slide="6"] .box1-7575775,
.scroll-slide[data-slide="6"] .box3-7575775 {
    background: linear-gradient(rgba(0, 48, 73, .70), rgba(0, 48, 73, .56)), url('assets/4sec11.png') no-repeat center center / cover;
}

.scroll-slide[data-slide="6"] .box2-7575775 {
    background: linear-gradient(rgba(0, 48, 73, .62), rgba(0, 48, 73, .34)), url('assets/4sec22.png') no-repeat center center / cover;
}

.scroll-slide[data-slide="6"] .timeline-text-7575775 {
    max-width: 390px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(16px, 1.45vw, 18px);
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .30);
}

.scroll-slide[data-slide="6"] .brand-logo-about {
    width: auto;
    max-width: 170px;
    max-height: 82px;
    margin-top: 26px;
    object-fit: contain;
}

.scroll-slide[data-slide="6"] .box2-7575775 .brand-logo-about {
    max-width: 190px;
    max-height: 92px;
}

.scroll-slide[data-slide="6"] .quote-box-7575775 {
    position: relative;
    align-items: stretch;
    justify-content: flex-start;
    padding: 22px 30px 24px;
    background: #f8f5e7;
    text-align: left;
}

.scroll-slide[data-slide="6"] .comma-icon-7575775 {
    width: 22px;
    height: 18px;
    object-fit: contain;
    margin-bottom: 28px;
}

.scroll-slide[data-slide="6"] .quote-body-7575775 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scroll-slide[data-slide="6"] .quote-text-7575775 {
    max-width: 430px;
    color: #003049;
    font-size: clamp(16px, 1.45vw, 17px);
    font-weight: 400;
    line-height: 1.35;
}

.scroll-slide[data-slide="6"] .quote-bottom-7575775 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-top: 24px;
}

.scroll-slide[data-slide="6"] .founder-name-7575775 {
    color: #003049;
    font-size: clamp(16px, 1.55vw, 18px);
    font-weight: 700;
    line-height: 1.15;
}

.scroll-slide[data-slide="6"] .quote-logo-7575775 {
    width: min(170px, 18vw);
    max-width: 170px;
    height: auto;
    object-fit: contain;
    opacity: .85;
}

/* Contact page */
.contact-section-con56,
.plants-section-con56 {
    padding: clamp(90px, 10vw, 140px) clamp(18px, 5vw, 80px) clamp(54px, 7vw, 90px);
    background: #fffaf4;
}

.plants-section-con56 {
    padding-top: 56px;
    background: #ffffff;
}

.contact-heading-con56,
.plants-heading-con56 {
    text-align: center;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 600;
}

.subtitle-con56,
.description-con56 {
    max-width: 760px;
    margin: 16px auto 42px;
    text-align: center;
    color: #52616f;
    font-size: 17px;
    line-height: 1.65;
}

.contact-info-con56,
.locations-con56 {
    max-width: 1180px;
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.contact-item-con56,
.location-item-con56,
.form-container-con56 {
    border: 1px solid rgba(29, 53, 87, .12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(29, 53, 87, .08);
}

.contact-item-con56 {
    min-width: 0;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-circle-con56,
.location-icon-con56 {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf2f4;
    color: #003049;
}

.contact-icon-con56 {
    width: 22px;
    height: 22px;
}

.label-con56 {
    margin-bottom: 8px;
    color: #7b8793;
    font-size: 12px;
    font-weight: 700;
}

.value-con56 {
    color: #1D3557;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.form-container-con56 {
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 42px);
}

.form-title-con56 {
    margin-bottom: 24px;
    color: #1D3557;
    font-family: 'Readex Pro', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
}

.form-row-con56 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.form-input-con56,
.form-textarea-con56 {
    width: 100%;
    min-height: 70px !important;
    border: 1px solid rgba(29, 53, 87, .18);
    border-radius: 6px;
    padding: 15px 16px;
    color: #1D3557;
    font: 400 15px 'Readex Pro', sans-serif;
    background: #fbfcfd;
}

.form-textarea-con56 {
    min-height: 130px;
    resize: vertical;
}

.form-input-con56:focus,
.form-textarea-con56:focus {
    outline: none;
    border-color: #f9a55c;
    box-shadow: 0 0 0 3px rgba(249, 165, 92, .18);
}

.submit-btn-con56 {
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 16px 22px;
    background: #003049;
    color: #ffffff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.thank-you-message-con56 {
    display: none;
    margin-top: 24px;
    text-align: center;
    color: #1D3557;
}

.locations-con56 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-item-con56 {
    position: relative;
    padding: 30px;
}

.location-title-con56 {
    color: #1D3557;
    font-family: 'Readex Pro', sans-serif;
    font-size: 22px;
}

.location-address-con56 {
    margin-top: 16px;
    color: #52616f;
    line-height: 1.65;
}

.location-icon-con56 {
    position: absolute;
    top: 24px;
    right: 24px;
}

.map-container-con56 {
    max-width: 1180px;
    margin: 0 auto;
}

.map-container-con56 iframe {
    width: 100%;
    height: 420px;
    margin: 0;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 900px) {

    .section8-container-74747499,
    .hero-content-75656,
    .container-timeline-7575775,
    .contact-info-con56,
    .locations-con56,
    .form-row-con56 {
        grid-template-columns: 1fr;
    }

    .timeline-section-75656 {
        flex-direction: column;
    }

    .contact-info-con56 {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .about-slides-ready .scroll-slides-container {
        height: 100svh;
        overflow: hidden;
    }

    .about-slides-ready .scroll-slides-wrapper {
        height: calc(100svh - 66px);
    }

    .about-slides-ready .scroll-slide {
        position: absolute;
        inset: 0;
        display: grid;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(28px) scale(.99);
        pointer-events: none;
    }

    .about-slides-ready .scroll-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .about-slide-dots {
        display: none;
    }

    .scroll-slides-container {
        padding-top: 66px;
    }

    .about-stack-ready .scroll-slides-container {
        padding-top: 66px;
    }

    .about-stack-ready .scroll-slide {
        top: 66px;
        min-height: calc(100svh - 66px);
        overflow: hidden;
    }

    .about-stack-ready .scroll-slide>* {
        min-height: calc(100svh - 66px);
        transform: translateY(34px) scale(.99);
    }

    .about-snap-ready .scroll-slides-container {
        padding-top: 66px;
    }

    .about-snap-ready .scroll-slide {
        min-height: calc(100svh - 66px);
        scroll-margin-top: 66px;
    }

    .about-snap-ready .scroll-slide>* {
        min-height: calc(100svh - 66px);
        transform: translateY(28px);
    }

    .about-fullpage-ready .scroll-slides-container {
        --about-header-height: 66px;
        --about-slide-height: calc(100svh - var(--about-header-height));
    }

    .about-fullpage-ready .scroll-slide,
    .about-fullpage-ready .scroll-slide>* {
        min-height: var(--about-slide-height);
    }

    .about-fullpage-ready .scroll-slide[data-slide="5"] .container-timeline-7575775,
    .about-fullpage-ready .scroll-slide[data-slide="6"] .container-timeline-7575775 {
        height: var(--about-slide-height);
        min-height: var(--about-slide-height);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="5"] .timeline-box-7575775,
    .about-fullpage-ready .scroll-slide[data-slide="6"] .timeline-box-7575775 {
        min-height: 0;
        padding: 14px 10px;
        border-radius: 12px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="5"] .timeline-text-7575775,
    .about-fullpage-ready .scroll-slide[data-slide="6"] .timeline-text-7575775,
    .about-fullpage-ready .scroll-slide[data-slide="6"] .quote-text-7575775,
    .about-fullpage-ready .scroll-slide[data-slide="6"] .founder-name-7575775 {
        font-size: clamp(11px, 2.8vw, 14px);
        line-height: 1.32;
    }

    .about-fullpage-ready .scroll-slide[data-slide="5"] .year-badge-7575775 {
        min-width: auto;
        margin-bottom: 10px;
        padding: 7px 14px;
        font-size: 13px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="6"] .brand-logo-about {
        max-width: 96px;
        max-height: 50px;
        margin-top: 12px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="6"] .quote-box-7575775 {
        padding: 12px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="6"] .comma-icon-7575775 {
        width: 16px;
        height: 13px;
        margin-bottom: 8px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="6"] .quote-bottom-7575775 {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 8px;
    }

    .about-fullpage-ready .scroll-slide[data-slide="6"] .quote-logo-7575775 {
        width: 88px;
    }

    .about-stack-ready .scroll-slide[data-slide="5"] .container-timeline-7575775,
    .about-stack-ready .scroll-slide[data-slide="6"] .container-timeline-7575775 {
        height: calc(100svh - 66px);
        min-height: calc(100svh - 66px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
    }

    .about-stack-ready .scroll-slide[data-slide="5"] .timeline-box-7575775,
    .about-stack-ready .scroll-slide[data-slide="6"] .timeline-box-7575775 {
        min-height: 0;
        padding: 14px 10px;
        border-radius: 12px;
    }

    .about-stack-ready .scroll-slide[data-slide="5"] .timeline-text-7575775,
    .about-stack-ready .scroll-slide[data-slide="6"] .timeline-text-7575775,
    .about-stack-ready .scroll-slide[data-slide="6"] .quote-text-7575775,
    .about-stack-ready .scroll-slide[data-slide="6"] .founder-name-7575775 {
        font-size: clamp(11px, 2.8vw, 14px);
        line-height: 1.32;
    }

    .about-stack-ready .scroll-slide[data-slide="5"] .year-badge-7575775 {
        min-width: auto;
        margin-bottom: 10px;
        padding: 7px 14px;
        font-size: 13px;
    }

    .about-stack-ready .scroll-slide[data-slide="6"] .brand-logo-about {
        max-width: 96px;
        max-height: 50px;
        margin-top: 12px;
    }

    .about-stack-ready .scroll-slide[data-slide="6"] .quote-box-7575775 {
        padding: 12px;
    }

    .about-stack-ready .scroll-slide[data-slide="6"] .comma-icon-7575775 {
        width: 16px;
        height: 13px;
        margin-bottom: 8px;
    }

    .about-stack-ready .scroll-slide[data-slide="6"] .quote-bottom-7575775 {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 8px;
    }

    .about-stack-ready .scroll-slide[data-slide="6"] .quote-logo-7575775 {
        width: 88px;
    }

    .section8-74747499,
    .hero-section-75656,
    .journey-section-75656,
    .timeline-section-75656,
    .map-section-75656,
    .container-timeline-7575775 {
        padding: 44px 18px;
    }

    .section8-74747499 {
        min-height: auto;
        padding-top: 54px;
        padding-bottom: 34px;
    }

    .section8-container-74747499 {
        gap: 18px;
    }

    .section8-video-container-74747499 {
        border-radius: 18px;
        aspect-ratio: 16 / 9;
        box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    }

    .vision-content-74747499 h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .vision-content-74747499 p {
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-text-75656 br,
    .map-description-75656 br {
        display: none;
    }

    .map-section-75656 {
        min-height: 620px;
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .map-section-75656 .map-badge-75656 {
        min-width: auto;
        font-size: 15px;
    }

    .map-description-75656 {
        margin: 13px auto 26px;

        font-size: 15px;
        line-height: 1.55;
    }

    .map-container-75656 {
        width: min(340px, 86vw);
    }

    .hero-section-75656 {
        min-height: 620px;
        align-items: start;
        padding-top: 86px;
        padding-bottom: 150px;
    }

    .hero-content-75656 {
        gap: 30px;
    }

    .hero-text-75656 p {
        max-width: none;
    }

    .journey-section-75656 {
        min-height: 560px;
        padding-top: 120px;
        padding-bottom: 120px;
        background-position: center center;
    }

    .journey-section-75656 .journey-text-75656 {
        font-size: 22px;
    }

    .timeline-section-75656 {
        min-height: auto;
        gap: 18px;
        padding: 44px 18px;
    }

    .timeline-section-75656 .timeline-box-75656 {
        width: 100%;
        min-height: 320px;
        padding: 44px 20px;
        border-radius: 14px;
    }

    .timeline-section-75656 .timeline-text-75656 {
        font-size: 18px;
        margin-top: 22px;
    }

    .quote-bottom-7575775 {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-logo-about,
    .quote-logo-7575775 {
        max-width: 140px;
    }

    .scroll-slide[data-slide="5"] .container-timeline-7575775 {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 18px;
        padding: 44px 18px;
    }

    .scroll-slide[data-slide="5"] .timeline-box-7575775 {
        min-height: 260px;
        padding: 38px 22px;
        border-radius: 14px;
    }

    .scroll-slide[data-slide="5"] .quote-logo-box-7575775 {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: left;
    }

    .scroll-slide[data-slide="5"] .quote-logo-wrap-7575775 {
        width: 150px;
        justify-self: center;
    }

    .scroll-slide[data-slide="5"] .quote-text-7575775,
    .scroll-slide[data-slide="5"] .founder-name-7575775 {
        font-size: 18px;
    }

    .scroll-slide[data-slide="6"] .container-timeline-7575775 {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
        padding: 44px 14px;
    }

    .scroll-slide[data-slide="6"] .timeline-box-7575775 {
        min-height: 260px;
        padding: 36px 22px;
        border-radius: 14px;
    }

    .scroll-slide[data-slide="6"] .timeline-text-7575775 {
        font-size: 16px;
    }

    .scroll-slide[data-slide="6"] .brand-logo-about {
        max-width: 145px;
        margin-top: 22px;
    }

    .scroll-slide[data-slide="6"] .quote-box-7575775 {
        padding: 24px 28px;
    }

    .scroll-slide[data-slide="6"] .quote-bottom-7575775 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .scroll-slide[data-slide="6"] .quote-logo-7575775 {
        width: 150px;
        justify-self: center;
    }

    .contact-section-con56,
    .plants-section-con56 {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-item-con56,
    .location-item-con56,
    .form-container-con56 {
        padding: 22px;
    }

    .map-container-con56 iframe {
        height: 320px;
    }
}

/* Whey Protein product page */
.wpd-page {
    --wpd-navy: #003049;
    --wpd-deep: #062f3f;
    --wpd-orange: #f28f2c;
    --wpd-red: #be232c;
    --wpd-cream: #f8f3e4;
    --wpd-mint: #dff0ed;
    --wpd-text: #083247;
    background: #ffffff;
    color: var(--wpd-text);
    overflow: hidden;
}

.wpd-hero {
    min-height: 470px;
    padding: 145px 20px 92px;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    background: linear-gradient(112deg, rgba(0, 48, 73, 0.98) 0%, rgba(0, 48, 73, 0.91) 45%, rgba(0, 48, 73, 0.62) 100%), url("assets/cowbg23.png") center / cover no-repeat;
}

.wpd-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--wpd-orange), #ffffff, var(--wpd-orange));
    z-index: -1;
}



.wpd-hero__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.wpd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.wpd-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.wpd-breadcrumb span::before {
    content: "/";
    color: var(--wpd-orange);
    margin-right: 12px;
}

.wpd-hero__content {
    max-width: 880px;
    animation: wpdHeroIn 900ms ease both;
}

.wpd-eyebrow {
    color: var(--wpd-orange);
    font-weight: 800;
    margin: 0 0 12px;
}

.wpd-hero h1 {
    color: #ffffff;
    font-size: clamp(44px, 7vw, 60px);
    line-height: 1;
    margin: 0 0 18px;
    font-weight: 900;
}

.wpd-hero__content>p:last-child {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(19px, 2.3vw, 30px);
    line-height: 1.35;
    margin: 0;
    font-weight: 700;
}

.wpd-intro {
    width: min(1180px, calc(100% - 40px));
    margin: 90px auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 73, 0.08);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 48, 73, 0.12);
    overflow: hidden;
}

.wpd-intro__copy {
    padding: 50px 54px;
}

.wpd-intro__copy h2 {
    color: var(--wpd-navy);
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.12;
    margin: 0 0 24px;
}

.wpd-intro__copy p,
.wpd-definition__body p,
.wpd-card p {
    color: #17475a;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.wpd-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    padding: 0 24px;
    border: 0;
    border-radius: 6px;
    background: var(--wpd-red, #be232c);
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wpd-quote-btn:hover {
    background: #a51f25;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(190, 35, 44, 0.24);
}

.wpd-intro__visual {
    min-height: 100%;
    align-self: stretch;
    border-radius: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 48, 73, 0.08);
}

.wpd-intro__visual img {
    width: min(100%, 600px);
    max-height: 600px;
    object-fit: cover;

}

.wpd-definition {
    position: relative;
    background: linear-gradient(130deg, var(--wpd-navy), #06455d);
    padding: 88px 20px;
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 760px);
    gap: 48px;
    justify-content: center;
    align-items: start;
    overflow: hidden;
}

.wpd-definition::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/aboutsec1.svg") right bottom / min(48vw, 560px) auto no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.wpd-section-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    padding: 14px 26px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--wpd-navy);
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 12px 0 rgba(242, 143, 44, 0.85);
}

.wpd-definition__body p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
}

.wpd-grid-section {
    width: min(1180px, calc(100% - 40px));
    margin: 90px auto 105px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
}

.wpd-card {
    min-height: 100%;
    padding: 46px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, var(--wpd-cream));
    border: 1px solid rgba(0, 48, 73, 0.08);
    box-shadow: 0 24px 60px rgba(0, 48, 73, 0.1);
}

.wpd-card--dark {
    background: linear-gradient(145deg, rgba(0, 48, 73, 0.94), rgba(6, 47, 63, 0.9)), url("assets/cowbg22.png") center / cover no-repeat;
}

.wpd-card h2 {
    color: var(--wpd-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    margin: 0 0 26px;
}

.wpd-card--dark h2,
.wpd-card--dark p {
    color: #ffffff;
}

.wpd-list,
.wpd-chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpd-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.wpd-list li {
    position: relative;
    min-height: 76px;
    padding: 16px 18px 16px 48px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--wpd-text);
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 48, 73, 0.08);
}

.wpd-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--wpd-orange);
    transform: translateY(-50%);
    box-shadow: 0 0 0 6px rgba(242, 143, 44, 0.16);
}

.wpd-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.wpd-chip-list li {
    padding: 13px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wpd-navy);
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.wpd-reveal {
    animation: wpdReveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
}

@supports not (animation-timeline: view()) {
    .wpd-reveal {
        animation: wpdReveal 800ms ease both;
    }
}

@keyframes wpdHeroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wpdReveal {
    from {
        opacity: 0;
        transform: translateY(42px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .wpd-hero__content,
    .wpd-reveal {
        animation: none;
    }
}

@media (max-width: 900px) {
    .wpd-hero {
        min-height: 380px;
        padding: 130px 18px 70px;
    }

    .wpd-intro,
    .wpd-definition,
    .wpd-grid-section {
        grid-template-columns: 1fr;
    }

    .wpd-intro {
        margin: 58px auto;
        gap: 0;
    }

    .wpd-intro__copy {
        padding: 34px;
    }

    .wpd-intro__visual {
        min-height: 280px;
        border-left: 0;
        border-top: 1px solid rgba(0, 48, 73, 0.08);
    }

    .wpd-definition {
        padding: 58px 20px;
        gap: 34px;
    }

    .wpd-grid-section {
        margin: 58px auto 72px;
    }
}

@media (max-width: 560px) {
    .wpd-hero {
        min-height: 340px;
        padding: 118px 16px 58px;
    }

    .wpd-breadcrumb {
        font-size: 13px;
        padding: 9px 14px;
    }

    .wpd-intro,
    .wpd-grid-section {
        width: min(100% - 28px, 1180px);
    }

    .wpd-intro__copy p,
    .wpd-definition__body p,
    .wpd-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .wpd-intro__visual,
    .wpd-card {
        padding: 24px;
    }

    .wpd-intro__copy {
        padding: 26px;
    }

    .wpd-intro__visual {
        min-height: 260px;
    }

    .wpd-section-label {
        font-size: 18px;
        padding: 12px 20px;
    }

    .wpd-list li {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
    }

    .wpd-list {
        grid-template-columns: 1fr;
    }

    .wpd-chip-list li {
        font-size: 13px;
        padding: 10px 13px;
    }
}



/* ================================
   WHEY PROTEIN MARKET AREA
================================ */

.whey-market-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background: #F7EDE1;
}




.whey-market-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.whey-market-block {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    margin-bottom: 32px;
    background: #ffffff;
    border: 1px solid rgba(206, 163, 83, 0.28);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(68, 49, 28, 0.08);
    transition: all 0.35s ease;
}

.whey-market-block:last-child {
    margin-bottom: 0;
}

.whey-market-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(68, 49, 28, 0.13);
}

.whey-market-left {
    position: relative;
    padding: 35px 28px;
    background: #CEA353;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}


.whey-market-number {
    width: 52px;
    height: 52px;
    position: relative;
    z-index: 2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #CEA353;
    font-size: 17px;
    font-weight: 700;
}

.whey-market-type {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.whey-market-type span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.whey-market-type b {
    display: block;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
}

.whey-market-content {
    padding: 38px 42px;
}

.whey-market-content h5,
.whey-market-content h3,
.whey-market-content h4 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 16px;
    color: #302821;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.whey-market-content h5::after,
.whey-market-content h3::after,
.whey-market-content h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background: #CEA353;
}

.whey-market-content p {
    margin: 0 0 20px;
    color: #665e57;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
}

.whey-market-content p:last-child {
    margin-bottom: 0;
}

.whey-market-content strong {
    color: #352d27;
    font-weight: 700;
}


/* Supplier block */

.whey-market-block:nth-child(2) .whey-market-left {
    background: #F7EDE1;
    border-right: 1px solid rgba(206, 163, 83, 0.25);
}

.whey-market-block:nth-child(2) .whey-market-number {
    background: #CEA353;
    color: #ffffff;
}

.whey-market-block:nth-child(2) .whey-market-type span {
    color: #9b783d;
}

.whey-market-block:nth-child(2) .whey-market-type b {
    color: #342b24;
}

.whey-market-block:nth-child(2) .whey-market-left::before {
    border-color: rgba(206, 163, 83, 0.12);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .whey-market-section {
        padding: 70px 0;
    }

    .whey-market-block {
        grid-template-columns: 180px 1fr;
    }

    .whey-market-left {
        padding: 28px 22px;
    }

    .whey-market-type b {
        font-size: 20px;
    }

    .whey-market-content {
        padding: 32px 30px;
    }

    .whey-market-content h5,
    .whey-market-content h3,
    .whey-market-content h4 {
        font-size: 26px;
    }
}


@media (max-width: 767px) {

    .whey-market-section {
        padding: 55px 0;
    }

    .whey-market-container {
        padding: 0 16px;
    }

    .whey-market-block {
        display: block;
        border-radius: 19px;
        margin-bottom: 24px;
    }

    .whey-market-left {
        min-height: auto;
        padding: 20px 22px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
    }

    .whey-market-number {
        width: 46px;
        min-width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 15px;
    }

    .whey-market-type {
        margin-top: 0;
    }

    .whey-market-type span {
        margin-bottom: 3px;
        font-size: 11px;
    }

    .whey-market-type b {
        font-size: 18px;
    }

    .whey-market-content {
        padding: 27px 22px 30px;
    }

    .whey-market-content h5,
    .whey-market-content h3,
    .whey-market-content h4 {
        margin-bottom: 20px;
        padding-bottom: 14px;
        font-size: 23px;
    }

    .whey-market-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .whey-market-block:hover {
        transform: none;
    }
}


@media (max-width: 480px) {

    .whey-market-section {
        padding: 45px 0;
    }

    .whey-market-container {
        padding: 0 12px;
    }

    .whey-market-left {
        padding: 17px 18px;
    }

    .whey-market-content {
        padding: 23px 18px 26px;
    }

    .whey-market-content h5,
    .whey-market-content h3,
    .whey-market-content h4 {
        font-size: 21px;
        line-height: 1.35;
    }

    .whey-market-content p {
        font-size: 14.5px;
        line-height: 1.75;
    }
}