/*==================================================
    Google Font
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/*==================================================
    Root Variables
==================================================*/
:root{
    --primary:#c63316;
    --dark:#1e1e1e;
    --white:#ffffff;
    --light:#f8f9fa;
    --border:#e9ecef;
    --transition:.3s ease;
}
/*==================================================
    Global
==================================================*/
a:focus,
button:focus,
.navbar-toggler:focus,
.nav-link:focus,
.btn:focus,
.navbar-brand:focus {
    outline: none !important;
    box-shadow: none !important;
}
a,
button{
    -webkit-tap-highlight-color: transparent;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
    color:var(--dark);
    background:var(--white);
}
a{
    text-decoration:none;
    transition:var(--transition);
    color: var(--primary);
}
img{
    max-width:100%;
}
section{
    padding:90px 0;
}
.btn{
    transition:var(--transition);
}
.btn-danger{
    background:var(--primary);
    border-color:var(--primary);
}
.btn-danger:hover{
    background:var(--dark);
    border-color:var(--dark);
}
/*=====================================
        Header
======================================*/
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.06);
}
.navbar{
    min-height: 78px;
    padding: 5px 0;
}
.navbar-brand img{
    height:65px;
}
.navbar-nav{
    gap:8px;
}
.nav-link{
    font-size:15px;
    font-weight:600;
    color:var(--dark)!important;
    transition:var(--transition);
}
.nav-link:hover{
    color:var(--primary)!important;
}
.nav-link.active{
    color:var(--primary)!important;
}
.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:10px;
    margin-top:18px;
    min-width:250px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.dropdown-item{
    border-radius:8px;
    padding:10px 15px;
}
.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}
.site-header .bi{
    color:var(--dark);
    font-size:18px;
    transition:.3s;
}
.site-header .bi:hover{
    color:var(--primary);
}
.offcanvas{
    max-width:320px;
}
.offcanvas .nav-link{
    padding:12px 0;
}
/*=====================================
        Hero Section
======================================*/
.hero-item{
    position:relative;
}
.hero-bg{
    min-height:720px;
    background-size:cover;
    background-position:center;
    position:relative;
}
.hero-overlay{
    background:linear-gradient(
        90deg,
        rgba(30,30,30,.82) 0%,
        rgba(30,30,30,.60) 45%,
        rgba(30,30,30,.25) 100%
    );
}
.hero-subtitle{
    display:inline-block;
    color:#fff;
    background:rgba(198,51,22,.95);
    padding:10px 22px;
    border-radius:30px;
    letter-spacing:1px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}
.hero-section h1{
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}
.hero-section p{
    color:#ddd;
    font-size:18px;
    max-width:650px;
}
.hero-slider .owl-dots{
    position:absolute;
    width:100%;
    bottom:35px;
    text-align:center;
}
.hero-slider .owl-dot span{
    width:12px;
    height:12px;
}
.hero-slider .owl-dot.active span{
    background:var(--primary)!important;
}
/*=====================================
        About Section
======================================*/
.about-section{
    background:#fff;
}
.about-image{
    position:relative;
}
.about-image img{
    border-radius:20px;
    width:100%;
    object-fit:cover;
}
.experience-box{
    position:absolute;
    left:-25px;
    bottom:30px;
    background:var(--primary);
    color:#fff;
    width:180px;
    height:180px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 40px rgba(198,51,22,.25);
}
.experience-box h2{
    font-size:52px;
    font-weight:700;
    margin:0;
}
.experience-box span{
    font-size:15px;
    text-align:center;
}
.section-subtitle{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}
.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
    line-height:1.3;
}
.section-text{
    color:#666;
    line-height:1.9;
}
.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 20px;
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    transition:.3s;
}
.feature-box:hover{
    border-color:var(--primary);
    transform:translateY(-5px);
}
.feature-box i{
    color:var(--primary);
    font-size:22px;
}
/*=====================================
        Why Choose
======================================*/
.why-section{
    background:#f8f9fa;
}
.why-description{
    color:#666;
}
.why-description ul{
    margin:0;
    padding:0;
    list-style:none;
}
.why-description li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
}
.why-description li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:700;
}
.why-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #eee;
}
.why-card:hover{
    background:var(--primary);
    transform:translateY(-8px);
}
.why-card:hover h5{
    color:#fff;
}
.why-card:hover i{
    color:#fff;
}
.why-card i{
    font-size:40px;
    color:var(--primary);
    margin-bottom:20px;
    transition:.35s;
}
.why-card h5{
    margin:0;
    font-weight:600;
}
/*=====================================
        Products
======================================*/
.product-section{
    background:#fff;
}
.product-slider .owl-stage{
    display:flex;
}
.product-slider .owl-item{
    display:flex;
}
.product-card{
    width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}
