/* =========================================================
   ELLORA PRINT PACK LLP
   Professional Website Styles
   ========================================================= */


/* ================= BRAND COLOURS ================= */

:root {

    --ellora-pink: #e91e63;
    --ellora-blue: #1565c0;
    --ellora-yellow: #f4c20d;

    --dark: #202020;
    --dark-soft: #333333;

    --cream: #f7f5f0;
    --light: #fafafa;
    --white: #ffffff;

    --border: #e5e5e5;

}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--dark);

    background: var(--white);

    line-height: 1.6;

}


img {
    max-width: 100%;
}


a {
    transition: 0.3s ease;
}


/* ================= COMMON ================= */

section {

    padding: 100px 6%;

}


.small-title {

    color: var(--ellora-pink);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;

}


section h2 {

    font-size: 44px;

    line-height: 1.15;

    margin-bottom: 20px;

}


.section-intro {

    max-width: 680px;

    margin: 0 auto;

    color: #666;

    font-size: 17px;

}


/* ================= HEADER ================= */

header {

    position: sticky;

    top: 0;

    z-index: 1000;

    min-height: 82px;

    background: var(--white);

    padding: 12px 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid var(--border);

}


.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo img {

    width: 110px;

    height: auto;

    display: block;

}


nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

}


nav a {

    color: var(--ellora-pink);

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

}


nav a:hover {

    color: var(--ellora-blue);

}


.header-quote {

    background: var(--ellora-yellow);

    color: var(--dark);

    padding: 12px 21px;

    border-radius: 3px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    white-space: nowrap;

}


.header-quote:hover {

    background: var(--ellora-blue);

    transform: translateY(-2px);

}


/* ================= HERO ================= */

main {

    background: var(--cream);

}


.hero-content {

    min-height: 500px;

    padding: 20px 6%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    max-width: 1400px;

    margin: auto;

}


.hero-text h1 {

    font-size: 58px;

    line-height: 1.08;

    max-width: 650px;

    margin-bottom: 25px;

}


.hero-text > p:not(.small-title) {

    font-size: 20px;

    color: #555;

    max-width: 560px;

    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.primary-button {

    display: inline-block;

    background: var(--ellora-blue);

    color: var(--white);

    padding: 14px 25px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    border-radius: 3px;

}


.primary-button:hover {

    background: var(--ellora-pink);

    transform: translateY(-2px);

}


.secondary-button {

    display: inline-block;

    border: 1px solid var(--dark);

    color: var(--dark);

    padding: 13px 25px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    border-radius: 3px;

}


.secondary-button:hover {

    background: var(--dark);

    color: var(--white);

}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;

    /* Remove the box appearance */
    border-radius: 0;

    /* Fade LEFT + RIGHT edges */
    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            black 18%,
            black 82%,
            transparent 100%),
        linear-gradient(to bottom,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%),
        linear-gradient(to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);

    mask-composite: intersect;
}
/* =========================================================
   HERO FEATURE CARDS
   ========================================================= */

.hero-features {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 680px;

    margin-top: 40px;
}


.hero-feature {

    position: relative;

    text-align: center;

}


/* Image */

.hero-feature-image {

    width: 100%;

    height: 150px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #dddddd;

    mix-blend-mode: multiply;
}


.hero-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: fill;

    display: block;

    transition: transform 0.4s ease;
}


.hero-feature:hover .hero-feature-image img {

    transform: scale(1.06);

}
/* Text */

.hero-feature h3 {

    font-size: 17px;

    font-weight: 800;

    line-height: 1.1;

    margin-top: 5px;

    color: var(--dark);
}


.hero-feature p {

    font-size: 15px;

    line-height: 1.2;

    margin-top: 3px;

    color: var(--dark);

}


/* =========================================================
   INDUSTRIES WE SERVE
   ========================================================= */

#products {
    background: var(--white);
    text-align: center;
}

.industries-grid {
    max-width: 1250px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.industry-card {
    position: relative;

    min-height: 205px;
    padding: 28px 22px;

    background: var(--cream);

    border: 1px solid #eeeeee;
    border-radius: 8px;

    text-align: left;

    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}


/* ICON */

.industry-icon {
    margin-bottom: 18px;

    font-size: 45px;
    line-height: 1;
}


/* TITLE */

.industry-card h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 25px;
    font-weight: 800;
}


/* DESCRIPTION */

.industry-card p {
    margin: 0;

    color: #666;

    font-size: 17px;
    line-height: 1.6;
}


/* COLOURED ACCENT */

.industry-card::after {
    content: "";

    position: absolute;

    left: 22px;
    bottom: 0;

    width: 40px;
    height: 4px;

    background: var(--ellora-pink);
}

.industry-card:nth-child(3n+2)::after {
    background: var(--ellora-blue);
}

.industry-card:nth-child(3n)::after {
    background: var(--ellora-yellow);
}
/* =========================================================
   ABOUT US
   ========================================================= */

#about {
    padding: 80px 6%;
    background: var(--white);
}

.about-container {
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 55px;

    align-items: stretch;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.about-visual {
    padding-right: 45px;

    border-right: 1px solid #dddddd;

    text-align: left;
}

.about-visual .small-title {
    text-align: left;
}


/* MAIN TITLE */

.about-visual h2 {
    margin: 15px 0 0;

    color: #102758;

    font-size: 43px;
    line-height: 1.15;
    font-weight: 800;
}

.about-title-line {
    width: 70px;
    height: 4px;

    margin-top: 25px;

    background: var(--ellora-pink);
}


/* =========================================================
   PROCESS IMAGE
   ========================================================= */

.about-process {
    margin-top: 45px;
    width: 100%;
}

.about-process img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   STRENGTHS
   ========================================================= */

.about-strengths {
    margin-top: 35px;
    padding-top: 30px;

    border-top: 1px solid #dddddd;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strength-item {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid #dddddd;
}

.strength-item:last-child {
    border-right: none;
}

.strength-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;
    border-radius: 50%;

    color: var(--ellora-pink);

    font-size: 28px;
    font-weight: 700;
}

.strength-item span {
    color: #102758;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   QUOTE
   ========================================================= */

.about-quote {
    position: relative;

    margin-top: 30px;

    padding: 22px 65px;

    border: 1px solid #333333;
    border-radius: 22px;

    text-align: center;
}

.about-quote p {
    margin: 0;

    color: var(--dark);

    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
}

.about-quote-left,
.about-quote-right {
    position: absolute;

    color: #e30613;

    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: bold;

    line-height: 1;
}

.about-quote-left {
    left: 15px;
    top: 10px;
}

.about-quote-right {
    right: 15px;
    bottom: -8px;
}


/* =========================================================
   RIGHT SIDE - WHO WE ARE
   ========================================================= */

.about-content {
    padding-top: 5px;

    text-align: left;
}

.about-content h3 {
    margin: 0 0 25px;

    color: #102758;

    font-size: 31px;
    font-weight: 800;
}

.about-content p {
    margin: 0 0 20px;

    color: #333333;

    font-size: 15px;
    line-height: 1.7;
}

.about-content strong {
    color: #102758;
    font-weight: 800;
}
/* =========================================================
   OUR INFRASTRUCTURE
   ========================================================= */

#infrastructure {

    background: var(--cream);
    padding-top: 35px;
    text-align: center;

}


