
/* 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{

    padding:90px 0;

    min-height:700px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

background-image: url('/assets/images/software/banner-image.png');

    background-size:cover;

    background-position:center right;

    background-repeat:no-repeat;

}

/* Decorative Circle */
 
.freezer-banner-section::before{

    content:"";

    width:420px;

    height:420px;

    background:#ff3b3008;

    border-radius:50%;

    position:absolute;

    top:-180px;

    left:-180px;

}

/* Content */

 .freezer-banner-section .banner-content-wrapper{

    position:relative;

    z-index:2;

}

.freezer-banner-section .banner-sub-heading{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    color:#ff3b30;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.freezer-banner-section .banner-heading{

    font-size:56px;

    line-height:1.25;

    font-weight:600;

    color:#002964;

    margin-bottom:25px;

}

.freezer-banner-section .banner-heading span{

    color:#ff3b30;

}

.freezer-banner-section .banner-content{

    max-width:610px;

    font-size:18px;

    color:#646F88;

    line-height:1.8;

    margin-bottom:40px;

} 

/* Buttons */

.freezer-banner-section .banner-buttons{

    display:flex;

    gap:16px;

    margin-bottom:45px;

}

.freezer-banner-section .banner-buttons a{

    padding:15px 28px;

    border-radius:5px;

    text-decoration:none;  

    font-size:15px;

    font-weight:600;

    transition:.3s;
    

}

.freezer-banner-section .explore-btn{

    background:#ff3b30;

    color:#fff;

}

.freezer-banner-section .explore-btn:hover{

    background:#e02a20;

}

.freezer-banner-section .quote-btn{

    border:1px solid #ff3b30;

    color:#ff3b30;

    background:#fff;

}

.freezer-banner-section .quote-btn:hover{

    background:#ff3b30;

    color:#fff;

} 

/* Feature Boxes */

 .banner-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.banner-features .feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    background:#fff;

    border:1px solid #E5EBF5;

    border-radius:10px;

    transition:.35s;

}

.banner-features .feature-box:hover{

    transform:translateY(-6px);

    border-color:#002964;

    box-shadow:0 18px 40px rgba(6,46,130,.08);

}

.banner-features .feature-box i{

    color:#ff3b30;

    font-size:18px;

}

.banner-features .feature-box span{

    font-size:15px;

    color:#002964;

    font-weight:500;

}

/* Responsive */

@media(max-width:991px){

.freezer-banner-section{

min-height:auto;

padding:80px 0;

background-position:center;

}

.freezer-banner-section .banner-heading{

font-size:42px;

}

.banner-features{

flex-direction:column;

}

.banner-features .feature-box{

width:100%;

}

.banner-buttons{

flex-wrap:wrap;

}

} 

.instruction-section{
    padding:70px 0;
    background:#f5f9ff;
}

.instruction-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    padding:40px;
    border:1px solid #dce6f3;
    box-shadow:0 18px 45px rgba(0,41,100,.08);
    position:relative;
}


.instruction-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#ff3b30;
}


.instruction-header h2{
    text-align:center;
    color:#002964;
    font-size:32px;
    font-weight:700;
    margin-bottom:35px;
}


.instruction-content p{
    color:#646f88;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}


.instruction-content h3{
    color:#002964;
    font-size:22px;
    margin:30px 0 15px;
}


.instruction-content ol{
    padding-left:22px;
}


.instruction-content li{
    color:#646f88;
    line-height:1.8;
    margin-bottom:15px;
}


.info-box{
    margin:30px 0;
    padding:20px;
    background:#edf4ff;
    border-left:5px solid #ff3b30;
    border-radius:8px;
    color:#002964;
    line-height:1.7;
}


@media(max-width:600px){

.instruction-card{
    padding:25px 20px;
}

.instruction-header h2{
    font-size:25px;
}

.instruction-content p,
.instruction-content li{
    font-size:14px;
}

}
/*=========================
Software Preview
==========================*/

.software-preview-section{
    padding:80px 0;
    background:#f8fbff;
}

.software-preview-grid{
    max-width:550px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:45px;
}

.preview-card{
    width:100%;
    background:#fff;
    border:1px solid #dce5f1;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,41,100,.08);
    transition:.35s ease;
}

.preview-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,41,100,.15);
}

.preview-card img{
    width:100%;
    max-width:320px;
    display:block;
    margin:auto;
    border-radius:10px;
    border:1px solid #dce5f1;
}

.preview-card h4{
    margin-top:18px;
    color:#002964;
    font-size:20px;
    font-weight:600;
}

@media(max-width:768px){

    .software-preview-section{
        padding:60px 0;
    }

    .preview-card{
        padding:15px;
    }

    .preview-card img{
        max-width:100%;
    }

    .preview-card h4{
        font-size:17px;
    }

}

