/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}


/*====================================
Refrigerator Freezer Banner
====================================*/
.freezer-banner-section {
    min-height: 700px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(0, 41, 100, .10),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}


/* =========================
   HERO ROW
========================= */

.freezer-banner-section .hero-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.banner-sub-heading {
    display: inline-block;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: #002964;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 25px;
}

.hero-content h1 span {
    color: #ff3b30;
}

.hero-content p {
    max-width: 590px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.hero-buttons a {
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hero-buttons .primary {
    color: #fff;
    background: #ff3b30;
}

.hero-buttons .primary:hover {
    background: #e72d24;
    transform: translateY(-3px);
}

.hero-buttons .secondary {
    color: #ff3b30;
    background: #fff;
    border: 1px solid #ff3b30;
}

.hero-buttons .secondary:hover {
    color: #fff;
    background: #ff3b30;
    transform: translateY(-3px);
}


/* =========================
   FEATURES
========================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e3eaf4;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 41, 100, .07);
    transition: .3s ease;
}

.hero-feature:hover {
    transform: translateY(-4px);
    border-color: #ff3b30;
}

.hero-feature i {
    color: #ff3b30;
    font-size: 14px;
}

.hero-feature span {
    color: #002964;
    font-size: 13px;
    font-weight: 500;
}


/* =========================
   RIGHT IMAGE
========================= */

.hero-image {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Big background glow */

.hero-image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 41, 100, .16) 0%,
            rgba(0, 41, 100, .07) 40%,
            transparent 70%
        );
}


/* Product */

.hero-image img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 30px 35px rgba(0, 41, 100, .20)
    );
    transition: .5s ease;
}

.hero-image:hover img {
    transform: translateY(-8px) scale(1.02);
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 41, 100, .08);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 41, 100, .12);
    color: #002964;
    font-size: 12px;
}

.floating-card i {
    color: #ff3b30;
    font-size: 18px;
}

.floating-card strong {
    font-size: 13px;
}

.card-one {
    top: 100px;
    right: 15px;
}

.card-two {
    bottom: 100px;
    left: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .freezer-banner-section {
        padding: 70px 0;
    }

    .freezer-banner-section .hero-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        min-height: 450px;
    }

    .hero-image img {
        width: 90%;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .freezer-banner-section {
        padding: 55px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-image img {
        width: 110%;
    }

    .hero-image-glow {
        width: 330px;
        height: 330px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-one {
        top: 20px;
        right: -5px;
    }

    .card-two {
        bottom: 20px;
        left: -5px;
    }
}


/*====================================
Monitor Section Start
====================================*/

/* Section */
.monitor-section {
    padding: 90px 0;
    background: #fff;
}

/* Image */
.monitor-section .monitor-image {
    position: relative;
}

.monitor-section .monitor-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #dfe7f3;
}

/* Content */
.monitor-section .monitor-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646F88;
    margin-bottom: 22px;
}

.monitor-section .monitor-content strong {
    color: #062E82;
    font-weight: 600;
}

/* Button */
.monitor-section .explore-btn {
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #002964;
}

.monitor-section .explore-btn a {
    color: #fff;
    text-decoration: none;
}

/*====================================
Monitor Section End
====================================*/

/*====================================
Alarm Monitoring Section Start
====================================*/

/* Section */

.alarm {
    padding: 90px 0;
    background: #f8fbff;
}

/* Content */

.alarm .alarm-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646F88;
    margin-bottom: 22px;
}

/* Image */

.alarm .alarm-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #dfe7f3;
    transition: .35s;
    height: 500px;
    object-fit: cover;
}

.alarm .alarm-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
}

/*====================================
Alarm Monitoring Section End
====================================*/

/*====================================
Applications Section Start
====================================*/

/* Section */

.applications-section {
    padding: 90px 0;
    background: #fff;
}

/* Content */

.applications-section .applications-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646F88;
    margin-bottom: 20px;
}

/* Industry Grid */

.applications-section .industry-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.applications-section .industry-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.applications-section .industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6,46,130,.08);
    border-color: #062E82;
}

.applications-section .industry-card i {
    font-size: 34px;
    color: #ff3b30;
    margin-bottom: 20px;
}

.applications-section .industry-card h5 {
    margin: 0;
    color: #062E82;
    font-size: 22px;
    font-weight: 500;
}

/* Responsive */

@media(max-width:991px){

    .applications-section .industry-grid{
        grid-template-columns:1fr;
    }

}

/*====================================
Applications Section End
====================================*/

/*====================================
QuickCheck Section Start
====================================*/

/* Section */

.quickcheck-section {
    padding: 90px 0;
    background: #f8fbff;
}

/* Image */

.quickcheck-section .quickcheck-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #dfe7f3;
    transition: .35s;
}

.quickcheck-section .quickcheck-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
}

/* Content */

.quickcheck-section .quickcheck-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646F88;
    margin-bottom: 22px;
}

/* Note */