#infrastructure .section-intro {

    margin-bottom: 0;

}


/* ================= INFRASTRUCTURE GRID ================= */

.infrastructure-grid {
    max-width: 1250px;
    margin: 55px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: #d9d9d9;
}

.infrastructure-card {
    min-height: 320px;

    padding: 38px 35px 35px;

    background: var(--white);

    text-align: center;

    transition: 0.3s ease;
}
/* ================= MACHINE CARD ================= */

.infrastructure-card {

    position: relative;

    min-height: 320px;

    padding: 38px 30px 35px;

    background: var(--white);

    text-align: left;

    transition: 0.3s ease;

}


.infrastructure-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    z-index: 2;

}


/* ================= MACHINE NUMBER ================= */

.machine-number {

    color: var(--ellora-pink);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 28px;

}


/* ================= MACHINE NAME ================= */

.infrastructure-card h3 {

    font-size: 24px;

    line-height: 1.15;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 12px;

}


/* ================= MACHINE TYPE ================= */

.machine-type {

    color: var(--ellora-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.4;

    min-height: 35px;

    margin-bottom: 22px;

}


/* ================= DESCRIPTION ================= */

.infrastructure-card p {

    color: #666;

    font-size: 14px;

    line-height: 1.7;

    max-width: 330px;

}


/* ================= COLOUR ACCENT ================= */

.infrastructure-card::after {

    content: "";

    position: absolute;

    left: 30px;

    bottom: 0;

    width: 45px;

    height: 4px;

    background: var(--ellora-yellow);

}


.infrastructure-card:nth-child(2)::after {

    background: var(--ellora-pink);

}


.infrastructure-card:nth-child(3)::after {

    background: var(--ellora-blue);

}


.infrastructure-card:nth-child(4)::after {

    background: var(--ellora-yellow);

}


.infrastructure-card:nth-child(5)::after {

    background: var(--ellora-pink);

}
/* =========================================================
   OUR INFRASTRUCTURE
   ========================================================= */

#infrastructure {

    background: var(--cream);

    text-align: center;

}


#infrastructure .section-intro {

    margin-bottom: 0;

}


/* ================= INFRASTRUCTURE GRID ================= */

.infrastructure-grid {
    max-width: 1250px;
    margin: 55px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: #d9d9d9;
}


/* ================= MACHINE CARD ================= */

.infrastructure-card {
    min-height: 320px;

    padding: 38px 35px 35px;

    background: var(--white);

    text-align: left;

    transition: 0.3s ease;
}


.infrastructure-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    z-index: 2;

}


/* ================= MACHINE NUMBER ================= */

.machine-number {

    color: var(--ellora-pink);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 28px;

}


/* ================= MACHINE NAME ================= */

.infrastructure-card h3 {

    font-size: 24px;

    line-height: 1.15;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 12px;

}


/* ================= MACHINE TYPE ================= */

.machine-type {

    color: var(--ellora-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.4;

    min-height: 35px;

    margin-bottom: 22px;

}


/* ================= DESCRIPTION ================= */

.infrastructure-card p {

    color: #666;

    font-size: 14px;

    line-height: 1.7;

    max-width: 330px;

}


/* ================= COLOUR ACCENT ================= */

.infrastructure-card::after {

    content: "";

    position: absolute;

    left: 30px;

    bottom: 0;

    width: 45px;

    height: 4px;

    background: var(--ellora-yellow);

}


.infrastructure-card:nth-child(2)::after {

    background: var(--ellora-pink);

}


.infrastructure-card:nth-child(3)::after {

    background: var(--ellora-blue);

}


.infrastructure-card:nth-child(4)::after {

    background: var(--ellora-yellow);

}


.infrastructure-card:nth-child(5)::after {

    background: var(--ellora-pink);

}
/* ================= PRODUCTION CAPACITY CARD ================= */

.capacity-card {
    background: #f8f8f8;
}

.capacity-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.capacity-mini-grid div {
    padding: 8px 10px;
    border-left: 3px solid var(--ellora-pink);
    background: var(--white);
}

.capacity-mini-grid strong {
    display: block;
    color: #e30613;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}

.capacity-mini-grid span {
    display: block;
    margin-top: 3px;
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =========================================================
   CAPABILITIES - VISUAL VERSION
   ========================================================= */

#capabilities {
    padding: 35px 6%;
    background: var(--cream);
    text-align: center;
}


/* SUB HEADINGS */

.capability-heading {
    max-width: 1250px;
    margin: 45px auto 22px;

    text-align: left;

    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.printing-heading {
    color: var(--ellora-blue);
}

.packaging-heading {
    color: var(--ellora-pink);
    margin-top: 55px;
}


/* =========================================================
   PRINTING CARDS
   ========================================================= */

.printing-capability-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.printing-card {
    min-height: 245px;

    display: grid;
    grid-template-columns: 145px 1fr;

    align-items: center;

    padding: 25px;

    background: var(--white);

    border-radius: 8px;

    text-align: left;

    box-shadow: 0 4px 16px rgba(0,0,0,0.07);

    transition: 0.3s ease;
}


/* PRINTING IMAGES */

.capability-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-right: 18px;
}

.capability-image img {
    width: 125px;
    height: 125px;

    object-fit: contain;
}


/* PRINTING TEXT */

.capability-text {
    min-width: 0;
}


/* =========================================================
   GENERAL CARD TEXT
   ========================================================= */

.capability-number {
    margin-bottom: 6px;

    color: var(--ellora-pink);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.capability-card h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
}

.capability-card p {
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   PACKAGING CARDS
   ========================================================= */

.packaging-capability-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.packaging-card {
    position: relative;

    min-height: 330px;

    padding: 25px;

    background: var(--white);

    border-radius: 8px;

    text-align: left;

    box-shadow: 0 4px 16px rgba(0,0,0,0.07);

    transition: 0.3s ease;
}


/* ICON */

.packaging-icon {
    height: 100px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.packaging-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}


/* LIST */

.packaging-card ul {
    margin: 0;
    padding-left: 18px;
}

.packaging-card li {
    margin-bottom: 7px;

    color: #555;

    font-size: 13px;
    line-height: 1.5;
}


/* LAST TWO CARDS */

.wide-card {
    grid-column: span 2;

    min-height: 230px;
}


/* COLOUR ACCENTS */

.packaging-card::after,
.printing-card::after {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 0;

    height: 4px;

    background: var(--ellora-pink);
}

.printing-card,
.packaging-card {
    position: relative;
}

.printing-card:nth-child(2)::after {
    background: var(--ellora-blue);
}

.printing-card:nth-child(3)::after {
    background: var(--ellora-yellow);
}

.packaging-card:nth-child(2)::after {
    background: var(--ellora-blue);
}

.packaging-card:nth-child(3)::after {
    background: var(--ellora-yellow);
}

.packaging-card:nth-child(4)::after {
    background: #555;
}

.packaging-card:nth-child(5)::after {
    background: var(--ellora-pink);
}

.packaging-card:nth-child(6)::after {
    background: var(--ellora-yellow);
}


/* HOVER */

.capability-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
/* ================= GALLERY ================= */

#gallery {

    background: var(--white);

    text-align: center;

}


.gallery-grid {

    max-width: 1200px;

    margin: 55px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.gallery-item {

    overflow: hidden;

    border-radius: 5px;

    background: #eee;

}


.gallery-image {

    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;

    cursor: pointer;

    transition: transform 0.5s ease;

}


.gallery-image:hover {

    transform: scale(1.05);

}


/* ================= CONTACT ================= */

#contact {

    background: var(--cream);

}


.contact-container {

    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;

}


.contact-info > p:not(.small-title) {

    color: #555;

    font-size: 17px;

    margin-bottom: 30px;

}


.contact-details p {

    margin-bottom: 16px;

    color: #555;

    font-size: 14px;

}


.quote-form {

    background: var(--white);

    padding: 40px;

    border-radius: 5px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

}


.quote-form h3 {

    font-size: 27px;

    margin-bottom: 25px;

}


.quote-form input,
.quote-form select,
.quote-form textarea {

    width: 100%;

    padding: 13px 14px;

    margin-bottom: 13px;

    border: 1px solid var(--border);

    border-radius: 3px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

}


.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {

    border-color: var(--ellora-blue);

}


.quote-form textarea {

    resize: vertical;

}


.quote-form button {

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 3px;

    background: var(--ellora-blue);

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

}


.quote-form button:hover {

    background: var(--ellora-pink);

}


/* ================= WHATSAPP ================= */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 2000;

    background: #25D366;

    color: var(--white);

    padding: 14px 20px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

}


.whatsapp-button:hover {

    transform: translateY(-4px);

}


/* ================= FOOTER ================= */

footer {
    background: #151515;
    color: var(--white);

    padding: 32px 2% 0;
}


.footer-container {
    width: 96%;
    max-width: none;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.6fr;

    gap: 35px;
    align-items: start;
}

.footer-brand img {

    width: 110px;

    background: var(--white);

    padding: 5px;

    border-radius: 4px;

}


.footer-brand p {

    max-width: 280px;

    margin-top: 20px;

    color: #aaa;

    font-size: 14px;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-links h3,
.footer-contact h3 {

    font-size: 16px;

    margin-bottom: 12px;

}


.footer-links a {

    color: #aaa;

    text-decoration: none;

    font-size: 14px;

}


.footer-links a:hover {

    color: var(--ellora-yellow);

}


.footer-contact p {

    color: #aaa;

    font-size: 14px;

    margin-bottom: 10px;

}


.footer-bottom {
    width: 100%;
    margin-top: 22px;
    padding: 16px 2% 18px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,0.10);
}

/* ================= LIGHTBOX ================= */

.lightbox {

    display: none;

    position: fixed;

    z-index: 3000;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.93);

    justify-content: center;

    align-items: center;

    padding: 30px;

}