.product-image{
    height:260px;
    background:#f7f7f7;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
    padding:15px;
}
.product-card:hover img{
    transform:scale(1.08);
}
.product-content{
    padding:25px;
}
.product-category{
    display:inline-block;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:12px;
}
.product-content h4{
    margin-bottom:18px;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
    min-height:62px;
}
.product-content h4 a{
    color:var(--dark);
}
.product-content h4 a:hover{
    color:var(--primary);
}
.product-link{
    color:var(--primary);
    font-weight:600;
}
.product-link i{
    transition:.3s;
}
.product-link:hover i{
    margin-left:8px;
}
.product-slider .owl-dots{
    margin-top:40px;
}
.product-slider .owl-dot span{
    width:12px;
    height:12px;
}
.product-slider .owl-dot.active span{
    background:var(--primary)!important;
}
.product-slider .owl-nav{
    display:none;
}
/*=====================================
        CTA Section
======================================*/
.cta-section{
    background:#fff;
}
.cta-wrapper{
    background:linear-gradient(135deg,#c63316,#9d240d);
    border-radius:24px;
    padding:70px;
    color:#fff;
    overflow:hidden;
    position:relative;
}
.cta-wrapper::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    right:-120px;
    top:-120px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}
.cta-wrapper::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    left:-80px;
    bottom:-80px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}
.cta-wrapper>*{
    position:relative;
    z-index:2;
}
.cta-subtitle{
    display:inline-block;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}
