/* ====================================
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;
    }
}


/* TV2 Information Section Start */

.tv2-info-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
    font-family: inherit;
}

/* Main Container */

.tv2-info-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Background Shape */

.tv2-info-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* First Row */

.tv2-info-row {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 65px;
    padding-bottom: 75px;
    border-bottom: 1px solid #e3eaf4;
}

/* Doctor Image Container */

.tv2-doctor-image {
    position: relative;
    padding: 50px;
    box-sizing: border-box;
}

/* Image Background Shape */

.tv2-doctor-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            #eaf3ff 0%,
            #f8fbff 100%);
    border-radius: 30px 90px 30px 90px;
    transform: rotate(-4deg);
}

/* Doctor Image */

.tv2-doctor-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center;
    background: #ffffff;
    border-radius: 22px 75px 22px 75px;
    box-shadow: 0 22px 55px rgba(0, 41, 100, 0.13);
}

/* First Row Content */

.tv2-info-content {
    width: 100%;
}

/* Common Paragraph Styling */

.tv2-info-content p,
.tv2-software-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

/* Button Container */

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

/* Common Button */

.banner-buttons a {
    display: inline-flex;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

/* More Information Button */

.explore-btn {
    color: #ffffff;
    background: #ff3b30;
    transition: 0.3s ease;
}

.explore-btn:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-2px);
}

/* Second Row */

.tv2-software-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding-top: 75px;
}

/* Second Row Content */

.tv2-software-content {
    width: 100%;
}

/* Software Images Container */

.tv2-software-images {
    position: relative;
    min-height: 430px;
}

/* Software Images Background */

.tv2-software-images::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 20px;
    width: 350px;
    height: 350px;
    background: #eef5ff;
    border-radius: 50%;
}

/* Software Image Cards */

.software-user-image,
.software-dashboard-image {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    background: #ffffff;
    border: 7px solid #ffffff;
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.14);
    box-sizing: border-box;
}

/* User Image */

.software-user-image {
    top: 0;
    left: 0;
    width: 260px;
    height: 245px;
}

/* Dashboard Image */

.software-dashboard-image {
    right: 0;
    bottom: 0;
    width: 360px;
    height: 260px;
}

/* Common Software Images */

.software-user-image img,
.software-dashboard-image img {
    display: block;
    width: 100%;
    height: 100%;
}

/* User Image Styling */

.software-user-image img {
    object-fit: cover;
}

/* Dashboard Image Styling */

.software-dashboard-image img {
    object-fit: contain;
    background: #f8fbff;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .tv2-info-section {
        padding: 75px 0;
    }

    .tv2-info-section .container {
        padding: 0 25px;
    }

    .tv2-info-row,
    .tv2-software-row {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tv2-doctor-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .tv2-software-images {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .tv2-info-section {
        padding: 55px 0;
    }

    .tv2-info-section .container {
        padding: 0 20px;
    }

    .tv2-info-row {
        gap: 35px;
        padding-bottom: 55px;
    }

    .tv2-doctor-image {
        padding: 15px;
    }

    .tv2-doctor-image::before {
        border-radius: 20px 55px 20px 55px;
    }

    .tv2-doctor-image img {
        height: 320px;
        border-radius: 16px 45px 16px 45px;
    }

    .tv2-info-content p,
    .tv2-software-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .banner-buttons {
        margin-top: 24px;
    }

    .tv2-software-row {
        gap: 35px;
        padding-top: 55px;
    }

    .tv2-software-images {
        display: grid;
        min-height: auto;
        gap: 20px;
    }

    .tv2-software-images::before {
        display: none;
    }

    .software-user-image,
    .software-dashboard-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 240px;
    }
}

/* Small Mobile Responsive */

@media (max-width: 400px) {
    .tv2-info-section .container {
        padding: 0 15px;
    }

    .tv2-doctor-image img {
        height: 280px;
    }

    .software-user-image,
    .software-dashboard-image {
        height: 210px;
    }

    .banner-buttons a {
        width: 100%;
        box-sizing: border-box;
    }
}

/* TV2 Information Section End */


/* Installation Section Start */

/* 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;
}

.installation-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: linear-gradient(180deg,
            #f8fbff 0%,
            #eef5ff 100%);
    font-family: inherit;
}

/* Container */

.installation-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.installation-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.installation-heading h2 {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.installation-heading h2 span {
    color: #ff3b30;
}

/* Main Wrapper */

.installation-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 65px;
}