.lightbox img {

    max-width: 90%;

    max-height: 90%;

    object-fit: contain;

    border-radius: 5px;

}


#lightbox-close {

    position: absolute;

    top: 20px;

    right: 35px;

    color: var(--white);

    font-size: 45px;

    font-weight: 300;

    cursor: pointer;

    line-height: 1;

}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    @media (max-width: 900px) {

    .carton-title {
        font-size: 32px;
    }

    .carton-grid {
        grid-template-columns: 1fr;
    }

    .carton-item {
        grid-template-columns: 170px 1fr;

        border-right: none !important;
        border-bottom: 1px dashed #999 !important;
    }

    .carton-item:last-child {
        border-bottom: none !important;
    }

    .carton-image img {
        width: 145px;
        height: 145px;
    }
}


@media (max-width: 600px) {
    @media (max-width: 600px) {

    .brand-statement {
        margin: 35px 20px;
        padding: 30px 40px;

        border-radius: 30px;
    }

    .brand-statement p {
        font-size: 19px;
        line-height: 1.5;
    }

    .quote-mark {
        font-size: 65px;
    }

    .quote-left {
        left: -18px;
    }

    .quote-right {
        right: -18px;
    }
}
    @media (max-width: 600px) {

    .material-grid {
        grid-template-columns: 1fr;
    }

    .material-item img {
        height: 140px;
    }

    .material-info {
        grid-template-columns: 1fr;
    }

    .grammage {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.5);
    }

    .grammage,
    .material-description {
        padding: 20px 25px;
    }

    .grammage strong {
        font-size: 30px;
    }
}

    #carton-engineering {
        padding: 50px 5%;
    }

    .carton-title {
        font-size: 27px;
        margin-bottom: 40px;
    }

    .carton-title span {
        display: block;
        margin-bottom: 5px;
    }

    .carton-title span::after {
        width: 170px;
    }

    .carton-item {
        grid-template-columns: 110px 1fr;

        min-height: 160px;

        padding: 15px 5px;
    }

    .carton-image {
        height: 120px;
    }

    .carton-image img {
        width: 100px;
        height: 110px;
    }

    .carton-content {
        padding-left: 10px;
    }

    .carton-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .carton-content p {
        font-size: 13px;
        line-height: 1.5;
    }
}
    .infrastructure-grid {

    grid-template-columns: repeat(2, 1fr);

}


    header {

        gap: 15px;

    }


    nav {

        gap: 16px;

    }


    nav a {

        font-size: 12px;

    }


    .hero-content {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .hero-text h1 {

        font-size: 48px;

    }


    .industry-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .about-content {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-container {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {
   
    .infrastructure-grid {

    grid-template-columns: 1fr;

    gap: 1px;

}


.infrastructure-card {

    min-height: auto;

    padding: 30px 25px;

}


.infrastructure-card h3 {

    font-size: 21px;

}
    .hero-features {

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-top: 25px;

}


.hero-feature-image {

    height: 90px;

    border-radius: 10px;

}


.hero-feature-icon {

    width: 42px;

    height: 42px;

    margin-top: -20px;

    font-size: 18px;

    border-width: 3px;

}


.hero-feature h3 {

    font-size: 12px;

}


.hero-feature p {

    font-size: 10px;

}


    section {

        padding: 70px 5%;

    }


    header {

        padding: 10px 5%;

        flex-wrap: wrap;

    }


    .logo img {

        width: 90px;

    }


    nav {

        order: 3;

        width: 100%;

        justify-content: center;

        gap: 15px;

        overflow-x: auto;

        padding: 5px 0;

    }


    nav a {

        white-space: nowrap;

        font-size: 11px;

    }


    .header-quote {

        padding: 10px 14px;

        font-size: 10px;

    }


    .hero-content {

        padding: 60px 5%;

    }


    .hero-text h1 {

        font-size: 38px;

    }


    .hero-text > p:not(.small-title) {

        font-size: 17px;

    }


    .hero-image img {

        height: 330px;

    }


    section h2 {

        font-size: 34px;

    }


    .industry-grid,
    .features-grid,
    .gallery-grid {

        grid-template-columns: 1fr;

    }


    .industry-card {

        height: 330px;

    }


    .gallery-image {

        height: 280px;

    }


    .quote-form {

        padding: 25px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        padding: 50px 6%;

        gap: 35px;

    }


    .whatsapp-button {

        right: 15px;

        bottom: 15px;

        padding: 12px 17px;

    }

}
/* Gallery Portfolio Labels */

.gallery-item {
    position: relative;
}

.gallery-label {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 55px 22px 20px;

    text-align: left;

    color: white;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.85)
    );

    pointer-events: none;
}

.gallery-label span {
    color: var(--ellora-yellow);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}

.gallery-label h3 {
    margin-top: 5px;

    font-size: 21px;
}
/* ================= COMPANY NAME & TAGLINE ================= */

.brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    text-align: left;
}

