/*=========================================
    GOOGLE FONTS & ROOT
==========================================*/

:root{

    --primary:#B22222;
    --secondary:#F4A300;
    --dark:#1F1A17;
    --black:#111111;
    --white:#ffffff;
    --cream:#FFF8EF;
    --green:#4D7C0F;
    --gray:#6B7280;

    --border:rgba(255,255,255,.15);

    --shadow:0 15px 45px rgba(0,0,0,.15);

    --radius:18px;

    --transition:.4s ease;

    --heading:'Playfair Display',serif;

    --body:'Poppins',sans-serif;

}

/*=========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body);

    background:var(--cream);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.7;

}

a{
    text-decoration:none;
    transition:.4s;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{

    position:relative;

    padding:100px 0;

}

.container{

    max-width:1320px;

}

/*=========================================
SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--primary),var(--secondary));

    border-radius:30px;

}

/*=========================================
TYPOGRAPHY
==========================================*/

h1,h2,h3,h4,h5{

    font-family:var(--heading);

    font-weight:700;

}

p{

    color:#666;

    font-size:16px;

    margin-bottom:0;

}

/*=========================================
PRELOADER
==========================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid #eee;

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*=========================================
HEADER
==========================================*/

.main-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:18px 0;

}

.main-header.sticky{

    background:rgba(31,26,23,.88);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.2);

    padding:10px 0;

}

/*=========================================
NAVBAR
==========================================*/

.navbar{

    padding:0;
    background-color: black;

}

.navbar-brand img{

    width:120px;

}

.navbar-nav{

    gap:35px;

    align-items:center;

}

.navbar-nav li a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.navbar-nav li a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.4s;

}

.navbar-nav li a:hover{

    color:var(--secondary);

}

.navbar-nav li a:hover::after{

    width:100%;

}

/*=========================================
QUOTE BUTTON
==========================================*/

.quote-btn{

    margin-left:40px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:55px;

    padding:0 34px;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    background:linear-gradient(135deg,var(--primary),#d64040);

    box-shadow:0 15px 30px rgba(178,34,34,.3);

    transition:.4s;

}

.quote-btn:hover{

    transform:translateY(-5px);

    color:#fff;

    background:linear-gradient(135deg,var(--secondary),#ffca38);

}

/*=========================================
NAVBAR TOGGLER
==========================================*/

.navbar-toggler{

    border:none;

    color:#fff;

    font-size:28px;

    box-shadow:none!important;

}

/*=========================================
COMMON BUTTON
==========================================*/

.main-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:60px;

    padding:0 42px;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    background:linear-gradient(135deg,var(--primary),#c0392b);

    transition:.4s;

    box-shadow:0 15px 40px rgba(178,34,34,.35);

}

.main-btn:hover{

    color:#fff;

    transform:translateY(-6px);

}

.border-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:60px;

    padding:0 40px;

    border-radius:50px;

    margin-left:15px;

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    transition:.4s;

}

.border-btn:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
SECTION TITLE
==========================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

    color:var(--dark);

}

.section-title p{

    width:700px;

    max-width:100%;

    margin:auto;

    margin-top:18px;

}

/*=========================================
GLASS CARD
==========================================*/