.installation-wrapper .learn-btn { 
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background-color: #002964;
    color: #fff;
}

/* Image */

.installation-image {
    position: relative;
    padding: 22px;
}

.installation-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 25px 75px 25px 75px;
    transform: rotate(-4deg);
    box-shadow: 0 22px 55px rgba(0, 41, 100, 0.1);
}

.installation-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 18px 60px 18px 60px;
}

/* Steps Grid */

.installation-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

/* Individual Step */

.installation-step {
    display: flex;
    min-height: 105px;
    padding: 20px;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e3eaf4;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 41, 100, 0.06);
    box-sizing: border-box;
    transition: 0.3s ease;
}

.installation-step:hover {
    border-color: rgba(255, 59, 48, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 41, 100, 0.1);
}

/* Step Number */

.installation-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 50%;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
}

/* Step Content */

.installation-step p {
    margin: 0;
    color: #646f88;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}



/* Tablet Responsive */

@media (max-width: 991px) {
    .installation-section {
        padding: 75px 0;
    }

    .installation-section .container {
        padding: 0 25px;
    }

    .installation-heading h2 {
        font-size: 40px;
    }

    .installation-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .installation-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .installation-section {
        padding: 55px 0;
    }

    .installation-section .container {
        padding: 0 20px;
    }

    .installation-heading {
        margin-bottom: 40px;
    }

    .installation-heading h2 {
        font-size: 32px;
    }

    .installation-wrapper {
        gap: 35px;
    }

    .installation-image {
        padding: 15px;
    }

    .installation-image img {
        height: 320px;
    }

    .installation-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .installation-step {
        min-height: auto;
        padding: 18px;
    }

    .installation-step p {
        font-size: 15px;
    }
}

/* Installation Section End */
/*====================================
Compliance Section Start
====================================*/

.compliance-section {
    padding: 90px 0;
    background: #f8fbff;
}

/* Heading Area */

.compliance-section .compliance-details {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.compliance-section .section-tag {
    margin-bottom: 15px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.compliance-section .section-heading {
    margin: 15px 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.compliance-section .section-heading span {
    color: #ff3b30;
}

.compliance-section .compliance-details p {
    margin: 25px 0 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

/* Compliance Card */

.compliance-section .compliance-card {
    height: 100%;
    padding: 40px 28px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    text-align: center;
    box-sizing: border-box;
    transition: 0.35s;
}

.compliance-section .compliance-card:hover {
    border-color: #062e82;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, 0.08);
}

.compliance-section .compliance-card i {
    margin-bottom: 25px;
    color: #ff3b30;
    font-size: 34px;
}

.compliance-section .compliance-card h4 {
    margin: 0 0 15px;
    color: #062e82;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.compliance-section .compliance-card p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Compliance Note */

.compliance-section .compliance-note {
    margin-top: 50px;
    padding: 35px;
    background: #ffffff;
    border-left: 4px solid #ff3b30;
    border-radius: 18px;
    box-sizing: border-box;
}

.compliance-section .compliance-note h4 {
    margin: 0 0 15px;
    color: #062e82;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.compliance-section .compliance-note p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Compliance Responsive */

@media (max-width: 991px) {
    .compliance-section {
        padding: 80px 0;
    }

    .compliance-section .section-heading {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .compliance-section {
        padding: 60px 0;
    }

    .compliance-section .compliance-details {
        margin-bottom: 40px;
    }

    .compliance-section .section-tag {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .compliance-section .section-heading {
        margin: 10px 0;
        font-size: 32px;
    }

    .compliance-section .compliance-details p,
    .compliance-section .compliance-card p,
    .compliance-section .compliance-note p {
        font-size: 15px;
    }

    .compliance-section .compliance-card {
        padding: 30px 22px;
    }

    .compliance-section .compliance-card h4,
    .compliance-section .compliance-note h4 {
        font-size: 21px;
    }

    .compliance-section .compliance-note {
        margin-top: 35px;
        padding: 25px 20px;
    }
}

/*====================================
Compliance Section End
====================================*/

/* Installation Heading Area */

.installation-section .installation-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Small Red Tag */

.installation-section .installation-heading .section-tag {
    display: block;
    margin: 0 0 15px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Main Blue Heading */

.installation-section .installation-heading .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

/* Red Heading Text */

.installation-section .installation-heading .section-heading span {
    color: #ff3b30;
}

/* Tablet */

@media (max-width: 991px) {
    .installation-section .installation-heading {
        margin-bottom: 50px;
    }

    .installation-section .installation-heading .section-heading {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .installation-section .installation-heading {
        margin-bottom: 40px;
    }

    .installation-section .installation-heading .section-tag {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .installation-section .installation-heading .section-heading {
        font-size: 32px;
        line-height: 1.3;
    }
}


/*====================================
Easy Touch Display Section Start
====================================*/

.easy-touch-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

/* Container */

.easy-touch-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Heading Container */

.easy-touch-section .easy-touch-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Section Tag */

.easy-touch-section .section-tag {
    margin-bottom: 15px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Main Heading */

.easy-touch-section .section-heading {
    margin: 15px 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.easy-touch-section .section-heading span {
    color: #ff3b30;
}

/* Display Wrapper */

.easy-touch-section .easy-touch-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* Content */

.easy-touch-section .easy-touch-content p,
.easy-touch-section .temperature-logging p {
    margin: 0 0 22px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

/* Display Image */

.easy-touch-section .easy-touch-image {
    position: relative;
    display: flex;
    min-height: 400px;
    align-items: center;
    justify-content: center;
}

.easy-touch-section .image-background {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #f8fbff;
    border-radius: 50%;
}

.easy-touch-section .easy-touch-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(6, 46, 130, 0.12));
}

/* Alarm Box */

.easy-touch-section .alarm-box {
    max-width: 800px;
    margin: 70px auto 0;
    padding: 35px 40px;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-left: 4px solid #ff3b30;
    border-radius: 12px;
    box-sizing: border-box;
}

/* Small Headings */

.easy-touch-section .alarm-box h3,
.easy-touch-section .temperature-logging h3 {
    margin: 0 0 25px;
    color: #002964;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Alarm Content */

.easy-touch-section .alarm-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.easy-touch-section .alarm-box-content ol {
    margin: 0;
    padding-left: 25px;
}

.easy-touch-section .alarm-box-content li {
    margin-bottom: 10px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.easy-touch-section .alarm-box-content li:last-child {
    margin-bottom: 0;
}

.easy-touch-section .alarm-box-content img {
    display: block;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Temperature Logging */

.easy-touch-section .temperature-logging {
    margin-top: 60px;
}

.easy-touch-section .temperature-logging p {
    margin-bottom: 0;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .easy-touch-section {
        padding: 80px 0;
    }

    .easy-touch-section .container {
        padding: 0 25px;
    }

    .easy-touch-section .easy-touch-heading {
        margin-bottom: 50px;
    }

    .easy-touch-section .section-heading {
        font-size: 40px;
    }

    .easy-touch-section .easy-touch-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .easy-touch-section .easy-touch-image {
        min-height: 350px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .easy-touch-section {
        padding: 60px 0;
    }

    .easy-touch-section .container {
        padding: 0 20px;
    }

    .easy-touch-section .easy-touch-heading {
        margin-bottom: 40px;
    }

    .easy-touch-section .section-tag {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .easy-touch-section .section-heading {
        margin: 10px 0;
        font-size: 32px;
    }

    .easy-touch-section .easy-touch-wrapper {
        gap: 30px;
    }

    .easy-touch-section .easy-touch-content p,
    .easy-touch-section .temperature-logging p {
        font-size: 15px;
        line-height: 1.8;
    }

    .easy-touch-section .easy-touch-image {
        min-height: 280px;
    }

    .easy-touch-section .image-background {
        width: 270px;
        height: 270px;
    }

    .easy-touch-section .alarm-box {
        margin-top: 50px;
        padding: 28px 20px;
    }

    .easy-touch-section .alarm-box h3,
    .easy-touch-section .temperature-logging h3 {
        margin-bottom: 20px;
        font-size: 21px;
    }

    .easy-touch-section .alarm-box-content {
        gap: 20px;
    }

    .easy-touch-section .alarm-box-content li {
        font-size: 15px;
    }

    .easy-touch-section .alarm-box-content img {
        width: 55px;
        height: 55px;
    }

    .easy-touch-section .temperature-logging {
        margin-top: 45px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .easy-touch-section .container {
        padding: 0 15px;
    }

    .easy-touch-section .section-heading {
        font-size: 28px;
    }

    .easy-touch-section .alarm-box-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*====================================
Easy Touch Display Section End
====================================*/

/*====================================
Temperature Chart Section Start
====================================*/

.temperature-chart-section {
    padding: 90px 0;
    background: #f8fbff;
}

/* Container Width 1260px */

.temperature-chart-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.temperature-chart-section .temperature-chart-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.temperature-chart-section .section-tag {
    margin-bottom: 15px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.temperature-chart-section .section-heading {
    margin: 15px 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.temperature-chart-section .section-heading span {
    color: #ff3b30;
}

/* Chart Images */

.temperature-chart-section .temperature-chart-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.temperature-chart-section .chart-image-card {
    display: flex;
    min-height: 390px;
    padding: 30px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-sizing: border-box;
    transition: 0.35s;
}

.temperature-chart-section .chart-image-card:hover {
    border-color: #062e82;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, 0.08);
}

.temperature-chart-section .chart-image-card img {
    display: block;
    width: 100%;
    max-width: 500px;
    max-height: 330px;
    object-fit: contain;
}

/* Description */

.temperature-chart-section .temperature-chart-content {
    max-width: 1050px;
    margin: 50px auto 0;
    text-align: center;
}

.temperature-chart-section .temperature-chart-content p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.temperature-chart-section .temperature-chart-content strong {
    color: #002964;
    font-weight: 600;
}

/* Tablet */

@media (max-width: 991px) {
    .temperature-chart-section {
        padding: 80px 0;
    }

    .temperature-chart-section .container {
        padding: 0 25px;
    }

    .temperature-chart-section .section-heading {
        font-size: 40px;
    }

    .temperature-chart-section .chart-image-card {
        min-height: 330px;
        padding: 25px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .temperature-chart-section {
        padding: 60px 0;
    }

    .temperature-chart-section .container {
        padding: 0 20px;
    }

    .temperature-chart-section .temperature-chart-heading {
        margin-bottom: 40px;
    }

    .temperature-chart-section .section-tag {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .temperature-chart-section .section-heading {
        margin: 10px 0;
        font-size: 32px;
    }

    .temperature-chart-section .temperature-chart-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .temperature-chart-section .chart-image-card {
        min-height: 280px;
        padding: 20px;
    }

    .temperature-chart-section .temperature-chart-content {
        margin-top: 35px;
        text-align: left;
    }

    .temperature-chart-section .temperature-chart-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/*====================================
Temperature Chart Section End
====================================*/

/*====================================
Sensors Section Start
====================================*/

.sensors-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Container Width */

.sensors-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Heading */

.sensors-section .sensors-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.sensors-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

/* Sensor Grid */

.sensors-section .sensors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 30px;
}

/* Sensor Cards */

.sensors-section .sensor-card {
    height: 100%;
    padding: 35px 30px;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-sizing: border-box;
    transition: 0.35s;
}

.sensors-section .sensor-card:hover {
    border-color: #062e82;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, 0.08);
}

/* Card Heading */

.sensors-section .sensor-card h3 {
    margin: 0 0 30px;
    color: #002964;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Sensor Images */

.sensors-section .sensor-images {
    display: flex;
    min-height: 190px;
    margin-bottom: 30px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-sizing: border-box;
}

.sensors-section .sensor-images img {
    display: block;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.sensors-section .wired-images img {
    width: calc(50% - 15px);
}

.sensors-section .wireless-images img {
    width: 100%;
    max-width: 320px;
}

/* Sensor Description */

.sensors-section .sensor-card p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .sensors-section {
        padding: 80px 0;
    }

    .sensors-section .container {
        padding: 0 25px;
    }

    .sensors-section .section-heading {
        font-size: 40px;
    }

    .sensors-section .sensors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .sensors-section {
        padding: 60px 0;
    }

    .sensors-section .container {
        padding: 0 20px;
    }

    .sensors-section .sensors-heading {
        margin-bottom: 40px;
    }

    .sensors-section .section-heading {
        font-size: 32px;
    }

    .sensors-section .sensor-card {
        padding: 28px 20px;
    }

    .sensors-section .sensor-card h3 {
        margin-bottom: 22px;
        font-size: 21px;
    }

    .sensors-section .sensor-images {
        min-height: auto;
        margin-bottom: 24px;
        padding: 18px;
        gap: 15px;
    }

    .sensors-section .sensor-images img {
        max-height: 120px;
    }

    .sensors-section .sensor-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/*====================================
Sensors Section End
====================================*/

/*====================================
TV2 Protection Section Start
====================================*/

.tv2-protection-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fbff;
}

/* Container Width 1260px */

.tv2-protection-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Image Container */

.tv2-protection-section .tv2-protection-image {
    position: relative;
    display: flex;
    min-height: 600px;
    align-items: center;
    justify-content: center;
}

/* Image Background */

.tv2-protection-section .image-background {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 41, 100, 0.05);
    border-radius: 50%;
}

/* Main Image */

.tv2-protection-section .tv2-protection-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 850px;
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(
        0 22px 35px rgba(6, 46, 130, 0.1)
    );
}

/* Heading */

.tv2-protection-section .tv2-protection-heading {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.tv2-protection-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.tv2-protection-section .section-heading span {
    color: #ff3b30;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .tv2-protection-section {
        padding: 80px 0;
    }

    .tv2-protection-section .container {
        padding: 0 25px;
    }

    .tv2-protection-section .tv2-protection-image {
        min-height: 500px;
    }

    .tv2-protection-section .image-background {
        width: 480px;
        height: 480px;
    }

    .tv2-protection-section .tv2-protection-image img {
        max-width: 720px;
        max-height: 480px;
    }

    .tv2-protection-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .tv2-protection-section {
        padding: 60px 0;
    }

    .tv2-protection-section .container {
        padding: 0 20px;
    }

    .tv2-protection-section .tv2-protection-image {
        min-height: 330px;
    }

    .tv2-protection-section .image-background {
        width: 300px;
        height: 300px;
    }

    .tv2-protection-section .tv2-protection-image img {
        max-height: 320px;
    }

    .tv2-protection-section .tv2-protection-heading {
        margin-top: 35px;
    }

    .tv2-protection-section .section-heading {
        font-size: 32px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .tv2-protection-section .container {
        padding: 0 15px;
    }

    .tv2-protection-section .tv2-protection-image {
        min-height: 280px;
    }

    .tv2-protection-section .image-background {
        width: 250px;
        height: 250px;
    }

    .tv2-protection-section .section-heading {
        font-size: 28px;
    }
}

/*====================================
TV2 Protection Section End
====================================*/
/*====================================
Features and Specifications Start
====================================*/

.specifications-section {
    padding: 90px 0;
    background: #f8fbff;
}

/* Container Width 1260px */

.specifications-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.specifications-section .specifications-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.specifications-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.specifications-section .section-heading span {
    color: #ff3b30;
}

/* Table Wrapper */

.specifications-section .specification-table-wrapper {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(6, 46, 130, 0.06);
}

/* Table */

.specifications-section .specification-table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
    background: #ffffff;
}

/* Common Cells */

.specifications-section .specification-table th,
.specifications-section .specification-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #dfe7f3;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    vertical-align: middle;
}

/* First Column */

.specifications-section .specification-table th {
    width: 30%;
    color: #002964;
    background: #edf5ff;
    border-right: 1px solid #dfe7f3;
    font-weight: 600;
}

/* Second Column */

.specifications-section .specification-table td {
    color: #646f88;
    background: #ffffff;
    font-weight: 400;
}

/* Alternate Rows */

.specifications-section .specification-table tr:nth-child(even) th {
    background: #e5f1ff;
}

.specifications-section .specification-table tr:nth-child(even) td {
    background: #f8fbff;
}

/* Last Row */

.specifications-section .specification-table tr:last-child th,
.specifications-section .specification-table tr:last-child td {
    border-bottom: none;
}

/* Hover */

.specifications-section .specification-table tr {
    transition: 0.3s;
}

.specifications-section .specification-table tr:hover th {
    color: #ffffff;
    background: #002964;
}

.specifications-section .specification-table tr:hover td {
    background: #eef5ff;
}

.specifications-section .learn-btn {
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background-color: #002964;
    color: #fff;
}
/* Tablet Responsive */

@media (max-width: 991px) {
    .specifications-section {
        padding: 80px 0;
    }

    .specifications-section .container {
        padding: 0 25px;
    }

    .specifications-section .section-heading {
        font-size: 40px;
    }

    .specifications-section .specification-table th,
    .specifications-section .specification-table td {
        padding: 16px 18px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .specifications-section {
        padding: 60px 0;
    }

    .specifications-section .container {
        padding: 0 20px;
    }

    .specifications-section .specifications-heading {
        margin-bottom: 40px;
    }

    .specifications-section .section-heading {
        font-size: 32px;
    }

    .specifications-section .specification-table-wrapper {
        overflow-x: auto;
        border-radius: 12px;
    }

    .specifications-section .specification-table {
        min-width: 650px;
    }

    .specifications-section .specification-table th,
    .specifications-section .specification-table td {
        padding: 14px 16px;
        font-size: 15px;
    }

    .specifications-section .specification-table th {
        width: 220px;
    }
}

/*====================================
Features and Specifications End
====================================*/