.company-name {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--ellora-blue);
}

.company-tagline {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--ellora-pink);
}
/* =========================================================
   SPECIALISED CARTON ENGINEERING
   ========================================================= */

#carton-engineering {
    padding: 70px 4%;
    background: var(--white);
}


/* TITLE */

.carton-title {
    max-width: 1250px;
    margin: 0 auto 50px;

    color: #e30613;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;

    text-align: left;
}

.carton-title span {
    position: relative;

    display: inline-block;

    margin-right: 10px;

    color: var(--dark);
}

.carton-title span::after {
    content: "";

    position: absolute;

    left: 10px;
    bottom: -14px;

    width: 270px;
    height: 5px;

    background: var(--ellora-yellow);
}


/* GRID */

.carton-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


/* EACH PRODUCT */

.carton-item {
    min-height: 210px;

    display: grid;
    grid-template-columns: 210px 1fr;

    align-items: center;

    padding: 20px 25px;

    border-bottom: 1px dashed #999;
}


/* LEFT / RIGHT DIVIDER */

.carton-item:nth-child(odd) {
    border-right: 1px dashed #999;
}


/* REMOVE LAST ROW BOTTOM BORDER */

.carton-item:nth-last-child(-n+2) {
    border-bottom: none;
}


/* PRODUCT IMAGE */

.carton-image {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 180px;
}

.carton-image img {
    width: 180px;
    height: 170px;

    object-fit: contain;

    display: block;
}


/* CONTENT */

.carton-content {
    padding-left: 15px;
}

.carton-content h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 20px;
    line-height: 1.25;

    font-weight: 800;
}

.carton-content p {
    margin: 0;

    color: #444;

    font-size: 16px;
    line-height: 1.55;

    font-weight: 500;
}
/* =========================================================
   MATERIAL CAPABILITIES
   ========================================================= */

.material-capability {
    max-width: 1250px;
    margin: 45px auto 0;
}


/* HEADING */

.material-heading {
    margin-bottom: 20px;

    text-align: left;

    color: var(--ellora-blue);

    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* 3 MATERIALS */

.material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.material-item {
    padding: 15px;

    background: var(--white);

    border-radius: 8px;

    text-align: center;

    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.material-item img {
    width: 100%;
    height: 170px;

    object-fit: contain;
}

.material-item h3 {
    margin: 10px 0 5px;

    color: var(--dark);

    font-size: 17px;
    font-weight: 800;
}


/* BOTTOM CAPACITY BAR */

.material-info {
    margin-top: 14px;

    display: grid;
    grid-template-columns: 42% 58%;

    background: #102758;

    border-radius: 8px;

    overflow: hidden;

    text-align: left;
}


/* GSM */

.grammage {
    padding: 24px 35px;

    border-right: 2px solid rgba(255,255,255,0.7);
}

.grammage span {
    display: block;

    color: var(--ellora-yellow);

    font-size: 17px;
    font-weight: 800;
}

.grammage strong {
    display: block;

    margin-top: 3px;

    color: var(--ellora-yellow);

    font-size: 34px;
    line-height: 1;
}


/* DESCRIPTION */

.material-description {
    padding: 24px 35px;

    display: flex;
    align-items: center;

    color: var(--white);

    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}
/* =========================================================
   BRAND STATEMENT
   ========================================================= */

.brand-statement {
    position: relative;

    max-width: 1100px;
    margin: 55px auto;

    padding: 35px 100px;

    background: var(--white);

    border: 1px solid #555;
    border-radius: 50px;

    text-align: center;
}

.brand-statement p {
    margin: 0;

    color: var(--dark);

    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
}

.quote-mark {
    position: absolute;

    color: #e30613;

    font-family: Georgia, serif;
    font-size: 100px;
    font-weight: bold;

    line-height: 1;
}

.quote-left {
    left: -30px;
    top: 10px;
}

.quote-right {
    right: -30px;
    bottom: -20px;
}
@media (max-width: 1000px) {

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        padding-right: 0;

        border-right: none;
    }

    .about-content {
        padding-top: 20px;
    }
}


@media (max-width: 600px) {

    #about {
        padding: 55px 5%;
    }

    .about-visual h2 {
        font-size: 30px;
    }

    .about-process {
        margin-top: 35px;
    }

    .about-strengths {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-item:nth-child(2) {
        border-right: none;
    }

    .strength-item {
        border-bottom: 1px solid #dddddd;
    }

    .strength-item:nth-child(3),
    .strength-item:nth-child(4) {
        border-bottom: none;
    }

    .about-quote {
        padding: 25px 40px;
    }

    .about-quote p {
        font-size: 16px;
    }

    .about-content h3 {
        font-size: 26px;
    }
}
@media (max-width: 1000px) {

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 750px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 500px) {

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: auto;
    }
}
/* =========================================================
   LAUNCH PACKAGING BY ELLORA
   ========================================================= */

#launch-packaging {
    padding: 70px 6%;
    background: #102758;
}

.launch-container {
    max-width: 1250px;
    margin: 0 auto;
}


/* INTRO */

.launch-intro {
    max-width: 750px;
}

.launch-intro .small-title {
    color: var(--ellora-yellow);
    text-align: left;
}

.launch-intro h2 {
    margin: 12px 0 18px;

    color: var(--white);

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.launch-intro h2 span {
    color: var(--ellora-pink);
}

.launch-intro p {
    color: #e5e5e5;

    font-size: 16px;
    line-height: 1.7;
}

.launch-highlight {
    margin-top: 15px;

    color: var(--ellora-yellow) !important;

    font-weight: 700;
}


/* PROCESS */

.launch-process {
    margin-top: 45px;

    display: flex;
    align-items: stretch;
    justify-content: space-between;

    gap: 8px;
}


/* STEP */

.launch-step {
    flex: 1;

    min-height: 115px;

    padding: 20px 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--white);

    border-radius: 7px;

    text-align: center;
}