.quickcheck-section .quickcheck-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 35px;
    padding: 22px;
    background: #fff;
    border: 1px solid #dfe7f3;
    border-left: 4px solid #ff3b30;
    border-radius: 12px;
}

.quickcheck-section .quickcheck-note i {
    color: #ff3b30;
    font-size: 22px;
    margin-top: 4px;
}

.quickcheck-section .quickcheck-note p {
    margin: 0;
}

/*====================================
QuickCheck Section End
====================================*/

/*====================================
Compatible Equipment Section Start
====================================*/

/* Section */

.compatible-section {
    padding: 90px 0;
    background: #fff;
}

.compatible-section .compatible-details {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}
.compatible-section .section-heading p {
    max-width: 750px;
    margin: 25px auto 0;
    color: #646F88;
    font-size: 17px;
    line-height: 1.8;
}

/* Card */

.compatible-section .compatible-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    height: 100%;
}

.compatible-section .compatible-card:hover {
    transform: translateY(-10px);
    border-color: #062E82;
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
}

/* Image */

.compatible-section .compatible-image {
    overflow: hidden;
}

.compatible-section .compatible-image img {
    width: 100%;
    transition: .4s;
}

.compatible-section .compatible-card:hover .compatible-image img {
    transform: scale(1.05);
}

/* Content */

.compatible-section .compatible-content {
    padding: 25px;
    text-align: center;
}

.compatible-section .compatible-content h4 {
    font-size: 24px;
    color: #062E82;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/*====================================
Compatible Equipment Section End
====================================*/

/*====================================
Compliance Section Start
====================================*/

.compliance-section{
    padding:90px 0;
    background:#f8fbff;
}

.compliance-section .compliance-details{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.compliance-section .compliance-details p{
    margin-top:25px;
    color:#646F88;
    line-height:1.8;
}

.compliance-section .compliance-card{
    background:#fff;
    border:1px solid #dfe7f3;
    border-radius:18px;
    padding:40px 28px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.compliance-section .compliance-card:hover{
    transform:translateY(-10px);
    border-color:#062E82;
    box-shadow:0 20px 50px rgba(6,46,130,.08);
}

.compliance-section .compliance-card i{
    font-size:34px;
    color:#ff3b30;
    margin-bottom:25px;
}

.compliance-section .compliance-card h4{
    color:#062E82;
    font-size:24px;
    margin-bottom:15px;
}

.compliance-section .compliance-card p{
    color:#646F88;
    line-height:1.8;
    margin:0;
}

.compliance-section .compliance-note{
    margin-top:50px;
    padding:35px;
    background:#fff;
    border-left:4px solid #ff3b30;
    border-radius:18px;
}

.compliance-section .compliance-note h4{
    color:#062E82;
    margin-bottom:15px;
}

.compliance-section .compliance-note p{
    margin:0;
    color:#646F88;
    line-height:1.8;
}

/*====================================
Compliance Section End
====================================*/

/*====================================
Installation Section Start
====================================*/

/* Section */

.installation-section {
    padding: 90px 0;
    background: #fff;
}

/* Image */

.installation-section .installation-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #dfe7f3;
    transition: .35s;
    height: 600px;
    object-fit: cover;
}

.installation-section .installation-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
}

/* Content */

.installation-section .installation-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646F88;
    margin-bottom: 22px;
}

/* Buttons */

.installation-section .installation-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}


.installation-section .installation-buttons a {
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.installation-section .installation-buttons .explore-btn{
    background:#ff3b30;
    color:#fff;
}

.installation-section .installation-buttons .explore-btn:hover{
    background:#e02a20;
}

.installation-section .installation-buttons .quote-btn{
    border:1px solid #ff3b30;
    color:#ff3b30;
    background:#fff;
}

.installation-section .installation-buttons .quote-btn:hover{
    background:#ff3b30;
    color:#fff;
}

/* Responsive */

@media (max-width:991px) {

    .installation-section .installation-buttons {
        flex-direction: column;
    }

}

/*====================================
Installation Section End
====================================*/

/*====================================
Specifications Section Start
====================================*/

/* Section */

.specifications-section {
    padding: 90px 0;
    background: #f8fbff;
}

/* Heading */

.specifications-section .specifications-details {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.specifications-section .specifications-details p {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: #646F88;
}

/* Table */

.specifications-section .specification-table {
    margin: 0;
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    overflow: hidden;
}

.specifications-section .specification-table th {
    width: 30%;
    background: #062E82;
    color: #fff;
    font-weight: 500;
    padding: 20px;
    vertical-align: middle;
    border-color: #dfe7f3;
}

.specifications-section .specification-table td {
    padding: 20px;
    color: #646F88;
    line-height: 1.8;
    vertical-align: middle;
    border-color: #dfe7f3;
}

.specifications-section .specification-table tr:last-child th,
.specifications-section .specification-table tr:last-child td {
    border-bottom: 0;
}

/* Responsive */

@media (max-width:991px) {

    .specifications-section .specification-table th,
    .specifications-section .specification-table td {
        white-space: normal;
        padding: 16px;
    }

}

/*====================================
Specifications Section End
====================================*/