/* products.css */
/* Shared styles for all product pages */

.page-banner{padding:120px 0;background:#081624;color:#fff}
.section-padding{padding:80px 0}
.product-card{border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.08)}
.theme-btn{display:inline-block;padding:12px 28px;background:#FF6B00;color:#fff;text-decoration:none;border-radius:8px}

/*====================================
  PRODUCTS PAGE CSS - HOWL OFFICE
====================================*/

:root{
    --primary:#0d3b66;
    --secondary:#ff6b00;
    --dark:#1b1b1b;
    --light:#f8f9fa;
    --text:#555;
    --white:#ffffff;
    --border:#e5e5e5;
    --radius:12px;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --transition:.35s ease;
}

/*==============================
Banner
==============================*/

.page-banner{
    padding:120px 0;
    background:linear-gradient(135deg,#0d3b66,#1d5fa2);
    color:#fff;
    overflow:hidden;
}

.page-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.page-banner p{
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.sub-title{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.banner-btns{
    margin-top:35px;
}

.theme-btn,
.theme-btn-outline{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    margin-right:12px;
}

.theme-btn{
    background:var(--secondary);
    color:#fff;
}

.theme-btn:hover{
    background:#ff7d22;
    color:#fff;
}

.theme-btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.theme-btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/*==============================
Sections
==============================*/

.section-padding{
    padding:90px 0;
}

.grey-bg{
    background:#f8f9fb;
}

.section-title{
    margin-bottom:55px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:var(--primary);
}

.section-title p{
    color:#666;
    max-width:750px;
    margin:auto;
}

/*==============================
Typography
==============================*/

h2{
    font-size:40px;
    color:var(--primary);
    margin-bottom:25px;
    font-weight:700;
}

h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--primary);
}

p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:18px;
}

/*==============================
List
==============================*/

.theme-list{
    margin:30px 0 0;
    padding:0;
}

.theme-list li{
    list-style:none;
    margin-bottom:12px;
    font-size:17px;
    color:#333;
}

/*==============================
Product Cards
==============================*/

.product-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    margin-bottom:30px;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:270px;
    object-fit:cover;
}

.product-card h3{
    padding:25px 25px 10px;
}

.product-card p{
    padding:0 25px;
}

.product-card a{
    display:inline-block;
    margin:10px 25px 30px;
    color:var(--secondary);
    font-weight:600;
    text-decoration:none;
}

.product-card a:hover{
    color:var(--primary);
}

/*==============================
Images
==============================*/

img{
    max-width:100%;
}

.rounded{
    border-radius:14px;
}

.shadow{
    box-shadow:var(--shadow);
}

/*==============================
Buttons
==============================*/

.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--secondary);
    color:#fff;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.page-banner{
padding:90px 0;
text-align:center;
}

.page-banner h1{
font-size:40px;
}

.banner-btns{
margin-bottom:35px;
}

.section-padding{
padding:70px 0;
}

.section-title h2,
h2{
font-size:32px;
}

}

@media(max-width:767px){

.page-banner h1{
font-size:32px;
}

.page-banner p{
font-size:16px;
}

.theme-btn,
.theme-btn-outline{
display:block;
margin-bottom:15px;
margin-right:0;
text-align:center;
}

.section-title h2,
h2{
font-size:28px;
}

.product-card img{
height:220px;
}

}
/*==============================
Feature Box
==============================*/

.feature-box{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
height:100%;
transition:.35s;
}

.feature-box:hover{
transform:translateY(-8px);
}

.feature-icon{
width:80px;
height:80px;
line-height:80px;
margin:auto;
border-radius:50%;
background:#0d3b66;
color:#fff;
font-size:30px;
margin-bottom:20px;
}

.feature-box h4{
margin-bottom:15px;
color:#0d3b66;
font-weight:700;
}

/*==============================
Manufacturing Process
==============================*/

.process-box{
background:#fff;
padding:35px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
position:relative;
transition:.35s;
}