.cta-wrapper h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}
.cta-wrapper p{
    color:rgba(255,255,255,.90);
    max-width:650px;
    margin-bottom:0;
}
.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.cta-buttons .btn{
    font-weight:600;
    padding:15px;
}
/*=====================================
        Process
======================================*/
.process-section{
    background:#f8f9fa;
}
.process-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    position:relative;
    text-align:center;
    transition:.35s;
    border:1px solid #eee;
    overflow:hidden;
    height:100%;
}
.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:45px;
    font-weight:700;
    color:rgba(198,51,22,.08);
}
.process-icon{
    width:90px;
    height:90px;
    background:rgba(198,51,22,.10);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:25px;
}
.process-icon i{
    font-size:34px;
    color:var(--primary);
}
.process-card h5{
    font-weight:700;
    margin-bottom:15px;
}
.process-card p{
    color:#666;
    margin-bottom:0;
}
/*==================================================
    Footer
==================================================*/
/*=====================================
            Footer
======================================*/
.footer-section{
    background:#1e1e1e;
    color:#ddd;
    padding:80px 0 30px;
}
.footer-logo img{
    max-width:220px;
}
.footer-text{
    line-height:1.9;
    color:#bbb;
}
.footer-title{
    color:#fff;
    font-weight:600;
    margin-bottom:25px;
}
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-links li{
    margin-bottom:14px;
}
.footer-links a{
    color:#bbb;
}
.footer-links a:hover{
    color:var(--primary);
    padding-left:8px;
}
.footer-contact{
    list-style:none;
    padding:0;
}
.footer-contact li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}
.footer-contact i{
    color:var(--primary);
}
.footer-contact a{
    color:#bbb;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}
.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2d2d2d;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;
}
.footer-social a:hover{
    background:var(--primary);
}
.footer-line{
    border-color:#333;
    margin:50px 0 25px;
}
.copyright{
    color:#999;
}
.copyright a{
    color:var(--primary);
}
/*=====================================
        Floating Contact
======================================*/
.floating-contact{
    position:fixed;
    left:20px;
    bottom:25px;
    z-index:9999;
}
.floating-toggle{
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:.3s;
}
.floating-toggle:hover{
    background:var(--dark);
}
.floating-contact{
    position:fixed;
    left:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    z-index:9999;
}
.floating-items{
    display:flex;
    flex-direction:column-reverse; /* IMPORTANT */
    gap:12px;
    margin-bottom:12px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
}
.floating-contact.active .floating-items{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.floating-items a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transform:translateY(20px);
    opacity:0;
    transition:.35s;
}
.floating-contact.active .floating-items a{
    transform:translateY(0);
    opacity:1;
}
.floating-items a:nth-child(1){
    transition-delay:.05s;
}
.floating-items a:nth-child(2){
    transition-delay:.12s;
}
.floating-items a:nth-child(3){
    transition-delay:.20s;
}
.mail{
    background:var(--primary);
}
.call{
    background:#0d6efd;
}
.whatsapp{
    background:#25D366;
}
/*=====================================
        Scroll Top
======================================*/
#scrollTop{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:none;
    z-index:999;
    transition:.3s;
}
#scrollTop:hover{
    background:var(--dark);
    transform:translateY(-5px);
}
/*==================================================
    Utilities
==================================================*/
.text-primary{
    color:var(--primary)!important;
}
.bg-primary{
    background:var(--primary)!important;
}
.rounded-4{
    border-radius:1rem;
}
/*=====================================
        Page Banner
======================================*/
.page-banner{
    position: relative;
    overflow: hidden;
}
.banner-image{
    width: 100%;
}
.banner-image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(30,30,30,.65);
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-subtitle{
    display:inline-block;
    color:#fff;
    background:var(--primary);
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:20px;
}
.page-banner h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}
.page-banner h1 span{
    color:var(--primary);
}
.breadcrumb-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:16px;
}
.breadcrumb-nav a{
    color:#fff;
}
.breadcrumb-nav a:hover{
    color:var(--primary);
}
.breadcrumb-nav i{
    font-size:12px;
}
/*=====================================
        About Company
======================================*/
.about-company{
    background:#fff;
}
.about-image-wrapper{
    position:relative;
}
.about-image-wrapper img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.experience-card{
    position:absolute;
    right:30px;
    bottom:30px;
    background:#fff;
    border-left:5px solid var(--primary);
    border-radius:15px;
    padding:20px 25px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}
.exp-number{
    display:block;
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    line-height:1;
}
.exp-text{
    display:block;
    margin-top:8px;
    color:#666;
    font-size:15px;
}
.about-content h1,
.about-content h2,
.about-content h3{
    color:var(--dark);
    font-weight:700;
    margin-bottom:20px;
}
.about-content p{
    color:#666;
    line-height:1.9;
}
.about-content ul{
    padding-left:20px;
    margin-top:20px;
}
.about-content li{
    margin-bottom:10px;
    color:#555;
}
.story-card{
    background:#f8f9fa;
    border-radius:18px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    border:1px solid #ececec;
}
.story-icon{
    width:70px;
    height:70px;
    background:rgba(198,51,22,.12);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}
.story-icon i{
    color:var(--primary);
    font-size:30px;
}
.story-card h5{
    font-weight:700;
    margin-bottom:12px;
}
.story-card p{
    color:#666;
    line-height:1.8;
}
/*=====================================
        Mission Section
======================================*/
.mission-section{
    background:#f8f9fa;
}
.mission-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}
.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.value-card{
    border-top:5px solid var(--primary);
}
.mission-icon{
    width:80px;
    height:80px;
    background:rgba(198,51,22,.10);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}
