
/* 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/Installation/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;

}

} 

/*=============================
 Food Resources Section
==============================*/

.food-resources-section{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.food-resources-section .section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.food-resources-section .section-title p{
    color:#646F88;
    font-size:17px;
    line-height:1.8;
    margin-top:20px;
}

.resources-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.resource-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    border:1px solid #e9eef8;
    box-shadow:0 12px 35px rgba(0,41,100,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.resource-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ff3b30;
    transform:scaleX(0);
    transition:.35s;
}

.resource-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,41,100,.15);
}

.resource-card:hover::before{
    transform:scaleX(1);
}

/* Icon */

.resource-card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#002964,#0d4cb3);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
    transition:.35s;
}

.resource-card:hover .icon{
    background:#ff3b30;
    transform:rotate(10deg) scale(1.08);
}

/* Title */

.resource-card h3{
    color:#002964;
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

/* Text */

.resource-card p{
    color:#646F88;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* Button */

.resource-card a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#ff3b30;
    font-weight:600;
    transition:.3s;
}

.resource-card a i{
    transition:.3s;
}

.resource-card:hover a{
    color:#002964;
}

.resource-card:hover a i{
    transform:translateX(6px);
}

/*=========================
 Tablet
=========================*/

@media(max-width:991px){

.resources-grid{
    grid-template-columns:repeat(2,1fr);
}

.food-resources-section{
    padding:80px 0;
}

.resource-card{
    padding:30px 25px;
}

}

/*=========================
 Mobile
=========================*/

@media(max-width:767px){

.resources-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.food-resources-section{
    padding:60px 0;
}

.resource-card{
    padding:25px;
}

.resource-card h3{
    font-size:22px;
}

.resource-card .icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.food-resources-section .section-title{
    margin-bottom:40px;
}

.food-resources-section .section-title p{
    font-size:15px;
}

}