.launch-step span {
    margin-bottom: 8px;

    color: var(--ellora-pink);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.launch-step strong {
    color: #202020;

    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}


/* FINAL STEP */

.final-step {
    background: var(--ellora-pink);
}

.final-step span,
.final-step strong {
    color: var(--white);
}


/* ARROWS */

.launch-arrow {
    display: flex;
    align-items: center;

    color: var(--ellora-yellow);

    font-size: 24px;
    font-weight: 800;
}
@media (max-width: 800px) {

    .launch-process {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .launch-arrow {
        display: none;
    }
}


@media (max-width: 500px) {

    #launch-packaging {
        padding: 55px 5%;
    }

    .launch-intro h2 {
        font-size: 31px;
    }

    .launch-process {
        grid-template-columns: 1fr;
    }

    .launch-step {
        min-height: 85px;
    }
}
/* =========================================================
   LAUNCH PACKAGING FLOATING BUTTON
   ========================================================= */

.launch-floating {
    position: fixed;
    right: 25px;
    bottom: 105px;
    z-index: 900;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px 9px 10px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 30px;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    transition: 0.3s ease;
}

.launch-floating-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ellora-pink);
    border-radius: 50%;

    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.launch-floating-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.launch-floating-text strong {
    color: var(--ellora-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.launch-floating-text small {
    margin-top: 2px;
    color: #666666;
    font-size: 9px;
    font-weight: 600;
}

/* HOVER */

.launch-floating:hover {
    border-color: var(--ellora-pink);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}
/* NAVIGATION SCROLL FIX */

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 125px;
}
/* NAVIGATION SCROLL FIX */

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 125px;
}

/* HOME FIX */

#home {
    scroll-margin-top: 0;
}html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 125px;
}

#home {
    scroll-margin-top: 125px;
}

main {
    padding-top: 110px;
}
/* LAUNCH PACKAGING BENEFITS */

.launch-benefits {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.launch-benefits span {
    padding: 8px 14px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 20px;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;
}

.launch-benefits span::first-letter {
    color: var(--ellora-yellow);
}
/* ================= RESPONSIVE - LAUNCH BENEFITS ================= */

@media (max-width: 700px) {

    .launch-benefits {
        gap: 8px;
        margin-top: 18px;
    }

    .launch-benefits span {
        padding: 7px 11px;
        font-size: 11px;
    }
}
@media (max-width: 500px) {

    .launch-benefits {
        flex-direction: column;
        align-items: flex-start;
    }

    .launch-benefits span {
        width: 100%;
        text-align: left;
    }
}
.launch-highlight .flexible-order {
    display: inline-block;
    padding: 2px 7px;
    margin: 0 2px;

    background: var(--ellora-pink);
    color: var(--white);

    border-radius: 4px;

    font-weight: 900;
}
/* =========================================================
   PACKAGING QUOTE
   ========================================================= */

#quote {
    padding: 80px 6%;
    background: #f7f5f0;
}

.quote-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 65px;
}


/* LEFT SIDE */

.quote-intro {
    text-align: left;
}

.quote-intro .small-title {
    text-align: left;
}

.quote-intro h2 {
    margin: 12px 0 22px;

    color: #102758;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.quote-intro p {
    color: #555;

    font-size: 15px;
    line-height: 1.7;
}


/* BENEFITS */

.quote-points {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-points span {
    color: #102758;

    font-size: 14px;
    font-weight: 700;
}


/* FORM */

.packaging-quote-form {
    padding: 35px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 7px;

    color: #102758;

    font-size: 12px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #dcdcdc;
    border-radius: 4px;

    background: #ffffff;

    color: #333;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ellora-blue);
}

.form-group small {
    margin-top: 6px;

    color: #777;

    font-size: 10px;
}

.full-width {
    grid-column: 1 / -1;
}


/* SUBMIT */

.quote-submit {
    margin-top: 25px;

    padding: 14px 25px;

    background: var(--ellora-pink);

    border: none;
    border-radius: 4px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;

    cursor: pointer;

    transition: 0.3s ease;
}

.quote-submit:hover {
    background: var(--ellora-blue);

    transform: translateY(-2px);
}
@media (max-width: 900px) {

    .quote-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


@media (max-width: 600px) {

    #quote {
        padding: 55px 5%;
    }

    .quote-intro h2 {
        font-size: 31px;
    }

    .packaging-quote-form {
        padding: 22px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .full-width {
        grid-column: auto;
    }

    .quote-submit {
        width: 100%;
    }
}
/* =========================================================
   FESTIVE & CORPORATE GIFT PACKAGING
   ========================================================= */

#festive-packaging {
    padding: 80px 6%;
    background: #fffaf3;
}

.festive-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.festive-season {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 14px;

    background: var(--ellora-yellow);
    border-radius: 20px;

    color: #102758;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.festive-container h2 {
    margin: 12px 0 18px;

    color: #102758;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.festive-intro {
    max-width: 760px;
    margin: 0 auto;

    color: #555;

    font-size: 16px;
    line-height: 1.7;
}

.festive-grid {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.festive-card {
    position: relative;

    min-height: 560px;

    padding: 30px 28px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 9px;

    text-align: left;

    box-shadow: 0 5px 18px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

.festive-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 26px rgba(0,0,0,0.11);
}

.festive-number {
    margin-bottom: 18px;

    color: var(--ellora-pink);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.festive-card h3 {
    margin: 0 0 18px;

    color: #102758;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.festive-card ul {
    margin: 0;
    padding-left: 18px;
}

.festive-card li {
    margin-bottom: 8px;

    color: #555;

    font-size: 14px;
    line-height: 1.5;
}

.festive-card::after {
    content: "";

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 0;

    height: 4px;

    background: var(--ellora-pink);
}

.festive-card:nth-child(2)::after {
    background: var(--ellora-blue);
}

.festive-card:nth-child(3)::after {
    background: var(--ellora-yellow);
}


/* BENEFITS */

.festive-benefits {
    margin-top: 28px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
}

.festive-benefits span {
    padding: 8px 14px;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 20px;

    color: #102758;

    font-size: 12px;
    font-weight: 700;
}


/* CTA */

.festive-cta {
    display: inline-block;

    margin-top: 28px;

    padding: 13px 24px;

    background: var(--ellora-pink);

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;

    transition: 0.3s ease;
}

.festive-cta:hover {
    background: var(--ellora-blue);

    transform: translateY(-2px);
}
@media (max-width: 900px) {

    .festive-grid {
        grid-template-columns: 1fr;
    }

    .festive-card {
        min-height: auto;
    }
}


@media (max-width: 600px) {
    .festive-image {
    height: 180px;
}

    #festive-packaging {
        padding: 55px 5%;
    }

    .festive-container h2 {
        font-size: 31px;
    }

    .festive-intro {
        font-size: 14px;
    }

    .festive-card {
        padding: 24px 22px;
    }

    .festive-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .festive-benefits span {
        text-align: center;
    }

    .festive-cta {
        width: 100%;
        text-align: center;
    }
}
/* FESTIVE CARD IMAGES */

.festive-image {
    width: 100%;
    height: 190px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fafafa;
    border-radius: 7px;
}

.festive-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.festive-card:hover .festive-image img {
    transform: scale(1.04);
}
nav .festive-nav-link {
    color: var(--ellora-pink);
    font-weight: 800;
    position: relative;
}

/* FESTIVE NAVIGATION */

nav .festive-nav-link {
    position: relative;
    color: var(--ellora-pink);
    font-weight: 800;
}


/* FLOATING NEW RIBBON */

nav .festive-nav-link::after {
    content: "NEW";

    position: absolute;

    top: -10px;
    right: 5px;

    padding: 4px 9px;

    background: var(--ellora-yellow);

    color: #102758;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;

    border-radius: 3px 3px 3px 0;

    box-shadow: 0 3px 7px rgba(0,0,0,0.15);

    animation: festiveRibbon 2s ease-in-out infinite;
}


/* SMALL RIBBON TAIL */

nav .festive-nav-link::before {
    content: "";

    position: absolute;

    top: -8px;
    right: 20px;

    width: 0;
    height: 0;

    border-top: 8px solid #d6a800;
    border-right: 8px solid transparent;
}

/* GENTLE FLOATING EFFECT */

@keyframes festiveRibbon {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}
/* =========================================================
   FROM SMALL RUNS TO LARGE VOLUMES
   ========================================================= */

.volume-strip {
    padding: 38px 6%;
    background: #102758;
}

.volume-strip-content {
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 22px;
}

.volume-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ellora-yellow);
    border-radius: 50%;

    color: #102758;
    font-size: 25px;
    font-weight: 900;
}

