.elementor-320 .elementor-element.elementor-element-e9db77d{padding:0px 0px 0px 0px;}.elementor-320 .elementor-element.elementor-element-e9db77d .elementor-heading-title{font-family:"Cormorant Garamond", Sans-serif;font-size:59px;color:#C18A16;}.elementor-320 .elementor-element.elementor-element-c45c714{margin:-16px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-320 .elementor-element.elementor-element-c45c714 .elementor-heading-title{font-size:20px;font-weight:400;color:#FFFFFF;}.elementor-320 .elementor-element.elementor-element-0eb7001{--spacer-size:200px;}/* Start custom CSS for html, class: .elementor-element-f0721db *//* =========================================
   STATIONERY ABOUT SECTION
========================================= */

.stationery-about {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: #f6f6f3;

    padding: 28px 70px 36px;

    box-sizing: border-box;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.stationery-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 39% 61%;

    gap: 35px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.stationery-content {
    position: relative;
    z-index: 2;

    padding-left: 35px;
}


/* =========================================
   SECTION TAG
========================================= */

.section-tag {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #c8892c;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.tag-line {
    width: 38px;
    height: 2px;

    background: #d49a36;

    display: inline-block;
}


/* =========================================
   HEADING
========================================= */

.stationery-content h2 {
    margin: 0 0 20px;

    color: #253833;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    font-weight: 500;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


/* =========================================
   DESCRIPTION
========================================= */

.stationery-content p {
    max-width: 510px;

    margin: 0 0 26px;

    color: #686b69;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.65;

    letter-spacing: 0.1px;
}


/* =========================================
   BUTTON
========================================= */

.stationery-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    min-width: 260px;

    padding: 17px 28px;

    background: #0b3026;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.6px;

    border-radius: 3px;

    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stationery-btn span {
    color: #d6a044;

    font-size: 19px;

    transition: transform 0.3s ease;
}

.stationery-btn:hover {
    background: #123e31;

    transform: translateY(-2px);
}

.stationery-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   RIGHT GRID
========================================= */

.stationery-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 16px;

    row-gap: 14px;
}


/* =========================================
   IMAGE CARD
========================================= */

.stationery-card {
    width: 100%;

    text-align: center;
}


/* =========================================
   IMAGE
========================================= */

.stationery-image {
    width: 100%;

    height: 215px;

    overflow: hidden;

    border-radius: 3px;

    background: #ddd;
}

.stationery-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.stationery-card:hover img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE TITLE
========================================= */

.stationery-card h3 {
    margin: 7px 0 0;

    color: #313c39;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================
   DECORATIVE LEAF DESIGN
========================================= */

.stationery-leaves {
    position: absolute;

    left: -30px;

    top: 180px;

    width: 150px;

    height: 330px;

    opacity: 0.25;

    z-index: 1;
}

.stationery-leaves span {
    position: absolute;

    width: 65px;

    height: 150px;

    border: 2px solid #d9b86f;

    border-radius: 100% 0 100% 0;

    transform: rotate(35deg);
}

.stationery-leaves span:nth-child(1) {
    left: 5px;
    top: 0;
}

.stationery-leaves span:nth-child(2) {
    left: 45px;
    top: 80px;

    transform: rotate(20deg);
}

.stationery-leaves span:nth-child(3) {
    left: -20px;
    top: 150px;

    transform: rotate(50deg);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1200px) {

    .stationery-about {
        padding: 30px 40px;
    }

    .stationery-container {
        grid-template-columns: 40% 60%;

        gap: 25px;
    }

    .stationery-content h2 {
        font-size: 42px;
    }

    .stationery-content p {
        font-size: 15px;
    }

    .stationery-image {
        height: 185px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .stationery-about {
        padding: 45px 30px;
    }

    .stationery-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .stationery-content {
        padding-left: 20px;

        max-width: 650px;
    }

    .stationery-content h2 {
        font-size: 44px;
    }

    .stationery-image {
        height: 230px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .stationery-about {
        padding: 40px 18px;
    }

    .stationery-content {
        padding-left: 0;
    }

    .section-tag {
        font-size: 10px;

        letter-spacing: 1.5px;

        margin-bottom: 14px;
    }

    .tag-line {
        width: 30px;
    }

    .stationery-content h2 {
        font-size: 34px;

        line-height: 1.18;

        margin-bottom: 16px;
    }

    .stationery-content p {
        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 22px;
    }

    .stationery-btn {
        min-width: auto;

        width: 100%;

        padding: 16px 20px;
    }

    .stationery-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .stationery-image {
        height: 220px;
    }

    .stationery-card h3 {
        font-size: 14px;
    }

    .stationery-leaves {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .stationery-content h2 {
        font-size: 30px;
    }

    .stationery-image {
        height: 190px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85b1232 */.process-section {
    width: 100%;
    background: #f3f2ef;
    padding: 24px 30px 32px;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Subtle decorative leaves */
.process-section::before,
.process-section::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    opacity: 0.12;
    background:
        radial-gradient(ellipse at center,
        transparent 42%,
        #c89a3d 43%,
        transparent 46%);
    pointer-events: none;
}

.process-section::before {
    left: -60px;
    top: -50px;
}

.process-section::after {
    right: -60px;
    top: -50px;
}

.process-container {
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading span {
    display: block;
    color: #c78d2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
}

.section-heading h2 {
    margin: 0;
    color: #263634;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
}

.heading-line {
    width: 55px;
    height: 2px;
    background: #d49a32;
    margin: 10px auto 0;
}

/* Process Row */
.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* Individual Step */
.process-step {
    width: 180px;
    text-align: center;
    flex-shrink: 0;
}

/* Circle */
.process-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #082d25;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    box-shadow:
        inset 0 0 20px rgba(36, 98, 78, 0.45),
        0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Icon */
.process-icon i {
    color: #e0a02d;
    font-size: 34px;
    line-height: 1;
}

/* Number */
.step-number {
    color: #34413f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

/* Text */
.process-step h3 {
    margin: 0;
    color: #303b39;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

/* Dashed Connector */
.connector {
    width: 130px;
    margin-top: 46px;
    border-top: 1.5px dashed #9ba7a3;
    flex-shrink: 1;
}

/* Tablet */
@media (max-width: 1000px) {

    .process-section {
        padding: 25px 20px 35px;
    }

    .process-wrapper {
        gap: 10px;
    }

    .process-step {
        width: 145px;
    }

    .connector {
        width: 70px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .process-icon {
        width: 82px;
        height: 82px;
    }

    .process-icon i {
        font-size: 29px;
    }

    .process-step h3 {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 700px) {

    .section-heading h2 {
        font-size: 27px;
    }

    .process-wrapper {
        flex-wrap: wrap;
        gap: 25px 15px;
    }

    .process-step {
        width: 45%;
    }

    .connector {
        display: none;
    }

    .process-icon {
        width: 78px;
        height: 78px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d974ff *//* ================================
   STATIONERY SOLUTIONS SECTION
================================ */

.stationery-solutions {
    width: 100%;
    background: #f5f4f1;
    padding: 26px 32px 32px;
    font-family: Arial, sans-serif;
}

.stationery-container {
    max-width: 1500px;
    margin: auto;
}

/* ================================
   HEADING
================================ */

.stationery-heading {
    text-align: center;
    margin-bottom: 20px;
}

.stationery-heading span {
    display: block;
    color: #c98c2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.stationery-heading h2 {
    margin: 0;
    color: #263633;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
}

/* ================================
   CARDS GRID
================================ */

.stationery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: start;
}

/* ================================
   CARD
================================ */

.stationery-card {
    text-align: center;
    background: transparent;
    overflow: hidden;
}

/* IMAGE */

.stationery-image {
    width: 100%;
    height: 175px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    background: #ddd;
}

.stationery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stationery-card:hover .stationery-image img {
    transform: scale(1.04);
}

/* TITLE */

.stationery-card h3 {
    margin: 12px 0 7px;
    color: #293330;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

/* DESCRIPTION */

.stationery-card p {
    margin: 0;
    color: #626868;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* ================================
   LARGE SCREENS
================================ */

@media (min-width: 1400px) {

    .stationery-image {
        height: 180px;
    }

}

/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {

    .stationery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .stationery-image {
        height: 190px;
    }

}

/* ================================
   SMALL TABLET
================================ */

@media (max-width: 768px) {

    .stationery-solutions {
        padding: 35px 20px;
    }

    .stationery-heading h2 {
        font-size: 28px;
    }

    .stationery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stationery-image {
        height: 170px;
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    .stationery-solutions {
        padding: 30px 15px;
    }

    .stationery-heading h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .stationery-heading span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .stationery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .stationery-image {
        height: 210px;
    }

    .stationery-card h3 {
        font-size: 18px;
    }

    .stationery-card p {
        font-size: 14px;
    }

}/* End custom CSS */