@charset "utf-8";
/* CSS Document */

/* ===================================
   ALUMINIUM PRODUCTS PAGE
=================================== */

.aluminium-banner {
    position: relative;
    padding: 180px 0;
    background-size: cover;
}

.aluminium-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.aluminium-banner-content {
    position: relative;
    z-index: 2;
}

.aluminium-main-heading {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.aluminium-sub-heading {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.aluminium-product-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.aluminium-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.aluminium-card:hover {
    transform: translateY(-10px);
}

.aluminium-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.aluminium-card:hover .aluminium-image img {
    transform: scale(1.05);
}

.aluminium-content {
    padding: 30px;
    text-align: center;
}

.aluminium-content h3 {
    color: #0046b9;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.aluminium-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0046b9;
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.aluminium-btn:hover {
    color: #ffffff !important;
}

@media (max-width: 768px) {

    .aluminium-main-heading {
        font-size: 34px;
    }

    .aluminium-sub-heading {
        font-size: 18px;
    }

    .aluminium-image img {
        height: 220px;
    }
}



/* =========================================================
   KHALEEJ PACK - MICROWAVE CONTAINERS PAGE
========================================================= */

.kp-product-hero {
    position: relative;
    min-height: 430px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kp-product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.kp-product-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.kp-product-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.kp-product-hero h1 {
    margin: 0 auto 20px;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.kp-product-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.kp-product-intro {
    padding: 75px 20px 55px;
    background: #ffffff;
}

.kp-product-intro h2 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #222222;
}

.kp-product-intro p {
    max-width: 850px;
    margin: 0 auto 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #666666;
}


/* =========================================================
   PRODUCT RANGE
========================================================= */

.kp-product-range {
    padding: 65px 20px 85px;
    background: #f7f8fa;
}

.kp-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0046b9;
}

.kp-product-range h2 {
    margin: 0 0 15px;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #222222;
}

.kp-section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.kp-product-grid {
    margin-top: 45px;
}

.kp-product-card {
    height: 100%;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.kp-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.11);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.kp-product-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #ffffff;
}

.kp-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.kp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 25px;
    transition: transform 0.45s ease;
}

.kp-product-card:hover .kp-product-image img {
    transform: scale(1.04);
}

.kp-product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    text-align: center;
    background: rgba(0, 70, 185, 0.92);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.kp-product-card:hover .kp-product-overlay {
    transform: translateY(0);
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.kp-product-details {
    position: relative;
    padding: 32px 35px 38px;
}

.kp-product-number {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0046b9;
}

.kp-product-details h3 {
    margin: 0 0 15px;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
}

.kp-product-details h3 a {
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kp-product-details h3 a:hover {
    color: #0046b9;
}

.kp-product-details p {
    min-height: 58px;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
}

.kp-product-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 5px;
    background: #0046b9;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.kp-product-button:hover {
    background: #00388f;
    color: #ffffff !important;
}

.kp-product-button span {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   BOTTOM SECTION
========================================================= */

.kp-product-bottom {
    padding: 70px 20px;
    background: #ffffff;
}

.kp-product-bottom h2 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
    color: #222222;
}

.kp-product-bottom p {
    max-width: 800px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #666666;
}

.kp-contact-button {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 5px;
    background: #0046b9;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.kp-contact-button:hover {
    background: #00388f;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .kp-product-hero {
        min-height: 380px;
    }

    .kp-product-hero h1 {
        font-size: 44px;
    }

    .kp-product-image {
        height: 330px;
    }

}


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

@media (max-width: 767px) {

    .kp-product-hero {
        min-height: 350px;
    }

    .kp-product-hero-content {
        padding: 65px 15px;
    }

    .kp-product-hero h1 {
        font-size: 34px;
    }

    .kp-product-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .kp-product-intro {
        padding: 55px 20px 40px;
    }

    .kp-product-intro h2 {
        font-size: 28px;
    }

    .kp-product-range {
        padding: 50px 15px 60px;
    }

    .kp-product-range h2 {
        font-size: 29px;
    }

    .kp-product-image {
        height: 300px;
    }

    .kp-product-details {
        padding: 28px 25px 32px;
    }

    .kp-product-details h3 {
        font-size: 21px;
    }

    .kp-product-details p {
        min-height: auto;
    }

    .kp-product-bottom {
        padding: 55px 20px;
    }

    .kp-product-bottom h2 {
        font-size: 27px;
    }

}



/* =========================
   MICROWAVE CONTAINERS HERO
========================= */

.kp-product-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.kp-product-hero-inner {
    width: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.kp-product-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.kp-product-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}


/* Overlay */

.kp-product-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.88) 35%,
        rgba(255,255,255,0.30) 65%,
        rgba(255,255,255,0.05) 100%
    );
}


/* Content */

.kp-product-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1350px;

    margin: 0 auto;
    padding: 130px 60px;

    text-align: left;
}


/* Small label */

.kp-product-label {
    display: inline-block;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #1769c2;

    margin-bottom: 20px;
}


/* Heading */

.kp-product-hero-content h1 {
    max-width: 650px;

    margin: 0 0 22px;

    font-size: 52px;
    line-height: 1.1;

    font-weight: 600;

    color: #142d4c;
}


/* Description */

.kp-product-hero-content p {
    max-width: 600px;

    margin: 0;

    font-size: 19px;
    line-height: 1.7;

    color: #394b5f;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .kp-product-hero-inner {
        min-height: 460px;
    }

    .kp-product-hero-content {
        padding: 100px 40px;
    }

    .kp-product-hero-content h1 {
        font-size: 44px;
    }

    .kp-product-hero-content p {
        font-size: 17px;
    }

}


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

@media (max-width: 767px) {

    .kp-product-hero-inner {
        min-height: 620px;
    }

    .kp-product-hero-image img {
        object-position: 65% center;
    }

    .kp-product-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.94) 0%,
            rgba(255,255,255,0.82) 48%,
            rgba(255,255,255,0.25) 100%
        );
    }

    .kp-product-hero-content {
        padding: 80px 25px 50px;
    }

    .kp-product-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .kp-product-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .kp-product-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

}