/*========================================

HOWL OFFICE
Office Furniture Manufacturer

========================================*/

/* Google Fonts */

:root{

    --primary:#0D1B2A;
    --secondary:#FF6B00;
    --light:#F8F9FA;
    --white:#ffffff;
    --dark:#202124;
    --border:#ECECEC;

    --heading:'Poppins',sans-serif;
    --body:'Inter',sans-serif;

    --transition:.35s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body);
    color:#555;
    font-size:16px;
    line-height:1.8;
    overflow-x:hidden;
    background:#fff;

}

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading);
    color:var(--primary);
    font-weight:700;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

img{

    max-width:100%;
    display:block;

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

.section-padding{

    padding:100px 0;

}

.container{

    max-width:1280px;

}

/*==========================
Top Bar
==========================*/

.top-bar{

    background:#07121d;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-contact{

    display:flex;
    gap:30px;
    flex-wrap:wrap;

}

.top-contact a{

    color:#fff;

}

.top-contact i{

    color:var(--secondary);
    margin-right:8px;

}

.top-social{

    display:flex;
    justify-content:flex-end;
    gap:12px;

}

.top-social a{

    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    color:#fff;
    border:1px solid rgba(255,255,255,.25);

}

.top-social a:hover{

    background:var(--secondary);
    border-color:var(--secondary);

}

/*==========================
Header
==========================*/

#header{

    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.navbar{

    padding:1px 0;

}

.navbar-brand img{

    height: 94px;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:var(--primary);
    font-weight:600;
    font-size:15px;
    padding:12px 16px !important;
    position:relative;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link::after{

    content:"";
    position:absolute;
    left:16px;
    bottom:8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.35s;

}

.nav-link:hover::after{

    width:50%;

}

/* Dropdown */

.dropdown-menu{

    border:none;
    border-radius:15px;
    padding:15px 0;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.dropdown-item{

    padding:12px 25px;
    font-weight:500;

}

.dropdown-item:hover{

    background:#FFF4EB;
    color:var(--secondary);

}

/* Button */

.btn-theme{

    background:var(--secondary);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn-theme:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);

}

/* Mobile */

.navbar-toggler{

    border:none;
    font-size:28px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==========================
Offcanvas
==========================*/

.offcanvas{

    width:320px;

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu a{

    display:block;
    padding:15px;
    color:#222;
    font-weight:600;

}

.mobile-menu a:hover{

    color:var(--secondary);

}

/*==========================
WhatsApp
==========================*/

.whatsapp-btn{

    position:fixed;
    right:25px;
    bottom:25px;

    width:62px;
    height:62px;

    border-radius:50%;
    background:#25D366;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.whatsapp-btn:hover{

    color:#fff;
    transform:scale(1.08);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.top-bar{

display:none;

}

.navbar-brand img{

height:50px;

}

.section-padding{

padding:70px 0;

}

}

@media(max-width:576px){

.btn-theme{

width:100%;

}

.whatsapp-btn{

width:55px;
height:55px;

font-size:26px;

}

}


/*==========================
Hero Section
==========================*/

.hero-section{

    padding:120px 0;
    background:linear-gradient(135deg,#F8FAFD,#EEF5FF);
    position:relative;
    overflow:hidden;

}

.hero-section::before{

    content:"";
    position:absolute;

    width:600px;
    height:600px;

    background:rgba(255,107,0,.08);

    border-radius:50%;

    right:-250px;
    top:-180px;

}

.hero-tag{

    display:inline-block;

    background:#fff;

    padding:10px 22px;

    border-radius:50px;

    color:#FF6B00;

    font-weight:600;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.hero-tag i{

    margin-right:8px;

}

.hero-section h1{

    font-size:56px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-section h1 span{

    color:#FF6B00;

}

.hero-section p{

    font-size:18px;

    color:#666;

    margin-bottom:35px;

}

.hero-btns{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn-outline-theme{

    border:2px solid #0D1B2A;

    padding:14px 30px;

    border-radius:50px;

    color:#0D1B2A;

    font-weight:600;

}

.btn-outline-theme:hover{

    background:#0D1B2A;

    color:#fff;

}

.hero-counter{

    display:flex;

    gap:40px;

}

.hero-counter h3{

    font-size:36px;

    color:#FF6B00;

    margin-bottom:5px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}

.experience-box{

    position:absolute;

    bottom:30px;

    left:0;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.experience-box h2{

    color:#FF6B00;

    font-size:40px;

    margin-bottom:0;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

@media(max-width:991px){

.hero-section{

padding:80px 0;

text-align:center;

}

.hero-section h1{

font-size:40px;

}

.hero-btns{

justify-content:center;

flex-wrap:wrap;

}

.hero-counter{

justify-content:center;

flex-wrap:wrap;

margin-bottom:50px;

}

}

@media(max-width:576px){

.hero-section h1{

font-size:30px;

}

.hero-section p{

font-size:16px;

}

}

/*=========================
About Home
=========================*/

.about-home{

    background:#fff;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:#FFF3EB;

    color:var(--secondary);

    font-weight:600;

    margin-bottom:20px;

}

.about-home h2{

    font-size:42px;

    line-height:1.3;

    margin-bottom:25px;

}

.about-home p{

    margin-bottom:20px;

    color:#666;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

    width:100%;

}

.experience-card{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:#fff;

    padding:25px 30px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    text-align:center;

}

.experience-card h2{

    color:var(--secondary);

    font-size:46px;

    margin-bottom:5px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-list i{

    color:var(--secondary);

}

@media(max-width:991px){

.about-home h2{

font-size:32px;

}

.about-list{

grid-template-columns:1fr;

}

.experience-card{

position:relative;

right:0;

bottom:0;

margin-top:20px;

}

}

/*=========================
Product Cards
=========================*/

.section-title{
    max-width:750px;
    margin:auto;
}

.section-title h2{
    font-size:42px;
    margin:20px 0;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-content h4{
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    min-height:72px;
}

.product-content a{
    color:var(--secondary);
    font-weight:600;
}

.product-content i{
    margin-left:8px;
}

/*=========================
WHY CHOOSE
=========================*/

.why-choose{

    background:#f8f9fc;

}

.choose-box{

    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    transition:.4s;
    height:100%;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.choose-box:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.choose-icon{

    width:80px;
    height:80px;
    background:#FFF3EB;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}

.choose-icon i{

    font-size:34px;
    color:var(--secondary);

}

.choose-box h4{

    margin-bottom:15px;

}

.choose-box p{

    color:#666;
    margin:0;

}

/*=========================
Manufacturing Process
=========================*/

.manufacturing-process{

    background:#fff;

}

.process-box{

    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    position:relative;
    transition:.4s;
    height:100%;

}

.process-box:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    border-color:var(--secondary);

}

.process-number{

    position:absolute;
    top:15px;
    right:15px;
    color:#ddd;
    font-size:28px;
    font-weight:700;

}

.process-icon{

    width:80px;
    height:80px;
    margin:auto;
    background:#FFF3EB;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}

.process-icon i{

    font-size:34px;
    color:var(--secondary);

}

.process-box h5{

    margin-bottom:15px;
    font-size:20px;

}

.process-box p{

    font-size:15px;
    color:#666;
    margin:0;

}
/*=========================
Featured Products
=========================*/

.featured-products{

background:#F8F9FC;

}

.featured-card{

background:#fff;

border-radius:20px;

overflow:hidden;

transition:.4s;

box-shadow:0 10px 35px rgba(0,0,0,.06);

height:100%;

}

.featured-card:hover{

transform:translateY(-10px);

}

.featured-image{

position:relative;

overflow:hidden;

}

.featured-image img{

width:100%;

transition:.5s;

}

.featured-card:hover img{

transform:scale(1.08);

}

.sale-badge{

position:absolute;

top:20px;

left:20px;

background:#FF6B00;

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.featured-content{

padding:25px;

}

.featured-content h4{

margin-bottom:15px;

}

.product-btn{

display:inline-block;

margin-top:15px;

font-weight:600;

color:#FF6B00;

}
/*=========================
Clients
=========================*/

.clients-section{

    background:#fff;

}

.client-logo{

    background:#fff;
    border:1px solid #ECECEC;
    border-radius:18px;
    padding:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:140px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.client-logo img{

    max-width:140px;
    max-height:70px;
    opacity:.65;
    transition:.35s;

}

.client-logo:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.client-logo:hover img{

    opacity:1;
    transform:scale(1.08);

}

/*=========================
Factory Gallery
=========================*/

.factory-gallery{

background:#f8f9fc;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

height:300px;

}

.gallery-large{

height:624px;

}

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:25px;

background:linear-gradient(to top,rgba(0,0,0,.75),transparent);

color:#fff;

opacity:0;

transition:.35s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay h4{

color:#fff;

margin-bottom:8px;

}

.gallery-overlay p{

margin:0;

color:#ddd;

}

@media(max-width:991px){

.gallery-large{

height:300px;

}

}
/*=========================
Testimonials
=========================*/

.testimonials{

    background:#fff;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.stars{

    color:#FDBA12;
    margin-bottom:20px;
    font-size:18px;

}

.testimonial-card p{

    color:#666;
    font-style:italic;
    line-height:1.8;

}

.client-info{

    display:flex;
    align-items:center;
    gap:15px;
    margin-top:25px;

}

.client-info img{

    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;

}

.client-info h5{

    margin:0;
    font-size:18px;

}

.client-info span{

    color:#888;
    font-size:14px;

}
/*=========================
FAQ
=========================*/

.faq-section{

    background:#f8f9fc;

}

.faq-section h2{

    margin:20px 0;

}

.accordion-item{

    border:none;
    margin-bottom:18px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.accordion-button{

    font-weight:600;
    padding:22px;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#FF6B00;
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;
    line-height:1.8;

}
/*=========================
Footer
=========================*/

.footer{

background:#081624;

padding:90px 0 25px;

color:#c8d2db;

}

.footer-logo{

height:60px;

margin-bottom:25px;

}

.footer-about{

line-height:1.9;

margin-bottom:25px;

}

.footer h4{

color:#fff;

margin-bottom:25px;

font-size:22px;

}

.footer ul{

padding:0;

margin:0;

list-style:none;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#c8d2db;

transition:.3s;

}

.footer ul li a:hover{

color:#FF6B00;

padding-left:6px;

}

.footer-contact li{

display:flex;

gap:15px;

margin-bottom:18px;

align-items:flex-start;

}

.footer-contact i{

color:#FF6B00;

margin-top:5px;

width:20px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-social a{

width:42px;

height:42px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:#fff;

transition:.3s;

}

.footer-social a:hover{

background:#FF6B00;

transform:translateY(-5px);

}

.footer hr{

margin:50px 0 25px;

border-color:rgba(255,255,255,.08);

}

.footer-bottom{

font-size:15px;

}

.footer-bottom p{

margin:0;

}

.footer-bottom a{

color:#c8d2db;

margin-left:20px;

}

.footer-bottom a:hover{

color:#FF6B00;

}

.back-top{

position:fixed;

right:25px;

bottom:95px;

width:50px;

height:50px;

background:#FF6B00;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:18px;

box-shadow:0 10px 30px rgba(0,0,0,.25);

transition:.3s;

z-index:999;

}

.back-top:hover{

background:#0D1B2A;

color:#fff;

transform:translateY(-5px);

}

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

.footer-bottom a{

display:inline-block;

margin:10px;

}

}

/*==========================
Page Banner
==========================*/

.page-banner{

background:linear-gradient(rgba(7,18,29,.75),rgba(7,18,29,.75)),
url(assets/images/banner/about-banner.webp);

background-size:cover;

background-position:center;

padding:140px 0;

color:#fff;

}

.page-banner h1{

font-size:52px;

color:#fff;

margin-bottom:15px;

}

.breadcrumb{

background:none;

margin:0;

}

.breadcrumb a{

color:#fff;

}

.breadcrumb-item.active{

color:#FF6B00;

}
/*=========================
Vision Mission
=========================*/

.vm-box{

background:#fff;

padding:40px;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

height:100%;

transition:.4s;

}

.vm-box:hover{

transform:translateY(-8px);

}

.vm-icon{

width:70px;

height:70px;

background:#FF6B00;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:28px;

margin-bottom:25px;

}


/*=========================
Values
=========================*/

.value-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:16px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.4s;

height:100%;

}

.value-box:hover{

transform:translateY(-8px);

}

.value-box i{

font-size:45px;

color:#FF6B00;

margin-bottom:20px;

}

.value-box h4{

margin-bottom:15px;

}


/*=========================
Stats
=========================*/

.company-stats{

background:#081624;

padding:80px 0;

color:#fff;

}

.stat-box h2{

font-size:52px;

color:#FF6B00;

margin-bottom:10px;

}

.stat-box span{

font-size:18px;

}
/*=========================
Manufacturing
=========================*/

.feature-item{

display:flex;
align-items:center;
gap:15px;
padding:18px;
background:#fff;
border-radius:12px;
margin-bottom:20px;
box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.feature-item i{

width:55px;
height:55px;
background:#FF6B00;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;

}

/*=========================
Quality
=========================*/

.quality-card{

background:#fff;
padding:40px;
text-align:center;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
height:100%;
transition:.4s;

}

.quality-card:hover{

transform:translateY(-8px);

}

.quality-card i{

font-size:46px;
color:#FF6B00;
margin-bottom:20px;

}

/*=========================
Industries
=========================*/

.industry-box{

padding:35px;
background:#fff;
text-align:center;
border-radius:18px;
box-shadow:0 8px 30px rgba(0,0,0,.06);
transition:.3s;
height:100%;

}

.industry-box:hover{

background:#FF6B00;
color:#fff;
transform:translateY(-8px);

}

.industry-box:hover i{

color:#fff;

}

.industry-box i{

font-size:42px;
color:#FF6B00;
margin-bottom:20px;

}
/*=========================
Timeline
=========================*/

.timeline{

position:relative;
max-width:900px;
margin:auto;

}

.timeline:before{

content:'';
position:absolute;
left:50%;
top:0;
bottom:0;
width:3px;
background:#FF6B00;

}

.timeline-item{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:50px;

}

.timeline-year{

width:120px;
height:120px;
border-radius:50%;
background:#FF6B00;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:700;

}

.timeline-content{

width:70%;
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.about-cta{

background:#081624;
padding:80px 0;
color:#fff;

}

.about-cta h2{

color:#fff;
margin-bottom:20px;

}

@media(max-width:991px){

.timeline:before{

display:none;

}

.timeline-item{

flex-direction:column;
text-align:center;

}

.timeline-content{

width:100%;
margin-top:20px;

}

}


.floating-contact{
position:fixed;
right:25px;
bottom:25px;
z-index:999;
display:flex;
flex-direction:column;
gap:15px;
}

.floating-contact a{
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.15);
transition:.3s;
}

.call-btn{
background:#0d6efd;
}

.whatsapp-btn{
background:#25D366;
}

.floating-contact a:hover{
transform:translateY(-5px);
}