.volume-message {
    flex: 1;
}

.volume-label {
    color: var(--ellora-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.volume-message h2 {
    margin: 5px 0 5px;

    color: #ffffff;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.volume-message p {
    margin: 0;

    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.5;
}

.volume-cta {
    flex-shrink: 0;

    padding: 13px 22px;

    background: var(--ellora-pink);
    border-radius: 4px;

    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;

    transition: 0.3s ease;
}

.volume-cta:hover {
    background: var(--ellora-yellow);
    color: #102758;
    transform: translateY(-2px);
}
@media (max-width: 700px) {

    .volume-strip {
        padding: 32px 5%;
    }

    .volume-strip-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .volume-message h2 {
        font-size: 25px;
    }

    .volume-cta {
        width: 100%;
        text-align: center;
    }
}
/* =========================================================
   FESTIVE ORDER ALERT
   ========================================================= */

.festive-order-alert {
    width: fit-content;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 9px 17px;

    background: #102758;
    border-radius: 25px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.festive-alert-dot {
    width: 9px;
    height: 9px;

    background: var(--ellora-pink);
    border-radius: 50%;

    animation: festivePulse 1.5s infinite;
}

@keyframes festivePulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.4);
    }
}
/* =========================================================
   PROTOTYPE & PACKAGING DEVELOPMENT
   ========================================================= */

.prototype-support {
    max-width: 1050px;
    margin: 40px auto 30px;
    padding: 30px 35px;

    display: flex;
    align-items: flex-start;
    gap: 25px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-left: 5px solid var(--ellora-pink);

    border-radius: 8px;

    text-align: left;

    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.prototype-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ellora-yellow);
    border-radius: 50%;

    color: #102758;

    font-size: 22px;
    font-weight: 900;
}

.prototype-content {
    flex: 1;
}

.prototype-label {
    color: var(--ellora-pink);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.prototype-content h3 {
    margin: 6px 0 10px;

    color: #102758;

    font-size: 25px;
    font-weight: 800;
}

.prototype-content p {
    max-width: 850px;
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}


/* DEVELOPMENT STEPS */

.prototype-steps {
    margin-top: 22px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.prototype-steps span {
    color: var(--ellora-pink);

    font-size: 11px;
    font-weight: 800;
}

.prototype-steps strong {
    margin-left: 4px;

    color: #102758;

    font-size: 12px;
    font-weight: 800;
}
/* =========================================================
   PROTOTYPE & PACKAGING DEVELOPMENT
   ========================================================= */

.prototype-support {
    max-width: 1050px;
    margin: 40px auto 30px;
    padding: 30px 35px;

    display: flex;
    align-items: flex-start;
    gap: 25px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-left: 5px solid var(--ellora-pink);

    border-radius: 8px;

    text-align: left;

    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.prototype-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ellora-yellow);
    border-radius: 50%;

    color: #102758;

    font-size: 22px;
    font-weight: 900;
}

.prototype-content {
    flex: 1;
}

.prototype-label {
    color: var(--ellora-pink);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.prototype-content h3 {
    margin: 6px 0 10px;

    color: #102758;

    font-size: 25px;
    font-weight: 800;
}

.prototype-content p {
    max-width: 850px;
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}


/* DEVELOPMENT STEPS */

.prototype-steps {
    margin-top: 22px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.prototype-steps span {
    color: var(--ellora-pink);

    font-size: 11px;
    font-weight: 800;
}

.prototype-steps strong {
    margin-left: 4px;

    color: #102758;

    font-size: 12px;
    font-weight: 800;
}
@media (max-width: 700px) {

    .prototype-support {
        padding: 25px 20px;

        flex-direction: column;
    }

    .prototype-content h3 {
        font-size: 22px;
    }

    .prototype-steps {
        align-items: flex-start;
        gap: 8px;
    }
}
/* =========================================================
   CAPABILITY HERO IMAGES
   ========================================================= */

.capability-hero-image {
    width: 100%;
    max-width: 1250px;

    margin: 25px auto 35px;

    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.capability-hero-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.capability-hero-image:hover img {
    transform: scale(1.015);
}
@media (max-width: 700px) {

    .capability-hero-image {
        margin: 20px auto 28px;
        border-radius: 7px;
    }

}
/* =========================================================
   WHAT WE DO DROPDOWN
   ========================================================= */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-title {
    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--ellora-pink);
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;
}

.nav-dropdown-title span {
    font-size: 10px;
}


/* HIDDEN BY DEFAULT */

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 220px;

    padding: 8px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 6px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: 0.25s ease;

    z-index: 2000;
}


/* DROPDOWN LINKS */

.nav-dropdown-menu a {
    display: block;

    padding: 11px 16px;

    color: #102758;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #f7f5f0;
    color: var(--ellora-pink);
}


/* SHOW ONLY ON HOVER */

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}/* =========================================================
   MOBILE / TABLET DROPDOWN
   ========================================================= */

@media (max-width: 900px) {

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-title {
        width: 100%;
        justify-content: space-between;

        font-size: 17px;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin-top: 8px;

        padding: 6px 0;

        background: #fafafa;

        border: none;
        border-radius: 4px;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 14px;

        font-size: 14px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }

}
@media (max-width: 600px) {

    .nav-dropdown-title {
        font-size: 16px;
    }

    .nav-dropdown-menu a {
        font-size: 13px;
        padding: 9px 12px;
    }

}
/* =========================================================
   OUR WORK
   ========================================================= */

#gallery {
    padding: 80px 5%;
    background: #ffffff;
}

.our-work-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.our-work-container > .small-title {
    text-align: center;
}

.our-work-container h2 {
    margin: 10px 0 12px;

    text-align: center;

    color: #102758;

    font-size: 40px;
    font-weight: 800;
}

.our-work-intro {
    max-width: 700px;
    margin: 0 auto 40px;

    text-align: center;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* THREE LARGE WORK IMAGES */

.our-work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    width: 100%;
}

.our-work-card {
    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 10px;

    box-shadow: 0 7px 22px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.our-work-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.13);
}

.our-work-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
}

.our-work-info {
    padding: 18px 20px 22px;
}