.process-box:hover{
transform:translateY(-8px);
}

.process-box span{
display:inline-block;
width:70px;
height:70px;
line-height:70px;
border-radius:50%;
background:#ff6b00;
color:#fff;
font-size:24px;
font-weight:700;
margin-bottom:20px;
}

.process-box h4{
color:#0d3b66;
margin-bottom:15px;
font-weight:700;
}

/*==============================
Specifications Table
==============================*/

.specs-table{
background:#fff;
box-shadow:0 15px 35px rgba(0,0,0,.08);
border-radius:12px;
overflow:hidden;
}

.specs-table th{
width:35%;
background:#0d3b66;
color:#fff;
padding:18px;
font-weight:600;
}

.specs-table td{
padding:18px;
vertical-align:middle;
}

/*==============================
Industry Cards
==============================*/

.industry-card{
background:#fff;
padding:35px 25px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:30px;
transition:.35s;
height:100%;
}

.industry-card:hover{
transform:translateY(-8px);
}

.industry-card i{
font-size:42px;
color:#ff6b00;
margin-bottom:20px;
}

.industry-card h4{
margin-bottom:12px;
color:#0d3b66;
}

/*==============================
CTA
==============================*/

.cta-section{
background:#0d3b66;
padding:80px 0;
color:#fff;
}

.cta-section h2{
color:#fff;
margin-bottom:20px;
}

.cta-section p{
color:#e8e8e8;
}
/*====================================
EXECUTIVE CHAIRS
====================================*/

.executive-banner{
    background:linear-gradient(135deg,#0d3b66,#114b8b);
}

.executive-intro img{
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/*====================================
PRODUCT CARD
====================================*/

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card h3{
    padding:25px 25px 10px;
    color:#0d3b66;
    font-size:24px;
    font-weight:700;
}

.product-card p{
    padding:0 25px;
    line-height:1.8;
}

.product-card a{
    display:inline-block;
    margin:15px 25px 30px;
    color:#ff6b00;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.product-card a:hover{
    color:#0d3b66;
}

/*====================================
FEATURE LIST
====================================*/

.theme-list{
    margin-top:25px;
    padding:0;
}

.theme-list li{
    list-style:none;
    margin-bottom:12px;
    font-size:16px;
    color:#333;
    position:relative;
    padding-left:28px;
}

.theme-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}

/*====================================
SECTION TITLE
====================================*/

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0d3b66;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*====================================
IMAGE EFFECT
====================================*/

.shadow{
    box-shadow:0 15px 40px rgba(0,0,0,.10)!important;
}

.rounded{
    border-radius:15px!important;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px){

.section-title h2{
    font-size:34px;
}

.product-card img{
    height:220px;
}

}

@media(max-width:767px){

.page-banner{
    text-align:center;
}

.page-banner h1{
    font-size:32px;
}

.section-title h2{
    font-size:28px;
}

.product-card img{
    height:200px;
}

.theme-btn,
.theme-btn-outline{
    width:100%;
    margin-bottom:15px;
}

}
/*====================================
EXECUTIVE FEATURES
====================================*/

.feature-box{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.08);
margin-bottom:30px;
transition:.35s;
height:100%;
}

.feature-box:hover{
transform:translateY(-10px);
}

.feature-icon{
width:80px;
height:80px;
line-height:80px;
margin:auto;
border-radius:50%;
background:#0d3b66;
color:#fff;
font-size:30px;
margin-bottom:25px;
}

.feature-box h4{
margin-bottom:15px;
font-weight:700;
color:#0d3b66;
}

.feature-box p{
line-height:1.8;
color:#666;
}
/*==============================
FAQ
==============================*/

.accordion-item{
border:none;
margin-bottom:15px;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.accordion-button{
font-weight:600;
padding:18px 22px;
}

.accordion-button:not(.collapsed){
background:#0d3b66;
color:#fff;
}

.accordion-button:focus{
box-shadow:none;
}