

/* 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/Computer-Room/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;

}

} 

.monitor-section{
    padding:100px 0;
    background:#f7f9fc;
}

.monitor-title{
    font-size:48px;
    color:#002964;
    font-weight:700;
    margin-bottom:20px;
}

.monitor-title span{
    color:#ff3b30;
}

.monitor-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
    max-width:600px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.feature-item:hover{
    transform:translateY(-8px);
}

.feature-item i{
    color:#ff3b30;
    font-size:20px;
    margin-top:3px;
}

.monitor-image{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    text-align:center;
}

.monitor-image img{
    width:100%;
    max-width:420px;
}

.monitor-gallery{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.monitor-gallery img{
    width:100%;
    border-radius:15px;
    height:180px;
    object-fit:cover;
    transition:.4s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.monitor-gallery img:hover{
    transform:scale(1.05);
}

.monitor-cta{
    margin-top:60px;
    background-color: #002964;
    color:#fff;
    padding:45px;
    border-radius:20px;
    text-align:center;
}

.monitor-cta h4{
    font-size:30px;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff3b30;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#e52f23;
    color:#fff;
}

@media(max-width:991px){

.monitor-title{
    font-size:38px;
}

.feature-list{
    grid-template-columns:1fr;
}

.monitor-image{
    margin-top:50px;
}

.monitor-gallery{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.monitor-section{
    padding:70px 0;
}

.monitor-title{
    font-size:30px;
}

.monitor-gallery{
    grid-template-columns:1fr;
}

.monitor-cta{
    padding:30px 20px;
}

.monitor-cta h4{
    font-size:24px;
}

}
.tv2-section{
    padding:90px 0;
    background:#fff;
}

.tv2-section h2{
    font-size:42px;
    color:#002964;
    font-weight:600;
    margin-bottom:25px;
}

.tv2-section p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.tv2-image{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    text-align:center;
}

.tv2-image img{
    width:100%;
    display:block;
}

.tv2-caption{
    text-align:center;
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin:25px 0;
}

.buy-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#002964;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.buy-btn:hover{
    background:#ff3b30;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:991px){

.tv2-section{
    padding:70px 0;
}

.tv2-section h2{
    font-size:34px;
}

.tv2-image{
    margin-top:40px;
}

}

@media(max-width:576px){

.tv2-section h2{
    font-size:28px;
}

.tv2-section p{
    font-size:15px;
}

.buy-btn{
    width:100%;
    justify-content:center;
}

}
/*=========================================
Four External Sensors
=========================================*/

.external-sensor-section{
    padding:80px 0;
    background:#fff;
}

.external-sensor-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 40px;
}

.external-sensor-heading h2{
    font-size:42px;
    font-weight:600;
    color:#002964;
    margin-bottom:18px;
}

.external-sensor-heading p{
    font-size:17px;
    line-height:1.8;
    color:#646F88;
}


/* Image Card */

.external-sensor-card{
    max-width:520px;
    margin:0 auto;
    background:#fff;
    padding:20px;
    border-radius:16px;
    border:1px solid #E8EDF5;
    box-shadow:0 15px 40px rgba(0,41,100,.10);
    transition:.35s;
}

.external-sensor-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 55px rgba(0,41,100,.15);
}

.external-sensor-card img{
    width:100%;
    height:280px;
    object-fit:contain;
    display:block;
}


/* Links */

.external-sensor-links{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid #E5E5E5;
    display:flex;
    justify-content:center;
    gap:45px;
    flex-wrap:wrap;
}

.external-sensor-links a{
    color:#002964;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.external-sensor-links a:hover{
    color:#ff3b30;
}


/* Responsive */

@media(max-width:991px){

.external-sensor-heading h2{
    font-size:36px;
}

.external-sensor-card{
    max-width:450px;
}

.external-sensor-card img{
    height:240px;
}

}


@media(max-width:576px){

.external-sensor-section{
    padding:60px 0;
}

.external-sensor-heading h2{
    font-size:30px;
}

.external-sensor-card{
    padding:15px;
}

.external-sensor-card img{
    height:200px;
}

.external-sensor-links{
    gap:20px;
    flex-direction:column;
    align-items:center;
}

}