.our-work-info span {
    color: var(--ellora-pink);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.our-work-info h3 {
    margin: 7px 0 0;

    color: #102758;

    font-size: 18px;
    font-weight: 800;
}
@media (max-width: 900px) {

    .our-work-grid {
        grid-template-columns: 1fr;
    }

    .our-work-card img {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }

}

@media (max-width: 600px) {

    #gallery {
        padding: 55px 5%;
    }

    .our-work-container h2 {
        font-size: 30px;
    }

}
/* =========================================================
   PACKAGING KNOWLEDGE
   ========================================================= */

#packaging-knowledge {
    padding: 80px 6%;
    background: #f7f5f0;
}

.knowledge-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.knowledge-container h2 {
    margin: 10px 0 15px;
    color: #102758;
    font-size: 40px;
    font-weight: 800;
}

.knowledge-intro {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.knowledge-grid {
    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.knowledge-card {
    position: relative;

    padding: 30px;

    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;

    text-align: left;

    transition: 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.09);
}

.knowledge-number {
    margin-bottom: 25px;

    color: var(--ellora-pink);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.knowledge-category {
    color: var(--ellora-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.knowledge-card h3 {
    margin: 10px 0 15px;

    color: #102758;

    font-size: 22px;
    line-height: 1.25;
}

.knowledge-card p {
    margin-bottom: 25px;

    color: #666;

    font-size: 14px;
    line-height: 1.7;
}

.knowledge-card a {
    color: var(--ellora-pink);

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.knowledge-card a:hover {
    color: var(--ellora-blue);
}
@media (max-width: 900px) {

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    #packaging-knowledge {
        padding: 55px 5%;
    }

    .knowledge-container h2 {
        font-size: 30px;
    }

    .knowledge-card {
        padding: 25px 22px;
    }

}
/* =========================================================
   PACKAGING KNOWLEDGE ARTICLE
   ========================================================= */

.article-page {
    background: #ffffff;
}

.article-hero {
    padding: 85px 6% 70px;
    background: #f7f5f0;
    text-align: center;
}

.article-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-category {
    color: var(--ellora-pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.article-hero h1 {
    margin: 13px 0 18px;

    color: #102758;

    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
}

.article-subtitle {
    max-width: 720px;
    margin: 0 auto;

    color: #555;

    font-size: 18px;
    line-height: 1.7;
}

.article-meta {
    margin-top: 22px;

    color: #888;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* CONTENT */

.article-content-section {
    padding: 70px 6%;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
}

.article-intro {
    margin-bottom: 55px;

    padding: 30px 35px;

    background: #fafafa;

    border-left: 5px solid var(--ellora-pink);

    color: #444;

    font-size: 17px;
    line-height: 1.8;
}

.article-intro p:last-child {
    margin-bottom: 0;
}


.article-block {
    margin-bottom: 65px;
}

.article-number {
    color: var(--ellora-pink);

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.article-block h2 {
    margin: 7px 0 18px;

    color: #102758;

    font-size: 31px;
    font-weight: 800;
}

.article-block > p {
    color: #555;

    font-size: 15px;
    line-height: 1.8;
}


/* INDUSTRIES */

.article-industry-grid,
.carton-type-grid {
    margin-top: 28px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.article-mini-card,
.carton-type-card {
    padding: 23px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 7px;
}

.article-mini-card strong {
    display: block;

    margin-bottom: 7px;

    color: #102758;

    font-size: 15px;
}

.article-mini-card span {
    color: #666;

    font-size: 13px;
    line-height: 1.6;
}


/* BENEFITS */

.article-benefits {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.article-benefits > div {
    padding: 25px;

    background: #f7f5f0;

    border-radius: 7px;
}

.article-benefits h3,
.carton-type-card h3 {
    margin: 0 0 9px;

    color: #102758;

    font-size: 17px;
    font-weight: 800;
}

.article-benefits p,
.carton-type-card p {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}


/* HIGHLIGHT */

.article-highlight {
    margin: 28px 0;

    padding: 23px 27px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    background: #102758;

    border-radius: 7px;
}

.article-highlight strong {
    color: var(--ellora-yellow);

    font-size: 12px;
    letter-spacing: 1px;
}

.article-highlight span {
    color: #ffffff;

    font-size: 14px;
    line-height: 1.7;
}


/* PRINT OPTIONS */

.printing-options {
    margin: 25px 0;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.printing-options span {
    padding: 8px 13px;

    background: #f7f5f0;

    border: 1px solid #e5e5e5;
    border-radius: 20px;

    color: #102758;

    font-size: 15px;
    font-weight: 800;
}


/* PROCESS */

.article-process {
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.article-process > div:not(.process-arrow) {
    flex: 1;

    padding: 18px 10px;

    background: #f7f5f0;
    border-radius: 6px;

    text-align: center;
}

.article-process span {
    display: block;

    margin-bottom: 7px;

    color: var(--ellora-pink);

    font-size: 15px;
    font-weight: 900;
}

.article-process strong {
    color: #102758;

    font-size: 11px;
}

.process-arrow {
    color: var(--ellora-pink);

    font-size: 18px;
    font-weight: 900;
}


/* ELLORA BLOCK */

.article-ellora {
    padding: 35px;

    background: #fffaf3;

    border: 1px solid #f0e9dc;
    border-radius: 8px;
}


/* CTA */

.article-cta {
    margin-top: 70px;

    padding: 45px;

    background: #102758;

    border-radius: 10px;

    text-align: center;
}

.article-cta > span {
    color: var(--ellora-yellow);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.article-cta h2 {
    margin: 10px 0 12px;

    color: #ffffff;

    font-size: 31px;
}

.article-cta p {
    max-width: 650px;
    margin: 0 auto 25px;

    color: rgba(255,255,255,0.75);

    font-size: 14px;
    line-height: 1.7;
}

.article-cta a {
    display: inline-block;

    padding: 13px 22px;

    background: var(--ellora-pink);

    border-radius: 4px;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.article-cta a:hover {
    background: var(--ellora-yellow);
    color: #102758;
}


/* BACK LINK */

.article-back {
    margin-top: 35px;

    text-align: center;
}

.article-back a {
    color: var(--ellora-blue);

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
}
@media (max-width: 900px) {

    .article-industry-grid,
    .carton-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-process {
        flex-direction: column;
        align-items: stretch;
    }

    .process-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

}


@media (max-width: 600px) {

    .article-hero {
        padding: 60px 5% 50px;
    }

    .article-hero h1 {
        font-size: 36px;
    }

    .article-subtitle {
        font-size: 15px;
    }

    .article-content-section {
        padding: 50px 5%;
    }

    .article-intro {
        padding: 24px 20px;

        font-size: 15px;
    }

    .article-block h2 {
        font-size: 26px;
    }

    .article-industry-grid,
    .carton-type-grid,
    .article-benefits {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 35px 22px;
    }

    .article-cta h2 {
        font-size: 25px;
    }

}
/* MONO CARTON ARTICLE VISUAL */

.article-main-visual {
    width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

.article-main-visual img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 10px;
    border: 1px solid #eeeeee;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.article-main-visual p {
    margin: 12px 0 0;

    color: #777;

    font-size: 12px;
    line-height: 1.5;
}
/* MONO CARTON STRUCTURE VISUALS */

.carton-type-card {
    overflow: hidden;
    padding: 0;
}

.carton-type-card img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: contain;

    padding: 18px;

    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.carton-type-card h3 {
    margin: 20px 20px 10px;
}

.carton-type-card p {
    margin: 0;
    padding: 0 20px 22px;
}

@media (max-width: 600px) {

    .carton-type-card img {
        height: 230px;
    }

}
/* =========================================================
   AQUEOUS COATING COMPARISON
   ========================================================= */

.finish-comparison {
    margin: 30px 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 20px;
}

.finish-box {
    padding: 30px;

    background: #f7f5f0;

    border: 1px solid #e8e8e8;
    border-radius: 8px;

    text-align: center;
}

.finish-box > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 55px;
    height: 55px;

    margin-bottom: 15px;
    padding: 0 10px;

    background: #102758;
    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
}

.finish-box h3 {
    margin: 0 0 10px;

    color: #102758;

    font-size: 19px;
}

.finish-box p {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}

.finish-vs {
    color: var(--ellora-pink);

    font-size: 13px;
    font-weight: 900;
}


/* MOBILE */

@media (max-width: 600px) {

    .finish-comparison {
        grid-template-columns: 1fr;
    }

    .finish-vs {
        text-align: center;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .finish-comparison {
        grid-template-columns: 1fr;
    }

    .finish-vs {
        text-align: center;
    }

}
/* =========================================================
   NEW BRAND PACKAGING ARTICLE
   ========================================================= */

.brand-growth-flow {
    margin-top: 30px;
    padding: 28px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    background: #102758;
    border-radius: 8px;
}

.brand-growth-flow > div:not(.growth-arrow) {
    flex: 1;
    text-align: center;
}

.brand-growth-flow span {
    display: block;
    margin-bottom: 5px;

    color: var(--ellora-yellow);

    font-size: 10px;
    font-weight: 900;
}

.brand-growth-flow strong {
    color: #ffffff;

    font-size: 11px;
    letter-spacing: 0.5px;
}

.growth-arrow {
    color: var(--ellora-pink);

    font-size: 18px;
    font-weight: 900;
}


/* FLEXIBLE ORDER HIGHLIGHT */

.flexible-order-highlight {
    border-left: 5px solid var(--ellora-pink);
}


/* FIRST BOX TO NEXT MILLION */

.article-scale-block h2 {
    font-size: 36px;
}

.article-scale-block h2::after {
    content: "";
    display: block;

    width: 65px;
    height: 4px;

    margin-top: 15px;

    background: var(--ellora-pink);
}


/* MOBILE */

@media (max-width: 900px) {

    .brand-growth-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-growth-flow > div:not(.growth-arrow) {
        padding: 12px;
    }

    .growth-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

}


@media (max-width: 600px) {

    .article-scale-block h2 {
        font-size: 28px;
    }

}
/* =========================================================
   COMPACT NEW BRAND ARTICLE PAGE
   ========================================================= */

/* ARTICLE HERO */

.new-brand-article .article-hero {
    padding: 35px 5% 25px;
}

.new-brand-article .article-hero-container {
    max-width: 1250px;
    margin: 0 auto;
}

.new-brand-article .article-category {
    font-size: 11px;
    letter-spacing: 1.5px;
}

.new-brand-article .article-hero h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 10px 0 12px;
}

.new-brand-article .article-subtitle {
    font-size: 18px;
    line-height: 1.5;
    max-width: 1000px;
}

.new-brand-article .article-meta {
    margin-top: 18px;
    font-size: 12px;
}


/* ARTICLE CONTENT WIDTH */

.new-brand-article .article-content-section {
    padding: 25px 5% 70px;
}

.new-brand-article .article-content {
    max-width: 1000px;
    margin: 0 auto;
}


/* MAIN JOURNEY IMAGE */

.new-brand-article .article-main-visual {
    max-width: 1050px;
    margin: 25px auto 40px;
}

.new-brand-article .article-main-visual img {
    width: 100%;
    height: auto;
    display: block;
}


/* ARTICLE SECTION HEADINGS */

.new-brand-article .article-block h2 {
    font-size: 28px;
    line-height: 1.25;
}


/* BODY TEXT */

.new-brand-article .article-block p,
.new-brand-article .article-intro p {
    font-size: 15px;
    line-height: 1.75;
}


/* FIRST BOX TO NEXT MILLION */

.new-brand-article .article-scale-block h2 {
    font-size: 30px;
}


/* MOBILE */

@media (max-width: 700px) {

    .new-brand-article .article-hero h1 {
        font-size: 29px;
    }

    .new-brand-article .article-subtitle {
        font-size: 16px;
    }

    .new-brand-article .article-block h2 {
        font-size: 24px;
    }

    .new-brand-article .article-main-visual {
        margin: 20px auto 30px;
    }

}
/* =========================================================
   AQUEOUS COATING ARTICLE - DESKTOP SIZE FIX
   ========================================================= */

.aqueous-article .article-hero {
    padding: 65px 6% 55px;
}

.aqueous-article .article-hero-container {
    max-width: 1050px;
    margin: 0 auto;
}

.aqueous-article .article-hero h1 {
    font-size: 48px;
    line-height: 1.1;
}

.aqueous-article .article-subtitle {
    max-width: 850px;
    font-size: 18px;
    line-height: 1.65;
}

.aqueous-article .article-content-section {
    padding: 55px 6% 80px;
}

.aqueous-article .article-content {
    max-width: 1100px;
    margin: 0 auto;
}

.aqueous-article .article-intro {
    font-size: 17px;
    line-height: 1.8;
}

.aqueous-article .article-block h2 {
    font-size: 31px;
}

.aqueous-article .article-block > p {
    font-size: 16px;
    line-height: 1.8;
}

.aqueous-article .article-main-visual {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   MOBILE FULL WIDTH FIX
   ========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    header,
    main,
    section,
    footer {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero,
    .hero-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
/* =========================================================
   MOBILE FIX - PRINTING + PACKAGING CAPABILITIES
   ========================================================= */

@media (max-width: 768px) {

    /* PRINTING CARDS - ONE BELOW ANOTHER */
    .printing-capability-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .printing-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: auto !important;

        grid-template-columns: 100px 1fr !important;

        padding: 18px !important;
        box-sizing: border-box !important;
    }

    .printing-card .capability-image {
        padding-right: 12px !important;
    }

    .printing-card .capability-image img {
        width: 85px !important;
        height: 85px !important;
    }


    /* PACKAGING CARDS - ONE BELOW ANOTHER */
    .packaging-capability-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .packaging-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: auto !important;
        box-sizing: border-box !important;
    }

    /* IMPORTANT - RESET DESKTOP 2-COLUMN SPAN */
    .packaging-card.wide-card,
    .wide-card {
        grid-column: auto !important;
        width: 100% !important;
    }

    .packaging-icon img {
        width: 80px !important;
        height: 80px !important;
    }
}
/* USA CLIENT SUPPORT */
.usa-client-support {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.usa-client-support strong {
    color: #f4c20d;
}

.usa-client-support span {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    opacity: 0.85;
}