.glass{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*=========================================
UTILITY
==========================================*/

.text-primary{

    color:var(--primary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.rounded-xl{

    border-radius:25px;

}

.shadow-xl{

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/*=========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

    .navbar-collapse{

        background:#1f1a17;

        margin-top:20px;

        border-radius:15px;

        padding:25px;

    }

    .navbar-nav{

        gap:18px;

        align-items:flex-start;

    }

    .quote-btn{

        margin:20px 0 0;

        width:100%;

    }

}

@media(max-width:576px){

    section{

        padding:70px 0;

    }

    .section-title h2{

        font-size:34px;

    }

    .main-btn,
    .border-btn{

        width:100%;

        margin:10px 0;

    }

}

/*==================================================
                HERO SECTION
==================================================*/

.hero{
    background: linear-gradient(135deg,#2B1B10,#111);
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;
}

.hero-content{
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:#F4A300;
    color:#111;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#F4A300;
}

.hero-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.hero-info{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.hero-info h3{
    color:#F4A300;
    font-size:36px;
    margin-bottom:5px;
}

.hero-info span{
    color:#ccc;
    font-size:14px;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image-box{
    background:#fff;
    border-radius:25px;
    padding:15px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.4s;
}

.hero-image-box:hover{
    transform:translateY(-10px);
}

.hero-image-box img{
    width:100%;
    max-width:593px;
    display:block;
    border-radius:18px;
}

@media(max-width:991px){

.hero{
padding:140px 0 70px;
text-align:center;
}

.hero-content h1{
font-size:46px;
}

.hero-right{
margin-top:50px;
}

.hero-info{
justify-content:center;
}

}

/*==================================
Animated Glow Circles
==================================*/

.circle{

    position:absolute;

    border-radius:50%;

    z-index:1;

}

.one{

    width:420px;

    height:420px;

    background:rgba(244,163,0,.15);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    animation:pulse 6s infinite;

}

.two{

    width:320px;

    height:320px;

    background:rgba(178,34,34,.18);

    top:52%;

    left:50%;

    transform:translate(-50%,-50%);

    animation:pulse2 5s infinite;

}

.three{

    width:230px;

    height:230px;

    background:rgba(255,255,255,.10);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

}

@keyframes pulse{

    0%{

        transform:translate(-50%,-50%) scale(1);

    }

    50%{

        transform:translate(-50%,-50%) scale(1.12);

    }

    100%{

        transform:translate(-50%,-50%) scale(1);

    }

}

@keyframes pulse2{

    0%{

        transform:translate(-50%,-50%) scale(.95);

    }

    50%{

        transform:translate(-50%,-50%) scale(1.1);

    }

    100%{

        transform:translate(-50%,-50%) scale(.95);

    }

}

/*==================================
Floating Spices
==================================*/

.floating{

    position:absolute;

    z-index:4;

    pointer-events:none;

}

.chilli{

    width:110px;

    top:12%;

    right:7%;

    animation:float1 8s linear infinite;

}

.cinnamon{

    width:90px;

    left:6%;

    bottom:18%;

    animation:float2 7s ease-in-out infinite;

}

.star{

    width:75px;

    right:16%;

    bottom:14%;

    animation:rotateStar 18s linear infinite;

}

@keyframes float1{

    0%{

        transform:translateY(0) rotate(0deg);

    }

    50%{

        transform:translateY(-35px) rotate(10deg);

    }

    100%{

        transform:translateY(0) rotate(0deg);

    }

}

@keyframes float2{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(25px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes rotateStar{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==================================
Decorative Shapes
==================================*/

.shape{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    z-index:2;

}

.shape1{

    width:320px;

    height:320px;

    background:rgba(244,163,0,.20);

    top:-80px;

    left:-100px;

}

.shape2{

    width:260px;

    height:260px;

    background:rgba(178,34,34,.22);

    right:-80px;

    top:180px;

}

.shape3{

    width:220px;

    height:220px;

    background:rgba(255,255,255,.08);

    bottom:-60px;

    left:40%;

}

/*==================================
Scroll Down
==================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    border:2px solid rgba(255,255,255,.35);

    backdrop-filter:blur(15px);

    animation:bounce 2s infinite;

    z-index:10;

}

.scroll-down:hover{

    background:var(--secondary);

    color:#fff;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateX(-50%) translateY(0);

    }

    40%{

        transform:translateX(-50%) translateY(-12px);

    }

    60%{

        transform:translateX(-50%) translateY(-6px);

    }

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.hero{

padding:140px 0 90px;

text-align:center;

}

.hero-content h1{

font-size:50px;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-info{

justify-content:center;

margin-bottom:60px;

}

.hero-image{

margin-top:40px;

}

.hero-image img{

width:80%;

}

}

@media(max-width:767px){

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.hero-info{

gap:25px;

}

.hero-info h3{

font-size:30px;

}

.chilli,
.cinnamon,
.star{

display:none;

}

.one{

width:260px;

height:260px;

}

.two{

width:180px;

height:180px;

}

}

/*==================================================
            COMPANY STATS SECTION
==================================================*/

.stats-section{

    position: relative;

    margin-top: -70px;

    z-index: 20;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

    overflow:hidden;

    position:relative;

}

.stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.stat-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    margin-bottom:25px;

}

.stat-card h2{

    font-size:46px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat-card h5{

    font-size:20px;

    margin-bottom:10px;

}

.stat-card p{

    font-size:15px;

}

/*==================================================
                ABOUT SECTION
==================================================*/

.about{

    background:#fff;

    position:relative;

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(244,163,0,.08);

    border-radius:50%;

    left:-150px;

    top:-120px;

}

.about::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(178,34,34,.06);

    right:-120px;

    bottom:-120px;

    border-radius:50%;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    width:100%;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    width:190px;

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    text-align:center;

}

.experience-box h2{

    color:var(--primary);

    font-size:46px;

    margin-bottom:5px;

}

.experience-box span{

    font-weight:600;

    color:#555;

}

.about-content{

    padding-left:40px;

}

.about-content .subtitle{

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:15px;

}

.about-content h2{

    font-size:48px;

    line-height:1.25;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:18px;

    color:#666;

}

.about-list{

    margin-top:30px;

}

.about-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    font-weight:500;

}

.about-list i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    margin-right:15px;

}

.about-btn{

    margin-top:35px;

}

/*==================================================
            QUALITY BADGES
==================================================*/

.badges{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:35px;

}

.badge-box{

    background:#FFF8EF;

    padding:15px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    font-weight:600;

    transition:.4s;

}

.badge-box i{

    color:var(--secondary);

    margin-right:10px;

}

.badge-box:hover{

    background:var(--primary);

    color:#fff;

}

.badge-box:hover i{

    color:#fff;

}

/*==================================================
        DECORATIVE SHAPES
==================================================*/

.spice-leaf{

    position:absolute;

    opacity:.08;

    animation:leafRotate 20s linear infinite;

}

.leaf-one{

    width:130px;

    left:3%;

    top:35%;

}

.leaf-two{

    width:100px;

    right:4%;

    bottom:15%;

}

@keyframes leafRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:991px){

.about-content{

padding-left:0;

margin-top:50px;

text-align:center;

}

.about-list li{

justify-content:center;

}

.badges{

justify-content:center;

}

.experience-box{

right:20px;

bottom:20px;

}

}

@media(max-width:767px){

.about-content h2{

font-size:34px;

}

.stat-card{

margin-bottom:25px;

}

.stat-card h2{

font-size:36px;

}

.experience-box{

position:relative;

right:auto;

bottom:auto;

margin:25px auto 0;

}

}


/*==================================================
                PRODUCTS SECTION
==================================================*/

.products{
    background:#FFF8EF;
}

.product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.product-image{
    height:260px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.12);
}

.product-content{
    padding:30px;
}

.product-content h4{
    margin-bottom:15px;
}

.product-content p{
    margin-bottom:20px;
}

.read-more{
    color:var(--primary);
    font-weight:600;
}

.read-more i{
    margin-left:8px;
    transition:.3s;
}

.product-card:hover .read-more i{
    margin-left:15px;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.choose-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    height:100%;
}

.choose-card:hover{
    background:linear-gradient(135deg,var(--primary),#7f1d1d);
    color:#fff;
    transform:translateY(-10px);
}

.choose-card:hover p{
    color:#f3f3f3;
}

.choose-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--secondary),#ffc233);
    color:#fff;
    font-size:36px;
    margin-bottom:25px;
}

/*==================================================
PROCESS
==================================================*/

.process{
    background:#fff;
}

.process-step{
    text-align:center;
    position:relative;
}

.process-number{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.process-step::after{
    content:"";
    position:absolute;
    top:40px;
    right:-50%;
    width:100%;
    height:3px;
    background:#ddd;
}

.process-step:last-child::after{
    display:none;
}

/*==================================================
CTA
==================================================*/

.cta{
    background:linear-gradient(rgba(25,20,15,.85),rgba(25,20,15,.85)),
    url("../images/cta-bg.jpg") center/cover;
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
    font-size:52px;
    margin-bottom:20px;
}

.cta p{
    color:#ddd;
    max-width:750px;
    margin:auto auto 35px;
}

/*==================================================
TESTIMONIAL
==================================================*/

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.testimonial-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.stars{
    color:#F4A300;
    margin-bottom:15px;
}

/*==================================================
CONTACT
==================================================*/

.contact{
    background:#FFF8EF;
}

.contact-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.contact-box input,
.contact-box textarea{
    width:100%;
    border:none;
    background:#f7f7f7;
    border-radius:12px;
    padding:16px;
    margin-bottom:20px;
    outline:none;
}

.contact-info{
    background:linear-gradient(135deg,var(--primary),#7f1d1d);
    border-radius:20px;
    padding:40px;
    color:#fff;
    height:100%;
}

.contact-info h4{
    color:#fff;
}

.contact-item{
    display:flex;
    margin-top:30px;
}

.contact-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

/*==================================================
FOOTER
==================================================*/

footer{
    background:#17120f;
    color:#ddd;
    padding:80px 0 30px;
}

.footer-logo img{
    width:180px;
    margin-bottom:20px;
}

footer h5{
    color:#fff;
    margin-bottom:25px;
}

footer ul{
    padding:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#cfcfcf;
}

footer ul li a:hover{
    color:var(--secondary);
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2b2522;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.social-icons a:hover{
    background:var(--secondary);
    color:#111;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    font-size:15px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.process-step::after{
display:none;
}

.cta h2{
font-size:38px;
}

.contact-info{
margin-top:30px;
}

}

@media(max-width:767px){

.product-image{
height:220px;
}

.cta h2{
font-size:30px;
}

.contact-box,
.contact-info{
padding:25px;
}

footer{
text-align:center;
}

.social-icons{
justify-content:center;
}

}