/* 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;
}

/* Banner Section Start */
.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: 52px;
    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;
    }
}

/* Banner Section End */

/* Product Showcase Section Start */
.product-showcase {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.product-showcase .device-wrapper {
    position: relative;
    text-align: center;
}

.product-showcase .device-wrapper .glow-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(6, 46, 130, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.product-showcase .device-wrapper .device-img {
    width: 480px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.product-showcase .product-content p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-showcase .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.product-showcase .feature-grid .feature-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 500;
}

.product-showcase .feature-grid .feature-box span {
    color: #002964;
    font-weight: 600;
}


.product-showcase .feature-grid .feature-box i {
    color: #002964;
    font-weight: 600;
    font-size: 18px;
}

/* Product Showcase Section End */


/*====================================
Simple Interface Section Start
====================================*/

.simple-interface-section {
    padding: 90px 0;
    background: #f8fbff;
}

.simple-interface-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.simple-interface-section .section-heading h2 span {
    color: #ff3b30;
}


.simple-interface-section .section-heading p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Card */
.simple-interface-section .interface-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Line */
.simple-interface-section .interface-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #ff3b30;
    transform: scaleX(0);
    transition: .35s;
}

.simple-interface-section .interface-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
    border-color: #002964;
}

.simple-interface-section .interface-card:hover::before {
    transform: scaleX(1);
}

/* Icon */

.simple-interface-section .interface-card .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border-radius: 18px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.simple-interface-section .interface-card .icon-box i {
    font-size: 24px;
    color: #0B4EA2;
}

.simple-interface-section .interface-card:hover .icon-box {
    background: #062E82;
    transform: rotate(-8deg);
}

.simple-interface-section .interface-card:hover .icon-box i {
    color: #fff;
}

/* Text */
.simple-interface-section .interface-card h4 {
    font-size: 26px;
    color: #062E82;
    margin-bottom: 18px;
    font-weight: 500;
}

.simple-interface-section .interface-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #646F88;
    margin: 0;
}

/*====================================
Simple Interface Section Start
====================================*/

/*====================================
Industries Section Start
====================================*/

.industries-section {
    padding: 90px 0;
    background: #ffffff;
}

.industries-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.industries-section .section-heading h2 span {
    color: #ff3b30;
}

.industries-section .section-heading p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Card */

.industries-section .industry-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .45s ease;
    z-index: 1;
}

.industries-section .industry-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #edf4ff 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: .45s ease;
    z-index: -1;
}

.industries-section .industry-card:hover {
    border-color: #0B4EA2;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 46, 130, .10);
}

.industries-section .industry-card:hover::before {
    width: 320px;
    height: 320px;
}

/* Icon */

.industries-section .industry-card .icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    border-radius: 18px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.industries-section .industry-card .icon-box i {
    font-size: 26px;
    color: #0B4EA2;
    transition: .4s;
}

.industries-section .industry-card:hover .icon-box {
    background: #062E82;
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(6, 46, 130, .08);
}

.industries-section .industry-card:hover .icon-box i {
    color: #fff;
    transform: scale(1.1);
}

/* Text */

.industries-section .industry-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #062E82;
    line-height: 1.5;
    margin: 0;
    transition: .35s;
}

.industries-section .industry-card:hover h4 {
    color: #002964;
}

/*====================================
    Industries Section End
====================================*/

/*====================================
    Timeline Section Start
====================================*/

.timeline-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, #0d3c8d 0%, transparent 45%),
        linear-gradient(135deg, #041d49, #062e82);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    top: -250px;
    right: -250px;
}

.timeline-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.timeline-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #fff;
    margin: 15px 0;
    line-height: 1.3;
}

.timeline-section .section-heading p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.timeline-section .timeline {
    position: relative;
}

.timeline-section .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, .15);
}

.timeline-section .timeline-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-section .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-section .timeline-item.right .timeline-card {
    order: 1;
}

.timeline-section .timeline-item.right .timeline-dot {
    order: 2;
}

.timeline-section .timeline-item.right .timeline-content {
    order: 3;
}

.timeline-section .timeline-item.left .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-section .timeline-item.right .timeline-content {
    text-align: left;
    padding-left: 40px;
}

.timeline-section .timeline-content .year {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.timeline-section .timeline-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
}

.timeline-section .timeline-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin: 0;
}

.timeline-section .timeline-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.timeline-section .timeline-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    animation: timelinePulse 2.5s infinite;
}

.timeline-section .timeline-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.timeline-section .timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), transparent);
    transition: .5s;
}

