/* Section */
.crafting-section {
    width: 100%;
    float: left;
    background: #FAEDD4;

    /* beige */
    padding: 100px 0;
    font-family: 'Georgia', serif;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.content {
    width: 50%;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

/* Heading */
.content h1 {
    font-family: 'pp-fragment';
    font-size: 64px;
    color: #AC0755;
    font-weight: 300;
    line-height: 80px;
    letter-spacing: 0px;
    margin-bottom: 35px;
    animation: slideInDown 0.8s ease-out 0.2s both;
}
.content p{
        line-height: normal;
    color: #AC0755;
    font-family: Manrope;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 19px;
letter-spacing: 2.63px;
vertical-align: middle;

}

/* Paragraph */
.desc {
    font-family: "Manrope";
    font-size: 16px;
    color: #AC0755;
    line-height: 19px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 2px;
    margin-bottom: 27px;
    /* max-width: 420px; */
    width: 70%;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

/* Decorative line */
.line {
    position: absolute;
   bottom: -90%;
    left: 105%;
    width: 120px;
    height: 156px;
    border-left: 0px solid #b79b85;
    border-bottom: 0px solid #b79b85;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

/* Right Image */
.image-box {
    width: 50%;
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.image-box img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* Keyframe animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Section */
.np-philosophy {
    width: 100%;
    float: left;
    background-color: #FAEDD4;
    padding: 100px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    animation: fadeIn 0.8s ease-out;
}

/* Wrapper */
.np-wrapper {
    width: 80%;
    margin: auto;
}

/* Heading */
.np-header h2 {
    font-family: 'pp-fragment';
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 0px;
    color: #AC0755;
    font-weight: 300;
    margin-bottom: 25px;
    animation: slideInDown 0.8s ease-out;
}

/* Underline */
.np-underline {
    display: block;
    width: 200px;
    height: 1px;
    background-color: #AC0755;
    margin: 0 auto 60px;
    animation: expandWidth 0.8s ease-out 0.3s both;
    transform-origin: center;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 200px;
    }
}

/* Grid */
.np-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:70px;
    margin-top: 5%;
    align-items: start;
}

/* Card */
.np-card {
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 0.4s ease;
}

.np-card:nth-child(1) {
    animation-delay: 0.2s;
}

.np-card:nth-child(2) {
    animation-delay: 0.4s;
}

.np-card:nth-child(3) {
    animation-delay: 0.6s;
}

.np-card:nth-child(4) {
    animation-delay: 0.8s;
}

.np-card:nth-child(5) {
    animation-delay: 1s;
}

.np-card:nth-child(6) {
    animation-delay: 1.2s;
}

/* .np-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(140, 0, 38, 0.15);
} */

/* SVG Icon */
.np-icon {
    margin-bottom: 30px;
    animation: slideInDown 0.6s ease-out;
}

.np-icon img {
    width: 45px;
    /* adjust based on your SVG */
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.np-card:hover .np-icon img {
    transform: scale(1.2) rotate(5deg);
}

/* Title */
.np-card h3 {
    font-family: 'pp-fragment';
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #AC0755;
    margin-bottom: 35px;
    font-weight: 400;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

/* Text */
.np-card p {
    font-family: "Manrope";
    font-size: 14px;
    color: #1c1b1b;
    line-height: 19px;
    margin: auto;
    letter-spacing: 2px;
    font-weight: 400;
    width: 80%;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .np-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .np-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .np-card {
        width: auto;
    }
}

/* Section */
.stats-strip {
    background-color:#FAEDD4;
    padding: 95px 0;
    border-top: 1px solid #AC075533;
    border-bottom: 1px solid #AC075533;
    font-family: 'Playfair Display', serif;
    width: 100%;
    float: left;
    animation: fadeIn 1s ease-out;


}

/* Wrapper */
.stats-wrapper {
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Each Item */
.stats-item {
    width: 25%;
    text-align: center;
    position: relative;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stats-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-item:nth-child(2) {
    animation-delay: 0.3s;
}

.stats-item:nth-child(3) {
    animation-delay: 0.5s;
}

.stats-item:nth-child(4) {
    animation-delay: 0.7s;
}

/* Vertical Divider */
.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    transform: translateY(-50%);
    width: 1px;
    height: 100px;
    background-color: #73002b57;
    animation: slideInDown 0.8s ease-out 0.4s both;
}

/* Number */
.stats-item h2 {
    font-family: 'pp-fragment';
    font-size: 64px;
    color: #AC0755;
    font-weight: 300;
    line-height: 64px;
    margin-bottom: 20px;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stats-item h2:nth-child(1) {
    animation-delay: 0.2s;
}

/* Label */
.stats-item p {
    font-family: "Manrope";
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1c1b1b;
    animation: fadeIn 0.8s ease-out 0.3s both;
}



/* Section */
.vm-section {
    width: 100%;
    float: left;
    background-color: #FAEDD4;
    padding: 180px 0;
    font-family: 'Playfair Display', serif;
    animation: fadeIn 0.8s ease-out;
}

/* Wrapper */
.vm-wrapper {
    width: 75%;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* Card Base */
.vm-card {
    flex: 1;
    padding: 80px 60px;
    border-radius: 10px;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 0.4s ease;
}

.vm-card:nth-child(1) {
    animation-delay: 0.2s;
}

.vm-card:nth-child(2) {
    animation-delay: 0.4s;
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Dark Card (Vision) */
.vm-card--dark {
    background-color: #AC0755;
    color: #ffffff;
}

/* Light Card (Mission) */
.vm-card--light {
    background-color: transparent;
    border: 1px solid #cbb9a3;
    color: #AC0755;
}

/* Label */
.vm-label {
    font-family: "Manrope";
    display: block;
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #C7B590;
    animation: slideInUp 0.6s ease-out;

}

/* Heading */
.vm-card h3 {
    font-family: 'pp-fragment';
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 30px;
    letter-spacing: 0px;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

/* Text */
.vm-card p {
    font-family: "Manrope";
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 2px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}




/* Fix text color for dark */
.vm-card--dark p {
    color: #f3e9e4;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-wrapper {
        flex-direction: column;
    }
}

.vm-wrapper {
    gap: 50px;
}

.vm-card--dark {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Smooth */
.vm-card {
    transition: all 0.4s ease;
}

/* ===== DEFAULT STATES ===== */
.vm-card--dark {
    background-color: #AC0755;
    color: #ffffff;
}

.vm-card--light {
    background-color: transparent;
    border: 1px solid #cbb9a3;
    color: #AC0755;
}

.vm-card--light .vm-label {
    color: #73002B;
}

/* ===== WHEN HOVER ON WRAPPER ===== */
.vm-wrapper:hover .vm-card--dark {
    background-color:#FAEDD4;
    color: #AC0755;
}

.vm-wrapper:hover .vm-card--dark p,
.vm-wrapper:hover .vm-card--dark .vm-label {
    color: #AC0755;
}

.vm-wrapper:hover .vm-card--light {
    background-color: #AC0755;
    color: #d8c8b1;
    border-color: #AC0755;
}

.vm-wrapper:hover .vm-card--light p {
    color: #f3e9e4;
}

.vm-wrapper:hover .vm-card--light .vm-label {
    color: #d8c8b1;
}

/* ===== KEEP HOVERED CARD STRONG ===== */
.vm-card:hover {
    transform: translateY(-5px);
    z-index: 2;
}


/* Section */
.cv-section {
    background-color: #A10950;
    padding: 150px 0;
    font-family: 'Playfair Display', serif;
    width: 100%;
    float: left;
}

/* Wrapper */
.cv-wrapper {
    width: 75%;
    margin: auto;
}

/* Title */
.cv-title {
    font-family: 'pp-fragment';
    text-align: center;
    font-size: 64px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 0px;
    color: #faedd4;
    font-weight: 500;
    margin-bottom: 60px;
}

/* Grid */
.cv-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 0px solid rgba(216, 200, 177, 0.2);
}

/* Item */
.cv-item {
    padding: 50px;
    box-sizing: border-box;
    flex: 0 0 33.333%;
    border-right: 1px solid rgba(216, 200, 177, 0.15);
    /* border-bottom: 1px solid rgba(216, 200, 177, 0.15); */
}

/* First row: keep three columns, second row: two centered columns */
.cv-item:nth-child(-n+3) {
    flex: 0 0 33.333%;
}

.cv-item:nth-child(n+4) {
    flex: 0 0 50%;
}

/* Remove right border for end-of-row items */
.cv-item:nth-child(3) {
    border-right: none;
}
.cv-item:nth-child(5) {
    border-right: none;
}

/* Remove bottom border for last row items */
.cv-item:nth-child(n+4) {
    border-bottom: none;
}

/* Full-width divider between first and second row */
.cv-divider {
    flex: 0 0 100%;
    height: 0;
    border-top: 0px solid rgba(216, 200, 177, 0.15);
    margin: 0;
}

.cv-divider + .cv-item {
    padding-top: 30px;
}

@media (max-width: 768px) {
    .cv-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .cv-item {
        flex: 0 0 100%;
        border-right: none;
    }
}

/* Center second-row items and add vertical separator */
.cv-divider ~ .cv-item {
    flex: 0 0 45%;
    border-right: none;
    border-bottom: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-divider ~ .cv-item + .cv-item {
    border-left: 1px solid rgba(216, 200, 177, 0.15);
}

/* Small gap between the two centered items */
.cv-grid {
    gap: 0;
}

/* Remove extra borders */
.cv-item:nth-child(3n) {
    border-right: none;
}

.cv-item:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Number */
.cv-number {
    font-family: 'pp-fragment';
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 12px;
    font-weight: 400;
    color: rgb(250 237 212);
    display: block;
    margin-bottom: 16px;
}

/* Heading */
.cv-item h3 {
    font-family: 'pp-fragment';
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #faedd4;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Text */
.cv-item p {
    font-family: "Manrope";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: #faedd4;
    width: 75%;
}

/* Section */
.el-section {
    width: 100%;
    float: left;
    background-color:#FAEDD4;
    padding: 100px 0;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.el-section::before {
    content: "";
    position: absolute;
    top: 11%;
    left: -50%;
    width: 100%;
    height: 85%;
    background: url(../images/watermark-img.png) no-repeat center center;
    background-size: contain;
    opacity: 1;
}

.watermark-div {
    position: relative;
    width: 100%;
    float: left;
}

/* .watermark-div::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 65%;
    width: 55%;
    height: 45%;
    background: url(../images/watermark-img.png) no-repeat center center;
    background-size: contain;
    opacity: 1;
} */

/* Wrapper */
.el-wrapper {
    width: 80%;
    margin: auto;
}

/* Header */
.el-header {
    margin-bottom: 60px;
}

.el-sub {
    font-family: "Manrope";
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 27px;
    font-weight: 400;
    color: #AC0755;
    display: block;
    margin-bottom: 15px;
}

.el-header h2 {
    font-family: 'pp-fragment';
    font-size: 42px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: 0px;
    color: #AC0755;
    font-weight: 500;
}

/* Card */
.el-card {
    text-align: left;
}

/* Image */
.el-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 15px;
}

.el-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder block */
.el-placeholder {
    background-color: #AC0755;
}

/* Name */
.el-card h4 {
    font-family: 'pp-fragment';
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #AC0755;
}

/* Role */
.el-card p {
    font-family: "Manrope";
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #AC0755;
}

/* Owl spacing */
.el-slider .owl-item {
    padding-right: 20px;
}


@media only screen and (min-width: 1001px) and (max-width: 1100px) {
    .content h1 {
        font-family: 'pp-fragment';
        font-size: 36px;
        color: #7e0033;
        font-weight: 300;
        line-height: 58px;
        letter-spacing: 0px;
        margin-bottom: 22px;
    }

    .desc {
        font-family: "Manrope";
        font-size: 12px;
        color: #7e0033;
        line-height: 19px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 2px;
        margin-bottom: 24px;
        /* max-width: 420px; */
        width: 70%;
    }

    .line {
        position: absolute;
        bottom: 5%;
        left: 109%;
        width: 120px;
        height: 156px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
    }

    .crafting-section {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 80px 0;
        font-family: 'Georgia', serif;
    }

    .np-philosophy {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 88px 0;
        text-align: center;
        font-family: 'Playfair Display', serif;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 44px;
        line-height: 56px;
        letter-spacing: 0px;
        color: #7e0033;
        font-weight: 300;
        margin-bottom: 22px;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #7e0033;
        margin-bottom: 32px;
        font-weight: 400;
    }

    .np-card p {
        font-family: "Manrope";
        font-size: 13px;
        color: #1c1b1b;
        line-height: 18px;
        margin: auto;
        letter-spacing: 2px;
        font-weight: 400;
        width: 80%;
    }

    .stats-item h2 {
        font-family: 'pp-fragment';
        font-size: 50px;
        color: #7e0033;
        font-weight: 300;
        line-height: 58px;
        margin-bottom: 18px;
    }

    .vm-section {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 162px 0;
        font-family: 'Playfair Display', serif;
    }

    .vm-card h3 {
        font-family: 'pp-fragment';
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 28px;
        line-height: 28px;
        letter-spacing: 0px;
    }

    .vm-card p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 25px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .cv-section {
        background-color: #AC0755;
        padding: 132px 0;
        font-family: 'Playfair Display', serif;
        width: 100%;
        float: left;
    }

    .cv-title {
        font-family: 'pp-fragment';
        text-align: center;
        font-size: 46px;
        font-weight: 300;
        line-height: 52px;
        letter-spacing: 0px;
        color: #d8c8b1;
        font-weight: 500;
        margin-bottom: 54px;
    }

    .cv-item h3 {
        font-family: 'pp-fragment';
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #C7B590;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .cv-item p {
        font-family: "Manrope";
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0px;
        color: #C7B590;
        width: 75%;
    }

    .el-header h2 {
        font-family: 'pp-fragment';
        font-size: 38px;
        font-weight: 400;
        line-height: 52px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 500;
    }

    .el-card h4 {
        font-family: 'pp-fragment';
        font-size: 14px;
        line-height: 26px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 3px;
    }

    .el-card p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 26px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #AC0755;
    }

    .footer-col h4 {
        font-family: "Manrope";
        font-size: 14px;
        color: #DFC479;
        margin-bottom: 10px;
        line-height: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .footer-col a {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-col p {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-left p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0px;
        font-weight: 400;
    }
}

@media only screen and (min-width: 1101px) and (max-width:1200px) {

    .content h1 {
        font-family: 'pp-fragment';
        font-size: 46px;
        color: #7e0033;
        font-weight: 300;
        line-height: 62px;
        letter-spacing: 0px;
        margin-bottom: 24px;
    }

    .desc {
        font-family: "Manrope";
        font-size: 14px;
        color: #7e0033;
        line-height: 19px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 2px;
        margin-bottom: 24px;
        /* max-width: 420px; */
        width: 70%;
    }

    .line {
        position: absolute;
        bottom: -6%;
        left: 108%;
        width: 120px;
        height: 148px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
    }

    .np-philosophy {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 88px 0;
        text-align: center;
        font-family: 'Playfair Display', serif;
    }

    .crafting-section {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 94px 0;
        font-family: 'Georgia', serif;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 46px;
        line-height: 50px;
        letter-spacing: 0px;
        color: #7e0033;
        font-weight: 300;
        margin-bottom: 18px;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 30px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #7e0033;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .np-card p {
        font-family: "Manrope";
        font-size: 12px;
        color: #1c1b1b;
        line-height: 17px;
        margin: auto;
        letter-spacing: 2px;
        font-weight: 400;
        width: 80%;
    }

    .np-card p {
        font-family: "Manrope";
        font-size: 12px;
        color: #1c1b1b;
        line-height: 17px;
        margin: auto;
        letter-spacing: 2px;
        font-weight: 400;
        width: 80%;
    }

    .stats-item p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #1c1b1b;
    }

    .vm-section {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 164px 0;
        font-family: 'Playfair Display', serif;
    }

    .vm-label {
        font-family: "Manrope";
        display: block;
        font-size: 12px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 26px;
        opacity: 0.8;
        color: #C7B590;
    }

    .vm-card h3 {
        font-family: 'pp-fragment';
        font-size: 38px;
        font-weight: 400;
        margin-bottom: 28px;
        line-height: 28px;
        letter-spacing: 0px;
    }

    .vm-card p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .cv-title {
        font-family: 'pp-fragment';
        text-align: center;
        font-size: 48px;
        font-weight: 300;
        line-height: 52px;
        letter-spacing: 0px;
        color: #d8c8b1;
        font-weight: 500;
        margin-bottom: 52px;
    }

    .cv-item h3 {
        font-family: 'pp-fragment';
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #C7B590;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .stats-item h2 {
        font-family: 'pp-fragment';
        font-size: 44px;
        color: #7e0033;
        font-weight: 300;
        line-height: 54px;
        margin-bottom: 14px;
    }

    .cv-item p {
        font-family: "Manrope";
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: 0px;
        color: #C7B590;
        width: 75%;
    }

    .el-sub {
        font-family: "Manrope";
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 20px;
        font-weight: 400;
        color: #AC0755;
        display: block;
        margin-bottom: 12px;
    }

    .el-header h2 {
        font-family: 'pp-fragment';
        font-size: 38px;
        font-weight: 400;
        line-height: 50px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 500;
    }

    .el-card h4 {
        font-family: 'pp-fragment';
        font-size: 14px;
        line-height: 30px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 3px;
    }

    .el-card p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #AC0755;
    }

    .footer-col h4 {
        font-family: "Manrope";
        font-size: 14px;
        color: #DFC479;
        margin-bottom: 6px;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .footer-col a {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-col p {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-left p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0px;
        font-weight: 400;
    }
}

@media only screen and (min-width: 1201px) and (max-width:1300px) {

    .content h1 {
        font-family: 'pp-fragment';
        font-size: 48px;
        color: #7e0033;
        font-weight: 300;
        line-height: 68px;
        letter-spacing: 0px;
        margin-bottom: 26px;
    }

    .desc {
        font-family: "Manrope";
        font-size: 14px;
        color: #7e0033;
        line-height: 19px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 2px;
        margin-bottom: 24px;
        /* max-width: 420px; */
        width: 70%;
    }

    .line {
        position: absolute;
        bottom: -11%;
        left: 108%;
        width: 120px;
        height: 148px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
    }

    .np-philosophy {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 88px 0;
        text-align: center;
        font-family: 'Playfair Display', serif;
    }

    .crafting-section {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 94px 0;
        font-family: 'Georgia', serif;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 46px;
        line-height: 50px;
        letter-spacing: 0px;
        color: #7e0033;
        font-weight: 300;
        margin-bottom: 18px;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 30px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #7e0033;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .np-card p {
        font-family: "Manrope";
        font-size: 12px;
        color: #1c1b1b;
        line-height: 17px;
        margin: auto;
        letter-spacing: 2px;
        font-weight: 400;
        width: 80%;
    }

    .np-card p {
        font-family: "Manrope";
        font-size: 12px;
        color: #1c1b1b;
        line-height: 17px;
        margin: auto;
        letter-spacing: 2px;
        font-weight: 400;
        width: 80%;
    }

    .stats-item p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #1c1b1b;
    }

    .vm-section {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 164px 0;
        font-family: 'Playfair Display', serif;
    }

    .vm-label {
        font-family: "Manrope";
        display: block;
        font-size: 12px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 26px;
        opacity: 0.8;
        color: #C7B590;
    }

    .vm-card h3 {
        font-family: 'pp-fragment';
        font-size: 38px;
        font-weight: 400;
        margin-bottom: 28px;
        line-height: 28px;
        letter-spacing: 0px;
    }

    .vm-card p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .cv-title {
        font-family: 'pp-fragment';
        text-align: center;
        font-size: 48px;
        font-weight: 300;
        line-height: 52px;
        letter-spacing: 0px;
        color: #d8c8b1;
        font-weight: 500;
        margin-bottom: 52px;
    }

    .cv-item h3 {
        font-family: 'pp-fragment';
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #C7B590;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .stats-item h2 {
        font-family: 'pp-fragment';
        font-size: 44px;
        color: #7e0033;
        font-weight: 300;
        line-height: 54px;
        margin-bottom: 14px;
    }

    .cv-item p {
        font-family: "Manrope";
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: 0px;
        color: #C7B590;
        width: 75%;
    }

    .el-sub {
        font-family: "Manrope";
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 20px;
        font-weight: 400;
        color: #AC0755;
        display: block;
        margin-bottom: 12px;
    }

    .el-header h2 {
        font-family: 'pp-fragment';
        font-size: 38px;
        font-weight: 400;
        line-height: 50px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 500;
    }

    .el-card h4 {
        font-family: 'pp-fragment';
        font-size: 14px;
        line-height: 30px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 3px;
    }

    .el-card p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #AC0755;
    }

    .footer-col h4 {
        font-family: "Manrope";
        font-size: 14px;
        color: #DFC479;
        margin-bottom: 6px;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .footer-col a {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-col p {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-left p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0px;
        font-weight: 400;
    }
}

@media only screen and (min-width: 1301px) and (max-width:1400px) {
    .content h1 {
        font-family: 'pp-fragment';
        font-size: 44px;
        color: #7e0033;
        font-weight: 300;
        line-height: 70px;
        letter-spacing: 0px;
        margin-bottom: 30px;
    }

    .desc {
        font-family: "Manrope";
        font-size: 14px;
        color: #7e0033;
        line-height: 19px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 2px;
        margin-bottom: 24px;
        /* max-width: 420px; */
        width: 70%;
    }

    .line {
        position: absolute;
        bottom: -14%;
        left: 106%;
        width: 120px;
        height: 156px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
    }

    .np-philosophy {
        width: 100%;
        float: left;
        background-color: #d8c8b1;
        padding: 90px 0;
        text-align: center;
        font-family: 'Playfair Display', serif;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 44px;
        line-height: 60px;
        letter-spacing: 0px;
        color: #7e0033;
        font-weight: 300;
        margin-bottom: 22px;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 28px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #7e0033;
        margin-bottom: 32px;
        font-weight: 400;
    }

    .stats-item h2 {
        font-family: 'pp-fragment';
        font-size: 50px;
        color: #7e0033;
        font-weight: 300;
        line-height: 54px;
        margin-bottom: 16px;
    }

    .vm-card h3 {
        font-family: 'pp-fragment';
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 28px;
        line-height: 26px;
        letter-spacing: 0px;
    }

    .vm-card p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .vm-section {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 150px 0;
        font-family: 'Playfair Display', serif;
    }

    .cv-section {
        background-color: #AC0755;
        padding: 100px 0;
        font-family: 'Playfair Display', serif;
        width: 100%;
        float: left;
    }

    .cv-title {
        font-family: 'pp-fragment';
        text-align: center;
        font-size: 46px;
        font-weight: 300;
        line-height: 58px;
        letter-spacing: 0px;
        color: #d8c8b1;
        font-weight: 500;
        margin-bottom: 52px;
    }

    .cv-item h3 {
        font-family: 'pp-fragment';
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 0px;
        color: #C7B590;
        margin-bottom: 14px;
        font-weight: 400;
    }

    .cv-item p {
        font-family: "Manrope";
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0px;
        color: #C7B590;
        width: 75%;
    }

    .el-header h2 {
        font-family: 'pp-fragment';
        font-size: 44px;
        font-weight: 400;
        line-height: 64px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 500;
    }

    .el-card h4 {
        font-family: 'pp-fragment';
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 3px;
    }

    .el-card p {
        font-family: "Manrope";
        font-size: 12px;
        line-height: 26px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #AC0755;
    }

    .footer-col h4 {
        font-family: "Manrope";
        font-size: 14px;
        color: #DFC479;
        margin-bottom: 10px;
        line-height: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 800;
    }

    .footer-col a {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .footer-col p {
        font-family: "Manrope";
        font-size: 12px;
        text-decoration: none;
        color: #aaa;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .footer-left p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 0px;
        font-weight: 400;
    }

}

@media only screen and (min-width: 0px) and (max-width:1000px) {

    .watermark-div::before {
        display: none;
}

    .container {
        width: 80%;
        margin: auto;
        display: block;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .content {
        width: 100%;
        position: relative;
        animation: slideInLeft 1s ease-out;
    }

    .content h1 {
        font-family: 'pp-fragment';
        font-size: 29px;
        color: #AC0755;
        font-weight: 300;
        line-height: 48px;
        letter-spacing: 0px;
        margin-bottom: 35px;
        animation: slideInDown 0.8s ease-out 0.2s both;
    }

    .desc {
        font-family: "Manrope";
        font-size: 14px;
        color: #AC0755;
        line-height: 19px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 1px;
        margin-bottom: 35px;
        /* max-width: 420px; */
        width: 100%;
        animation: slideInUp 0.8s ease-out 0.3s both;
    }

    .image-box {
        width: 100%;
    }

        .line {
            display: none;
    }

    .image-box {
    margin-top: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}


    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 29px;
        line-height: 45px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 300;
        margin-bottom: 25px;
        animation: slideInDown 0.8s ease-out;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 25px;
        font-weight: 400;
        animation: slideInUp 0.6s ease-out 0.1s both;
    }

    .stats-item {
        width: 100%;
        text-align: center;
        position: relative;
        animation: slideInUp 0.8s ease-out;
        animation-fill-mode: both;
    }

    .stats-wrapper {
        width: 100%;
        margin: auto;
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .stats-item h2 {
        font-family: 'pp-fragment';
        font-size: 42px;
        color: #AC0755;
        font-weight: 300;
        line-height: 56px;
        margin-bottom: 0px;
        animation: scaleIn 0.8s ease-out;
        animation-fill-mode: both;
        margin-top: 40px;
    }

    .vm-section {
        width: 100%;
        float: left;
        background-color:#FAEDD4;
        padding: 100px 0;
        font-family: 'Playfair Display', serif;
        animation: fadeIn 0.8s ease-out;
    }

    .vm-wrapper {
        width: 80%;
        margin: auto;
        display: flex;
        gap: 40px;
        justify-content: center;
    }

    .vm-card {
        flex: 1;
        padding: 60px 30px;
        border-radius: 10px;
        animation: scaleIn 0.8s ease-out;
        animation-fill-mode: both;
        transition: all 0.4s ease;
    }

    .vm-card h3 {
        font-family: 'pp-fragment';
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 19px;
        line-height: 30px;
        letter-spacing: 0px;
        animation: slideInUp 0.6s ease-out 0.1s both;
    }

    .vm-card p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 1px;
        animation: slideInUp 0.6s ease-out 0.2s both;
    }

    .cv-title {
        font-family: 'pp-fragment';
        text-align: center;
        font-size: 38px;
        font-weight: 300;
        line-height: 60px;
        letter-spacing: 0px;
        color: #d8c8b1;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .cv-section {
        background-color: #A10950;
        padding: 100px 0;
        font-family: 'Playfair Display', serif;
        width: 100%;
        float: left;
    }

    .cv-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        border: 1px solid rgba(216, 200, 177, 0.2);
    }

    .cv-item p {
        font-family: "Manrope";
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0px;
        color: #C7B590;
        width: 100%;
    }

    .cv-item {
        padding: 25px;
    }

    .el-header h2 {
        font-family: 'pp-fragment';
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 500;
    }

    .el-section::before {
        content: "";
        position: absolute;
        top: 10%;
        left: -46%;
        width: 100%;
        height: 30%;
        background: url(../images/watermark-img.png) no-repeat center center;
        background-size: contain;
        opacity: 1;
    }

    .cv-wrapper {
        width: 80%;
        margin: auto;
    }

    .footer-left p {
        font-family: "Manrope";
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0px;
        font-weight: 400;
        color: #fff !important;
    }

    .np-philosophy {
        width: 100%;
        float: left;
        background-color: #FAEDD4;
        padding: 80px 0;
        text-align: center;
        font-family: 'Playfair Display', serif;
        animation: fadeIn 0.8s ease-out;
    }
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
    .content h1 {
        font-family: 'pp-fragment';
        font-size: 48px;
        color: #AC0755;
        font-weight: 300;
        line-height: 60px;
        letter-spacing: 0px;
        margin-bottom: 35px;
        animation: slideInDown 0.8s ease-out 0.2s both;
    }

    .line {
        position: absolute;
        bottom: -15%;
        left: 105%;
        width: 120px;
        height: 156px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
        animation: slideInRight 0.8s ease-out 0.4s both;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 48px;
        line-height: 64px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 300;
        margin-bottom: 25px;
        animation: slideInDown 0.8s ease-out;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 32px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 35px;
        font-weight: 400;
        animation: slideInUp 0.6s ease-out 0.1s both;
    }

    .vm-card p {
        font-size: 14px;
    }

    .cv-title {
        font-size: 48px;
    }

    .el-header h2 {
        font-size: 48px;
    }

}


@media only screen and (min-width: 1501px) and (max-width: 1600px) {
    .content h1 {
        font-family: 'pp-fragment';
        font-size: 48px;
        color: #AC0755;
        font-weight: 300;
        line-height: 60px;
        letter-spacing: 0px;
        margin-bottom: 35px;
        animation: slideInDown 0.8s ease-out 0.2s both;
    }

    .line {
        position: absolute;
        bottom: -22%;
        left: 105%;
        width: 120px;
        height: 156px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
        animation: slideInRight 0.8s ease-out 0.4s both;
    }

    .np-header h2 {
        font-family: 'pp-fragment';
        font-size: 48px;
        line-height: 64px;
        letter-spacing: 0px;
        color: #AC0755;
        font-weight: 300;
        margin-bottom: 25px;
        animation: slideInDown 0.8s ease-out;
    }

    .np-card h3 {
        font-family: 'pp-fragment';
        font-size: 32px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #AC0755;
        margin-bottom: 35px;
        font-weight: 400;
        animation: slideInUp 0.6s ease-out 0.1s both;
    }

    .vm-card p {
        font-size: 14px;
    }

    .cv-title {
        font-size: 48px;
    }

    .el-header h2 {
        font-size: 48px;
    }

}


@media only screen and (min-width: 1601px) and (max-width: 1700px) {

    .line {
        position: absolute;
        bottom: -24%;
        left: 105%;
        width: 220px;
        height: 220px;
        border-left: 1px solid #b79b85;
        border-bottom: 1px solid #b79b85;
        animation: slideInRight 0.8s ease-out 0.4s both;
    }


}


/* ----- FRAMEWORK SECTION (exactly as required, plus enhancements) ----- */
.framework-section {
    width: 100%;
    padding: 90px 16px;
    background: #FAEDD4;
    overflow: hidden;
}

.framework-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.framework-title {
    font-size: 52px;
    font-weight: 400;
    color: #AC0755;
    margin-bottom: 0px;
    font-family: 'pp-fragment', 'Times New Roman', Georgia, serif;
    letter-spacing: -0.3px;
    text-transform: capitalize;
    word-break: keep-all;
}

/* WRAPPER - holds spiral and absolute items */
.framework-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 700px;
    margin: 0 auto;
}

/* SPIRAL SVG - refined stroke and positioning identical to description */
@keyframes shinePulse {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.spiral-wrapper {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.spiral-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    -webkit-mask-image: url('../images/icons/spiral.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    animation: shinePulse 3s infinite linear;
}

.framework-spiral {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* generic item styling (both sides) */
.framework-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 300px;
    z-index: 3;
    transition: transform 0.2s ease, opacity 0.2s;
}

/* left side items: text block on left, icon on right (text right-aligned) */
.framework-item.left-item {
    text-align: right;
    justify-content: flex-end;
    flex-direction: row;
}

/* right side items: icon on left, text block on right (text left-aligned) */
.framework-item.right-item {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row;
}

/* text styling */
.text-block {
    max-width: 220px;
}

.framework-item h3 {
    font-size: 28px;
    color: #AC0755;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: 'pp-fragment', 'Times New Roman', Georgia, serif;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.framework-item p {
    font-size: 14px;
    color: #1c1b1b;
    line-height: 1.45;
    font-family: "Manrope", "Arial", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.85;
}

/* Icon circle – exactly 58px, magenta background, white image */
.icon-circle {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

/* LEFT SIDE POSITIONS - refined to match the original spacing & image approximation */
.people {
    top: 150px;
    right: 58%;
    left: auto;
}

.partnership {
    top: 310px;
    right: 68%;
    left: auto;
}

.prosperity {
    top: 476px;
    right: 65%;
    left: auto;
}

/* RIGHT SIDE POSITIONS */
.sustainability {
    top: 150px;
    left: 58%;
    right: auto;
}

.product {
    top: 310px;
    left: 68%;
    right: auto;
}

.practice {
    top: 463px;
    left: 61%;
    right: auto;
}

/* Small polishing: adjust gap for left vs right text consistency */
.left-item .text-block {
    margin-right: 0;
}

.right-item .text-block {
    margin-left: 0;
}

/* Premium Icon Animations */
@keyframes iconFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.people .icon-circle { animation: iconFloat 4s infinite ease-in-out 0s; }
.sustainability .icon-circle { animation: iconFloat 4s infinite ease-in-out 0.6s; }
.partnership .icon-circle { animation: iconFloat 4s infinite ease-in-out 1.2s; }
.product .icon-circle { animation: iconFloat 4s infinite ease-in-out 1.8s; }
.prosperity .icon-circle { animation: iconFloat 4s infinite ease-in-out 2.4s; }
.practice .icon-circle { animation: iconFloat 4s infinite ease-in-out 3s; }

.framework-item:hover .framework-icon-img {
    transform: scale(1.12);
    filter: drop-shadow(0 10px 15px rgba(172, 7, 85, 0.35));
}

.framework-item {
    cursor: pointer;
}


@media only screen and (min-width: 0px) and (max-width: 1000px) {

    .framework-title {
    font-size: 28px;
    }

    .framework-wrapper{
        display: none;
    }

    .sec-img{
    display: block !important;
}

.sec-img img {
    width: 100%;
    height: auto;
}

}



.sec-img{
    display: none;
}

/* Core Values Animations */
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorderGlow {
    0% { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

.cv-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity, box-shadow;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.6s ease-out;
}

.cv-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 1.5px; /* Border thickness */
    background: conic-gradient(from var(--glow-angle), transparent 70%, rgba(216, 200, 177, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    pointer-events: none;
}

.cv-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cv-item.hover-ready {
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
}

.cv-item.hover-ready:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cv-item.hover-ready:hover::before {
    opacity: 1;
    animation: rotateBorderGlow 1.5s linear infinite;
}