.mission-icon i{
    font-size:34px;
}
.mission-card h3{
    font-weight:700;
    color:var(--dark);
    margin-bottom:20px;
}
.mission-content{
    color:#666;
    line-height:1.9;
    font-size:16px;
    white-space:pre-line;
}
/*=====================================
        Vision Section
======================================*/
.vision-section{
    background:var(--dark);
    color:#fff;
}
.vision-content{
    color:rgba(255,255,255,.80);
    line-height:1.9;
}
.counter-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:35px 20px;
    transition:.35s;
    height:100%;
}
.counter-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}
.counter-icon{
    width:75px;
    height:75px;
    background:rgba(198,51,22,.10);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
}
.counter-icon i{
    font-size:30px;
    color:var(--primary);
}
.counter-card h2{
    color:var(--primary);
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}
.counter-card p{
    margin:0;
    color:#555;
    font-weight:500;
}
/*=====================================
        Contact Info
======================================*/
.contact-info-section{
    background:#fff;
}
.contact-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.contact-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}
.contact-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(198,51,22,.10);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
}
.contact-icon i{
    font-size:34px;
    color:var(--primary);
}
.contact-card h4{
    font-weight:700;
    color:var(--dark);
    margin-bottom:18px;
}
.contact-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}
.contact-card a{
    color:#666;
    transition:.3s;
}
.contact-card a:hover{
    color:var(--primary);
}
/*=====================================
        Contact Form
======================================*/
.contact-section{
    background:#f8f9fa;
}
.contact-form-box{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}
.contact-form-box .form-control{
    border:1px solid #ddd;
    border-radius:12px;
    min-height:55px;
    padding:14px 18px;
    box-shadow:none;
}
.contact-form-box textarea.form-control{
    min-height:160px;
    resize:none;
}
.contact-form-box .form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
}
.contact-form-box .btn{
    font-weight:600;
}
.map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    min-height:100%;
}
.map-box iframe{
    width:100%;
    height:100%;
    min-height:620px;
    border:0;
}
/*=====================================
            Gallery
======================================*/
.gallery-section{
    background:#fff;
}
.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.gallery-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.45s;
    display:block;
}
.gallery-card:hover img{
    transform:scale(1.08);
}
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(30,30,30,.70);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.35s;
}
.gallery-card:hover .gallery-overlay{
    opacity:1;
}
.gallery-content{
    text-align:center;
    color:#fff;
    transform:translateY(20px);
    transition:.35s;
}
.gallery-card:hover .gallery-content{
    transform:translateY(0);
}
.gallery-content i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto auto 20px;
    font-size:28px;
}
.gallery-content h5{
    margin:0;
    font-weight:600;
}
.fancybox__thumbs{
    display:none !important;
}
.fancybox__footer{
    display:none !important;
}
/*=====================================
        Category Products
======================================*/
.category-products{
    background:#fff;
}
.product-count{
    display:inline-block;
    background:rgba(198,51,22,.10);
    color:var(--primary);
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
}
.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}
.product-image{
    overflow:hidden;
    background:#f8f9fa;
}
.product-image img{
    width:100%;
    height:280px;
    object-fit:contain;
    padding:25px;
    transition:.4s;
}
.product-card:hover img{
    transform:scale(1.08);
}
.product-content{
    padding:28px;
}
.product-category{
    display:inline-block;
    font-size:13px;
    color:var(--primary);
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:10px;
}
.product-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.4;
}
.product-content h4 a{
    color:var(--dark);
}
.product-content h4 a:hover{
    color:var(--primary);
}
.product-btn{
    color:var(--primary);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.product-btn:hover{
    gap:14px;
}
/*=====================================
        Service Strip
======================================*/
.service-strip{
    background:#f8f9fa;
}
.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    border:1px solid #ececec;
    transition:.35s;
}
.service-card:hover{
    background:var(--primary);
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}
.service-card:hover h4,
.service-card:hover p{
    color:#fff;
}
.service-card:hover .service-icon{
    background:#fff;
}
.service-card:hover .service-icon i{
    color:var(--primary);
}
.service-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    background:rgba(198,51,22,.10);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
}
.service-icon i{
    font-size:34px;
    color:var(--primary);
}
.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}
.service-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}
/*=====================================
        Product Details
======================================*/
.product-details-section{
    background:#fff;
}
.main-product-image{
    width:100%;
    height:500px;
    object-fit:contain;
    background:#f8f9fa;
    border-radius:20px;
    padding:25px;
    border:1px solid #eee;
}
.thumb-image{
    width:100%;
    height:140px;
    object-fit:contain;
    background:#f8f9fa;
    border-radius:15px;
    padding:15px;
    border:1px solid #eee;
    transition:.3s;
}
.thumb-image:hover{
    border-color:var(--primary);
}
.product-badge{
    display:inline-block;
    background:rgba(198,51,22,.10);
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}
.product-title{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
}
.product-short-desc{
    color:#666;
    line-height:1.9;
    margin:25px 0;
}
.product-features{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.product-features div{
    font-size:17px;
}
.product-features i{
    color:var(--primary);
    margin-right:10px;
}
/*=====================================
        Product Tabs
======================================*/
.product-tabs-section{
    background:#f8f9fa;
}
.product-tabs{
    gap:15px;
}
.product-tabs .nav-link{
    border:none;
    border-radius:50px;
    background:#fff;
    color:#444;
    padding:14px 28px;
    font-weight:600;
    transition:.3s;
}
.product-tabs .nav-link.active{
    background:var(--primary);
    color: #fff !important;
}
.tab-box{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}
.tab-box p{
    color:#666;
    line-height:1.9;
}
.tab-box h1,
.tab-box h2,
.tab-box h3,
.tab-box h4{
    color:var(--dark);
    margin-bottom:20px;
}
.tab-box table{
    width:100%;
}
.tab-box img{
    max-width:100%;
    height:auto;
}
.tab-box .form-control{
    min-height:55px;
    border-radius:12px;
    box-shadow:none;
}
.tab-box textarea.form-control{
    min-height:180px;
}
.tab-box .form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
}
/*=====================================
        Product CTA
======================================*/
.product-cta{
    background:#fff;
}
.cta-box{
    background:linear-gradient(135deg,#c63316,#9d2613);
    border-radius:25px;
    padding:60px;
    color:#fff;
    overflow:hidden;
    position:relative;
}
.cta-box::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-70px;
    right:-70px;
}
.cta-box h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    position:relative;
}
.cta-box p{
    margin:0;
    color:rgba(255,255,255,.90);
    position:relative;
}
#loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}
/*=====================================
            Blog
======================================*/
.blog-section{
    background:#fff;
}
.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}
.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}
.blog-image{
    overflow:hidden;
}
.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}
.blog-card:hover img{
    transform:scale(1.08);
}
.blog-content{
    padding:28px;
}
.blog-date{
    color:var(--primary);
    font-size:14px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:8px;
}
.blog-content h3{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
    line-height:1.4;
    margin-bottom:15px;
}
.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}
.read-more{
    color:var(--primary);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}
.blog-card:hover .read-more{
    gap:14px;
}
/*=====================================
        Blog Details
======================================*/
.blog-details-section{
    background:#fff;
}
.blog-detail-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.blog-detail-image{
    width:100%;
    max-height:550px;
    object-fit:cover;
    display:block;
}
.blog-detail-content{
    padding:45px;
}
.blog-meta{
    display:flex;
    gap:20px;
    margin-bottom:20px;
    color:var(--primary);
    font-weight:600;
}
.blog-meta i{
    margin-right:8px;
}
.blog-detail-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:25px;
    color:var(--dark);
}
.blog-detail-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}
.blog-detail-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
}
.blog-detail-content table{
    width:100%;
}
.blog-detail-content ul{
    padding-left:20px;
}
.blog-detail-content li{
    margin-bottom:10px;
}