.timeline-section .timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.timeline-section .timeline-card:hover::before {
    width: 100%;
}

.timeline-section .timeline-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-section .timeline-card ul li {
    color: #fff;
    font-size: 17px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-section .timeline-card ul li:last-child {
    margin-bottom: 0;
}

.timeline-section .timeline-card ul li i {
    color: #7BE495;
    font-size: 18px;
}

@keyframes timelinePulse {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

@media(max-width:991px) {

    .timeline-section .timeline::before {
        left: 25px;
    }

    .timeline-section .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 25px;
    }

    .timeline-section .timeline-card {
        order: 2 !important;
    }

    .timeline-section .timeline-dot {
        order: 1 !important;
    }

    .timeline-section .timeline-content {
        order: 2 !important;
        text-align: left !important;
        padding: 0 !important;
        margin-top: 25px;
        grid-column: 2;
    }

}

/*====================================
Timeline Section End
====================================*/

/*====================================
    Easy Touch Section Start
====================================*/

.easy-touch-section{
    padding:70px 0;
    background:#f8fbff;
}

.easy-touch-section .section-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.easy-touch-section .section-heading h2{
    font-size:46px;
    font-weight:600;
    color:#002964;
    margin:15px 0;
    line-height:1.3;
}

.easy-touch-section .section-heading h2 span{
    color:#ff3b30;
}

.easy-touch-section .section-heading p{
    color:#646F88;
    font-size:17px;
    line-height:1.7;
    margin-bottom:0;
}

/* Card */

.easy-touch-section .feature-card{
    background:#fff;
    border:1px solid #dfe7f3;
    border-radius:18px;
    padding:35px;
    height:100%;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.easy-touch-section .feature-card::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(11,78,162,.05),transparent);
    transition:.6s;
}

.easy-touch-section .feature-card:hover::before{
    left:100%;
}

.easy-touch-section .feature-card:hover{
    transform:translateY(-10px);
    border-color:#0B4EA2;
    box-shadow:0 20px 45px rgba(6,46,130,.08);
}

/* Icon */

.easy-touch-section .feature-card .icon-box{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    transition:.35s;
}

.easy-touch-section .feature-card .icon-box i{
    font-size:26px;
    color:#0B4EA2;
    transition:.35s;
}

.easy-touch-section .feature-card:hover .icon-box{
    background:#062E82;
    border-radius:50%;
}

.easy-touch-section .feature-card:hover .icon-box i{
    color:#fff;
    transform:scale(1.1);
}

/* Text */

.easy-touch-section .feature-card h4{
    font-size:24px;
    font-weight:500;
    color:#062E82;
    margin-bottom:18px;
    line-height:1.4;
}

.easy-touch-section .feature-card p{
    font-size:16px;
    color:#646F88;
    line-height:1.8;
    margin:0;
}

/*====================================
    Easy Touch Section Start
====================================*/

/*====================================
TView Software Section Start
====================================*/

.tview-section{
    padding:70px 0;
    background:#f8fbff;
}

.tview-section .tview-content h2{
    font-size:46px;
    font-weight:600;
    color:#002964;
    line-height:1.3;
    margin:15px 0 25px;
}

.tview-section .tview-content h2 span{
    color:#ff3b30;
}

.tview-section .tview-content>p{
    color:#646F88;
    font-size:17px;
    line-height:1.8;
    margin-bottom:40px;
}

/* Feature */

.tview-section .feature-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.tview-section .feature-item:last-child{
    margin-bottom:0;
}

.tview-section .feature-item .icon-box{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:16px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.tview-section .feature-item .icon-box i{
    font-size:22px;
    color:#0B4EA2;
}

.tview-section .feature-item:hover .icon-box{
    background:#062E82;
}

.tview-section .feature-item:hover .icon-box i{
    color:#fff;
}

.tview-section .feature-item h4{
    font-size:20px;
    color:#062E82;
    margin-bottom:5px;
    font-weight:500;
}

.tview-section .feature-item p{
    font-size:16px;
    color:#646F88;
    line-height:1.7;
    margin:0;
}

.learn-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}


/* Image */

.tview-section .software-image{
    position:relative;
}

.tview-section .software-glow{
    width:520px;
    height:520px;
    background:rgba(11,78,162,.08);
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    filter:blur(30px);
}

.tview-section .software-image img{
    width:100%;
    position:relative;
    z-index:2;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.tview-section .software-image:hover img{
    transform:translateY(-10px) scale(1.02);
}

/*====================================
TView Software Section End
====================================*/
